diff --git a/.cursorignore b/.cursorignore index 5ff5f06f8d..d79104d045 100644 --- a/.cursorignore +++ b/.cursorignore @@ -4,4 +4,7 @@ build_*/ build/ localization/ sandboxes/ -resources/ +resources/* +!resources/web/ +!resources/dailytip +!resources/shaders diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4e841c04bb..cc0f856acb 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,2 +1,2 @@ -ARG BASE_IMAGE -FROM ${BASE_IMAGE} +ARG BASE_IMAGE +FROM ${BASE_IMAGE} \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 07d6a4b0d0..64ede0af2f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,14 +1,14 @@ { "name": "OrcaSlicer", "build": { - "dockerfile": "Dockerfile", - "args": { - "PLATFORM": "linux/amd64", - "BASE_IMAGE": "mcr.microsoft.com/devcontainers/cpp:ubuntu-20.04" - }, - "options": ["--platform=linux/amd64"] + "dockerfile": "Dockerfile", + "args": { + "PLATFORM": "linux/amd64", + "BASE_IMAGE": "mcr.microsoft.com/devcontainers/cpp:ubuntu-22.04" + }, + "options": ["--platform=linux/amd64"] }, - "runArgs": ["--env-file", "/tmp/devcontainer.env"], + "runArgs": ["--platform=linux/amd64"], "features": { "ghcr.io/devcontainers/features/desktop-lite:1": { "password": "orca" @@ -16,16 +16,13 @@ }, "customizations": { "vscode": { - "settings": { + "settings": { "cmake.configureArgs": [ "-DSLIC3R_GTK=3", "-DBBL_RELEASE_TO_PUBLIC=1", "-DBBL_INTERNAL_TESTING=0", "-DSLIC3R_STATIC=1", "-DCMAKE_PREFIX_PATH=${workspaceFolder}/deps/build/destdir/usr/local" - ], - "cmake.buildToolArgs": [ - "-l${containerEnv:CORES}" ] }, @@ -47,10 +44,6 @@ "otherPortsAttributes": { "onAutoForward": "ignore" }, - - "initializeCommand": { - "Setup Temporary Env File": "echo \"CORES=`nproc --all`\" > /tmp/devcontainer.env" - }, "onCreateCommand": { "Set postCreate executable flag": "chmod +x .devcontainer/postCreate.sh" }, diff --git a/.devcontainer/postCreate.sh b/.devcontainer/postCreate.sh index ea76f8e22c..b805c08b8b 100755 --- a/.devcontainer/postCreate.sh +++ b/.devcontainer/postCreate.sh @@ -3,12 +3,13 @@ apt update apt upgrade -y +build_linux="./build_linux.sh -u" echo "-----------------------------------------" -echo "Running BuildLinux.sh with update flag..." +echo "Running ${build_linux}..." echo "-----------------------------------------" -./BuildLinux.sh -u +${build_linux} echo "------------------------------" echo "Installing missing packages..." echo "------------------------------" -apt install -y libgl1-mesa-dev m4 autoconf libtool \ No newline at end of file +apt install -y libgl1-mesa-dev m4 autoconf libtool diff --git a/.dockerignore b/.dockerignore index 378649ff6e..1e4911725c 100644 --- a/.dockerignore +++ b/.dockerignore @@ -22,6 +22,7 @@ deps/build-linux/* **/.DS_Store install_* build_*/ +!build_linux.sh SVG Dockerfile DockerBuild.sh diff --git a/.gitattributes b/.gitattributes index e69de29bb2..4cab1f4d26 100644 --- a/.gitattributes +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Set the default behavior, in case people don't have core.autocrlf set. +* text=auto diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index c0a35f66bf..9b44b5639c 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -13,6 +13,7 @@ on: - 'localization/**' - 'resources/**' - ".github/workflows/build_*.yml" + - 'flatpak/**' pull_request: branches: @@ -24,9 +25,10 @@ on: - '**/CMakeLists.txt' - 'version.inc' - ".github/workflows/build_*.yml" - - 'BuildLinux.sh' + - 'build_linux.sh' - 'build_release_vs2022.bat' - 'build_release_macos.sh' + - 'flatpak/**' workflow_dispatch: # allows for manual dispatch inputs: @@ -47,11 +49,10 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-20.04 + # Deprecate 20.04appimage + # - os: ubuntu-20.04 - os: ubuntu-24.04 - os: windows-latest - - os: macos-14 - arch: x86_64 - os: macos-14 arch: arm64 uses: ./.github/workflows/build_check_cache.yml @@ -63,7 +64,7 @@ jobs: flatpak: name: "Flatpak" container: - image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-46 + image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-47 options: --privileged volumes: - /usr/local/lib/android:/usr/local/lib/android diff --git a/.github/workflows/build_check_cache.yml b/.github/workflows/build_check_cache.yml index f71cc9b281..ddac07545e 100644 --- a/.github/workflows/build_check_cache.yml +++ b/.github/workflows/build_check_cache.yml @@ -30,13 +30,12 @@ jobs: - name: set outputs id: set_outputs env: - underscore-arch: ${{ inputs.os == 'macos-14' && '_' || ''}}${{ inputs.os == 'macos-14' && inputs.arch || '' }} # if is macos, make a string that does "_{arch}", else output nothing - dash-arch: ${{ inputs.os == 'macos-14' && '-' || ''}}${{ inputs.os == 'macos-14' && inputs.arch || '' }} # if is macos, make a string that does "-{arch}", else output nothing - dep-folder-name: ${{ (inputs.os == 'windows-latest' || inputs.os == 'macos-14') && 'OrcaSlicer_dep' || 'destdir' }} + # todo: this is mad! refactor other build scripts to use same name + dep-folder-name: ${{ inputs.os == 'windows-latest' && '/OrcaSlicer_dep' || inputs.os == 'macos-14' && '' || inputs.os != 'macos-14' && '/destdir' || '' }} output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}} run: | - echo cache-key=${{ inputs.os }}${{ env.dash-arch }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }} - echo cache-path=${{ github.workspace }}/deps/build${{ env.underscore-arch }}/${{ env.dep-folder-name }}${{ env.underscore-arch }} >> ${{ env.output-cmd }} + echo cache-key=${{ inputs.os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }} + echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }} - name: load cache id: cache_deps diff --git a/.github/workflows/build_deps.yml b/.github/workflows/build_deps.yml index 163cbca23c..4a29a133a1 100644 --- a/.github/workflows/build_deps.yml +++ b/.github/workflows/build_deps.yml @@ -74,12 +74,14 @@ jobs: if: inputs.os == 'macos-14' working-directory: ${{ github.workspace }} run: | - brew install automake texinfo ninja libtool + brew install automake texinfo libtool 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 -dpx -a ${{ inputs.arch }} -t 10.15 -1 + ./build_release_macos.sh -dx -a universal -t 10.15 -1 + for arch in arm64 x86_64; do + (cd "${{ github.workspace }}/deps/build/${arch}" && \ + find . -mindepth 1 -maxdepth 1 ! -name 'OrcaSlicer_dep' -exec rm -rf {} +) + done brew install zstd @@ -95,7 +97,7 @@ jobs: libwayland-dev libxkbcommon-dev wayland-protocols extra-cmake-modules pkgconf \ libglu1-mesa-dev libcairo2-dev libgtk-3-dev libsoup2.4-dev libwebkit2gtk-${{ env.webkit-ver }}-dev \ libgstreamer1.0-dev libgstreamer-plugins-good1.0-dev libgstreamer-plugins-base1.0-dev \ - gstreamer1.0-plugins-bad libosmesa6-dev wget sudo autoconf curl libunwind-dev texinfo + gstreamer1.0-plugins-bad wget sudo autoconf curl libunwind-dev texinfo - name: Build on Ubuntu if: inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04' @@ -103,20 +105,20 @@ jobs: run: | mkdir -p ${{ github.workspace }}/deps/build mkdir -p ${{ github.workspace }}/deps/build/destdir - sudo ./BuildLinux.sh -ur + sudo ./build_linux.sh -ur sudo chown $USER -R ./ - ./BuildLinux.sh -dr + ./build_linux.sh -dr cd deps/build tar -czvf OrcaSlicer_dep_ubuntu_$(date +"%Y%m%d").tar.gz destdir # Upload Artifacts - - name: Upload Mac ${{ inputs.arch }} artifacts - if: inputs.os == 'macos-14' - 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 Mac ${{ inputs.arch }} artifacts + # if: inputs.os == 'macos-14' + # uses: actions/upload-artifact@v4 + # with: + # name: OrcaSlicer_dep_mac_${{ env.date }} + # path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.tar.gz - name: Upload Windows artifacts if: inputs.os == 'windows-latest' diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index fc99a751ac..1ae30f7b3b 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -81,10 +81,9 @@ jobs: - name: Install tools mac if: inputs.os == 'macos-14' run: | - brew install ninja libtool + brew install libtool brew list - mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}} - mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}} + mkdir -p ${{ github.workspace }}/deps/build - name: Free disk space if: inputs.os == 'macos-14' @@ -98,7 +97,7 @@ jobs: if: inputs.os == 'macos-14' working-directory: ${{ github.workspace }} run: | - ./build_release_macos.sh -s -n -x -a ${{inputs.arch}} -t 10.15 -1 + ./build_release_macos.sh -s -n -x -a universal -t 10.15 -1 # Thanks to RaySajuuk, it's working now - name: Sign app and notary @@ -119,27 +118,27 @@ jobs: security import $CERTIFICATE_PATH -P $P12_PASSWORD -A -t cert -f pkcs12 -k $KEYCHAIN_PATH security list-keychain -d user -s $KEYCHAIN_PATH security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $P12_PASSWORD $KEYCHAIN_PATH - codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/OrcaSlicer.app - ln -s /Applications ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/Applications - hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg - codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg + codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" ${{ github.workspace }}/build/universal/OrcaSlicer/OrcaSlicer.app + ln -s /Applications ${{ github.workspace }}/build/universal/OrcaSlicer/Applications + hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_universal_${{ env.ver }}.dmg + codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" OrcaSlicer_Mac_universal_${{ env.ver }}.dmg xcrun notarytool store-credentials "notarytool-profile" --apple-id "${{ secrets.APPLE_DEV_ACCOUNT }}" --team-id "${{ secrets.TEAM_ID }}" --password "${{ secrets.APP_PWD }}" - xcrun notarytool submit "OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg" --keychain-profile "notarytool-profile" --wait - xcrun stapler staple OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg + xcrun notarytool submit "OrcaSlicer_Mac_universal_${{ env.ver }}.dmg" --keychain-profile "notarytool-profile" --wait + xcrun stapler staple OrcaSlicer_Mac_universal_${{ env.ver }}.dmg - name: Create DMG without notary if: github.ref != 'refs/heads/main' && inputs.os == 'macos-14' working-directory: ${{ github.workspace }} run: | - ln -s /Applications ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/Applications - hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg + ln -s /Applications ${{ github.workspace }}/build/universal/OrcaSlicer/Applications + hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build/universal/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_universal_${{ env.ver }}.dmg - name: Upload artifacts mac if: inputs.os == 'macos-14' uses: actions/upload-artifact@v4 with: - name: OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }} - path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg + name: OrcaSlicer_Mac_universal_${{ env.ver }} + path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg - name: Deploy Mac release if: github.ref == 'refs/heads/main' && inputs.os == 'macos-14' @@ -147,8 +146,8 @@ jobs: with: upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label} release_id: 137995723 - asset_path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg - asset_name: OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg + asset_path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg + asset_name: OrcaSlicer_Mac_universal_${{ env.ver }}.dmg asset_content_type: application/octet-stream max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted @@ -244,13 +243,13 @@ jobs: ${{ env.apt-cmd }} install -y autoconf build-essential cmake curl eglexternalplatform-dev \ extra-cmake-modules file git libcairo2-dev libcurl4-openssl-dev libdbus-1-dev libglew-dev libglu1-mesa-dev \ libglu1-mesa-dev libgstreamer1.0-dev libgstreamerd-3-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-good1.0-dev \ - libgtk-3-dev libgtk-3-dev libmspack-dev libosmesa6-dev libsecret-1-dev libsoup2.4-dev libssl-dev libudev-dev libwayland-dev \ + libgtk-3-dev libgtk-3-dev libmspack-dev libsecret-1-dev libsoup2.4-dev libssl-dev libudev-dev libwayland-dev \ libwebkit2gtk-${{ env.webkit-ver }}-dev libxkbcommon-dev locales locales-all m4 pkgconf sudo wayland-protocols wget ${{ env.libfuse2-pkg }} - - name: Install dependencies from BuildLinux.sh + - name: Install dependencies from build_linux.sh if: inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04' shell: bash - run: sudo ./BuildLinux.sh -ur + run: sudo ./build_linux.sh -ur - name: Fix permissions if: inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04' @@ -263,12 +262,12 @@ jobs: env: ubuntu-ver-str: ${{ (inputs.os == 'ubuntu-24.04' && '_Ubuntu2404') || '' }} run: | - ./BuildLinux.sh -isr + ./build_linux.sh -isr mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage chmod +x ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage - name: Build orca_custom_preset_tests - if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04' + if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-24.04' working-directory: ${{ github.workspace }}/build/src shell: bash run: | @@ -308,7 +307,7 @@ jobs: message: "nightly-builds" - name: Deploy orca_custom_preset_tests - if: ${{ ! env.ACT && github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04' }} + if: ${{ ! env.ACT && github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-24.04' }} uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label} diff --git a/BuildLinux.sh b/BuildLinux.sh deleted file mode 100755 index 0f4210b419..0000000000 --- a/BuildLinux.sh +++ /dev/null @@ -1,195 +0,0 @@ -#!/bin/bash - -export ROOT=$(dirname $(readlink -f ${0})) - -set -e # exit on first error - -function check_available_memory_and_disk() { - FREE_MEM_GB=$(free -g -t | grep 'Mem' | rev | cut -d" " -f1 | rev) - MIN_MEM_GB=10 - - FREE_DISK_KB=$(df -k . | tail -1 | awk '{print $4}') - MIN_DISK_KB=$((10 * 1024 * 1024)) - - if [ ${FREE_MEM_GB} -le ${MIN_MEM_GB} ]; then - echo -e "\nERROR: Orca Slicer Builder requires at least ${MIN_MEM_GB}G of 'available' mem (systen has only ${FREE_MEM_GB}G available)" - echo && free -h && echo - exit 2 - fi - - if [[ ${FREE_DISK_KB} -le ${MIN_DISK_KB} ]]; then - echo -e "\nERROR: Orca Slicer Builder requires at least $(echo ${MIN_DISK_KB} |awk '{ printf "%.1fG\n", $1/1024/1024; }') (systen has only $(echo ${FREE_DISK_KB} | awk '{ printf "%.1fG\n", $1/1024/1024; }') disk free)" - echo && df -h . && echo - exit 1 - fi -} - -function usage() { - echo "Usage: ./BuildLinux.sh [-1][-b][-c][-d][-i][-r][-s][-u]" - echo " -1: limit builds to 1 core (where possible)" - echo " -b: build in debug mode" - echo " -c: force a clean build" - echo " -d: build deps (optional)" - echo " -h: this help output" - echo " -i: Generate appimage (optional)" - echo " -r: skip ram and disk checks (low ram compiling)" - echo " -s: build orca-slicer (optional)" - echo " -u: update and build dependencies (optional and need sudo)" - echo "For a first use, you want to 'sudo ./BuildLinux.sh -u'" - echo " and then './BuildLinux.sh -dsi'" -} - -unset name -while getopts ":1bcdghirsu" opt; do - case ${opt} in - 1 ) - export CMAKE_BUILD_PARALLEL_LEVEL=1 - ;; - b ) - BUILD_DEBUG="1" - ;; - c ) - CLEAN_BUILD=1 - ;; - d ) - BUILD_DEPS="1" - ;; - h ) usage - exit 0 - ;; - i ) - BUILD_IMAGE="1" - ;; - r ) - SKIP_RAM_CHECK="1" - ;; - s ) - BUILD_ORCA="1" - ;; - u ) - UPDATE_LIB="1" - ;; - esac -done - -if [ ${OPTIND} -eq 1 ] -then - usage - exit 0 -fi - -DISTRIBUTION=$(awk -F= '/^ID=/ {print $2}' /etc/os-release | tr -d '"') -DISTRIBUTION_LIKE=$(awk -F= '/^ID_LIKE=/ {print $2}' /etc/os-release | tr -d '"') -# Check for direct distribution match to Ubuntu/Debian -if [ "${DISTRIBUTION}" == "ubuntu" ] || [ "${DISTRIBUTION}" == "linuxmint" ]; then - DISTRIBUTION="debian" -# Check if distribution is Debian/Ubuntu-like based on ID_LIKE -elif [[ "${DISTRIBUTION_LIKE}" == *"debian"* ]] || [[ "${DISTRIBUTION_LIKE}" == *"ubuntu"* ]]; then - DISTRIBUTION="debian" -fi -if [ ! -f ./linux.d/${DISTRIBUTION} ] -then - echo "Your distribution does not appear to be currently supported by these build scripts" - exit 1 -fi -source ./linux.d/${DISTRIBUTION} - -echo "FOUND_GTK3=${FOUND_GTK3}" -if [[ -z "${FOUND_GTK3_DEV}" ]] -then - echo "Error, you must install the dependencies before." - echo "Use option -u with sudo" - exit 1 -fi - -echo "Changing date in version..." -{ - # change date in version - sed -i "s/+UNKNOWN/_$(date '+%F')/" version.inc -} -echo "done" - - -if ! [[ -n "${SKIP_RAM_CHECK}" ]] -then - check_available_memory_and_disk -fi - -if [[ -n "${BUILD_DEPS}" ]] -then - echo "Configuring dependencies..." - BUILD_ARGS="-DDEP_WX_GTK3=ON" - if [[ -n "${CLEAN_BUILD}" ]] - then - rm -fr deps/build - fi - if [ ! -d "deps/build" ] - then - mkdir deps/build - fi - if [[ -n "${BUILD_DEBUG}" ]] - then - # have to build deps with debug & release or the cmake won't find everything it needs - if [ ! -d "deps/build/release" ] - then - mkdir deps/build/release - fi - cmake -S deps -B deps/build/release -G Ninja -DDESTDIR="${PWD}/deps/build/destdir" -DDEP_DOWNLOAD_DIR="${PWD}/deps/DL_CACHE" ${BUILD_ARGS} - cmake --build deps/build/release - BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug" - fi - - echo "cmake -S deps -B deps/build -G Ninja ${BUILD_ARGS}" - cmake -S deps -B deps/build -G Ninja ${BUILD_ARGS} - cmake --build deps/build -fi - - -if [[ -n "${BUILD_ORCA}" ]] -then - echo "Configuring OrcaSlicer..." - if [[ -n "${CLEAN_BUILD}" ]] - then - rm -fr build - fi - BUILD_ARGS="" - if [[ -n "${FOUND_GTK3_DEV}" ]] - then - BUILD_ARGS="-DSLIC3R_GTK=3" - fi - if [[ -n "${BUILD_DEBUG}" ]] - then - BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug -DBBL_INTERNAL_TESTING=1" - else - BUILD_ARGS="${BUILD_ARGS} -DBBL_RELEASE_TO_PUBLIC=1 -DBBL_INTERNAL_TESTING=0" - fi - echo -e "cmake -S . -B build -G Ninja -DCMAKE_PREFIX_PATH="${PWD}/deps/build/destdir/usr/local" -DSLIC3R_STATIC=1 ${BUILD_ARGS}" - cmake -S . -B build -G Ninja \ - -DCMAKE_PREFIX_PATH="${PWD}/deps/build/destdir/usr/local" \ - -DSLIC3R_STATIC=1 \ - -DORCA_TOOLS=ON \ - ${BUILD_ARGS} - echo "done" - echo "Building OrcaSlicer ..." - cmake --build build --target OrcaSlicer - echo "Building OrcaSlicer_profile_validator .." - cmake --build build --target OrcaSlicer_profile_validator - ./run_gettext.sh - echo "done" -fi - -if [[ -e ${ROOT}/build/src/BuildLinuxImage.sh ]]; then -# Give proper permissions to script -chmod 755 ${ROOT}/build/src/BuildLinuxImage.sh - -echo "[9/9] Generating Linux app..." - pushd build - if [[ -n "${BUILD_IMAGE}" ]] - then - ${ROOT}/build/src/BuildLinuxImage.sh -i - else - ${ROOT}/build/src/BuildLinuxImage.sh - fi - popd -echo "done" -fi diff --git a/CMakeLists.txt b/CMakeLists.txt index ac1af19e33..61efb2233c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,50 @@ cmake_minimum_required(VERSION 3.13) +# Verify that your CMake version is exactly 3.31.x series or lower on windows +if ( ((MSVC) OR (WIN32)) AND (${CMAKE_VERSION} VERSION_GREATER_EQUAL "4.0") ) + message(FATAL_ERROR "Only cmake versions between 3.13.x and 3.31.x is supported on windows. Detected version: ${CMAKE_VERSION}") +endif() + +if (WIN32) + # Detect known CI environments + set(IS_CI FALSE) + if(DEFINED ENV{CI}) + set(IS_CI TRUE) + elseif(DEFINED ENV{GITHUB_ACTIONS}) + set(IS_CI TRUE) + elseif(DEFINED ENV{GITLAB_CI}) + set(IS_CI TRUE) + elseif(DEFINED ENV{TF_BUILD}) + set(IS_CI TRUE) + elseif(DEFINED ENV{BUILD_NUMBER}) # Jenkins + set(IS_CI TRUE) + endif() + + # Detect common misconfiguration (Strawberry Perl in PATH before CMake) + # We use ENV to check the PATH order + string(REPLACE "\\" "/" ENV_PATH "$ENV{PATH}") + string(FIND "${ENV_PATH}" "Strawberry/c/bin" STRAWBERRY_POS) + string(FIND "${ENV_PATH}" "Program Files/CMake/bin" CMAKE_POS) + + if (STRAWBERRY_POS GREATER -1 AND CMAKE_POS GREATER -1 AND STRAWBERRY_POS LESS CMAKE_POS) + set(_warning_text " +############################################################# +Detected Strawberry Perl's 'c/bin' appearing before CMake in PATH. +This is known to cause CMake to misbehave (e.g., missing modules). +Please adjust your PATH so that: +C:\\Program Files\\CMake\\bin +appears before: +C:\\Strawberry\\c\\bin +You can do this in Environment Variables settings. +############################################################# + ") + + if(NOT IS_CI) + message(FATAL_ERROR "${_warning_text}") + endif() + endif() +endif () + if (APPLE) # if CMAKE_OSX_DEPLOYMENT_TARGET is not set, set it to 11.3 if (NOT CMAKE_OSX_DEPLOYMENT_TARGET) @@ -63,6 +108,15 @@ set(SLIC3R_GTK "2" CACHE STRING "GTK version to use with wxWidgets on Linux") set(IS_CROSS_COMPILE FALSE) +option (COLORED_OUTPUT "Always produce ANSI-colored output (GNU/Clang only)." OFF) +if (${COLORED_OUTPUT}) + if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") + add_compile_options (-fdiagnostics-color=always) + elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + add_compile_options (-fcolor-diagnostics) + endif () +endif () + if (APPLE) set(CMAKE_FIND_FRAMEWORK LAST) set(CMAKE_FIND_APPBUNDLE LAST) @@ -182,7 +236,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) if(NOT WIN32) # Add DEBUG flags to debug builds. - add_compile_options("$<$:-DDEBUG>") + add_compile_definitions("$,DEBUG,NDEBUG>") endif() # To be able to link libslic3r with the Perl XS module. @@ -219,7 +273,7 @@ if(WIN32) if(WIN10SDK_INCLUDE_PATH) message("Building with Win10 Netfabb STL fixing service support") add_definitions(-DHAS_WIN10SDK) - include_directories("${WIN10SDK_INCLUDE_PATH}") + include_directories(SYSTEM "${WIN10SDK_INCLUDE_PATH}") else() message("Building without Win10 Netfabb STL fixing service support") endif() @@ -247,7 +301,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux") find_package(Threads REQUIRED) find_package(DBus REQUIRED) - include_directories(${DBUS_INCLUDE_DIRS}) + include_directories(SYSTEM ${DBUS_INCLUDE_DIRS}) endif() if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUXX) @@ -309,7 +363,7 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP add_compile_options(-Wno-unknown-pragmas) endif() - # Bit of a hack for flatpak building: compress the debug info with zstd to save space in CI + # Bit of a hack for flatpak building: compress the debug info with zstd to save space in CI if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 13.0) add_compile_options(-gz=zstd) endif() @@ -356,11 +410,11 @@ message(STATUS "LIBDIR: ${LIBDIR}") message(STATUS "LIBDIR_BIN: ${LIBDIR_BIN}") # For the bundled boost libraries (boost::nowide) -include_directories(${LIBDIR}) +include_directories(SYSTEM ${LIBDIR}) # For generated header files -include_directories(${LIBDIR_BIN}/platform) +include_directories(SYSTEM ${LIBDIR_BIN}/platform) # For ligigl -include_directories(${LIBDIR}/libigl) +include_directories(SYSTEM ${LIBDIR}/libigl) if(WIN32) add_definitions(-D_USE_MATH_DEFINES -D_WIN32 -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS) @@ -430,7 +484,10 @@ endif() # set(Boost_COMPILER "-mgw81") # boost::process was introduced first in version 1.64.0, # boost::beast::detail::base64 was introduced first in version 1.66.0 -find_package(Boost 1.66 REQUIRED COMPONENTS system filesystem thread log log_setup locale regex chrono atomic date_time iostreams program_options) +if(POLICY CMP0167) + cmake_policy(SET CMP0167 NEW) +endif() +find_package(Boost 1.83.0 REQUIRED COMPONENTS system filesystem thread log log_setup locale regex chrono atomic date_time iostreams program_options nowide) add_library(boost_libs INTERFACE) add_library(boost_headeronly INTERFACE) @@ -447,7 +504,7 @@ endif() function(slic3r_remap_configs targets from_Cfg to_Cfg) if(MSVC) string(TOUPPER ${from_Cfg} from_CFG) - + foreach(tgt ${targets}) if(TARGET ${tgt}) set_target_properties(${tgt} PROPERTIES MAP_IMPORTED_CONFIG_${from_CFG} ${to_Cfg}) @@ -456,7 +513,7 @@ function(slic3r_remap_configs targets from_Cfg to_Cfg) endif() endfunction() -target_include_directories(boost_headeronly INTERFACE ${Boost_INCLUDE_DIRS}) +target_include_directories(boost_headeronly SYSTEM INTERFACE ${Boost_INCLUDE_DIRS}) target_link_libraries(boost_libs INTERFACE boost_headeronly ${Boost_LIBRARIES}) # Find and configure intel-tbb @@ -466,7 +523,7 @@ endif() set(TBB_DEBUG 1) set(CMAKE_MAP_IMPORTED_CONFIG_RELWITHDEBINFO RelWithDebInfo Release "") find_package(TBB REQUIRED) -# include_directories(${TBB_INCLUDE_DIRS}) +# include_directories(SYSTEM ${TBB_INCLUDE_DIRS}) # add_definitions(${TBB_DEFINITIONS}) # if(MSVC) # # Suppress implicit linking of the TBB libraries by the Visual Studio compiler. @@ -508,7 +565,7 @@ if (SLIC3R_STATIC AND NOT SLIC3R_STATIC_EXCLUDE_CURL) find_package(OpenSSL REQUIRED) message("OpenSSL include dir: ${OPENSSL_INCLUDE_DIR}") message("OpenSSL libraries: ${OPENSSL_LIBRARIES}") - target_include_directories(libcurl INTERFACE ${OPENSSL_INCLUDE_DIR}) + target_include_directories(libcurl SYSTEM INTERFACE ${OPENSSL_INCLUDE_DIR}) target_link_libraries(libcurl INTERFACE ${OPENSSL_LIBRARIES}) endif() endif() @@ -574,7 +631,7 @@ add_custom_target(gettext_make_pot COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost -f "${BBL_L18N_DIR}/list.txt" -o "${BBL_L18N_DIR}/OrcaSlicer.pot" - COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR} + COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR} WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMENT "Generate pot file from strings in the source tree" ) @@ -629,11 +686,9 @@ endif () find_path(SPNAV_INCLUDE_DIR spnav.h) if (SPNAV_INCLUDE_DIR) - find_library(HAVE_SPNAV spnav) - if (HAVE_SPNAV) + find_library(SPNAV_LIB NAMES libspnav.a) # Force linking libspnav statically + if (SPNAV_LIB) add_definitions(-DHAVE_SPNAV) - add_library(libspnav SHARED IMPORTED) - target_link_libraries(libspnav INTERFACE spnav) message(STATUS "SPNAV library found") else() message(STATUS "SPNAV library NOT found, Spacenavd not supported") @@ -734,7 +789,7 @@ function(orcaslicer_copy_dlls target config postfix output_dlls) PARENT_SCOPE ) - + endfunction() @@ -761,7 +816,7 @@ endif() if (NOT WIN32 AND NOT APPLE) set(SLIC3R_APP_CMD "orca-slicer") - configure_file(${LIBDIR}/platform/unix/build_appimage.sh.in ${CMAKE_CURRENT_BINARY_DIR}/build_appimage.sh @ONLY) + configure_file(${LIBDIR}/platform/unix/build_appimage.sh.in ${CMAKE_CURRENT_BINARY_DIR}/build_appimage.sh USE_SOURCE_PERMISSIONS @ONLY) endif() option(BUILD_BBS_TEST_TOOLS "Build bbs test tools" OFF) @@ -774,7 +829,7 @@ endif() if (WIN32) install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "./resources") set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP TRUE) - include(InstallRequiredSystemLibraries) + include(InstallRequiredSystemLibraries) install (PROGRAMS ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} DESTINATION ".") elseif (SLIC3R_FHS) # CMAKE_INSTALL_FULL_DATAROOTDIR: read-only architecture-independent data root (share) diff --git a/Dockerfile b/Dockerfile index f244d20acb..0cc12ac2aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,6 @@ RUN apt-get update && apt-get install -y \ libgstreamer-plugins-good1.0-dev \ libgtk-3-dev \ libgtk-3-dev \ - libosmesa6-dev \ libsecret-1-dev \ libsoup2.4-dev \ libssl3 \ @@ -65,17 +64,17 @@ WORKDIR OrcaSlicer # These can run together, but we run them seperate for podman caching # Update System dependencies -RUN ./BuildLinux.sh -u +RUN ./build_linux.sh -u # Build dependencies in ./deps -RUN ./BuildLinux.sh -dr +RUN ./build_linux.sh -dr # Build slic3r -RUN ./BuildLinux.sh -sr +RUN ./build_linux.sh -sr # Build AppImage ENV container podman -RUN ./BuildLinux.sh -ir +RUN ./build_linux.sh -ir # It's easier to run Orca Slicer as the same username, # UID and GID as your workstation. Since we bind mount diff --git a/README.md b/README.md index bed40f3b23..feb2b5ba24 100644 --- a/README.md +++ b/README.md @@ -1,129 +1,130 @@ -

Orca Slicer

[![Build all](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml/badge.svg?branch=main)](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml) -
Orca Slicer is an open source slicer for FDM printers. +Orca Slicer is an open source Next-Gen Slicing Software for Precision 3D Prints. +Optimize your prints with ultra-fast slicing, intelligent support generation, and seamless printer compatibility—engineered for perfection. -Join our Discord community here:
-discord logo - -

🚨🚨🚨Important Security Alert🚨🚨🚨

+## Official links and community -The only official platforms for OrcaSlicer are **our GitHub project page**, **orcaslicer.com**, and the **official Discord channel**. +#### Official Website: +orcaslicer.com -Please be aware that "**orcaslicer.net**", "**orcaslicer.co**" or "**orca-slicer.com**" are NOT an official website for OrcaSlicer and may be potentially malicious. These sites appear to use AI-generated content, lacking genuine context and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised. +#### Github Repository: +GitHub Logo -If you see the above sites in your searches, report them as spam or unsafe to the search engine. This small action will assist everyone. +#### Follow us: +X Logo -We deeply value our OrcaSlicer community and appreciate all the social groups that support us. However, it is crucial to address the risk posed by any group that falsely claims to be official or misleads its members. If you encounter such a group or are part of one, please assist by encouraging the group owner to add a clear disclaimer or by alerting its members. +#### Join our Discord community: +discord logo - - -Thank you for your vigilance and support in keeping our community safe! +> [!CAUTION] +> There are multiple unofficial and potentially malicious websites pretending to be related to OrcaSlicer. These sites may redirect you to dangerous downloads or contain misleading information. +> +> If you come across any of these in search results, please report them as unsafe or spam to help keep the community secure. # Main features -- Auto-calibration for all printers -- Sandwich (inner-outer-inner) mode - An improved version of the `External Perimeters First` mode -- [Precise wall](https://github.com/SoftFever/OrcaSlicer/wiki/Precise-wall) -- Polyholes conversion support: [SuperSlicer Wiki: Polyholes](https://github.com/supermerill/SuperSlicer/wiki/Polyholes) -- Klipper support -- More granular controls -- Additional features can be found in the [change notes](https://github.com/SoftFever/OrcaSlicer/releases/) + +- **[Advanced Calibration Tools](https://github.com/SoftFever/OrcaSlicer/wiki/Calibration)** + Comprehensive suite: temperature towers, flow rate, retraction & more for optimal performance. +- **[Precise Wall](https://github.com/SoftFever/OrcaSlicer/wiki/quality_settings_precision#precise-wall) and [Seam Control](https://github.com/SoftFever/OrcaSlicer/wiki/quality_settings_seam)** + Adjust outer wall spacing and apply scarf seams to enhance print accuracy. +- **Sandwich Mode and [Polyholes](https://github.com/SoftFever/OrcaSlicer/wiki/quality_settings_precision#polyholes) Support** + Use varied infill patterns and accurate hole shapes for improved clarity. +- **Overhang and Support Optimization** + Modify geometry for printable overhangs with precise support placement. +- **Granular Controls and Customization** + Fine-tune print speed, layer height, pressure, and temperature with precision. +- **Network Printer Support** + Seamless integration with Klipper, PrusaLink, and OctoPrint for remote control. +- **Mouse Ear Brims & Adaptive Bed Mesh** + Automatic brims and adaptive mesh calibration ensure consistent adhesion. +- **User-Friendly Interface** + Intuitive drag-and-drop design with pre-made profiles for popular printers. +- **Open-Source & Community Driven** + Regular updates fueled by continuous community contributions. +- **Wide Printer Compatibility** + Supports a broad range of printers: Bambu Lab, Prusa, Creality, Voron, and more. +- Additional features can be found in the [change notes](https://github.com/SoftFever/OrcaSlicer/releases/) # Wiki + The wiki below aims to provide a detailed explanation of the slicer settings, including how to maximize their use and how to calibrate and set up your printer. Please note that the wiki is a work in progress. We appreciate your patience as we continue to develop and improve it! -**[Access the wiki here](https://github.com/SoftFever/OrcaSlicer/wiki)** +**[Access the wiki here](https://github.com/SoftFever/OrcaSlicer/wiki)** +**[Contribute to the wiki](https://github.com/SoftFever/OrcaSlicer/wiki/How-to-wiki)** # Download -### Stable Release +## Stable Release 📥 **[Download the Latest Stable Release](https://github.com/SoftFever/OrcaSlicer/releases/latest)** Visit our GitHub Releases page for the latest stable version of Orca Slicer, recommended for most users. -### Nightly Builds +## Nightly Builds 🌙 **[Download the Latest Nightly Build](https://github.com/SoftFever/OrcaSlicer/releases/tag/nightly-builds)** Explore the latest developments in Orca Slicer with our nightly builds. Feedback on these versions is highly appreciated. # How to install -**Windows**: -1. Download the installer for your preferred version from the [releases page](https://github.com/SoftFever/OrcaSlicer/releases). - - *For convenience there is also a portable build available.* - - *If you have troubles to run the build, you might need to install following runtimes:* - - [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/SoftFever/OrcaSlicer/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe) - - [Details of this runtime](https://aka.ms/webview2) - - [Alternative Download Link Hosted by Microsoft](https://go.microsoft.com/fwlink/p/?LinkId=2124703) - - [vcredist2019_x64](https://github.com/SoftFever/OrcaSlicer/releases/download/v1.0.10-sf2/vcredist2019_x64.exe) - - [Alternative Download Link Hosted by Microsoft](https://aka.ms/vs/17/release/vc_redist.x64.exe) - - This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142` +## Windows +Download the **Windows Installer exe** for your preferred version from the [releases page](https://github.com/SoftFever/OrcaSlicer/releases). + + - *For convenience there is also a portable build available.* +
+ Troubleshooting + + - *If you have troubles to run the build, you might need to install following runtimes:* + - [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/SoftFever/OrcaSlicer/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe) + - [Details of this runtime](https://aka.ms/webview2) + - [Alternative Download Link Hosted by Microsoft](https://go.microsoft.com/fwlink/p/?LinkId=2124703) + - [vcredist2019_x64](https://github.com/SoftFever/OrcaSlicer/releases/download/v1.0.10-sf2/vcredist2019_x64.exe) + - [Alternative Download Link Hosted by Microsoft](https://aka.ms/vs/17/release/vc_redist.x64.exe) + - This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142` +
+ +Windows Package Manager: +```shell +winget install --id=SoftFever.OrcaSlicer --e +``` + +## Mac: +1. Download the DMG for your computer: `arm64` version for Apple Silicon and `x86_64` for Intel CPU. +2. Drag OrcaSlicer.app to Application folder. +3. *If you want to run a build from a PR, you also need to follow the instructions below:* +
+ Quarantine -**Mac**: -1. Download the DMG for your computer: `arm64` version for Apple Silicon and `x86_64` for Intel CPU. -2. Drag OrcaSlicer.app to Application folder. -3. *If you want to run a build from a PR, you also need to follow the instructions below:* -
- Option 1 (You only need to do this once. After that the app can be opened normally.): - Step 1: Hold _cmd_ and right click the app, from the context menu choose **Open**. - - Step 2: A warning window will pop up, click _Open_ - - - Option 2: - Execute this command in terminal: `xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app` - ```console - softfever@mac:~$ xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app + - Step 2: A warning window will pop up, click _Open_ + + - Option 2: + Execute this command in terminal: + ```shell + xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app` ``` - - Option 3: + - Option 3: - Step 1: open the app, a warning window will pop up - ![image](./SoftFever_doc/mac_cant_open.png) - - Step 2: in `System Settings` -> `Privacy & Security`, click `Open Anyway`: - ![image](./SoftFever_doc/mac_security_setting.png) + ![mac_cant_open](./SoftFever_doc/mac_cant_open.png) + - Step 2: in `System Settings` -> `Privacy & Security`, click `Open Anyway`: + ![mac_security_setting](./SoftFever_doc/mac_security_setting.png)
- -**Linux (Ubuntu)**: - 1. If you run into trouble executing it, try this command in the terminal: + +## Linux (Ubuntu): + 1. If you run into trouble executing it, try this command in the terminal: `chmod +x /path_to_appimage/OrcaSlicer_Linux.AppImage` - -# How to compile -- Windows 64-bit - - 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 - - You can install most of them by running `brew install cmake gettext libtool automake autoconf texinfo` - - run `build_release_macos.sh` - - To build and debug in Xcode: - - run `Xcode.app` - - open ``build_`arch`/OrcaSlicer.Xcodeproj`` - - menu bar: Product => Scheme => OrcaSlicer - - menu bar: Product => Scheme => Edit Scheme... - - Run => Info tab => Build Configuration: `RelWithDebInfo` - - Run => Options tab => Document Versions: uncheck `Allow debugging when browsing versions` - - menu bar: Product => Run +# How to Compile +All updated build instructions for Windows, macOS, and Linux are now available on the official [OrcaSlicer Wiki - How to build](https://github.com/SoftFever/OrcaSlicer/wiki/How-to-build) page. -- Linux (All Distros) - - Docker - - Dependencies: Docker [Installation Instructions](https://www.docker.com/get-started/), git - - clone this repository `git clone https://github.com/SoftFever/OrcaSlicer` - - run `cd OrcaSlicer` - - run `./DockerBuild.sh` - - To run OrcaSlicer: - - run `./DockerRun.sh` - - For most common errors, open `DockerRun.sh` and read the comments. - - Ubuntu - - Dependencies **Will be auto installed with the shell script**: `libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git texinfo` - - run 'sudo ./BuildLinux.sh -u' - - run './BuildLinux.sh -dsir' +Please refer to the wiki to ensure you're following the latest and most accurate steps for your platform. -# Note: +# Klipper Note: If you're running Klipper, it's recommended to add the following configuration to your `printer.cfg` file. -``` +```gcode # Enable object exclusion [exclude_object] @@ -133,57 +134,52 @@ resolution: 0.1 ``` # Supports -**Orca Slicer** is an open-source project and I'm deeply grateful to all my sponsors and backers. -Their generous support enables me to purchase filaments and other essential 3D printing materials for the project. +**Orca Slicer** is an open-source project and I'm deeply grateful to all my sponsors and backers. +Their generous support enables me to purchase filaments and other essential 3D printing materials for the project. Thank you! :) -### Sponsors: +## Sponsors:
- - QIDI + + QIDI - - BIGTREE TECH + + BIGTREE TECH
-### Backers: -**Ko-fi supporters**: [Backers list](https://github.com/user-attachments/files/16147016/Supporters_638561417699952499.csv) - -## Support me - - - - -[![PayPal](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white)](https://paypal.me/softfever3d) +## Backers: +**Ko-fi supporters** ☕: [Backers list](https://github.com/user-attachments/files/16147016/Supporters_638561417699952499.csv) +## Support me + + + ## Some background -OrcaSlicer is originally forked from Bambu Studio, it was previously known as BambuStudio-SoftFever. - -Bambu Studio is forked from [PrusaSlicer](https://github.com/prusa3d/PrusaSlicer) by Prusa Research, which is from [Slic3r](https://github.com/Slic3r/Slic3r) by Alessandro Ranellucci and the RepRap community. -Orca Slicer incorporates a lot of features from SuperSlicer by @supermerill -Orca Slicer's logo is designed by community member Justin Levine(@freejstnalxndr) +OrcaSlicer was originally forked from Bambu Studio, it was previously known as BambuStudio-SoftFever. +[Bambu Studio](https://github.com/bambulab/BambuStudio) is forked from [PrusaSlicer](https://github.com/prusa3d/PrusaSlicer) by Prusa Research, which is from [Slic3r](https://github.com/Slic3r/Slic3r) by Alessandro Ranellucci and the RepRap community. +Orca Slicer incorporates a lot of features from [SuperSlicer](https://github.com/supermerill/SuperSlicer) by @supermerill +Orca Slicer's logo is designed by community member Justin Levine(@freejstnalxndr). # License -Orca Slicer is licensed under the GNU Affero General Public License, version 3. Orca Slicer is based on Bambu Studio by BambuLab. +**Orca Slicer** is licensed under the GNU Affero General Public License, version 3. Orca Slicer is based on Bambu Studio by BambuLab. -Bambu Studio is licensed under the GNU Affero General Public License, version 3. Bambu Studio is based on PrusaSlicer by PrusaResearch. +**Bambu Studio** is licensed under the GNU Affero General Public License, version 3. Bambu Studio is based on PrusaSlicer by PrusaResearch. -PrusaSlicer is licensed under the GNU Affero General Public License, version 3. PrusaSlicer is owned by Prusa Research. PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci. +**PrusaSlicer** is licensed under the GNU Affero General Public License, version 3. PrusaSlicer is owned by Prusa Research. PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci. -Slic3r is licensed under the GNU Affero General Public License, version 3. Slic3r was created by Alessandro Ranellucci with the help of many other contributors. +**Slic3r** is licensed under the GNU Affero General Public License, version 3. Slic3r was created by Alessandro Ranellucci with the help of many other contributors. The GNU Affero General Public License, version 3 ensures that if you use any part of this software in any way (even behind a web server), your software must be released under the same license. Orca Slicer includes a pressure advance calibration pattern test adapted from Andrew Ellis' generator, which is licensed under GNU General Public License, version 3. Ellis' generator is itself adapted from a generator developed by Sineos for Marlin, which is licensed under GNU General Public License, version 3. The Bambu networking plugin is based on non-free libraries from BambuLab. It is optional to the Orca Slicer and provides extended functionalities for Bambulab printer users. - diff --git a/build_linux.sh b/build_linux.sh new file mode 100755 index 0000000000..eb3c1bc920 --- /dev/null +++ b/build_linux.sh @@ -0,0 +1,217 @@ +#!/usr/bin/env bash + +SCRIPT_NAME=$(basename "$0") +SCRIPT_PATH=$(dirname $(readlink -f ${0})) + +pushd ${SCRIPT_PATH} > /dev/null + +set -e # Exit immediately if a command exits with a non-zero status. + +function check_available_memory_and_disk() { + FREE_MEM_GB=$(free --gibi --total | grep 'Mem' | rev | cut --delimiter=" " --fields=1 | rev) + MIN_MEM_GB=10 + + FREE_DISK_KB=$(df --block-size=1K . | tail -1 | awk '{print $4}') + MIN_DISK_KB=$((10 * 1024 * 1024)) + + if [[ ${FREE_MEM_GB} -le ${MIN_MEM_GB} ]] ; then + echo -e "\nERROR: Orca Slicer Builder requires at least ${MIN_MEM_GB}G of 'available' mem (system has only ${FREE_MEM_GB}G available)" + echo && free --human && echo + echo "Invoke with -r to skip RAM and disk checks." + exit 2 + fi + + if [[ ${FREE_DISK_KB} -le ${MIN_DISK_KB} ]] ; then + echo -e "\nERROR: Orca Slicer Builder requires at least $(echo ${MIN_DISK_KB} |awk '{ printf "%.1fG\n", $1/1024/1024; }') (system has only $(echo ${FREE_DISK_KB} | awk '{ printf "%.1fG\n", $1/1024/1024; }') disk free)" + echo && df --human-readable . && echo + echo "Invoke with -r to skip ram and disk checks." + exit 1 + fi +} + +function usage() { + echo "Usage: ./${SCRIPT_NAME} [-1][-b][-c][-d][-h][-i][-j N][-p][-r][-s][-u]" + echo " -1: limit builds to one core (where possible)" + echo " -j N: limit builds to N cores (where possible)" + echo " -b: build in debug mode" + echo " -c: force a clean build" + echo " -C: enable ANSI-colored compile output (GNU/Clang only)" + echo " -d: download and build dependencies in ./deps/ (build prerequisite)" + echo " -h: prints this help text" + echo " -i: build the Orca Slicer AppImage (optional)" + echo " -p: boost ccache hit rate by disabling precompiled headers (default: ON)" + echo " -r: skip RAM and disk checks (low RAM compiling)" + echo " -s: build the Orca Slicer (optional)" + echo " -u: install system dependencies (asks for sudo password; build prerequisite)" + echo "For a first use, you want to './${SCRIPT_NAME} -u'" + echo " and then './${SCRIPT_NAME} -dsi'" +} + +SLIC3R_PRECOMPILED_HEADERS="ON" + +unset name +while getopts ":1j:bcCdhiprsu" opt ; do + case ${opt} in + 1 ) + export CMAKE_BUILD_PARALLEL_LEVEL=1 + ;; + j ) + export CMAKE_BUILD_PARALLEL_LEVEL=$OPTARG + ;; + b ) + BUILD_DEBUG="1" + ;; + c ) + CLEAN_BUILD=1 + ;; + C ) + COLORED_OUTPUT="-DCOLORED_OUTPUT=ON" + ;; + d ) + BUILD_DEPS="1" + ;; + h ) usage + exit 0 + ;; + i ) + BUILD_IMAGE="1" + ;; + p ) + SLIC3R_PRECOMPILED_HEADERS="OFF" + ;; + r ) + SKIP_RAM_CHECK="1" + ;; + s ) + BUILD_ORCA="1" + ;; + u ) + UPDATE_LIB="1" + ;; + esac +done + +if [ ${OPTIND} -eq 1 ] ; then + usage + exit 0 +fi + +# cmake 4.x compatibility workaround +export CMAKE_POLICY_VERSION_MINIMUM=3.5 + +DISTRIBUTION=$(awk -F= '/^ID=/ {print $2}' /etc/os-release | tr -d '"') +DISTRIBUTION_LIKE=$(awk -F= '/^ID_LIKE=/ {print $2}' /etc/os-release | tr -d '"') +# Check for direct distribution match to Ubuntu/Debian +if [ "${DISTRIBUTION}" == "ubuntu" ] || [ "${DISTRIBUTION}" == "linuxmint" ] ; then + DISTRIBUTION="debian" +# Check if distribution is Debian/Ubuntu-like based on ID_LIKE +elif [[ "${DISTRIBUTION_LIKE}" == *"debian"* ]] || [[ "${DISTRIBUTION_LIKE}" == *"ubuntu"* ]] ; then + DISTRIBUTION="debian" +elif [[ "${DISTRIBUTION_LIKE}" == *"arch"* ]] ; then + DISTRIBUTION="arch" +fi + +if [ ! -f ./linux.d/${DISTRIBUTION} ] ; then + echo "Your distribution \"${DISTRIBUTION}\" is not supported by system-dependency scripts in ./linux.d/" + echo "Please resolve dependencies manually and contribute a script for your distribution to upstream." + exit 1 +else + echo "resolving system dependencies for distribution \"${DISTRIBUTION}\" ..." + source ./linux.d/${DISTRIBUTION} +fi + +echo "FOUND_GTK3=${FOUND_GTK3}" +if [[ -z "${FOUND_GTK3_DEV}" ]] ; then + echo "Error, you must install the dependencies before." + echo "Use option -u with sudo" + exit 1 +fi + +echo "Changing date in version..." +{ + # change date in version + sed --in-place "s/+UNKNOWN/_$(date '+%F')/" version.inc +} +echo "done" + + +if ! [[ -n "${SKIP_RAM_CHECK}" ]] ; then + check_available_memory_and_disk +fi + +if [[ -n "${BUILD_DEPS}" ]] ; then + echo "Configuring dependencies..." + BUILD_ARGS="${DEPS_EXTRA_BUILD_ARGS} -DDEP_WX_GTK3=ON" + if [[ -n "${CLEAN_BUILD}" ]] + then + rm -fr deps/build + fi + if [ ! -d "deps/build" ] + then + mkdir deps/build + fi + if [[ -n "${BUILD_DEBUG}" ]] ; then + # build deps with debug and release else cmake will not find required sources + if [ ! -d "deps/build/release" ] ; then + mkdir deps/build/release + fi + cmake -S deps -B deps/build/release -DSLIC3R_PCH=${SLIC3R_PRECOMPILED_HEADERS} -G Ninja -DDESTDIR="${SCRIPT_PATH}/deps/build/destdir" -DDEP_DOWNLOAD_DIR="${SCRIPT_PATH}/deps/DL_CACHE" ${COLORED_OUTPUT} ${BUILD_ARGS} + cmake --build deps/build/release + BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug" + fi + + echo "cmake -S deps -B deps/build -G Ninja ${BUILD_ARGS}" + cmake -S deps -B deps/build -G Ninja ${COLORED_OUTPUT} ${BUILD_ARGS} + cmake --build deps/build +fi + +if [[ -n "${BUILD_ORCA}" ]] ; then + echo "Configuring OrcaSlicer..." + if [[ -n "${CLEAN_BUILD}" ]] ; then + rm --force --recursive build + fi + BUILD_ARGS="${ORCA_EXTRA_BUILD_ARGS}" + if [[ -n "${FOUND_GTK3_DEV}" ]] ; then + BUILD_ARGS="${BUILD_ARGS} -DSLIC3R_GTK=3" + fi + if [[ -n "${BUILD_DEBUG}" ]] ; then + BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug -DBBL_INTERNAL_TESTING=1" + else + BUILD_ARGS="${BUILD_ARGS} -DBBL_RELEASE_TO_PUBLIC=1 -DBBL_INTERNAL_TESTING=0" + fi + + CMAKE_CMD="cmake -S . -B build -G Ninja \ +-DSLIC3R_PCH=${SLIC3R_PRECOMPILED_HEADERS} \ +-DCMAKE_PREFIX_PATH="${SCRIPT_PATH}/deps/build/destdir/usr/local" \ +-DSLIC3R_STATIC=1 \ +-DORCA_TOOLS=ON \ +${COLORED_OUTPUT} \ +${BUILD_ARGS}" + echo -e "${CMAKE_CMD}" + ${CMAKE_CMD} + echo "done" + echo "Building OrcaSlicer ..." + cmake --build build --target OrcaSlicer + echo "Building OrcaSlicer_profile_validator .." + cmake --build build --target OrcaSlicer_profile_validator + ./run_gettext.sh + echo "done" +fi + +if [[ -n "${BUILD_IMAGE}" || -n "${BUILD_ORCA}" ]] ; then + pushd build > /dev/null + echo "[9/9] Generating Linux app..." + build_linux_image="./src/build_linux_image.sh" + if [[ -e ${build_linux_image} ]] ; then + extra_script_args="" + if [[ -n "${BUILD_IMAGE}" ]] ; then + extra_script_args="-i" + fi + ${build_linux_image} ${extra_script_args} + + echo "done" + fi + popd > /dev/null # build +fi + +popd > /dev/null # ${SCRIPT_PATH} diff --git a/build_release_macos.sh b/build_release_macos.sh index 59cd616c76..95d06833f9 100755 --- a/build_release_macos.sh +++ b/build_release_macos.sh @@ -3,7 +3,7 @@ set -e set -o pipefail -while getopts ":dpa:snt:xbc:hu" opt; do +while getopts ":dpa:snt:xbc:h" opt; do case "${opt}" in d ) export BUILD_TARGET="deps" @@ -37,19 +37,15 @@ while getopts ":dpa:snt:xbc:hu" opt; do 1 ) export CMAKE_BUILD_PARALLEL_LEVEL=1 ;; - u ) - export BUILD_UNIVERSAL="1" - ;; h ) echo "Usage: ./build_release_macos.sh [-d]" echo " -d: Build deps only" - echo " -a: Set ARCHITECTURE (arm64 or x86_64)" + echo " -a: Set ARCHITECTURE (arm64 or x86_64 or universal)" 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" - echo " -u: Build universal binary (both arm64 and x86_64)" echo " -1: Use single job for building" exit 0 ;; @@ -61,16 +57,8 @@ done # Set defaults if [ -z "$ARCH" ]; then - if [ "1." == "$BUILD_UNIVERSAL". ]; then - ARCH="universal" - else ARCH="$(uname -m)" - fi - export ARCH -fi - -if [ "1." == "$BUILD_UNIVERSAL". ]; then - echo "Universal build enabled - will create a combined arm64/x86_64 binary" + export ARCH fi if [ -z "$BUILD_CONFIG" ]; then @@ -119,10 +107,10 @@ echo # fi PROJECT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH" +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" +DEPS_BUILD_DIR="$DEPS_DIR/build/$ARCH" +DEPS="$DEPS_BUILD_DIR/OrcaSlicer_deps" # Fix for Multi-config generators if [ "$SLICER_CMAKE_GENERATOR" == "Xcode" ]; then @@ -132,133 +120,133 @@ else 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}" + # iterate over two architectures: x86_64 and arm64 + for _ARCH in x86_64 arm64; do + # if ARCH is universal or equal to _ARCH + if [ "$ARCH" == "universal" ] || [ "$ARCH" == "$_ARCH" ]; then + + PROJECT_BUILD_DIR="$PROJECT_DIR/build/$_ARCH" + DEPS_BUILD_DIR="$DEPS_DIR/build/$_ARCH" + DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep" + + echo "Building deps..." + ( + set -x + mkdir -p "$DEPS" + cd "$DEPS_BUILD_DIR" + if [ "1." != "$BUILD_ONLY". ]; then + cmake "${DEPS_DIR}" \ + -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 + ) fi - cmake --build . --config "$BUILD_CONFIG" --target deps - ) + done } 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" + cd "$DEPS_DIR" + tar -zcvf "OrcaSlicer_dep_mac_${ARCH}_$(date +"%Y%m%d").tar.gz" "build" ) } 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" - ) + # iterate over two architectures: x86_64 and arm64 + for _ARCH in x86_64 arm64; do + # if ARCH is universal or equal to _ARCH + if [ "$ARCH" == "universal" ] || [ "$ARCH" == "$_ARCH" ]; then - echo "Verify localization with gettext..." - ( - cd "$PROJECT_DIR" - ./run_gettext.sh - ) + PROJECT_BUILD_DIR="$PROJECT_DIR/build/$_ARCH" + DEPS_BUILD_DIR="$DEPS_DIR/build/$_ARCH" + DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep" - 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 - ) + echo "Building slicer for $_ARCH..." + ( + set -x + mkdir -p "$PROJECT_BUILD_DIR" + cd "$PROJECT_BUILD_DIR" + if [ "1." != "$BUILD_ONLY". ]; then + cmake "${PROJECT_DIR}" \ + -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" + ) - # 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 + echo "Verify localization with gettext..." + ( + cd "$PROJECT_DIR" + ./run_gettext.sh + ) - # zip -FSr OrcaSlicer${ver}_Mac_${ARCH}.zip OrcaSlicer.app + 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 + + fi + done } function build_universal() { echo "Building universal binary..." - # Save current ARCH - ORIGINAL_ARCH="$ARCH" - - # Build x86_64 - ARCH="x86_64" - PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH" - DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH" - DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH" - build_deps - build_slicer - - # Build arm64 - ARCH="arm64" - PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH" - DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH" - DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH" - build_deps - build_slicer - - # Restore original ARCH - ARCH="$ORIGINAL_ARCH" - PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH" - DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH" - DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH" + + PROJECT_BUILD_DIR="$PROJECT_DIR/build/$ARCH" # Create universal binary echo "Creating universal binary..." - PROJECT_BUILD_DIR="$PROJECT_DIR/build_Universal" + # PROJECT_BUILD_DIR="$PROJECT_DIR/build_Universal" mkdir -p "$PROJECT_BUILD_DIR/OrcaSlicer" - UNIVERSAL_APP="$PROJECT_BUILD_DIR/OrcaSlicer/Universal_OrcaSlicer.app" + UNIVERSAL_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer.app" rm -rf "$UNIVERSAL_APP" - cp -R "$PROJECT_DIR/build_x86_64/OrcaSlicer/OrcaSlicer.app" "$UNIVERSAL_APP" + cp -R "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app" "$UNIVERSAL_APP" # Get the binary path inside the .app bundle BINARY_PATH="Contents/MacOS/OrcaSlicer" # Create universal binary using lipo lipo -create \ - "$PROJECT_DIR/build_x86_64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \ - "$PROJECT_DIR/build_arm64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \ + "$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \ + "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \ -output "$UNIVERSAL_APP/$BINARY_PATH" echo "Universal binary created at $UNIVERSAL_APP" @@ -266,22 +254,14 @@ function build_universal() { case "${BUILD_TARGET}" in all) - if [ "1." == "$BUILD_UNIVERSAL". ]; then - build_universal - else - build_deps - build_slicer - fi + build_deps + build_slicer ;; deps) build_deps ;; slicer) - if [ "1." == "$BUILD_UNIVERSAL". ]; then - build_universal - else - build_slicer - fi + build_slicer ;; *) echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, all." @@ -289,6 +269,10 @@ case "${BUILD_TARGET}" in ;; esac +if [ "$ARCH" = "universal" ] && [ "$BUILD_TARGET" != "deps" ]; then + build_universal +fi + if [ "1." == "$PACK_DEPS". ]; then pack_deps fi diff --git a/cmake/modules/MacOSXBundleInfo.plist.in b/cmake/modules/MacOSXBundleInfo.plist.in index 3de0ec036c..2f010c8a82 100644 --- a/cmake/modules/MacOSXBundleInfo.plist.in +++ b/cmake/modules/MacOSXBundleInfo.plist.in @@ -37,14 +37,6 @@ orcaslicer - - - CFBundleURLName - BambuStudio Downloads - CFBundleURLSchemes - - bambustudioopen - CFBundleDocumentTypes diff --git a/deps/CGAL/0001-clang19.patch b/deps/CGAL/0001-clang19.patch new file mode 100644 index 0000000000..92a0293735 --- /dev/null +++ b/deps/CGAL/0001-clang19.patch @@ -0,0 +1,59 @@ +--- a/BGL/include/CGAL/boost/graph/iterator.h 2022-10-07 19:04:41 UTC ++++ b/BGL/include/CGAL/boost/graph/iterator.h +@@ -213,18 +213,7 @@ class Halfedge_around_source_iterator { (public) + {} + + #ifndef DOXYGEN_RUNNING +- // design patter: "safe bool" +- // will be replaced by explicit operator bool with C++11 +- typedef void (Halfedge_around_source_iterator::*bool_type)() const; + +- void this_type_does_not_support_comparisons() const {} +- +- operator bool_type() const +- { +- return (! (this->base() == nullptr)) ? +- &Halfedge_around_source_iterator::this_type_does_not_support_comparisons : 0; +- } +- + bool operator==( const Self& i) const { + CGAL_assertion( anchor == anchor); + return ( g == i.g) && ( pos == i.pos) && ( winding == i.winding); +@@ -313,18 +302,7 @@ class Halfedge_around_target_iterator { (public) + {} + + #ifndef DOXYGEN_RUNNING +- // design patter: "safe bool" +- // will be replaced by explicit operator bool with C++11 +- typedef void (Halfedge_around_target_iterator::*bool_type)() const; + +- void this_type_does_not_support_comparisons() const {} +- +- operator bool_type() const +- { +- return (! (this->base() == nullptr)) ? +- &Halfedge_around_target_iterator::this_type_does_not_support_comparisons : 0; +- } +- + bool operator==( const Self& i) const { + CGAL_assertion( anchor == anchor); + return ( g == i.g) && ( pos == i.pos) && ( winding == i.winding); +@@ -411,18 +389,6 @@ class Halfedge_around_face_iterator { (public) + const value_type& operator * ( ) const { return pos; } + pointer operator -> ( ) { return &pos; } + const value_type* operator -> ( ) const { return &pos; } +- +- // design patter: "safe bool" +- // will be replaced by explicit operator bool with C++11 +- typedef void (Halfedge_around_face_iterator::*bool_type)() const; +- +- void this_type_does_not_support_comparisons() const {} +- +- operator bool_type() const +- { +- return (! (this->base() == nullptr)) ? +- &Halfedge_around_face_iterator::this_type_does_not_support_comparisons : 0; +- } + + bool operator==( const Self& i) const { + CGAL_assertion( anchor == anchor); diff --git a/deps/CGAL/CGAL.cmake b/deps/CGAL/CGAL.cmake index 18fee7c15e..73eee6701b 100644 --- a/deps/CGAL/CGAL.cmake +++ b/deps/CGAL/CGAL.cmake @@ -1,3 +1,7 @@ +if (IN_GIT_REPO) + set(CGAL_DIRECTORY_FLAG --directory ${BINARY_DIR_REL}/dep_CGAL-prefix/src/dep_CGAL) +endif () + orcaslicer_add_cmake_project( CGAL # GIT_REPOSITORY https://github.com/CGAL/cgal.git @@ -5,6 +9,7 @@ orcaslicer_add_cmake_project( # For whatever reason, this keeps downloading forever (repeats downloads if finished) URL https://github.com/CGAL/cgal/archive/refs/tags/v5.4.zip URL_HASH SHA256=d7605e0a5a5ca17da7547592f6f6e4a59430a0bc861948974254d0de43eab4c0 + PATCH_COMMAND git apply ${CGAL_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-clang19.patch DEPENDS dep_Boost dep_GMP dep_MPFR ) diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index b43bfa153f..dbb380e2d6 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -45,7 +45,7 @@ if (NPROC EQUAL 0) endif () set(DESTDIR "${CMAKE_CURRENT_BINARY_DIR}/destdir" CACHE PATH "Destination directory") -set(DEP_DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR}/../DL_CACHE CACHE PATH "Path for downloaded source packages.") +set(DEP_DOWNLOAD_DIR ${CMAKE_CURRENT_SOURCE_DIR}/DL_CACHE CACHE PATH "Path for downloaded source packages.") set(FLATPAK FALSE CACHE BOOL "Toggles various build settings for flatpak, like /usr/local in DESTDIR or not building wxwidgets") if (NOT FLATPAK) set(DESTDIR "${DESTDIR}/usr/local/") @@ -248,7 +248,6 @@ if(FLATPAK) find_package(EXPAT) find_package(CURL) find_package(JPEG) - find_package(TIFF) find_package(Freetype) find_package(OpenSSL 1.1...<3.2) find_package(CURL) @@ -321,12 +320,6 @@ if (NOT JPEG_FOUND) set(JPEG_PKG dep_JPEG) endif() -set(TIFF_PKG "") -if (NOT TIFF_FOUND) - include(TIFF/TIFF.cmake) - set(TIFF_PKG "dep_TIFF") -endif() - # flatpak builds wxwidgets separately set(WXWIDGETS_PKG "") if (NOT FLATPAK) diff --git a/deps/GLEW/glew/README.md b/deps/GLEW/glew/README.md index bfec3064de..475c69afc8 100644 --- a/deps/GLEW/glew/README.md +++ b/deps/GLEW/glew/README.md @@ -22,7 +22,6 @@ https://github.com/nigels-com/glew * [Install build tools](#install-build-tools) * [Build](#build-1) * [Linux EGL](#linux-egl) - * [Linux OSMesa](#linux-osmesa) * [Linux mingw-w64](#linux-mingw-w64) * [Using cmake](#using-cmake) * [Install build tools](#install-build-tools-1) @@ -95,11 +94,6 @@ _Note: you may need to call `make` in the **auto** folder first_ $ sudo apt install libegl1-mesa-dev $ make SYSTEM=linux-egl -##### Linux OSMesa - - $ sudo apt install libosmesa-dev - $ make SYSTEM=linux-osmesa - ##### Linux mingw-w64 $ sudo apt install mingw-w64 @@ -140,7 +134,6 @@ RedHat/CentOS/Fedora: `$ sudo yum install libXmu-devel libXi-devel libGL-devel c | --------------- | ----------- | | BUILD_UTILS | Build the `glewinfo` and `visualinfo` executables. | | GLEW_REGAL | Build in Regal mode. | -| GLEW_OSMESA | Build in off-screen Mesa mode. | | BUILD_FRAMEWORK | Build as MacOSX Framework. Setting `CMAKE_INSTALL_PREFIX` to `/Library/Frameworks` is recommended. | ### Windows diff --git a/deps/GMP/0001-GMP_GCC15.patch b/deps/GMP/0001-GMP_GCC15.patch new file mode 100644 index 0000000000..e005120acd --- /dev/null +++ b/deps/GMP/0001-GMP_GCC15.patch @@ -0,0 +1,32 @@ +--- GMP/acinclude.m4 2025-05-14 18:50:11.396354745 -0400 ++++ GMP/acinclude.m4.2 2025-05-14 18:57:20.757853503 -0400 +@@ -609,7 +609,7 @@ + + #if defined (__GNUC__) && ! defined (__cplusplus) + typedef unsigned long long t1;typedef t1*t2; +-void g(){} ++void g(int,t1 const*,t1,t2,t1 const*,int){} + void h(){} + static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0) + {t1 c,x,r;int i;if(v0){c=1;for(i=1;iIsValid()) { +From 7236e83dcc1e7284e66dc61e612154617ef715d6 Mon Sep 17 00:00:00 2001 +From: dpasukhi +Date: Tue, 27 Aug 2024 11:33:29 +0100 +Subject: [PATCH] 0033808: Coding - FreeType Use unsigned point and contour + indexing in `FT_Outline` + +Changes to auto instead of specific type +--- + src/StdPrs/StdPrs_BRepFont.cxx | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/StdPrs/StdPrs_BRepFont.cxx b/src/StdPrs/StdPrs_BRepFont.cxx +index ab2d9b3c9f..cd701879b1 100644 +--- a/src/StdPrs/StdPrs_BRepFont.cxx ++++ b/src/StdPrs/StdPrs_BRepFont.cxx +@@ -457,7 +457,7 @@ Standard_Boolean StdPrs_BRepFont::renderGlyph (const Standard_Utf32Char theChar, + for (short aContour = 0, aStartIndex = 0; aContour < anOutline->n_contours; ++aContour) + { + const FT_Vector* aPntList = &anOutline->points[aStartIndex]; +- const char* aTags = &anOutline->tags[aStartIndex]; ++ const auto* aTags = &anOutline->tags[aStartIndex]; + const short anEndIndex = anOutline->contours[aContour]; + const short aPntsNb = (anEndIndex - aStartIndex) + 1; + aStartIndex = anEndIndex + 1; diff --git a/deps/OpenCV/0002-clang19-macos.patch b/deps/OpenCV/0002-clang19-macos.patch new file mode 100644 index 0000000000..84eb522ea3 --- /dev/null +++ b/deps/OpenCV/0002-clang19-macos.patch @@ -0,0 +1,54 @@ +From 893b8113f04d408cc6177c6de19c9889a48faa24 Mon Sep 17 00:00:00 2001 +From: Zixu Wang +Date: Thu, 18 Jan 2024 11:12:00 -0800 +Subject: [PATCH] Fix unused platform check and configuration for macOS + +In a similar manner as zlib (https://github.com/madler/zlib/pull/895), +libpng contains a header configuration that's no longer valid and +hasn't been exercised for the macOS target. + +- The target OS conditional macros are misused. Specifically + `TARGET_OS_MAC` covers all Apple targets, including iOS, and it + should not be checked with `#if defined` as they would always be + defined (to either 1 or 0) on Apple platforms. +- `#include ` no longer works for the macOS target and results + in a compilation failure. macOS ships all required functions in + `math.h`, and clients should use `math.h` instead. + +This problem has not been noticed until a recent extension in clang +(https://github.com/llvm/llvm-project/pull/74676) exposed the issue +and broke libpng builds on Apple platforms. The failure can be +reproduced now by adding `#include ` before the +block. + +Signed-off-by: Cosmin Truta +--- + AUTHORS | 2 ++ + pngpriv.h | 14 ++------------ + 2 files changed, 4 insertions(+), 12 deletions(-) + +diff --git a/3rdparty/libpng/pngpriv.h b/3rdparty/libpng/pngpriv.h +index 6c7280cf53..190eb85cbf 100644 +--- a/3rdparty/libpng/pngpriv.h ++++ b/3rdparty/libpng/pngpriv.h +@@ -556,18 +556,8 @@ + */ + # include + +-# if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \ +- defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC) +- /* We need to check that hasn't already been included earlier +- * as it seems it doesn't agree with , yet we should really use +- * if possible. +- */ +-# if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__) +-# include +-# endif +-# else +-# include +-# endif ++# include ++ + # if defined(_AMIGA) && defined(__SASC) && defined(_M68881) + /* Amiga SAS/C: We must include builtin FPU functions when compiling using + * MATH=68881 diff --git a/deps/OpenCV/OpenCV.cmake b/deps/OpenCV/OpenCV.cmake index 23cbafa2a6..3794094fcf 100644 --- a/deps/OpenCV/OpenCV.cmake +++ b/deps/OpenCV/OpenCV.cmake @@ -11,7 +11,7 @@ endif () orcaslicer_add_cmake_project(OpenCV URL https://github.com/opencv/opencv/archive/refs/tags/4.6.0.tar.gz URL_HASH SHA256=1ec1cba65f9f20fe5a41fda1586e01c70ea0c9a6d7b67c9e13edf0cfe2239277 - PATCH_COMMAND git apply ${OpenCV_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-vs2022.patch + PATCH_COMMAND git apply ${OpenCV_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-vs2022.patch ${CMAKE_CURRENT_LIST_DIR}/0002-clang19-macos.patch CMAKE_ARGS -DBUILD_SHARED_LIBS=0 -DBUILD_PERE_TESTS=OFF diff --git a/deps/OpenVDB/0001-clang19.patch b/deps/OpenVDB/0001-clang19.patch new file mode 100644 index 0000000000..f9843ba267 --- /dev/null +++ b/deps/OpenVDB/0001-clang19.patch @@ -0,0 +1,29 @@ +--- a/openvdb/openvdb/tree/NodeManager.h 2023-11-01 20:31:11 UTC ++++ b/openvdb/openvdb/tree/NodeManager.h +@@ -327,7 +327,7 @@ class NodeList (private) + void operator()(const NodeRange& range) const + { + for (typename NodeRange::Iterator it = range.begin(); it; ++it) { +- OpT::template eval(mNodeOp, it); ++ OpT::eval(mNodeOp, it); + } + } + const NodeOp mNodeOp; +@@ -347,7 +347,7 @@ class NodeList (private) + void operator()(const NodeRange& range) const + { + for (typename NodeRange::Iterator it = range.begin(); it; ++it) { +- OpT::template eval(mNodeOp, it); ++ OpT::eval(mNodeOp, it); + } + } + const NodeOp& mNodeOp; +@@ -372,7 +372,7 @@ class NodeList (private) + void operator()(const NodeRange& range) + { + for (typename NodeRange::Iterator it = range.begin(); it; ++it) { +- OpT::template eval(*mNodeOp, it); ++ OpT::eval(*mNodeOp, it); + } + } + void join(const NodeReducer& other) diff --git a/deps/OpenVDB/OpenVDB.cmake b/deps/OpenVDB/OpenVDB.cmake index 7080b8b5d5..df6ad9c913 100644 --- a/deps/OpenVDB/OpenVDB.cmake +++ b/deps/OpenVDB/OpenVDB.cmake @@ -6,10 +6,15 @@ else() set(_build_static ON) endif() +if (IN_GIT_REPO) + set(OPENVDB_DIRECTORY_FLAG --directory ${BINARY_DIR_REL}/dep_OpenVDB-prefix/src/dep_OpenVDB) +endif () + orcaslicer_add_cmake_project(OpenVDB # support vs2022, update to 8.2 URL https://github.com/tamasmeszaros/openvdb/archive/a68fd58d0e2b85f01adeb8b13d7555183ab10aa5.zip URL_HASH SHA256=f353e7b99bd0cbfc27ac9082de51acf32a8bc0b3e21ff9661ecca6f205ec1d81 + PATCH_COMMAND git apply ${OPENVDB_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-clang19.patch DEPENDS dep_TBB dep_Blosc dep_OpenEXR dep_Boost CMAKE_ARGS -DCMAKE_POSITION_INDEPENDENT_CODE=ON diff --git a/deps/PNG/0002-clang19-macos.patch b/deps/PNG/0002-clang19-macos.patch new file mode 100644 index 0000000000..69fd888a81 --- /dev/null +++ b/deps/PNG/0002-clang19-macos.patch @@ -0,0 +1,29 @@ +--- a/pngpriv.h 2025-04-20 19:36:04.000000000 ++++ b/pngpriv.h 2025-04-20 19:35:55.000000000 +@@ -511,24 +511,14 @@ + * DBL_DIG Maximum number of decimal digits (can be set to any constant) + * DBL_MIN Smallest normalized fp number (can be set to an arbitrary value) + * DBL_MAX Maximum floating point number (can be set to an arbitrary value) + */ + # include + +-# if (defined(__MWERKS__) && defined(macintosh)) || defined(applec) || \ +- defined(THINK_C) || defined(__SC__) || defined(TARGET_OS_MAC) +- /* We need to check that hasn't already been included earlier +- * as it seems it doesn't agree with , yet we should really use +- * if possible. +- */ +-# if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__) +-# include +-# endif +-# else +-# include +-# endif ++# include ++ + # if defined(_AMIGA) && defined(__SASC) && defined(_M68881) + /* Amiga SAS/C: We must include builtin FPU functions when compiling using + * MATH=68881 + */ + # include + # endif diff --git a/deps/PNG/PNG.cmake b/deps/PNG/PNG.cmake index 313a147bab..332fdfe274 100644 --- a/deps/PNG/PNG.cmake +++ b/deps/PNG/PNG.cmake @@ -12,7 +12,7 @@ if(APPLE AND IS_CROSS_COMPILE) GIT_TAG v1.6.35 DEPENDS ${ZLIB_PKG} PATCH_COMMAND ${GIT_EXECUTABLE} checkout -f -- . && git clean -df && - ${GIT_EXECUTABLE} apply --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/macos-arm64.patch + ${GIT_EXECUTABLE} apply --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/macos-arm64.patch ${CMAKE_CURRENT_LIST_DIR}/0002-clang19-macos.patch CMAKE_ARGS -DPNG_SHARED=OFF -DPNG_STATIC=ON @@ -24,7 +24,7 @@ if(APPLE AND IS_CROSS_COMPILE) else () set(_patch_step "") if (APPLE) - set(_patch_step PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/PNG.patch) + set(_patch_step PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/PNG.patch ${CMAKE_CURRENT_LIST_DIR}/0002-clang19-macos.patch) endif () orcaslicer_add_cmake_project(PNG # GIT_REPOSITORY https://github.com/glennrp/libpng.git diff --git a/deps/TIFF/TIFF.cmake b/deps/TIFF/TIFF.cmake deleted file mode 100644 index 01d72428b9..0000000000 --- a/deps/TIFF/TIFF.cmake +++ /dev/null @@ -1,33 +0,0 @@ -find_package(OpenGL QUIET REQUIRED) - -if (APPLE) - message(STATUS "Compiling TIFF for macos ${CMAKE_SYSTEM_VERSION}.") - orcaslicer_add_cmake_project(TIFF - URL https://gitlab.com/libtiff/libtiff/-/archive/v4.3.0/libtiff-v4.3.0.zip - URL_HASH SHA256=4fca1b582c88319f3ad6ecd5b46320eadaf5eb4ef6f6c32d44caaae4a03d0726 - DEPENDS ${ZLIB_PKG} ${PNG_PKG} dep_JPEG - CMAKE_ARGS - -Dlzma:BOOL=OFF - -Dwebp:BOOL=OFF - -Djbig:BOOL=OFF - -Dzstd:BOOL=OFF - -Dlibdeflate:BOOL=OFF - -Dpixarlog:BOOL=OFF - ) -else() - orcaslicer_add_cmake_project(TIFF - URL https://gitlab.com/libtiff/libtiff/-/archive/v4.1.0/libtiff-v4.1.0.zip - URL_HASH SHA256=c56edfacef0a60c0de3e6489194fcb2f24c03dbb550a8a7de5938642d045bd32 - DEPENDS ${ZLIB_PKG} ${PNG_PKG} dep_JPEG - CMAKE_ARGS - -Dlzma:BOOL=OFF - -Dwebp:BOOL=OFF - -Djbig:BOOL=OFF - -Dzstd:BOOL=OFF - -Dpixarlog:BOOL=OFF - ) - -endif() - - - diff --git a/deps/wxWidgets/wxWidgets.cmake b/deps/wxWidgets/wxWidgets.cmake index 1097e6cfc0..b7fc087a09 100644 --- a/deps/wxWidgets/wxWidgets.cmake +++ b/deps/wxWidgets/wxWidgets.cmake @@ -26,7 +26,7 @@ orcaslicer_add_cmake_project( wxWidgets GIT_REPOSITORY "https://github.com/SoftFever/Orca-deps-wxWidgets" GIT_SHALLOW ON - DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${TIFF_PKG} ${JPEG_PKG} + DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${JPEG_PKG} CMAKE_ARGS -DwxBUILD_PRECOMP=ON ${_wx_toolkit} @@ -52,7 +52,7 @@ orcaslicer_add_cmake_project( -DwxUSE_LIBPNG=sys -DwxUSE_ZLIB=sys -DwxUSE_LIBJPEG=sys - -DwxUSE_LIBTIFF=sys + -DwxUSE_LIBTIFF=OFF -DwxUSE_NANOSVG=OFF -DwxUSE_EXPAT=sys ) diff --git a/doc/Calibration.md b/doc/Calibration.md deleted file mode 100644 index 58204657d7..0000000000 --- a/doc/Calibration.md +++ /dev/null @@ -1,162 +0,0 @@ -- [Flow rate](#Flow-rate) -- [Pressure Advance](#Pressure-Advance) - 1. [Line method](#Line-method) - 2. [Pattern method](#Pattern-method) - 3. [Tower method](#Tower-method) -- [Temp tower](#Temp-tower) -- [Retraction test](#Retraction-test) -- [Orca Tolerance Test](#Orca-Tolerance-Test) -- [Advanced calibration](#Advanced-Calibration) - 1. [Max Volumetric speed](#Max-Volumetric-speed) - 2. [VFA] - -> [!IMPORTANT] -> After completing the calibration process, remember to create a new project in order to exit the calibration mode. - -> [!TIP] -> @ItsDeidara has made a webpage to help with the calculation. Check it out if those equations give you a headache [here](https://orcalibrate.com/). - -# Flow rate -> [!WARNING] -> For Bambulab X1/X1C users, make sure you do not select the 'Flow calibration' option. -> -> ![uncheck](https://user-images.githubusercontent.com/103989404/221345187-3c317a46-4d85-4221-99b9-adb5c7f48026.jpeg) - -![flowrate](./images/flow-calibration.gif) - -Calibrating the flow rate involves a two-step process. -Steps -1. Select the printer, filament, and process you would like to use for the test. -2. Select `Pass 1` in the `Calibration` menu -3. A new project consisting of nine blocks will be created, each with a different flow rate modifier. Slice and print the project. -4. Examine the blocks and determine which one has the smoothest top surface. -![flowrate-pass1_resize](https://user-images.githubusercontent.com/103989404/210138585-98821729-b19e-4452-a08d-697f147d36f0.jpg) -![0-5](https://user-images.githubusercontent.com/103989404/210138714-63daae9c-6778-453a-afa9-9a976d61bfd5.jpg) - -5. Update the flow ratio in the filament settings using the following equation: `FlowRatio_old*(100 + modifier)/100`. If your previous flow ratio was `0.98` and you selected the block with a flow rate modifier of `+5`, the new value should be calculated as follows: `0.98x(100+5)/100 = 1.029`.** Remember** to save the filament profile. -6. Perform the `Pass 2` calibration. This process is similar to `Pass 1`, but a new project with ten blocks will be generated. The flow rate modifiers for this project will range from `-9 to 0`. -7. Repeat steps 4. and 5. In this case, if your previous flow ratio was 1.029 and you selected the block with a flow rate modifier of -6, the new value should be calculated as follows: `1.029x(100-6)/100 = 0.96726`. **Remember** to save the filament profile. - -![pass2](https://user-images.githubusercontent.com/103989404/210139072-f2fa91a6-4e3b-4d2a-81f2-c50155e1ff6d.jpg) -![-6](https://user-images.githubusercontent.com/103989404/210139131-ee224146-b242-4c1c-ac96-35ef0ca591f1.jpg) -![image](./images/flowcalibration_update_flowrate.jpg) - -# Pressure Advance - -Orca Slicer includes three approaches for calibrating the pressure advance value. Each method has its own advantages and disadvantages. It is important to note that each method has two versions: one for a direct drive extruder and one for a Bowden extruder. Make sure to select the appropriate version for your test. - -> [!WARNING] -> For Marlin: Linear advance must be enabled in firmware (M900). **Not all printers have it enabled by default.** - -> [!WARNING] -> For Bambulab X1/X1C users, make sure you do not select the 'Flow calibration' option when printings. -> -> ![uncheck](https://user-images.githubusercontent.com/103989404/221345187-3c317a46-4d85-4221-99b9-adb5c7f48026.jpeg) - -### Line method - -The line method is quick and straightforward to test. However, its accuracy highly depends on your first layer quality. It is suggested to turn on the bed mesh leveling for this test. -Steps: - 1. Select the printer, filament, and process you would like to use for the test. - 2. Print the project and check the result. You can select the value of the most even line and update your PA value in the filament settings. - 3. In this test, a PA value of `0.016` appears to be optimal. -![pa_line](https://user-images.githubusercontent.com/103989404/210139630-8fd189e7-aa6e-4d03-90ab-84ab0e781f81.gif) - -Screenshot 2022-12-31 at 12 11 10 PM - -![line_0 016](https://user-images.githubusercontent.com/103989404/210140046-dc5adf6a-42e8-48cd-950c-5e81558da967.jpg) -![image](https://user-images.githubusercontent.com/103989404/210140079-61a4aba4-ae01-4988-9f8e-2a45a90cdb7d.png) - -### Pattern method - -The pattern method is adapted from [Andrew Ellis' pattern method generator](https://ellis3dp.com/Pressure_Linear_Advance_Tool/), which was itself derived from the [Marlin pattern method](https://marlinfw.org/tools/lin_advance/k-factor.html) developed by [Sineos](https://github.com/Sineos/k-factorjs). - -[Instructions for using and reading the pattern method](https://ellis3dp.com/Print-Tuning-Guide/articles/pressure_linear_advance/pattern_method.html) are provided in [Ellis' Print Tuning Guide](https://ellis3dp.com/Print-Tuning-Guide/), with only a few Orca Slicer differences to note. - -Test configuration window allow user to generate one or more tests in a single projects. Multiple tests will be placed on each plate with extra plates added if needed. - -1. Single test \ -![PA pattern single test](./images/pa/pa-pattern-single.png) -2. Batch mode testing (multiple tests on a sinle plate) \ -![PA pattern batch mode](./images/pa/pa-pattern-batch.png) - -Once test generated, one or more small rectangular prisms could be found on the plate, one for each test case. This object serves a few purposes: - -1. The test pattern itself is added in as custom G-Code at each layer, same as you could do by hand actually. The rectangular prism gives us the layers in which to insert that G-Code. This also means that **you'll see the full test pattern when you move to the Preview pane**: -![PA pattern batch mode plater](./images/pa/pa-pattern-batch-plater.png) -2. The prism acts as a handle, enabling you to move the test pattern wherever you'd like on the plate by moving the prism -3. Each test object is pre-configured with target parameters which are reflected in the objects name. However, test parameters may be adjusted for each prism individually by referring to the object list pane: -![PA pattern batch mode object list](./images/pa/pa-pattern-batch-objects.png) - -Next, Ellis' generator provided the ability to adjust specific printer, filament, and print profile settings. You can make these same changes in Orca Slicer by adjusting the settings in the Prepare pane as you would with any other print. When you initiate the calibration test, Ellis' default settings are applied. A few things to note about these settings: - -1. Ellis specified line widths as a percent of filament diameter. The Orca pattern method does the same to provide its suggested defaults, making use of Ellis' percentages in combination with your specified nozzle diameter -2. In terms of line width, the pattern only makes use of the `Default` and `First layer` widths -3. In terms of speed, the pattern only uses the `First layer speed -> First layer` and `Other layers speed -> Outer wall` speeds -4. The infill pattern beneath the numbers cannot be changed becuase it's not actually an infill pattern pulled from the settings. All of the pattern G-Code is custom written, so that "infill" is, effectively, hand-drawn and so not processed through the usual channels that would enable Orca to recognize it as infill - -### Tower method - -The tower method may take a bit more time to complete, but it does not rely on the quality of the first layer. -The PA value for this test will be increased by 0.002 for every 1 mm increase in height. (**NOTE** 0.02 for Bowden) -Steps: - 1. Select the printer, filament, and process you would like to use for the test. - 2. Examine each corner of the print and mark the height that yields the best overall result. - 3. I selected a height of 8 mm for this case, so the pressure advance value should be calculated as `PressureAdvanceStart+(PressureAdvanceStep x measured)` example: `0+(0.002 x 8) = 0.016`. -![tower](https://user-images.githubusercontent.com/103989404/210140231-e886b98d-280a-4464-9781-c74ed9b7d44e.jpg) - -![tower_measure](https://user-images.githubusercontent.com/103989404/210140232-885b549b-e3b8-46b9-a24c-5229c9182408.jpg) - -# Temp tower -![image](./images/temp_tower_test.gif) -Temp tower is a straightforward test. The temp tower is a vertical tower with multiple blocks, each printed at a different temperature. Once the print is complete, we can examine each block of the tower and determine the optimal temperature for the filament. The optimal temperature is the one that produces the highest quality print with the least amount of issues, such as stringing, layer adhesion, warping (overhang), and bridging. -![temp_tower](https://user-images.githubusercontent.com/103989404/221344534-40e1a629-450c-4ad5-a051-8e240e261a51.jpeg) - -# Retraction test -![image](./images/retraction_test.gif) -This test generates a retraction tower automatically. The retraction tower is a vertical structure with multiple notches, each printed at a different retraction length. After the print is complete, we can examine each section of the tower to determine the optimal retraction length for the filament. The optimal retraction length is the shortest one that produces the cleanest tower. -![image](./images/retraction_test_dlg.png) -In the dialog, you can select the start and end retraction length, as well as the retraction length increment step. The default values are 0mm for the start retraction length, 2mm for the end retraction length, and 0.1mm for the step. These values are suitable for most direct drive extruders. However, for Bowden extruders, you may want to increase the start and end retraction lengths to 1mm and 6mm, respectively, and set the step to 0.2mm. - -**Note**: When testing filaments such as PLA or ABS that have minimal oozing, the retraction settings can be highly effective. You may find that the retraction tower appears clean right from the start. In such situations, setting the retraction length to 0.2mm - 0.4mm using Orca Slicer should suffice. -On the other hand, if there is still a lot of stringing at the top of the tower, it is recommended to dry your filament and ensure that your nozzle is properly installed without any leaks. -![image](./images/retraction_test_print.jpg) - -# Orca Tolerance Test -This tolerance test is specifically designed to assess the dimensional accuracy of your printer and filament. The model comprises a base and a hexagon tester. The base contains six hexagon hole, each with a different tolerance: 0.0mm, 0.05mm, 0.1mm, 0.2mm, 0.3mm, and 0.4mm. The dimensions of the hexagon tester are illustrated in the image. -![image](./images/tolerance_hole.jpg) - -You can assess the tolerance using either an M6 Allen key or the printed hexagon tester. -![image](./images/OrcaToleranceTes_m6.jpg) -![image](./images/OrcaToleranceTest_print.jpg) - -# Advanced Calibration - -## Max Volumetric speed -This is a test designed to calibrate the maximum volumetric speed of the specific filament. The generic or 3rd party filament types may not have the correct volumetric flow rate set in the filament. This test will help you to find the maximum volumetric speed of the filament. - -You will be promted to enter the settings for the test: start volumetric speed, end volumentric speed, and step. It is recommended to use the default values (5mm³/s start, 20mm³/s end, with a step of 0.5), unless you already have an idea of the lower or upper limit for your filament. Select "OK", slice the plate, and send it to the printer. - -Once printed, take note of where the layers begin to fail and where the quality begins to suffer. Pay attention to changes from matte to shiny as well. - -![image](./images/vmf_measurement_point.jpg) - -Using calipers or a ruler, measure the height of the print at that point. Use the following calculation to determine the correct max flow value: `start + (height-measured * step)` . For example in the photo below, and using the default setting values, the print quality began to suffer at 19mm measured, so the calculation would be: `5 + (19 * 0.5)` , or `13mm³/s` using the default values. Enter your number into the "Max volumetric speed" value in the filament settings. - -![image](./images/caliper_sample_mvf.jpg) - -You can also return to OrcaSlicer in the "Preview" tab, make sure the color scheme "flow" is selected. Scroll down to the layer height that you measured, and click on the toolhead slider. This will indicate the max flow level for your filmanet. - -![image](./images/max_volumetric_flow.jpg) - -> [!NOTE] -> You may also choose to conservatively reduce the flow by 5-10% to ensure print quality. - -*** -*Credits:* -- *The Flowrate test and retraction test is inspired by [SuperSlicer](https://github.com/supermerill/SuperSlicer)* -- *The PA Line method is inspired by [K-factor Calibration Pattern](https://marlinfw.org/tools/lin_advance/k-factor.html)* -- *The PA Tower method is inspired by [Klipper](https://www.klipper3d.org/Pressure_Advance.html)* -- *The temp tower model is remixed from [Smart compact temperature calibration tower](https://www.thingiverse.com/thing:2729076) -- *The max flowrate test was inspired by Stefan(CNC Kitchen), and the model used in the test is a remix of his [Extrusion Test Structure](https://www.printables.com/model/342075-extrusion-test-structure). -- *ChatGPT* ;) diff --git a/doc/Chamber-temperature.md b/doc/Chamber-temperature.md deleted file mode 100644 index ea268532bf..0000000000 --- a/doc/Chamber-temperature.md +++ /dev/null @@ -1,52 +0,0 @@ -OrcaSlicer use `M141/M191` command to control active chamber heater. - -If `Activate temperature control` is checked, OrcaSlicer will insert `M191` command at the beginning of the gcode(before `Machine G-code`). -![image](./images/activate_chamber_heater.jpg) -*Note: If the machine is equipped with an auxiliary fan, OrcaSlicer will automatically activate the fan during the heating period to help circulate air in the chamber.* - - -There are two chamber temperature variables available that we can use in `Machine G-code` to control the chamber temperature, if you prefer: -To access the chamber temperature set in the first filament, use: -`M191 S{chamber_temperature[0]}` -To use the overall chamber temperature, which is the highest chamber temperature set across all filaments, use: -`M191 S{overall_chamber_temperature}` - - ---------------------------Klipper-------------------------- -If you are using Klipper, you can define these macros to control the active chamber heater. -Bellow is a reference configuration for Klipper. -*Note: Don't forget to change the pin name/values to the actual values you are using in the configuration* - -``` -[heater_generic chamber_heater] -heater_pin:PB10 -max_power:1.0 -# Orca note: here the temperature sensor should be the sensor you are using for chamber temperature, not the PTC sensor -sensor_type:NTC 100K MGB18-104F39050L32 -sensor_pin:PA1 -control = pid -pid_Kp = 63.418 -pid_ki = 0.960 -pid_kd = 1244.716 -min_temp:0 -max_temp:70 - -[gcode_macro M141] -gcode: - SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={params.S|default(0)} - -[gcode_macro M191] -gcode: - {% set s = params.S|float %} - {% if s == 0 %} - # If target temperature is 0, do nothing - M117 Chamber heating cancelled - {% else %} - SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={s} - # Orca: uncomment the following line if you want to use heat bed to assist chamber heating - # M140 S100 - TEMPERATURE_WAIT SENSOR="heater_generic chamber_heater" MINIMUM={s-1} MAXIMUM={s+1} - M117 Chamber at target temperature - {% endif %} - -``` \ No newline at end of file diff --git a/doc/Home.md b/doc/Home.md index 0abdd8fc01..9d775f3cb6 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -1,39 +1,93 @@ # Welcome to the OrcaSlicer WIKI! -Orca slicer is a powerful open source slicer for FFF (FDM) 3D Printers. This wiki page aims to provide an detailed explanation of the slicer settings, how to get the most out of them as well as how to calibrate and setup your printer. +Orca slicer is a powerful open source slicer for FFF (FDM) 3D Printers. This wiki page aims to provide an detailed explanation of the slicer settings, how to get the most out of them as well as how to calibrate and setup your printer. -The Wiki is work in progress so bear with us while we get it up and running! +- [Prepare](#prepare) +- [Print Settings, Tips and Tricks](#print-settings-tips-and-tricks) + - [Quality Settings](#quality-settings) + - [Speed Settings](#speed-settings) + - [Strength Settings](#strength-settings) +- [Material Settings](#material-settings) + - [Printer Settings](#printer-settings) +- [Printer Calibration](#printer-calibration) +- [Developer Section](#developer-section) + +> [!NOTE] +> The Wiki is **Work In Progress** so bear with us while we get it up and running! +> Please consider contributing to the wiki following the [How to contribute to the wiki](How-to-wiki) guide. + +## Prepare + +First steps to prepare your model/s for printing. + +- [STL Transformation](stl-transformation) + +## Print Settings, Tips and Tricks -## Print Settings, Tips and Tricks (Work In Progress) The below sections provide a detailed settings explanation as well as tips and tricks in setting these for optimal print results. ### Quality Settings + - [Layer Height Settings](quality_settings_layer_height) - [Line Width Settings](quality_settings_line_width) - [Seam Settings](quality_settings_seam) -- [Precise wall](Precise-wall) +- [Precision](quality_settings_precision) + - [Precise Wall](quality_settings_precision#precise-wall) + - [Precise Z Height](quality_settings_precision#precise-z-height) + - [Slice gap closing radius](quality_settings_precision#slice-gap-closing-radius) + - [Resolution](quality_settings_precision#resolution) + - [Arc fitting](quality_settings_precision#arc-fitting) + - [X-Y Compensation](quality_settings_precision#x-y-compensation) + - [Elephant foot compensation](quality_settings_precision#elephant-foot-compensation) + - [Precise wall](quality_settings_precision#precise-wall) + - [Precise Z Height](quality_settings_precision#precise-z-height) + - [Polyholes](quality_settings_precision#polyholes) +- [Wall generator](quality_settings_wall_generator) ### Speed Settings -- [Extrusion rate smoothing](extrusion-rate-smoothing) -### Multi material +- [Extrusion rate smoothing](speed_extrusion_rate_smoothing) + +### Strength Settings + +- [Infill](strength_settings_infill) + +## Material Settings + - [Single Extruder Multimaterial](semm) +- [Pellet Printers (pellet flow coefficient)](pellet-flow-coefficient) + +### Printer Settings -### Printer Settings: - [Air filtration/Exhaust fan handling](air-filtration) - [Auxiliary fan handling](Auxiliary-fan) - [Chamber temperature control](chamber-temperature) - [Adaptive Bed Mesh](adaptive-bed-mesh) - [Using different bed types in Orca](bed-types) -- [Pellet Printers (pellet flow coefficient)](pellet-flow-coefficient) ## Printer Calibration -The guide below takes you through the key calibration tests in Orca - flow rate, pressure advance, print temperature, retraction, tolerances and maximum volumetric speed -- [Calibration Guide](./Calibration) -- [Adaptive Pressure Advance Guide](adaptive-pressure-advance) + +The [Calibration Guide](Calibration) outlines Orca’s key calibration tests and their suggested order of execution. + +- [Temperature](temp-calib) +- [Flow Rate](flow-rate-calib) +- [Pressure Advance](pressure-advance-calib) + - [Adaptive Pressure Advance Guide](adaptive-pressure-advance-calib) +- [Retraction](retraction-calib) +- [Tolerance](tolerance-calib) +- Advanced: + - [Volumetric Speed](volumetric-speed-calib) + - [Cornering (Jerk & Junction Deviation)](cornering-calib) + - [Input Shaping](input-shaping-calib) ## Developer Section -- [How to build Orca Slicer](./How-to-build) + +This is a documentation from someone exploring the code and is by no means complete or even completely accurate. Please edit the parts you might find inaccurate. This is probably going to be helpful nonetheless. + +- [How to build Orca Slicer](How-to-build) - [Localization and translation guide](Localization_guide) -- [Developer Reference](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Home.md) -- [How to create profiles](./How-to-create-profiles) \ No newline at end of file +- [How to create profiles](How-to-create-profiles) +- [How to contribute to the wiki](How-to-wiki) +- [Preset, PresetBundle and PresetCollection](Preset-and-bundle) +- [Plater, Sidebar, Tab, ComboBox](plater-sidebar-tab-combobox) +- [Slicing Call Hierarchy](slicing-hierarchy) diff --git a/doc/How-to-build.md b/doc/How-to-build.md deleted file mode 100644 index a7c05b0f5d..0000000000 --- a/doc/How-to-build.md +++ /dev/null @@ -1,11 +0,0 @@ -# How to compile -- Windows 64-bit - - Tools needed: Visual Studio 2019, Cmake, git, Strawberry Perl. - - Run `build_release.bat` in `x64 Native Tools Command Prompt for VS 2019` - -- Mac 64-bit - - Tools needed: Xcode, Cmake, git, gettext - - run `build_release_macos.sh` - -- Ubuntu - - run `BuildLinux.sh -udisr` \ No newline at end of file diff --git a/doc/How-to-create-profiles.md b/doc/How-to-create-profiles.md deleted file mode 100644 index 3161a71633..0000000000 --- a/doc/How-to-create-profiles.md +++ /dev/null @@ -1,180 +0,0 @@ -# Guide: Develop Profiles for OrcaSlicer - -## Introduction -This guide will help you develop profiles for OrcaSlicer. - -## High-level Overview -OrcaSlicer uses JSON files to store profiles. There are four types of profiles: -1. Printer model (type `machine_model`). Example: `Orca 3D Fuse1.json` -2. Printer variant (type `machine`). Example: `Orca 3D Fuse1 0.2 nozzle.json` -3. Filament (type `filament`). Example: `Generic PLA @Orca 3D Fuse1@.json` -4. Process (type `process`). Example: `0.10mm Standard @Orca 3D Fuse1 0.2.json` - -Additionally, there is an overall meta file for each vendor (`Orca 3D.json`). - -For easier understanding, let's consider a scenario with a printer manufacturer called `Orca 3D`. The manufacturer offers one printer model called `Fuse 1`, which supports 0.2/0.4/0.6/0.8mm nozzles and common market filaments. - -In this case: -- Vendor profile: `Orca 3D` -- Printer profile: `Orca 3D Fuse1` -- Printer variant profile: `Orca 3D Fuse1 0.4 nozzle` -- Filament profile: `Generic PLA @Orca 3D Fuse1@` -- Process profile: `0.20mm Standard @Orca 3D Fuse1 0.4` - -The profile name should be same as the filename without the `.json` extension in principal. -Naming conventions: -1. Vendor profile: `vendor_name.json` -2. Printer profile: `vendor_name` + `printer_name` + `.json` -3. Printer variant profile: `vendor_name` + `printer_variant_name` + `.json` (where `printer_variant_name` typically includes `printer_name` + `nozzle_diameter`) -4. Filament profile: `filament_vendor_name` + `filament_name` + " @" + `vendor_name` + `printer_name`/`printer_variant_name` + `.json` -5. Process profile: `layer_height` + `preset_name` + " @" + `vendor_name` + `printer_name`/`printer_variant_name` + `.json` (`preset_name` typically includes "standard," "fine," "fast," "draft," etc.) - - -A typical file structure for a vendor: -``` -resources\profiles\ - - Orca 3D.json - - Orca 3D\ - - machine\ - - Orca 3D Fuse1.json - - Orca 3D Fuse1 0.2 nozzle.json - - Orca 3D Fuse1 0.4 nozzle.json - - process\ - - 0.10mm Standard @Orca 3D Fuse1 0.2.json - - 0.20mm Standard @Orca 3D Fuse1 0.4.json - - filament\ - - Generic PLA @Orca 3D Fuse1@.json -``` - - -**NOTE 1**: Use short vendor names in filenames to avoid excessive length. -**NOTE 2**: Filament profiles are **optional**. Create them only if the vendor has specifically tuned profiles for the given printer. See [Filament profiles](#filament-profiles) for details. - -## Filament Profiles -OrcaSlicer features a global filament library called `OrcaFilamentLibrary`, which is automatically available for all printers. It includes generic filaments like `Generic PLA @System` and `Generic ABS @System` etc. - -Printer vendors can override specific filaments in the global library for certain printer models by creating new filament profiles. - -Relationship diagram: -```mermaid -graph TD; - OrcaFilamentLibrary-->Orca_3D_filament; - OrcaFilamentLibrary-->Vendor_A_filament; - OrcaFilamentLibrary-->Vendor_B_filament; -``` - -**NOTE**: Create new filament profiles only if you have truly specifically tuned the filament for the given printer. Otherwise, use the global library. The global library has a better chance to receive optimizations and updates from OrcaSlicer contributors, which will benefit users of all printers. - -### Adding Filament Profiles to the Global Library -In this section, we will discuss how to add a new filament profile into the global library. -If you want to add a new generic profile into the global library, you need to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament` folder. If a base type already exists in the global library, you can use this file as a base profile by inheriting it. -The following sample JSON file shows how to create a new generic filament profile `Generic PLA-GF @System` in the global library. - -1. The first step is to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament` folder. The file name should be `Generic PLA-GF @System.json`. Please note that we leave the `compatible_printers` field empty so that it is available for all printers. - -```json -{ - "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSA05", - "name": "Generic PLA-GF @System", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_pla", - "filament_type": ["PLA-GF"], - "filament_flow_ratio": [ - "0.96" - ], - "compatible_printers": [] -} -``` - -2. Register the profile in `resources\profiles\OrcaFilamentLibrary.json`: - -```json -{ - "name": "OrcaFilamentLibrary", - "version": "02.02.00.04", - "force_update": "0", - "description": "Orca Filament Library", - "filament_list": [ - // ... - { - "name": "Generic PLA-GF @System", - "sub_path": "filament/Generic PLA-GF @System.json" - } - ] -} -``` - -3. The last step is to validate the newly added filament profiles. You can run OrcaSlicer to verify if the filament you just added is available and usable. You can also use the [Orca profile validator](https://github.com/SoftFever/Orca_tools/releases/tag/1) tool to help debug any errors. **NOTE**: You need to delete the `%appdata%/OrcaSlicer/system` folder to force OrcaSlicer to reload your lastest changes. - -The process is the same if you want to add a new brand filament profile into the global library. You need to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament\brand_name` folder. The only difference is that you should put the file into the brand's own subfolder.`resources\profiles\OrcaFilamentLibrary\filament\brand_name`. - -### Adding Filament Profiles to Printer Vendor Library -In this section, we will discuss how to add a new filament profile for a certain vendor. -If you want to add a new filament profile, whether it's a brand new profile or a specialized version of a global filament profile for a given printer, you need to create a new file in the `resources\profiles\vendor_name\filament` folder. If a base type already exists in the global library, you can use this file as a base profile by inheriting it. -Below is a sample JSON file showing how to create a specialized `Generic ABS` filament profile for the ToolChanger printer. -Please note that here we must leave the compatible_printers field non-empty, unlike in the global library. - -```json -{ - "type": "filament", - "setting_id": "GFB99_MTC_0", - "name": "Generic ABS @MyToolChanger", - "from": "system", - "instantiation": "true", - "inherits": "Generic ABS @System", - "filament_cooling_final_speed": [ - "3.5" - ], - "filament_cooling_initial_speed": [ - "10" - ], - "filament_cooling_moves": [ - "2" - ], - "filament_load_time": [ - "10.5" - ], - "filament_loading_speed": [ - "10" - ], - "filament_loading_speed_start": [ - "50" - ], - "filament_multitool_ramming": [ - "1" - ], - "filament_multitool_ramming_flow": [ - "40" - ], - "filament_stamping_distance": [ - "45" - ], - "filament_stamping_loading_speed": [ - "29" - ], - "filament_unload_time": [ - "8.5" - ], - "filament_unloading_speed": [ - "100" - ], - "compatible_printers": [ - "MyToolChanger 0.4 nozzle", - "MyToolChanger 0.2 nozzle", - "MyToolChanger 0.6 nozzle", - "MyToolChanger 0.8 nozzle" - ] -} -``` - -## Process Profiles -WIP... - -## Printer Profiles -WIP... - -## Printer Variant Profiles -WIP... \ No newline at end of file diff --git a/doc/Precise-wall.md b/doc/Precise-wall.md deleted file mode 100644 index 5e8bd9329c..0000000000 --- a/doc/Precise-wall.md +++ /dev/null @@ -1,13 +0,0 @@ -The 'Precise Wall' is a distinctive feature introduced by OrcaSlicer, aimed at improving the dimensional accuracy of prints and minimizing layer inconsistencies by slightly increasing the spacing between the outer wall and the inner wall. - -Below is a technical explanation of how this feature works. -First, it's important to understand some basic concepts like flow, extrusion width, and space. Slic3r has an excellent document that covers these topics in detail. You can refer to this article: [link to article](https://manual.slic3r.org/advanced/flow-math). - -Now, let's dive into the specifics. Slic3r and its forks, such as PrusaSlicer, SuperSlicer, and OrcaSlicer, assume that the extrusion path has an oval shape, which accounts for the overlaps. For example, if we set the wall width to 0.4mm and the layer height to 0.2mm, the combined thickness of two walls laid side by side is 0.714mm instead of 0.8mm due to the overlapping. -![image](./images/precise_wall.png) -This approach enhances the strength of 3D-printed parts. However, it does have some side effects. For instance, when the inner-outer wall order is used, the outer wall can be pushed outside, leading to potential size inaccuracy and more layer inconsistency. - -It's important to keep in mind that this approach to handling flow is specific to Slic3r and it's forks. Other slicing software, such as Cura, assumes that the extrusion path is rectangular and, therefore, does not include overlapping. Two 0.4 mm walls will result in a 0.8 mm shell thickness in Cura - -OrcaSlicer adheres to Slic3r's approach to handling flow. To address the downsides mentioned earlier, OrcaSlicer introduced the 'Precise Wall' feature. When this feature is enabled in OrcaSlicer, the overlap between the outer wall and its adjacent inner wall is set to zero. This ensures that the overall strength of the printed part is unaffected, while the size accuracy and layer consistency are improved. - diff --git a/doc/Print-settings.md b/doc/Print-settings.md deleted file mode 100644 index 5c31ca4eb9..0000000000 --- a/doc/Print-settings.md +++ /dev/null @@ -1,8 +0,0 @@ -Print settings: - -* [Seam](seam) -* [Axiliary fan](auxiliary-fan) -* [Chamber temperature](chamber-temperature) -* [Air filtration/Exhaust fan](air-filtration) -* [Single Extruder Multimaterial](semm) -* [Precise wall](Precise-wall) \ No newline at end of file diff --git a/doc/Seam.md b/doc/Seam.md deleted file mode 100644 index a11d7297c0..0000000000 --- a/doc/Seam.md +++ /dev/null @@ -1,20 +0,0 @@ -WIP... - -### Scarf joint seam -WIP... - -### Seam gap -![image](https://user-images.githubusercontent.com/103989404/215331359-236874c9-ca91-4dd4-b969-3cefc70ebe1b.png) - -### Role-based wipe speed(auto) -### Wipe speed -### Wipe on loop(inward movement) -![image](https://user-images.githubusercontent.com/103989404/215334479-2687c518-1931-46a9-a363-7ae57a0aecf6.png) - -Use outer wall speed and acceleration instead of travel speed and acceleration. -Added an option to disable this feature -### Support Cura style outer wall wipe(100% retract before wipe) -![image](https://user-images.githubusercontent.com/103989404/215334900-97c75010-4752-45f1-a57c-f0b723a8cb3f.png) -![image](https://user-images.githubusercontent.com/103989404/215335212-3253061d-bb7b-4853-a86c-10ff54cc8df5.png) - -Extra length on restart \ No newline at end of file diff --git a/doc/calibration/Calibration.md b/doc/calibration/Calibration.md new file mode 100644 index 0000000000..5c4e6820cd --- /dev/null +++ b/doc/calibration/Calibration.md @@ -0,0 +1,65 @@ +# Calibration Guide + +This guide offers a structured and comprehensive overview of the calibration process for Orca Slicer. + +It covers key aspects such as flow rate, pressure advance, temperature towers, retraction tests, and advanced calibration techniques. Each section includes step-by-step instructions and visuals to help you better understand and carry out each calibration effectively. + +To access the calibration features, you can find them in the **Calibration** section of the Orca Slicer interface. + +![Calibration Button](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/calibration.png?raw=true) + +> [!IMPORTANT] +> After completing the calibration process, remember to create a new project in order to exit the calibration mode. + +The recommended order for calibration is as follows: + +1. **[Temperature](temp-calib):** Start by calibrating the temperature of the nozzle and the bed. This is crucial as it affects the viscosity of the filament, which in turn influences how well it flows through the nozzle and adheres to the print bed. + + temp-tower + +2. **[Flow](flow-rate-calib):** Calibrate the flow rate to ensure that the correct amount of filament is being extruded. This is important for achieving accurate dimensions and good layer adhesion. + + flowrate-pass1 + +1. **[Pressure Advance](pressure-advance-calib):** Calibrate the pressure advance settings to improve print quality and reduce artifacts caused by pressure fluctuations in the nozzle. + + - **[Adaptative Pressure Advance](adaptive-pressure-advance-calib):** This is an advanced calibration technique that can be used to further optimize the pressure advance settings for different print speeds and geometries. + + pa-tower + +2. **[Retraction](retraction-calib):** Calibrate the retraction settings to minimize stringing and improve print quality. Doing this after Flow and + + Retraction + +3. **[Tolerance](tolerance-calib):** Calibrate the tolerances of your printer to ensure that it can accurately reproduce the dimensions of the model being printed. This is important for achieving a good fit between parts and for ensuring that the final print meets the desired specifications. + + Tolerance + +4. **[Max Volumetric Speed](volumetric-speed-calib):** Calibrate the maximum volumetric speed of the filament. This is important for ensuring that the printer can handle the flow rate of the filament without causing issues such as under-extrusion or over-extrusion. + + Max_Volumetric_Speed + +5. **[Cornering](cornering-calib):** Calibrate the Jerk/Junction Deviation settings to improve print quality and reduce artifacts caused by sharp corners and changes in direction. + + Cornering + +6. **[Input Shaping](input-shaping-calib):** This is an advanced calibration technique that can be used to reduce ringing and improve print quality by compensating for mechanical vibrations in the printer. + + Input_Shaping + +### VFA + +Vertical Fine Artifacts (VFA) are small artifacts that can occur on the surface of a 3D print, particularly in areas where there are sharp corners or changes in direction. These artifacts can be caused by a variety of factors, including mechanical vibrations, resonance, and other factors that can affect the quality of the print. +Because of the nature of these artifacts the methods to reduce them can be mechanical such as changing motors, belts and pulleys or with advanced calibrations such as Jerk/[Junction Deviation](junction-deviation) corrections or [Input Shaping](input-shaping). + +--- + +_Credits:_ + +- _The Flowrate test and retraction test is inspired by [SuperSlicer](https://github.com/supermerill/SuperSlicer)._ +- _The PA Line method is inspired by [K-factor Calibration Pattern](https://marlinfw.org/tools/lin_advance/k-factor.html)._ +- _The PA Tower method is inspired by [Klipper](https://www.klipper3d.org/Pressure_Advance.html)._ +- _The temp tower model is remixed from [Smart compact temperature calibration tower](https://www.thingiverse.com/thing:2729076)._ +- _The max flowrate test was inspired by Stefan (CNC Kitchen), and the model used in the test is a remix of his [Extrusion Test Structure](https://www.printables.com/model/342075-extrusion-test-structure)._ +- _ZV Input Shaping is inspired by [Marlin Input Shaping](https://marlinfw.org/docs/features/input_shaping.html) and [Ringing Tower 3D STL](https://marlinfw.org/assets/stl/ringing_tower.stl)._ +- _ChatGPT_ ;) diff --git a/doc/adaptive-pressure-advance.md b/doc/calibration/adaptive-pressure-advance-calib.md similarity index 76% rename from doc/adaptive-pressure-advance.md rename to doc/calibration/adaptive-pressure-advance-calib.md index 6a589d6f1c..aa5add89e1 100644 --- a/doc/adaptive-pressure-advance.md +++ b/doc/calibration/adaptive-pressure-advance-calib.md @@ -13,12 +13,11 @@ This feature introduces the below options under the filament settings: 4. **Adaptive pressure advance measurements:** This field contains the calibration values used to generate the pressure advance profile for the nozzle/printer. Input sets of pressure advance (PA) values and the corresponding volumetric flow speeds and accelerations they were measured at, separated by a comma. Add one set of values per line. More information on how to calibrate the model follows in the sections below. 5. **Pressure advance:** The old field is still needed and is required to be populated with a PA value. A “good enough” median PA value should be entered here, as this will act as a fallback value when performing tool changes, printing a purge/wipe tower for multi-color prints as well as a fallback in case the model fails to identify an appropriate value (unlikely but it’s the ultimate backstop). -Adaptive PA settings - +![apa-material-config](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-material-config.png?raw=true) ## Pre-Requisites -This feature has been tested with Klipper-based printers. While it may work with Marlin or Bambu lab printers, it is currently untested with them. It shouldn’t adversely affect the machine; however, the quality results from enabling it are not validated. +This feature has been tested with Klipper-based printers. While it may work with Marlin or Bambu lab printers, it is currently untested with them. It shouldn’t adversely affect the machine; however, the quality results from enabling it are not validated. **Older versions of Klipper used to stutter when pressure advance was changed while the toolhead was in motion. This has been fixed with the latest Klipper firmware releases. Therefore, make sure your Klipper installation is updated to the latest version before enabling this feature, in order to avoid any adverse quality impacts.** @@ -32,29 +31,28 @@ Following experimentation, it has been noticed that the optimal pressure advance 2. The larger the layer height (hence the higher the volumetric flow rate requested from the toolhead). 3. The higher the print acceleration is. -What this means is that we never get ideal PA values for each print feature, especially when they vary drastically in speed and acceleration. We can tune PA for a faster print speed (flow) but compromise on corner sharpness for slower speeds or tune PA for corner sharpness and deal with slight corner-perimeter separation in faster speeds. The same goes for accelerations as well as different layer heights. +What this means is that we never get ideal PA values for each print feature, especially when they vary drastically in speed and acceleration. We can tune PA for a faster print speed (flow) but compromise on corner sharpness for slower speeds or tune PA for corner sharpness and deal with slight corner-perimeter separation in faster speeds. The same goes for accelerations as well as different layer heights. -This compromise usually means that we settle for tuning an "in-between" PA value between slower external features and faster internal features so we don't get gaps, but also not get too much bulging in external perimeters. +This compromise usually means that we settle for tuning an "in-between" PA value between slower external features and faster internal features so we don't get gaps, but also not get too much bulging in external perimeters. **However, what this also means is that if you are printing with a single layer height, single speed, and acceleration, there is no need to enable this feature.** -Adaptive pressure advance aims to address this limitation by implementing a completely different method of setting pressure advance. **Following a set of PA calibration tests done at different flow rates (speeds and layer heights) and accelerations, a pressure advance model is calculated by the slicer.** Then that model is used to emit the best fit PA for any arbitrary feature flow rate (speed) and acceleration used in the print process. +Adaptive pressure advance aims to address this limitation by implementing a completely different method of setting pressure advance. **Following a set of PA calibration tests done at different flow rates (speeds and layer heights) and accelerations, a pressure advance model is calculated by the slicer.** Then that model is used to emit the best fit PA for any arbitrary feature flow rate (speed) and acceleration used in the print process. -In addition, it means that you only need to tune this feature once and print across different layer heights with good PA performance. +In addition, it means that you only need to tune this feature once and print across different layer heights with good PA performance. Finally, if during calibration you notice that there is little to no variance between the PA tests, this feature is redundant for you. **From experiments, high flow nozzles fitted on high-speed core XY printers appear to benefit the most from this feature as they print with a larger range of flow rates and at a larger range of accelerations.** ### Expected results: With this feature enabled there should be absolutely no bulge in the corners, just the smooth rounding caused by the square corner velocity of your printer. -![337601149-cbd96b75-a49f-4dde-ab5a-9bbaf96eae9c](https://github.com/user-attachments/assets/01234996-0528-4462-90c6-43828a246e41) +![apa-expected-results](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-expected-results.jpg?raw=true) In addition, seams should appear smooth with no bulging or under extrusion. -![337601500-95e2350f-cffd-4af5-9c7a-e8f60870db7b](https://github.com/user-attachments/assets/46e16f2a-cf52-4862-ab06-12883b909615) +![apa-expected-seam](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-expected-seam.jpg?raw=true) Solid infill should have no gaps, pinholes, or separation from the perimeters. -![337616471-9d949a67-c8b3-477e-9f06-c429d4e40be0](https://github.com/user-attachments/assets/3b8ddbff-47e7-48b5-9576-3d9e7fb24a9d) +![apa-expected-solid-infill](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-expected-solid-infill.jpg?raw=true) Compared to with this feature disabled, where the internal solid infill and external-internal perimeters show signs of separation and under extrusion, when PA is tuned for optimal external perimeter performance as shown below. -![337621601-eacc816d-cff0-42e4-965d-fb5c00d34205](https://github.com/user-attachments/assets/82edfd96-d870-48fe-91c7-012e8c0d9ed0) - +![apa-unexpected-solid-infill](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-unexpected-solid-infill.jpg?raw=true) ## How to calibrate the adaptive pressure advance model @@ -65,9 +63,9 @@ Firstly, it is important to understand your printer speed and acceleration limit 1. **Upper acceleration range:** Do not attempt to calibrate adaptive PA for an acceleration that is larger than what the Klipper input shaper calibration tool recommends for your selected shaper. For example, if Klipper recommends an EI shaper with 4k maximum acceleration for your slowest axis (usually the Y axis), don’t calibrate adaptive PA beyond that value. This is because after 4k the input shaper smoothing is magnified and the perimeter separations that appear like PA issues are caused by the input shaper smoothing the shape of the corner. Basically, you’d be attempting to compensate for an input shaper artefact with PA. 2. **Upper print speed range:** The Ellis PA pattern test has been proven to be the most efficient and effective test to run to calibrate adaptive PA. It is fast and allows for a reasonably accurate and easy-to-read PA value. However, the size of the line segments is quite small, which means that for the faster print speeds and slower accelerations, the toolhead will not be able to reach the full flow rate that we are calibrating against. It is therefore generally not recommended to attempt calibration with a print speed of higher than ~200-250mm/sec and accelerations slower than 1k in the PA pattern test. If your lowest acceleration is higher than 1k, then proportionally higher maximum print speeds can be used. -**Remember:** With the calibration process, we aim to create a PA – Flow Rate – Acceleration profile for the toolhead. As we cannot directly control flow rate, we use print speed as a proxy (higher speed -> higher flow). +**Remember:** With the calibration process, we aim to create a PA – Flow Rate – Acceleration profile for the toolhead. As we cannot directly control flow rate, we use print speed as a proxy (higher speed -> higher flow). -With the above in mind, let’s create a worked example to identify the optimal number of PA tests to calibrate the adaptive PA model. +With the above in mind, let’s create a worked example to identify the optimal number of PA tests to calibrate the adaptive PA model. **The below starting points are recommended for the majority of Core XY printers:** @@ -95,18 +93,19 @@ For this example, let’s assume that the baseline number of tests is adequate f We, therefore, need to run 12 PA tests as below: **Speed – Acceleration** - 1. 50 – 1k - 2. 100 – 1k - 3. 150 – 1k - 4. 200 – 1k - 5. 50 – 2k - 6. 100 – 2k - 7. 150 – 2k - 8. 200 – 2k - 9. 50 – 4k - 10. 100 – 4k - 11. 150 – 4k - 12. 200 – 4k + +1. 50 – 1k +2. 100 – 1k +3. 150 – 1k +4. 200 – 1k +5. 50 – 2k +6. 100 – 2k +7. 150 – 2k +8. 200 – 2k +9. 50 – 4k +10. 100 – 4k +11. 150 – 4k +12. 200 – 4k ### Identifying the flow rates from the print speed @@ -114,91 +113,104 @@ We, therefore, need to run 12 PA tests as below: Test parameters needed to build adaptive PA table are printed on the test sample: -pa batch mode +![apa-test](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-test.png?raw=true) Test sample above was done with acceleration 12000 mm/s² and flow rate 27.13 mm³/s - #### OrcaSlicer 2.1.0 and older. As mentioned earlier, **the print speed is used as a proxy to vary the extrusion flow rate**. Once your PA test is set up, change the gcode preview to “flow” and move the horizontal slider over one of the herringbone patterns and take note of the flow rate for different speeds. -![337939815-e358b960-cf96-41b5-8c7e-addde927933f](https://github.com/user-attachments/assets/21290435-6f2a-4a21-bcf0-28cd6ae1912a) +![apa-test210](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-test210.jpg?raw=true) ### Running the tests #### General tips -It is recommended that the PA step is set to a small value, to allow you to make meaningful distinctions between the different tests – **therefore a PA step value of 0.001 is recommended. ** +It is recommended that the PA step is set to a small value, to allow you to make meaningful distinctions between the different tests – **therefore a PA step value of 0.001 is recommended. ** -**Set the end PA to a value high enough to start showing perimeter separation for the lowest flow (print speed) and acceleration test.** For example, for a Voron 350 using Revo HF, the maximum value was set to 0.05 as that was sufficient to show perimeter separation even at the slowest flow rates and accelerations. +**Set the end PA to a value high enough to start showing perimeter separation for the lowest flow (print speed) and acceleration test.** For example, for a Voron 350 using Revo HF, the maximum value was set to 0.05 as that was sufficient to show perimeter separation even at the slowest flow rates and accelerations. **If the test is too big to fit on the build plate, increase your starting PA value or the PA step value accordingly until the test can fit.** If the lowest value becomes too high and there is no ideal PA present in the test, focus on increasing the PA step value to reduce the number of herringbones printed (hence the size of the print). -PA calibration parameters +![pa-pattern-general](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-pattern-general.png?raw=true) #### OrcaSlicer 2.3.0 and newer PA pattern calibration configuration window have been changed to simplify test setup. Now all is needed is to fill list of accelerations and speeds into relevant fields of the calibration window: -![PA pattern batch mode](./images/pa/pa-pattern-batch.png) +![pa-pattern-batch](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-pattern-batch.png?raw=true?raw=true) Test patterns generated for each acceleration-speed pair and all parameters are set accordingly. No additional actions needed from user side. Just slice and print all plates generated. -Refer to [Calibration Guide](./Calibration) for more details on batch mode calibration. +Refer to [Calibration Guide](Calibration) for more details on batch mode calibration. #### OrcaSlicer 2.2.0 and older Setup your PA test as usual from the calibration menu in Orca slicer. Once setup, your PA test should look like the below: -PA calibration test 1 -Pa calibration test 2 +![apa-setup-result-speed](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-setup-result-speed.png?raw=true) -Now input your identified print speeds and accelerations in the fields above and run the PA tests. +![alt text](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-setup-result-acceleration-jerk.png?raw=true) -**IMPORTANT:** Make sure your acceleration values are all the same in all text boxes. Same for the print speed values and Jerk (XY) values. Make sure your Jerk value is set to the external perimeter jerk used in your print profiles. +Now input your identified print speeds and accelerations in the fields above and run the PA tests. + + +> [!IMPORTANT] +> Make sure your acceleration values are all the same in all text boxes. Same for the print speed values and Jerk (XY) values. Make sure your Jerk value is set to the external perimeter jerk used in your print profiles. #### Test results processing Now run the tests and note the optimal PA value, the flow, and the acceleration. You should produce a table like this: -calibration table +| Speed | Flow | Acceleration | PA | Model values | +|-------|-------|--------------|-------|----------------------| +| 50 | 3.84 | 1000 | 0.036 | 0.036 , 3.84 , 1000 | +| 100 | 7.68 | 1000 | 0.036 | 0.036 , 7.68 , 1000 | +| 150 | 11.51 | 1000 | 0.036 | 0.036 , 11.51 , 1000 | +| 200 | 15.35 | 1000 | 0.036 | 0.036 , 15.35 , 1000 | +| | | | | | +| 50 | 3.84 | 2000 | 0.036 | 0.036 , 3.84 , 2000 | +| 100 | 7.68 | 2000 | 0.03 | 0.03 , 7.68 , 2000 | +| 150 | 11.51 | 2000 | 0.029 | 0.029 , 11.51 , 2000 | +| 200 | 15.35 | 2000 | 0.028 | 0.028 , 15.35 , 2000 | +| | | | | | +| 50 | 3.84 | 4000 | 0.032 | 0.032 , 3.84 , 4000 | +| 100 | 7.68 | 4000 | 0.028 | 0.028 , 7.68 , 4000 | +| 150 | 11.51 | 4000 | 0.026 | 0.026 , 11.51 , 4000 | +| 200 | 15.35 | 4000 | 0.024 | 0.024 , 15.35 , 4000 | -Concatenate the PA value, the flow value, and the acceleration value into the final comma-separated sets to create the values entered in the model as shown above. +Concatenate the PA value, the flow value, and the acceleration value into the final comma-separated sets to create the values entered in the model as shown above. **You’re now done! The PA profile is created and calibrated!** Remember to paste the values in the adaptive pressure advance measurements text box as shown below, and save your filament profile. -pa profile - +![apa-profile](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-profile.png?raw=true) ### Tips #### Model input: -The adaptive PA model built into the slicer is flexible enough to allow for as many or as few increments of flow and acceleration as you want. Ideally, you want at a minimum 3x data points for acceleration and flow in order to create a meaningful model. +The adaptive PA model built into the slicer is flexible enough to allow for as many or as few increments of flow and acceleration as you want. Ideally, you want at a minimum 3x data points for acceleration and flow in order to create a meaningful model. -However, if you don’t want to calibrate for flow, just run the acceleration tests and leave flow the same for each test (in which case you’ll input only 3 rows in the model text box). In this case, flow will be ignored when the model is used. +However, if you don’t want to calibrate for flow, just run the acceleration tests and leave flow the same for each test (in which case you’ll input only 3 rows in the model text box). In this case, flow will be ignored when the model is used. -Similarly for acceleration – in the above example you’ll input only 4 rows in the model text box, in which case acceleration will be ignored when the model is used. +Similarly for acceleration – in the above example you’ll input only 4 rows in the model text box, in which case acceleration will be ignored when the model is used. **However, make sure a triplet of values is always provided – PA value, Flow, Acceleration.** #### Identifying the right PA: -Higher acceleration and higher flow rate PA tests are easier to identify the optimal PA as the range of “good” values is much narrower. It’s evident where the PA is too large, as gaps start to appear in the corner and where PA is too low, as the corner starts bulging. +Higher acceleration and higher flow rate PA tests are easier to identify the optimal PA as the range of “good” values is much narrower. It’s evident where the PA is too large, as gaps start to appear in the corner and where PA is too low, as the corner starts bulging. However, the lower the flow rate and accelerations are, the range of good values is much wider. Having examined the PA tests even under a microscope, what is evident, is that if you can’t distinguish a value as being evidently better than another (i.e. sharper corner with no gaps) with the naked eye, then both values are correct. In which case, if you can’t find any meaningful difference, simply use the optimal values from the higher flow rates. -- **Too high PA** +- **Too high PA** +![apa-identify-too-high](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-identify-too-high.jpg?raw=true) -![Too high PA](https://github.com/user-attachments/assets/ebc4e2d4-373e-42d5-af72-4d5bc81048ca) +- **Too low PA** +![apa-identify-too-low](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-identify-too-low.jpg?raw=true) -- **Too low PA** - -![Too low PA](https://github.com/user-attachments/assets/6a2b6f16-7d1c-46d0-91f3-def5ed560318) - -- **Optimal PA** - -![Optimal PA](https://github.com/user-attachments/assets/cd47cf2e-dd32-47b4-bbdd-1563de8849be) +- **Optimal PA** +![apa-identify-optimal](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/apa-identify-optimal.jpg?raw=true) diff --git a/doc/calibration/cornering-calib.md b/doc/calibration/cornering-calib.md new file mode 100644 index 0000000000..e8d78f5742 --- /dev/null +++ b/doc/calibration/cornering-calib.md @@ -0,0 +1,60 @@ +# Cornering + +Cornering is a critical aspect of 3D printing that affects the quality and accuracy of prints. It refers to how the printer handles changes in direction during movement, particularly at corners and curves. Proper cornering settings can help reduce artifacts like ringing, ghosting, and overshooting, leading to cleaner and more precise prints. + +## Jerk + +WIP... TODO: Jerk calibration not implemented yet. + +## Junction Deviation + +Junction Deviation is the default method for controlling cornering speed in MarlinFW (Marlin2) printers. +Higher values result in more aggressive cornering speeds, while lower values produce smoother, more controlled cornering. +The default value in Marlin is typically set to 0.08mm, which may be too high for some printers, potentially causing ringing. Consider lowering this value to reduce ringing, but avoid setting it too low, as this could lead to excessively slow cornering speeds. + +1. Pre-requisites: + 1. Check if your printer has Junction Deviation enabled. You can do this by sending the command `M503` to your printer and looking for the line `Junction deviation: 0.25`. + 2. In OrcaSlicer, set: + 1. Acceleration high enough to trigger ringing (e.g., 2000 mm/s²). + 2. Speed high enough to trigger ringing (e.g., 100 mm/s). + 3. Use an opaque, high-gloss filament to make the ringing more visible. +2. You need to print the Junction Deviation test. + + ![jd_first_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/JunctionDeviation/jd_first_menu.png?raw=true) + + 1. Measure the X and Y heights and read the frequency set at that point in Orca Slicer. + + ![jd_first_print_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/JunctionDeviation/jd_first_print_measure.jpg?raw=true) + ![jd_first_slicer_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/JunctionDeviation/jd_first_slicer_measure.png?raw=true) + + 2. It’s very likely that you’ll need to set values lower than 0.08 mm, as shown in the previous example. To determine a more accurate maximum JD value, you can print a new calibration tower with a maximum value set at the point where the corners start losing sharpness. + 3. Print the second Junction Deviation test with the new maximum value. + + ![jd_second_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/JunctionDeviation/jd_second_menu.png?raw=true) + + 4. Measure the X and Y heights and read the frequency set at that point in Orca Slicer. + + ![jd_second_print_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/JunctionDeviation/jd_second_print_measure.jpg?raw=true) + ![jd_second_slicer_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/JunctionDeviation/jd_second_slicer_measure.png?raw=true) + +3. Save the settings + 1. Set your Maximun Junction Deviation value in [Printer settings/Motion ability/Jerk limitation]. + 2. Use the following G-code to set the mm: + ```gcode + M205 J#JunctionDeviationValue + M500 + ``` + Example + ```gcode + M205 J0.012 + M500 + ``` + 3. Recompile your MarlinFW + 1. In Configuration.h uncomment and set: + ```cpp + #define JUNCTION_DEVIATION_MM 0.012 // (mm) Distance from real junction edge + ``` + 2. Check Classic Jerk is disabled (commented). + ```cpp + //#define CLASSIC_JERK + ``` diff --git a/doc/calibration/flow-rate-calib.md b/doc/calibration/flow-rate-calib.md new file mode 100644 index 0000000000..45f0be0054 --- /dev/null +++ b/doc/calibration/flow-rate-calib.md @@ -0,0 +1,36 @@ +# Flow rate + +The Flow Ratio determines how much filament is extruded and plays a key role in achieving high-quality prints. A properly calibrated flow ratio ensures consistent layer adhesion and accurate dimensions. If the flow ratio is too low, under-extrusion may occur, leading to gaps, weak layers, and poor structural integrity. On the other hand, a flow ratio that is too high can cause over-extrusion, resulting in excess material, rough surfaces, and dimensional inaccuracies. + +> [!WARNING] +> **Bambulab Printers:** make sure you do not select the 'Flow calibration' option. +> ![flow-rate-Bambulab-uncheck](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowrate-Bambulab-uncheck.png?raw=true) + +> [!IMPORTANT] +> PASS 1 and PASS 2 follow the older flow ratio formula `FlowRatio_old*(100 + modifier)/100`. +> YOLO (Recommended) and YOLO (perfectist version) use a new system that is very simple `FlowRatio_old±modifier`. + +![flow-calibration](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flow-calibration.gif?raw=true) + +Calibrating the flow rate involves a two-step process. + +1. Select the printer, filament, and process you would like to use for the test. +2. Select `Pass 1` in the `Calibration` menu +3. A new project consisting of nine blocks will be created, each with a different flow rate modifier. Slice and print the project. +4. Examine the blocks and determine which one has the smoothest top surface. + ![flowrate-pass1](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowrate-pass1.jpg?raw=true) + + ![flowrate-0-5](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowrate-0-5.jpg?raw=true) + +5. Update the flow ratio in the filament settings using the following equation: `FlowRatio_old*(100 + modifier)/100`. If your previous flow ratio was `0.98` and you selected the block with a flow rate modifier of `+5`, the new value should be calculated as follows: `0.98x(100+5)/100 = 1.029`.** Remember** to save the filament profile. +6. Perform the `Pass 2` calibration. This process is similar to `Pass 1`, but a new project with ten blocks will be generated. The flow rate modifiers for this project will range from `-9 to 0`. +7. Repeat steps 4. and 5. In this case, if your previous flow ratio was 1.029 and you selected the block with a flow rate modifier of -6, the new value should be calculated as follows: `1.029x(100-6)/100 = 0.96726`. **Remember** to save the filament profile. + +![flowrate-pass2](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowrate-pass2.jpg?raw=true) + +![flowrate-6](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowrate-6.jpg?raw=true) + +![flowcalibration_update_flowrate](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowcalibration_update_flowrate.png?raw=true) + +> [!TIP] +> @ItsDeidara has made a html to help with the calculation. Check it out if those equations give you a headache [here](https://github.com/ItsDeidara/Orca-Slicer-Assistant). diff --git a/doc/calibration/input-shaping-calib.md b/doc/calibration/input-shaping-calib.md new file mode 100644 index 0000000000..c2b6f8324c --- /dev/null +++ b/doc/calibration/input-shaping-calib.md @@ -0,0 +1,129 @@ +# Input Shaping + +During high-speed movements, vibrations can cause a phenomenon called "ringing," where periodic ripples appear on the print surface. Input Shaping provides an effective solution by counteracting these vibrations, improving print quality and reducing wear on components without needing to significantly lower print speeds. + +- [Klipper](#klipper) +- [Marlin](#marlin) + +## Klipper + +### Resonance Compensation + +The Klipper Resonance Compensation is a set of Input Shaping modes that can be used to reduce ringing and improve print quality. +Ussualy the recommended values modes are `MZV` or `EI` for Delta printers. + +1. Pre-requisites: + 1. In OrcaSlicer, set: + 1. Acceleration high enough to trigger ringing (e.g., 2000 mm/s²). + 2. Speed high enough to trigger ringing (e.g., 100 mm/s). + +> [!NOTE] +> These settings depend on your printer's motion ability and the filament's max volumetric speed. If you can't reach speeds that cause ringing, try increasing the filament's max volumetric speed (avoid materials below 10 mm³/s). + 3. Jerk [Klipper Square Corner Velocity](https://www.klipper3d.org/Kinematics.html?h=square+corner+velocity#look-ahead) to 5 or a high value (e.g., 20). + + 2. In printer settigs: + 1. Set the Shaper Type to `MZV` or `EI`. + ```gcode + SET_INPUT_SHAPER SHAPER_TYPE=MZV + ``` + 2. Disable [Minimun Cruise Ratio](https://www.klipper3d.org/Kinematics.html#minimum-cruise-ratio) with: + ```gcode + SET_VELOCITY_LIMIT MINIMUM_CRUISE_RATIO=0 + ``` + 3. Use an opaque, high-gloss filament to make the ringing more visible. +2. Print the Input Shaping Frequency test with a range of frequencies. + + ![IS_freq_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_freq_menu.png?raw=true) + + 1. Measure the X and Y heights and read the frequency set at that point in Orca Slicer. + + ![IS_damp_klipper_print_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_klipper_print_measure.jpg?raw=true) + ![IS_freq_klipper_slicer_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_freq_klipper_slicer_measure.png?raw=true) + + 2. If not a clear result, you can measure a X and Y min and max acceptable heights and repeat the test with that min and max value. + +> [!WARNING] +> There is a chance you will need to set higher than 60Hz frequencies. Some printers with very rigid frames and excellent mechanics may exhibit frequencies exceeding 100Hz. + +3. Print the Damping test setting your X and Y frequency to the value you found in the previous step. + + ![IS_damp_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_menu.png?raw=true) + + 1. Measure the X and Y heights and read the damping set at that point in Orca Slicer. + + ![IS_damp_klipper_print_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_klipper_print_measure.jpg?raw=true) + ![IS_damp_klipper_slicer_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_klipper_slicer_measure.png?raw=true) + +> [!IMPORTANT] +> Not all Resonance Compensation modes support damping. + +4. Restore your 3D Printer settings to avoid keep using high acceleration and jerk values. +5. Save the settings + 1. You need to go to the printer settings and set the X and Y frequency and damp to the value you found in the previous step. + +## Marlin + +### ZV Input Shaping + +ZV Input Shaping introduces an anti-vibration signal into the stepper motion for the X and Y axes. It works by splitting the step count into two halves: the first at half the frequency and the second as an "echo," delayed by half the ringing interval. This simple approach effectively reduces vibrations, improving print quality and allowing for higher speeds. + +1. Pre-requisites: + 1. In OrcaSlicer, set: + 1. Acceleration high enough to trigger ringing (e.g., 2000 mm/s²). + 2. Speed high enough to trigger ringing (e.g., 100 mm/s). + +> [!NOTE] +> These settings depend on your printer's motion ability and the filament's max volumetric speed. If you can't reach speeds that cause ringing, try increasing the filament's max volumetric speed (avoid materials below 10 mm³/s). + + 3. Jerk + 1. If using [Classic Jerk](https://marlinfw.org/docs/configuration/configuration.html#jerk-) use a high value (e.g., 20). + 2. If using [Junction Deviation](https://marlinfw.org/docs/features/junction_deviation.html) (new Marlin default mode) this test will use 0.25 (high enough to most printers). + 2. Use an opaque, high-gloss filament to make the ringing more visible. +2. Print the Input Shaping Frequency test with a range of frequencies. + + ![IS_freq_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_freq_menu.png?raw=true) + + 1. Measure the X and Y heights and read the frequency set at that point in Orca Slicer. + + ![IS_freq_marlin_print_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_freq_marlin_print_measure.jpg?raw=true) + ![IS_freq_marlin_slicer_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_freq_marlin_slicer_measure.png?raw=true) + + 2. If not a clear result, you can measure a X and Y min and max acceptable heights and repeat the test with that min and max value. + +> [!WARNING] +> There is a chance you will need to set higher than 60Hz frequencies. Some printers with very rigid frames and excellent mechanics may exhibit frequencies exceeding 100Hz. + +3. Print the Damping test setting your X and Y frequency to the value you found in the previous step. + + ![IS_damp_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_menu.png?raw=true) + + 1. Measure the X and Y heights and read the damping set at that point in Orca Slicer. + + ![IS_damp_marlin_print_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_marlin_print_measure.jpg?raw=true) + ![IS_damp_marlin_slicer_measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/InputShaping/IS_damp_marlin_slicer_measure.png?raw=true) + +4. Restore your 3D Printer settings to avoid keep using high acceleration and jerk values. + 1. Reboot your printer. + 2. Use the following G-code to restore your printer settings: + ```gcode + M501 + ``` +5. Save the settings + 1. You need to go to the printer settings and set the X and Y frequency and damp to the value you found in the previous step. + 2. Use the following G-code to set the frequency: + ```gcode + M593 X F#Xfrequency D#XDamping + M593 Y F#Yfrequency D#YDamping + M500 + ``` + Example + ```gcode + M593 X F37.25 D0.16 + M593 Y F37.5 D0.06 + M500 + ``` + +### Fixed-Time Motion + +WIP... +This calibration test is currently under development. See the [Marlin documentation](https://marlinfw.org/docs/gcode/M493.html) for more information. diff --git a/doc/calibration/pressure-advance-calib.md b/doc/calibration/pressure-advance-calib.md new file mode 100644 index 0000000000..4b14ce7c4c --- /dev/null +++ b/doc/calibration/pressure-advance-calib.md @@ -0,0 +1,78 @@ +# Pressure Advance + +Pressure Advance is a feature that compensates for the lag in filament pressure within the nozzle during acceleration and deceleration. It helps improve print quality by reducing issues like blobs, oozing, and inconsistent extrusion, especially at corners or during fast movements. + +Orca Slicer includes three approaches for calibrating the pressure advance value. Each method has its own advantages and disadvantages. It is important to note that each method has two versions: one for a direct drive extruder and one for a Bowden extruder. Make sure to select the appropriate version for your test. + +> [!NOTE] +> [Adaptive Pressure Advance Guide](adaptive-pressure-advance-calib) + +> [!WARNING] +> **Marlin Printers:** Linear advance must be enabled in firmware (M900). +> **Not all printers have it enabled by default.** + +> [!WARNING] +> **Bambulab Printers:** make sure you do not select the 'Flow calibration' option. +> ![flow-rate-Bambulab-uncheck](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Flow-Rate/flowrate-Bambulab-uncheck.png?raw=true) + +## Line method + +The line method is quick and straightforward to test. However, its accuracy highly depends on your first layer quality. It is suggested to turn on the bed mesh leveling for this test. +Steps: + +1. Select the printer, filament, and process you would like to use for the test. +2. Print the project and check the result. You can select the value of the most even line and update your PA value in the filament settings. +3. In this test, a PA value of `0.016` appears to be optimal. + + ![pa-line](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-line.gif?raw=true) + + ![pa-lines](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-lines.png?raw=true) + + ![pa-line-0-016](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-line-0-016.jpg?raw=true) + + ![pressure_advance_enable](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pressure_advance_enable.png?raw=true) + +## Pattern method + +The pattern method is adapted from [Andrew Ellis' pattern method generator](https://ellis3dp.com/Pressure_Linear_Advance_Tool/), which was itself derived from the [Marlin pattern method](https://marlinfw.org/tools/lin_advance/k-factor.html) developed by [Sineos](https://github.com/Sineos/k-factorjs). + +[Instructions for using and reading the pattern method](https://ellis3dp.com/Print-Tuning-Guide/articles/pressure_linear_advance/pattern_method.html) are provided in [Ellis' Print Tuning Guide](https://ellis3dp.com/Print-Tuning-Guide/), with only a few Orca Slicer differences to note. + +Test configuration window allow user to generate one or more tests in a single projects. Multiple tests will be placed on each plate with extra plates added if needed. + +1. Single test \ + ![PA pattern single test](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-pattern-single.png?raw=true) +2. Batch mode testing (multiple tests on a sinle plate) \ + ![PA pattern batch mode](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-pattern-batch.png?raw=true) + +Once test generated, one or more small rectangular prisms could be found on the plate, one for each test case. This object serves a few purposes: + +1. The test pattern itself is added in as custom G-Code at each layer, same as you could do by hand actually. The rectangular prism gives us the layers in which to insert that G-Code. This also means that **you'll see the full test pattern when you move to the Preview pane:** + +![PA pattern batch mode plater](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-pattern-batch-plater.png?raw=true) + +1. The prism acts as a handle, enabling you to move the test pattern wherever you'd like on the plate by moving the prism +2. Each test object is pre-configured with target parameters which are reflected in the objects name. However, test parameters may be adjusted for each prism individually by referring to the object list pane: + +![PA pattern batch mode object list](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-pattern-batch-objects.png?raw=true) + +Next, Ellis' generator provided the ability to adjust specific printer, filament, and print profile settings. You can make these same changes in Orca Slicer by adjusting the settings in the Prepare pane as you would with any other print. When you initiate the calibration test, Ellis' default settings are applied. A few things to note about these settings: + +1. Ellis specified line widths as a percent of filament diameter. The Orca pattern method does the same to provide its suggested defaults, making use of Ellis' percentages in combination with your specified nozzle diameter +2. In terms of line width, the pattern only makes use of the `Default` and `First layer` widths +3. In terms of speed, the pattern only uses the `First layer speed -> First layer` and `Other layers speed -> Outer wall` speeds +4. The infill pattern beneath the numbers cannot be changed becuase it's not actually an infill pattern pulled from the settings. All of the pattern G-Code is custom written, so that "infill" is, effectively, hand-drawn and so not processed through the usual channels that would enable Orca to recognize it as infill + +## Tower method + +The tower method may take a bit more time to complete, but it does not rely on the quality of the first layer. +The PA value for this test will be increased by 0.002 for every 1 mm increase in height. (**NOTE** 0.02 for Bowden) + +1. Select the printer, filament, and process you would like to use for the test. +2. Examine each corner of the print and mark the height that yields the best overall result. +3. I selected a height of 8 mm for this case, so the pressure advance value should be calculated as `PressureAdvanceStart+(PressureAdvanceStep x measured)` example: `0+(0.002 x 8) = 0.016`. + ![pa-tower](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-tower.jpg?raw=true) + ![pa-tower-measure](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/pa/pa-tower-measure.jpg?raw=true) + +> [!TIP] +> @ItsDeidara has made a html to help with the calculation. Check it out if those equations give you a headache [here](https://github.com/ItsDeidara/Orca-Slicer-Assistant). diff --git a/doc/calibration/retraction-calib.md b/doc/calibration/retraction-calib.md new file mode 100644 index 0000000000..7ec32ac40f --- /dev/null +++ b/doc/calibration/retraction-calib.md @@ -0,0 +1,20 @@ +# Retraction test + +Retraction is the process of pulling the filament back into the nozzle to prevent oozing and stringing during non-print moves. If the retraction length is too short, it may not effectively prevent oozing, while if it's too long, it can lead to clogs or under-extrusion. Filaments like PETG and TPU are more prone to stringing, so they may require longer retraction lengths compared to PLA or ABS. + +This test generates a retraction tower automatically. The retraction tower is a vertical structure with multiple notches, each printed at a different retraction length. After the print is complete, we can examine each section of the tower to determine the optimal retraction length for the filament. The optimal retraction length is the shortest one that produces the cleanest tower. + +![retraction_test](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/retraction/retraction_test.gif?raw=true) + +![retraction_test_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/retraction/retraction_test_menu.png?raw=true) + +In the dialog, you can select the start and end retraction length, as well as the retraction length increment step. The default values are 0mm for the start retraction length, 2mm for the end retraction length, and 0.1mm for the step. These values are suitable for most direct drive extruders. However, for Bowden extruders, you may want to increase the start and end retraction lengths to 1mm and 6mm, respectively, and set the step to 0.2mm. + +![retraction_test_print](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/retraction/retraction_test_print.jpg?raw=true) + +> [!NOTE] +> When testing filaments such as PLA or ABS that have minimal oozing, the retraction settings can be highly effective. You may find that the retraction tower appears clean right from the start. In such situations, setting the retraction length to 0.2mm - 0.4mm using Orca Slicer should suffice. +> On the other hand, if there is still a lot of stringing at the top of the tower, it is recommended to dry your filament and ensure that your nozzle is properly installed without any leaks. + +> [!TIP] +> @ItsDeidara has made a html to help with the calculation. Check it out if those equations give you a headache [here](https://github.com/ItsDeidara/Orca-Slicer-Assistant). diff --git a/doc/calibration/temp-calib.md b/doc/calibration/temp-calib.md new file mode 100644 index 0000000000..084a0bd31b --- /dev/null +++ b/doc/calibration/temp-calib.md @@ -0,0 +1,31 @@ +# Temp Calibration + +In FDM 3D printing, the temperature is a critical factor that affects the quality of the print. +There is no other calibration that can have such a big impact on the print quality as temperature calibration. + +## Nozzle Temp tower + +Nozzle temperature is one of the most important settings to calibrate for a successful print. The temperature of the nozzle affects the viscosity of the filament, which in turn affects how well it flows through the nozzle and adheres to the print bed. If the temperature is too low, the filament may not flow properly, leading to under-extrusion, poor layer adhesion and stringing. If the temperature is too high, the filament may degrade, over-extrude and produce stringing. + +![temp-tower_test](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Temp-calib/temp-tower_test.gif?raw=true) + +![temp-tower_test_menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Temp-calib/temp-tower_test_menu.png?raw=true) + +Temp tower is a straightforward test. The temp tower is a vertical tower with multiple blocks, each printed at a different temperature. Once the print is complete, we can examine each block of the tower and determine the optimal temperature for the filament. The optimal temperature is the one that produces the highest quality print with the least amount of issues, such as stringing, layer adhesion, warping (overhang), and bridging. + +![temp-tower](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Temp-calib/temp-tower.jpg?raw=true) + +## Bed temperature + +Bed temperature is another important setting to calibrate for a successful print. The bed temperature affects the adhesion of the filament to the print bed, which in turn affects the overall quality of the print. If the bed temperature is too low, the filament may not adhere properly to the print bed, leading to warping and poor layer adhesion. If the bed temperature is too high, the filament may become too soft and lose its shape, leading to over-extrusion and poor layer adhesion. + +This setting doesn't have a specific test, but it is recommended to start with the recommended bed temperature for the filament and adjust it based on the filament manufacturer's recommendations. + +## Chamber temperature + +Chamber temperature can affect the print quality, especially for high-temperature filaments. A heated chamber can help to maintain a consistent temperature throughout the print, reducing the risk of warping and improving layer adhesion. However, it is important to monitor the chamber temperature to ensure that it does not exceed the recommended temperature for the filament being used. + +See: [Chamber temperature printer settings](Chamber-temperature) + +> [!NOTE] +> Low temperature Filaments like PLA can clog the nozzle if the chamber temperature is too high. diff --git a/doc/calibration/tolerance-calib.md b/doc/calibration/tolerance-calib.md new file mode 100644 index 0000000000..a96e71dc4f --- /dev/null +++ b/doc/calibration/tolerance-calib.md @@ -0,0 +1,31 @@ +# Filament Tolerance Calibration + +Each filament and printer combination can result in different tolerances. This means that even using the same filament and print profile, tolerances may vary from one printer to another. +To correct for these variations, Orca Slicer provides: + +- Filament Compensation: + + - Shrinkage (XY) + + ![Shrinkage](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Tolerance/FilamentShrinkageCompensation.png?raw=true) + +- Process Compensation: + + - X-Y hole compensation + - X-Y contour compensation + - Precise wall + - Precise Z height + + ![Process_Compensation](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Tolerance/QualityPrecision.png?raw=true) + +## Orca Tolerance Test + +This calibration test is designed to evaluate the dimensional accuracy of your printer and filament. The model consists of a base with six hexagonal holes, each with a different tolerance: 0.0 mm, 0.05 mm, 0.1 mm, 0.2 mm, 0.3 mm, and 0.4 mm, as well as a hexagon-shaped tester. + +![tolerance_hole](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Tolerance/tolerance_hole.svg?raw=true) + +You can check the tolerance using either an M6 Allen key or the included printed hexagon tester. +Use calipers to measure both the holes and the inner tester. Based on your results, you can fine-tune the X-Y hole compensation and X-Y contour compensation settings. Repeat the process until you achieve the desired precision. + +![OrcaToleranceTes_m6](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Tolerance/OrcaToleranceTes_m6.jpg?raw=true) +![OrcaToleranceTest_print](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Tolerance/OrcaToleranceTest_print.jpg?raw=true) diff --git a/doc/calibration/volumetric-speed-calib.md b/doc/calibration/volumetric-speed-calib.md new file mode 100644 index 0000000000..e904e3e50c --- /dev/null +++ b/doc/calibration/volumetric-speed-calib.md @@ -0,0 +1,23 @@ +# Max Volumetric speed + +This is a test designed to calibrate the maximum volumetric speed of the specific filament. The generic or 3rd party filament types may not have the correct volumetric flow rate set in the filament. This test will help you to find the maximum volumetric speed of the filament. + +You will be promted to enter the settings for the test: start volumetric speed, end volumentric speed, and step. It is recommended to use the default values (5mm³/s start, 20mm³/s end, with a step of 0.5), unless you already have an idea of the lower or upper limit for your filament. Select "OK", slice the plate, and send it to the printer. + +Once printed, take note of where the layers begin to fail and where the quality begins to suffer. Pay attention to changes from matte to shiny as well. + +![vmf_measurement_point](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images//vmf_measurement_point.jpg?raw=true) + +Using calipers or a ruler, measure the height of the print at that point. Use the following calculation to determine the correct max flow value: `start + (height-measured * step)` . For example in the photo below, and using the default setting values, the print quality began to suffer at 19mm measured, so the calculation would be: `5 + (19 * 0.5)` , or `13mm³/s` using the default values. Enter your number into the "Max volumetric speed" value in the filament settings. + +![caliper_sample_mvf](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images//caliper_sample_mvf.jpg?raw=true) + +You can also return to OrcaSlicer in the "Preview" tab, make sure the color scheme "flow" is selected. Scroll down to the layer height that you measured, and click on the toolhead slider. This will indicate the max flow level for your filmanet. + +![image](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/max_volumetric_flow.jpg?raw=true) + +> [!NOTE] +> You may also choose to conservatively reduce the flow by 5-10% to ensure print quality. + +> [!TIP] +> @ItsDeidara has made a html to help with the calculation. Check it out if those equations give you a headache [here](https://github.com/ItsDeidara/Orca-Slicer-Assistant). diff --git a/doc/developer-reference/Home.md b/doc/developer-reference/Home.md deleted file mode 100644 index 99a9c0f689..0000000000 --- a/doc/developer-reference/Home.md +++ /dev/null @@ -1,7 +0,0 @@ -# For Developers - -This is a documentation from someone exploring the code and is by no means complete or even completely accurate. Please edit the parts you might find inaccurate. This is probably going to be helpful nonetheless. - -- [Preset, PresetBundle and PresetCollection](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Preset-and-bundle.md) -- [Plater, Sidebar, Tab, ComboBox](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/plater-sidebar-tab-combobox.md) -- [Slicing Call Hierarchy](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/slicing-hierarchy.md) diff --git a/doc/developer-reference/How-to-build.md b/doc/developer-reference/How-to-build.md new file mode 100644 index 0000000000..a480a2f94a --- /dev/null +++ b/doc/developer-reference/How-to-build.md @@ -0,0 +1,207 @@ +# How to Build + +## Windows 64-bit + +This guide is for building your Visual Studio 2022 solution for OrcaSlicer on Windows 64-bit. + +### Tools Required + +- [Visual Studio 2022](https://visualstudio.microsoft.com/vs/) or Visual Studio 2019 + ```shell + winget install --id=Microsoft.VisualStudio.2022.Professional -e + ``` +- [CMake (version 3.31)](https://cmake.org/) — **⚠️ version 3.31.x is mandatory** + ```shell + winget install --id=Kitware.CMake -v "3.31.6" -e + ``` +- [Strawberry Perl](https://strawberryperl.com/) + ```shell + winget install --id=StrawberryPerl.StrawberryPerl -e + ``` +- [Git](https://git-scm.com/) + ```shell + winget install --id=Git.Git -e + ``` +- [git-lfs](https://git-lfs.com/) + ```shell + winget install --id=GitHub.GitLFS -e + ``` + +> [!TIP] +> GitHub Desktop (optional): A GUI for Git and Git LFS, which already includes both tools. +> ```shell +> winget install --id=GitHub.GitHubDesktop -e +> ``` + +### Instructions + +1. Clone the repository: + - If using GitHub Desktop clone the repository from the GUI. + - If using the command line: + 1. Clone the repository: + ```shell + git clone https://github.com/SoftFever/OrcaSlicer + ``` + 2. Run lfs to download tools on Windows: + ```shell + git lfs pull + ``` +2. Open the appropriate command prompt: + - For Visual Studio 2019: + Open **x64 Native Tools Command Prompt for VS 2019** and run: + ```shell + build_release.bat + ``` + - For Visual Studio 2022: + Open **x64 Native Tools Command Prompt for VS 2022** and run: + ```shell + build_release_vs2022.bat + ``` + +> [!NOTE] +> If you encounter issues, you can try to uninstall ZLIB from your Vcpkg library. + +3. If successful, you will find the VS 2022 solution file in: + ```shell + build\OrcaSlicer.sln + ``` + +> [!IMPORTANT] +> Make sure that CMake version 3.31.x is actually being used. Run `cmake --version` and verify it returns a **3.31.x** version. +> If you see an older version (e.g. 3.29), it's likely due to another copy in your system's PATH (e.g. from Strawberry Perl). +> You can run where cmake to check the active paths and rearrange your **System Environment Variables** > PATH, ensuring the correct CMake (e.g. C:\Program Files\CMake\bin) appears before others like C:\Strawberry\c\bin. + +> [!NOTE] +> If the build fails, try deleting the `build/` and `deps/build/` directories to clear any cached build data. Rebuilding after a clean-up is usually sufficient to resolve most issues. + +## macOS 64-bit + +### Tools Required + +- Xcode +- CMake (version 3.31.x is mandatory) +- Git +- gettext +- libtool +- automake +- autoconf +- texinfo + +> [!TIP] +> You can install most of them by running: +> ```shell +> brew install gettext libtool automake autoconf texinfo +> ``` + +Homebrew currently only offers the latest version of CMake (e.g. **4.X**), which is not compatible. To install the required version **3.31.X**, follow these steps: + +1. Download CMake **3.31.7** from: [https://cmake.org/download/](https://cmake.org/download/) +2. Install the application (drag it to `/Applications`). +3. Add the following line to your shell configuration file (`~/.zshrc` or `~/.bash_profile`): + +```sh +export PATH="/Applications/CMake.app/Contents/bin:$PATH" +``` + +4. Restart the terminal and check the version: + +```sh +cmake --version +``` + +5. Make sure it reports a **3.31.x** version. + +> [!IMPORTANT] +> If you've recently upgraded Xcode, be sure to open Xcode at least once and install the required macOS build support. + +### Instructions + +1. Clone the repository: + ```shell + git clone https://github.com/SoftFever/OrcaSlicer + cd OrcaSlicer + ``` +2. Build the application: + ```shell + ./build_release_macos.sh + ``` +3. Open the application: + ```shell + open build/arm64/OrcaSlicer/OrcaSlicer.app + ``` + +### Debugging in Xcode + +To build and debug directly in Xcode: + +1. Open the Xcode project: + ```shell + open build/arm64/OrcaSlicer.xcodeproj + ``` +2. In the menu bar: + - **Product > Scheme > OrcaSlicer** + - **Product > Scheme > Edit Scheme...** + - Under **Run > Info**, set **Build Configuration** to `RelWithDebInfo` + - Under **Run > Options**, uncheck **Allow debugging when browsing versions** + - **Product > Run** + +## Linux + +### Using Docker (Recommended) + +#### Dependencies + +- Docker +- Git + +#### Instructions + +```shell +git clone https://github.com/SoftFever/OrcaSlicer && cd OrcaSlicer && ./DockerBuild.sh && ./DockerRun.sh +``` + +### Troubleshooting +The `DockerRun.sh` script includes several commented-out options that can help resolve common issues. Here's a breakdown of what they do: + +- `xhost +local:docker`: If you encounter an "Authorization required, but no authorization protocol specified" error, run this command in your terminal before executing DockerRun.sh. This grants Docker containers permission to interact with your X display server. +- `-h $HOSTNAME`: Forces the container's hostname to match your workstation's hostname. This can be useful in certain network configurations. +- `-v /tmp/.X11-unix:/tmp/.X11-unix`: Helps resolve problems with the X display by mounting the X11 Unix socket into the container. +- `--net=host`: Uses the host's network stack, which is beneficial for printer Wi-Fi connectivity and D-Bus communication. +- `--ipc host`: Addresses potential permission issues with X installations that prevent communication with shared memory sockets. +- `-u $USER`: Runs the container as your workstation's username, helping to maintain consistent file permissions. +- `-v $HOME`:/home/$USER: Mounts your home directory into the container, allowing you to easily load and save files. +- `-e DISPLAY=$DISPLAY`: Passes your X display number to the container, enabling the graphical interface. +- `--privileged=true`: Grants the container elevated privileges, which may be necessary for libGL and D-Bus functionalities. +- `-ti`: Attaches a TTY to the container, enabling command-line interaction with OrcaSlicer. +- `--rm`: Automatically removes the container once it exits, keeping your system clean. +- `orcaslicer $*`: Passes any additional parameters from the `DockerRun.sh` script directly to the OrcaSlicer executable within the container. +By uncommenting and using these options as needed, you can often resolve issues related to display authorization, networking, and file permissions. + +## Ubuntu + +### Dependencies + +All required dependencies will be installed automatically by the provided shell script, including: + +- libmspack-dev +- libgstreamerd-3-dev +- libsecret-1-dev +- libwebkit2gtk-4.0-dev +- libssl-dev +- libcurl4-openssl-dev +- eglexternalplatform-dev +- libudev-dev +- libdbus-1-dev +- extra-cmake-modules +- libgtk2.0-dev +- libglew-dev +- cmake +- git +- texinfo + +### Instructions + +```shell +`./build_linux.sh -u` # install dependencies +`./build_linux.sh -disr` # build OrcaSlicer +``` diff --git a/doc/developer-reference/How-to-create-profiles.md b/doc/developer-reference/How-to-create-profiles.md new file mode 100644 index 0000000000..3a3a9adb24 --- /dev/null +++ b/doc/developer-reference/How-to-create-profiles.md @@ -0,0 +1,420 @@ +# Guide: Develop Profiles for OrcaSlicer + +## Introduction + +This guide will help you develop profiles for OrcaSlicer. + +## High-level Overview + +OrcaSlicer uses JSON files to store profiles. There are four types of profiles: + +1. Printer model (type `machine_model`). Example: `Orca 3D Fuse1.json` +2. Printer variant (type `machine`). Example: `Orca 3D Fuse1 0.2 nozzle.json` +3. Filament (type `filament`). Example: `Generic PLA @Orca 3D Fuse1@.json` +4. Process (type `process`). Example: `0.10mm Standard @Orca 3D Fuse1 0.2.json` + +Additionally, there is an overall meta file for each vendor (`Orca 3D.json`). + +For easier understanding, let's consider a scenario with a printer manufacturer called `Orca 3D`. The manufacturer offers one printer model called `Fuse 1`, which supports 0.2/0.4/0.6/0.8mm nozzles and common market filaments. + +In this case: + +- Vendor profile: `Orca 3D` +- Printer profile: `Orca 3D Fuse1` +- Printer variant profile: `Orca 3D Fuse1 0.4 nozzle` +- Filament profile: `Generic PLA @Orca 3D Fuse1@` +- Process profile: `0.20mm Standard @Orca 3D Fuse1 0.4` + +The profile name should be same as the filename without the `.json` extension in principal. +Naming conventions: + +1. Vendor profile: `vendor_name.json` +2. Printer profile: `vendor_name` + `printer_name` + `.json` +3. Printer variant profile: `vendor_name` + `printer_variant_name` + `.json` (where `printer_variant_name` typically includes `printer_name` + `nozzle_diameter`) +4. Filament profile: `filament_vendor_name` + `filament_name` + " @" + `vendor_name` + `printer_name`/`printer_variant_name` + `.json` +5. Process profile: `layer_height` + `preset_name` + " @" + `vendor_name` + `printer_name`/`printer_variant_name` + `.json` (`preset_name` typically includes "standard," "fine," "fast," "draft," etc.) + +## File Structure and Templates + +Profiles should be structured in the following way under the OrcaSlicer installation directory: + +```plaintext +resources\profiles\ + ├── Orca 3D.json + └── Orca 3D\ + ├── machine\ + │ ├── Orca 3D Fuse1.json + │ ├── Orca 3D Fuse1 0.2 nozzle.json + │ └── Orca 3D Fuse1 0.4 nozzle.json + ├── process\ + │ ├── 0.10mm Standard @Orca 3D Fuse1 0.2.json + │ └── 0.20mm Standard @Orca 3D Fuse1 0.4.json + └── filament\ + └── Generic PLA @Orca 3D Fuse1@.json +``` + +> [!TIP] +> Use short vendor names in filenames to avoid excessive length. + +> [!NOTE] +> Filament profiles are **optional**. Create them only if the vendor has specifically tuned profiles for the given printer. See [Filament profiles](#filament-profiles) for details. + +Template files for profiles are available in: + +```shell +OrcaSlicer\resources\profiles_template\Template +``` + +These templates can be used as a starting point for new printer, filament, and process profiles. + +## Filament Profiles + +OrcaSlicer features a global filament library called `OrcaFilamentLibrary`, which is automatically available for all printers. It includes generic filaments like `Generic PLA @System` and `Generic ABS @System` etc. + +Printer vendors can override specific filaments in the global library for certain printer models by creating new filament profiles. + +Relationship diagram: + +```mermaid +graph TD; + OrcaFilamentLibrary-->Orca_3D_filament; + OrcaFilamentLibrary-->Vendor_A_filament; + OrcaFilamentLibrary-->Vendor_B_filament; +``` + +> [!IMPORTANT] +> Create new filament profiles only if you have truly specifically tuned the filament for the given printer. Otherwise, use the global library. The global library has a better chance to receive optimizations and updates from OrcaSlicer contributors, which will benefit users of all printers. + +### Adding Filament Profiles to the Global Library + +In this section, we will discuss how to add a new filament profile into the global library. +If you want to add a new generic profile into the global library, you need to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament` folder. If a base type already exists in the global library, you can use this file as a base profile by inheriting it. +The following sample JSON file shows how to create a new generic filament profile `Generic PLA-GF @System` in the global library. + +1. The first step is to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament` folder. The file name should be `Generic PLA-GF @System.json`. Please note that we leave the `compatible_printers` field empty so that it is available for all printers. + +```json +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA05", + "name": "Generic PLA-GF @System", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_type": ["PLA-GF"], + "filament_flow_ratio": [ + "0.96" + ], + "compatible_printers": [] +} +``` + +2. Register the profile in `resources\profiles\OrcaFilamentLibrary.json`: + +```json +{ + "name": "OrcaFilamentLibrary", + "version": "02.02.00.04", + "force_update": "0", + "description": "Orca Filament Library", + "filament_list": [ + // ... + { + "name": "Generic PLA-GF @System", + "sub_path": "filament/Generic PLA-GF @System.json" + } + ] +} +``` + +3. The last step is to validate the newly added filament profiles see [Validate Profiles](#validate-profiles). + +> [!NOTE] +> If the filament is compatible with AMS, ensure that the `filament_id` value **does not exceed 8 characters** to maintain AMS compatibility. + +### Adding Filament Profiles to Printer Vendor Library + +In this section, we will discuss how to add a new filament profile for a certain vendor. +If you want to add a new filament profile, whether it's a brand new profile or a specialized version of a global filament profile for a given printer, you need to create a new file in the `resources\profiles\vendor_name\filament` folder. If a base type already exists in the global library, you can use this file as a base profile by inheriting it. +Below is a sample JSON file showing how to create a specialized `Generic ABS` filament profile for the ToolChanger printer. +Please note that here we must leave the compatible_printers field non-empty, unlike in the global library. + +```json +{ + "type": "filament", + "setting_id": "GFB99_MTC_0", + "name": "Generic ABS @MyToolChanger", + "from": "system", + "instantiation": "true", + "inherits": "Generic ABS @System", + "filament_cooling_final_speed": [ + "3.5" + ], + "filament_cooling_initial_speed": [ + "10" + ], + "filament_cooling_moves": [ + "2" + ], + "filament_load_time": [ + "10.5" + ], + "filament_loading_speed": [ + "10" + ], + "filament_loading_speed_start": [ + "50" + ], + "filament_multitool_ramming": [ + "1" + ], + "filament_multitool_ramming_flow": [ + "40" + ], + "filament_stamping_distance": [ + "45" + ], + "filament_stamping_loading_speed": [ + "29" + ], + "filament_unload_time": [ + "8.5" + ], + "filament_unloading_speed": [ + "100" + ], + "compatible_printers": [ + "MyToolChanger 0.4 nozzle", + "MyToolChanger 0.2 nozzle", + "MyToolChanger 0.6 nozzle", + "MyToolChanger 0.8 nozzle" + ] +} +``` + +> [!NOTE] +> If the filament is compatible with AMS, ensure that the `filament_id` value **does not exceed 8 characters** to maintain AMS compatibility. + +## Process Profiles + +Process profiles define print quality and behavior. They follow a structure similar to filament profiles: + +- A common base file, e.g., `fdm_process_common.json`, acts as the parent. +- Vendor-specific process profiles should inherit from the base using the `inherits` field. +- Profiles are stored under: + +```shell +resources\profiles\vendor_name\process\ +``` + +- **There are no global process profiles**. +- Each process profile includes a `"compatible_printers"` field with an array of compatible printer variant names. + +Example: + +```json +{ + "type": "process", + "name": "0.10mm Standard @ExampleVendor Printer 0.2", + "inherits": "fdm_process_common", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "ExampleVendor Printer 0.2 nozzle" + ] +} +``` + +## Printer Model Profiles + +- Printer model profiles (type `machine_model`) describe the general printer information. +- Example fields: `nozzle_diameter`, `bed_model`, `bed_texture`, `model_id`, etc. +- Stored in: + +```shell +resources\profiles\vendor_name\machine\ +``` + +- Each vendor's folder may contain an image named: + +```shell +[machine_model_list.name]_cover.png +``` + +This image will be used in the UI. + +Example model profile: + +```json +{ + "type": "machine_model", + "name": "Example M5", + "nozzle_diameter": "0.2;0.25;0.4;0.6", + "bed_model": "M5-Example-bed.stl", + "bed_texture": "M5-Example-texture.svg", + "model_id": "V1234", + "family": "Example", + "machine_tech": "FFF", + "default_materials": "Example Generic PLA;Example Generic PETG" +} +``` + +## Printer Variant Profiles + +- Printer variants (type `machine`) define specific nozzle configurations and mechanical details. +- Each variant must inherit from a common base like `fdm_machine_common.json`. +- Must list the compatible nozzle diameter in the `nozzle_diameter` array. +- Example fields include `printer_model`, `printer_variant`, `default_print_profile`, `printable_area`, etc. + +Example variant profile: + +```json +{ + "type": "machine", + "name": "Example M5 0.2 nozzle", + "inherits": "fdm_machine_common", + "from": "system", + "setting_id": "GM001", + "instantiation": "true", + "nozzle_diameter": ["0.2"], + "printer_model": "Example M5", + "printer_variant": "0.2", + "default_filament_profile": ["Example Generic PLA"], + "default_print_profile": "0.10mm Standard 0.2mm nozzle @Example", + "printable_area": ["0x0", "235x0", "235x235", "0x235"], + "nozzle_type": "brass" +} +``` + +## Models + +- The `model` directory under the vendor folder is intended to behave similarly to `machine` profiles. +- Used for additional printer-related 3D models or definitions, stored at: + +``` +resources\profiles\vendor_name\model\ +``` + +## Vendor Meta File + +Each vendor must include a JSON file in the `resources\profiles` directory, named `vendor_name.json`. This file lists all available models, variants, processes, and filaments: + +Example: + +```json +{ + "name": "ExampleVendor", + "version": "01.00.00.00", + "force_update": "1", + "description": "Example configuration", + "machine_model_list": [ + { + "name": "Example M5", + "sub_path": "machine/Example M5.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + } + ], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + } + ] +} +``` + +## Validate Profiles + +You can validate your profiles using both the **OrcaSlicer profile validator** and the **Python validation script**. These tools are designed to check different aspects of the profiles, so both should be executed and pass without errors to ensure full compatibility. + +> [!NOTE] +> **✅ Recommendation:** Always run **both** the OrcaSlicer validator and the Python script to ensure all aspects of the profiles are valid. + +### 1. OrcaSlicer Profile Validator + +You can run OrcaSlicer to verify if the filament you just added is available and usable. You can also use the [Orca profile validator](https://github.com/SoftFever/Orca_tools/releases/tag/1) tool to help debug any errors. + +> [!IMPORTANT] +> You need to delete the `%appdata%/OrcaSlicer/system` folder to force OrcaSlicer to reload your lastest changes. + +The process is the same if you want to add a new brand filament profile into the global library. You need to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament\brand_name` folder. The only difference is that you should put the file into the brand's own subfolder. + +#### Usage + +```shell +-h [ --help ] help +-p [ --path ] arg profile folder +-v [ --vendor ] arg Vendor name. Optional, all profiles present in the folder will be validated if not specified +-l [ --log_level ] arg (=2) Log level. Optional, default is 2 (warning). Higher values produce more detailed logs. +``` + +#### Example + +```shell +./OrcaSlicer_profile_validator -p ~/codes/OrcaSlicer/resources/profiles -l 2 -v Custom +``` + +#### Sample result with errors + +```shell +PS D:\codes\OrcaSlicer> ."D:/codes/OrcaSlicer/build/src/Release/OrcaSlicer_profile_validator.exe" --path d:\codes\OrcaSlicer\resources\profiles -l 2 -v Custom +[2024-02-28 21:23:06.102138] [0x0000a4e8] [error] Slic3r::ConfigBase::load_from_json: parse d:\codes\OrcaSlicer\resources\profiles/Custom/machine/fdm_klipper_common.json got a nlohmann::detail::parse_error, reason = [json.exception.parse_error.101] parse error at line 9, column 38: syntax error while parsing object - unexpected string literal; expected '}' +... +Validation failed +``` + +#### Sample result with success + +```shell +PS D:\codes\OrcaSlicer\build\src\RelWithDebInfo> ."D:/codes/OrcaSlicer/build/src/Release/OrcaSlicer_profile_validator.exe" --path d:\codes\OrcaSlicer\resources\profiles -l 2 -v Custom +Validation completed successfully +``` + +> [!WARNING] +> Use `OrcaSlicer_profile_validator` on Ubuntu and `OrcaSlicer_profile_validator.exe` on Windows. + +--- + +### 2. Python Profile Validation Script + +In addition to the Orca validator, you should run the `orca_extra_profile_check.py` script. This script performs additional checks like: + +- Validation of `compatible_printers` in filament profiles +- Consistency of filament names +- Validation of default materials in machine profiles (optional) + +#### Example command + +```shell +python ./orca_extra_profile_check.py +``` + + +You can also enable or disable specific checks: + +- `--help`: displays help information +- `--vendor` (optional): checks only the specified vendor. If omitted, all vendors are checked. +- `--check-filaments` (enabled by default): checks `compatible_printers` fields in filament profiles +- `--check-materials`: checks default material names in machine profiles +- `--check-obsolete-keys`: checks for obsolete keys in profiles + + +#### Sample usage with all checks enabled + +```shell +python ./orca_extra_profile_check.py --vendor="vendor_name" --check-filaments --check-materials +``` + +The script will output the number of errors found and exit with a non-zero status code if any issues are detected. diff --git a/doc/developer-reference/How-to-wiki.md b/doc/developer-reference/How-to-wiki.md new file mode 100644 index 0000000000..86f3779257 --- /dev/null +++ b/doc/developer-reference/How-to-wiki.md @@ -0,0 +1,246 @@ +# How to Contribute to the Wiki + +This guide explains how to contribute to the Orca Slicer wiki. + +Orca Slicer uses GitHub's wiki feature, which allows users and developers to create and edit documentation collaboratively. + +We encourage all developers and users to contribute to the wiki by updating existing pages and adding new content. This helps keep the documentation up-to-date and useful for everyone. + +When developing new features, please consider updating the wiki to reflect these changes. This ensures that users have access to the latest information and can make the most of the features. + +- [Wiki Structure](#wiki-structure) + - [Home](#home) + - [Index and Navigation](#index-and-navigation) + - [File Naming and Organization](#file-naming-and-organization) +- [Formatting and Style](#formatting-and-style) + - [Markdown Formatting](#markdown-formatting) + - [Alerts and Callouts](#alerts-and-callouts) +- [Images](#images) + - [Image Naming](#image-naming) + - [Image Placement](#image-placement) + - [Linking Images](#linking-images) + - [Examples](#examples) + - [Avoid the Following](#avoid-the-following) + - [Resize Images](#resize-images) + - [Image Cropping and Highlighting](#image-cropping-and-highlighting) + - [Recommended Formats](#recommended-formats) +- [Structuring Content](#structuring-content) +- [Commands and Code Blocks](#commands-and-code-blocks) +- [External Links](#external-links) + +## Wiki Structure + +Each wiki page is a Markdown file located in the `doc` directory of the repository. The wiki is organized into various sections, each covering different areas of the project. + +### Home + +The starting point of the Orca Slicer wiki is the **Home** page. From there, you can navigate to different sections and topics related to the project. + +When creating a new page or section, be sure to link it from the Home page under the appropriate category. + +- **Print Settings:** Detailed explanations of print settings, tips, and tricks for optimizing print quality. +- **Printer Calibration:** Step-by-step calibration tests in Orca Slicer, including how to interpret the results. +- **Developer Section:** Information for developers and contributors on building Orca Slicer, localization, and developer resources. + +#### Index and Navigation + +Github Wiki uses the name of the files as identifiers for the pages. To link to a page, use the file name without the `.md` extension. +If the file is inside a subdirectory, dont include the subdirectory in the link. Instead, link directly to the file from the Home page. + +For example, if you create a new page `doc/calibration/flow-rate-calib.md`, link it as follows: + +```markdown +[Calibration Guide](Calibration) +``` + +For pages with extensive content, it's helpful to include a table of contents at the beginning. This allows users to quickly find and access different sections of the page. + +```markdown +- [Wiki Structure](#wiki-structure) + - [Home](#home) + - [Index and Navigation](#index-and-navigation) + - [File Naming and Organization](#file-naming-and-organization) +- [Formatting and Style](#formatting-and-style) +``` + +> [!NOTE] +> If you're adding a new section, follow the existing structure and ensure it doesn't already fit within an existing category. Link it from the Home page accordingly. + +### File Naming and Organization + +When creating new pages, follow these file naming conventions: + +- Use unique file names to avoid conflicts. +- Use descriptive names that reflect the page's content. +- Use kebab-case for filenames (e.g., `How-to-wiki.md`). +- If the page belongs to a specific section, include the section name in the file name. For example, calibration pages should end with `-calib.md` (e.g., `flow-rate-calib.md`, `pressure-advance-calib.md`). +- Place files in the appropriate subdirectory when applicable (e.g., `doc/calibration/` for calibration-related content). + +## Formatting and Style + +Please adhere to the following style and formatting conventions when contributing to the wiki. + +### Markdown Formatting + +The wiki uses standard Markdown syntax for formatting and aims to maintain a consistent style across all pages. Avoid using raw HTML tags and prefer Markdown formatting instead. + +Ensure your indentation is consistent, especially for code blocks and lists. + +Refer to the [GitHub Markdown Guide](https://guides.github.com/features/mastering-markdown/) for more information on Markdown syntax. + +### Alerts and Callouts + +To add alerts or notes, use GitHub’s Markdown alert syntax: + +```markdown +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. +``` + +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. + +Refer to the [GitHub Alert Guide](https://docs.github.com/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts) for more details. + +## Images + +Images are encouraged to enhance the clarity and quality of the wiki content. They help illustrate concepts, provide examples, and improve readability. + +> [!CAUTION] +> Do not use images from third-party sources unless you have the proper permissions. + +### Image Naming + +- Use clear, descriptive filenames that reflect the image content. +- For section-specific images, include the section name or initials. For example, images related to Pressure Advance could be named `pa-[description].png`. + +### Image Placement + +- General images should be placed in the `doc/images/` directory. +- Section-specific images should be stored in their corresponding subdirectories (e.g., `doc/images/calibration/` for calibration content). + +### Linking Images + +Always use raw GitHub URLs for image links to ensure correct display: + +Format = `![[filename]](` + Base URL + filename.extension + Raw tag + `)` + +- Base URL: + ```markdown + https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/ + ``` +- Raw tag: + ```markdown + ?raw=true + ``` + +#### Examples + +- For an image in `doc/images/` named `example.png`: + + ```markdown + ![example](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/example.png?raw=true) + ``` + +- For an image in a subdirectory like `doc/images/calibration/pa-example.svg`: + ```markdown + ![pa-example](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/calibration/pa-example.svg?raw=true) + ``` + +> [!IMPORTANT] +> New or Moved Images will not appear in the preview until the Pull Request is merged. Double-check your paths. +> If you are changing an image path, ensure all links to that image are updated accordingly. + +#### Avoid the Following + +- Relative paths +- GitHub Assets, user content, or user-images URLs +- External image links from unreliable or temporary platforms +- Images containing personal or sensitive information +- Using images for content that can be expressed in text, such as equations or code—use Markdown syntax or Mermaid/Math formatting instead. + +> [!NOTE] +> When contributing section-specific images, follow the naming conventions and directory structure. + +#### Resize Images + +Avoid the resize of images and let the Wiki handle it automatically. + +If resizing is necessary (e.g., for thumbnails), use the following syntax: + +HTML Format = `` + filename + ` +``` + +### Image Cropping and Highlighting + +To ensure clarity: + +- Crop images to focus on relevant areas. +- Use annotations like arrows or shapes (circles, rectangles) to highlight key parts—but avoid overloading the image. + +### Recommended Formats + +- **JPG:** Suitable for photographs. Avoid for images with text or fine detail due to compression artifacts. +- **PNG:** Ideal for screenshots or images with transparency. Ensure sufficient contrast for light and dark modes. +- **SVG:** Preferred when possible. SVGs support theme adaptation (light/dark mode), making them ideal for icons and diagrams. + +## Structuring Content + +Each wiki page should have a clear objective, which helps determine the structure of the content. After a brief introduction, use one of the following formats: + +- **Step-by-Step Guide:** Organize content into sections and subsections for tasks requiring sequential actions (e.g., calibration procedures). +- **GUI-Based Reference:** If sequence isn’t crucial, structure the content following Orca Slicer’s GUI. This format works well for configurable settings or feature overviews. + - Example: Explain **Layer Height** before **Initial Layer Height**, as the former applies globally while the latter is specific to the first layer. + +## Commands and Code Blocks + +When adding commands or code blocks please use the [Code Block with Syntax Highlighting feature of Markdown](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting). + +- Use triple backticks (```) to enclose code blocks. +- Specify the language for proper highlighting and readability. + +````markdown +```json +{ + "key": "value" +} +``` +```` + +```json +{ + "key": "value" +} +``` + +## External Links + +Be careful when linking to external resources. Ensure that the links are relevant and reliable. +Papers, articles, and other resources should be cited properly. diff --git a/doc/Localization_guide.md b/doc/developer-reference/Localization_guide.md similarity index 83% rename from doc/Localization_guide.md rename to doc/developer-reference/Localization_guide.md index 5949de03db..ffc347db8c 100644 --- a/doc/Localization_guide.md +++ b/doc/developer-reference/Localization_guide.md @@ -2,26 +2,28 @@ The purpose of this guide is to describe how to contribute to the Orca Slicer translations. We use GNUgettext for extracting string resources from the project and PoEdit for editing translations. -Those can be downloaded here: -- https://sourceforge.net/directory/os:windows/?q=gnu+gettext GNUgettext package contains a set of tools to extract strings from the source code and to create the translation Catalog. -- https://poedit.net PoEdit provides good interface for the translators. +Those can be downloaded here: + +- https://sourceforge.net/directory/os:windows/?q=gnu+gettext GNUgettext package contains a set of tools to extract strings from the source code and to create the translation Catalog. +- https://poedit.net PoEdit provides good interface for the translators. After GNUgettext is installed, it is recommended to add the path to gettext/bin to PATH variable. Full manual for GNUgettext can be seen here: http://www.gnu.org/software/gettext/manual/gettext.html - ### Scenario 1. How do I add a translation or fix an existing translation + 1. Get PO-file 'OrcaSlicer_xx.pot' from corresponding sub-folder here: -https://github.com/softfever/OrcaSlicer/tree/master/localization/i18n + https://github.com/softfever/OrcaSlicer/tree/master/localization/i18n 2. Open this file in PoEdit as "Edit a translation" 3. Apply your corrections to the translation 4. Push changed OrcaSlicer_xx.po into the original folder 5. copy OrcaSlicer_xx.mo into resources/i18n/xx and rename it to OrcaSlicer.mo, then push the changed file. ### Scenario 2. How do I add a new language support + 1. Get file OrcaSlicer.pot here : -https://github.com/softfever/OrcaSlicer/tree/master/localization/i18n + https://github.com/softfever/OrcaSlicer/tree/master/localization/i18n 2. Open it in PoEdit for "Create new translation" 3. Select Translation Language (for example French). 4. As a result you will have fr.po - the file containing translation to French. @@ -30,24 +32,28 @@ Notice. When the translation is complete you need to: - Click "Save file" button. OrcaSlicer_fr.mo will be created immediately - Bambu_Studio_fr.po needs to be copied into the sub-folder fr of https://github.com/softfever/OrcaSlicer/tree/master/localization/i18n, and be pushed - copy OrcaSlicer_xx.mo into resources/i18n/xx and rename it to OrcaSlicer.mo, then push the changed file. -( name of folder "fr" means "French" - the translation language). +( name of folder "fr" means "French" - the translation language). ### Scenario 3. How do I add a new text resource when implementing a feature to Orca Slicer + Each string resource in Orca Slicer available for translation needs to be explicitly marked using L() macro like this: + ```C++ auto msg = L("This message to be localized") ``` + To get translated text use one of needed macro/function (`_(s)` or `_CHB(s)` ). If you add new file resource, add it to the list of files containing macro `L()` ### Scenario 4. How do I use GNUgettext to localize my own application taking Orca Slicer as an example -1. For convenience create a list of files with this macro `L(s)`. We have -https://github.com/softfever/OrcaSlicer/blob/master/localization/i18n/list.txt. +1. For convenience create a list of files with this macro `L(s)`. We have + https://github.com/softfever/OrcaSlicer/blob/master/localization/i18n/list.txt. 2. Create template file(*.POT) with GNUgettext command: - ``` - xgettext --keyword=L --add-comments=TRN --from-code=UTF-8 --debug -o OrcaSlicer.pot -f list.txt + + ```shell + xgettext --keyword=L --add-comments=TRN --from-code=UTF-8 --debug -o OrcaSlicer.pot -f list.txt ``` Use flag `--from-code=UTF-8` to specify that the source strings are in UTF-8 encoding @@ -56,38 +62,37 @@ https://github.com/softfever/OrcaSlicer/blob/master/localization/i18n/list.txt. 3. Create PO- and MO-files for your project as described above. 4. To merge old PO-file with strings from created new POT-file use command: + + ```shell + msgmerge -N -o new.po old.po new.pot ``` - msgmerge -N -o new.po old.po new.pot - ``` + Use option `-N` to not using fuzzy matching when an exact match is not found. 5. To concatenate old PO-file with strings from new PO-file use command: - ``` - msgcat -o new.po old.po + + ```shell + msgcat -o new.po old.po ``` 6. Create an English translation catalog with command: - ``` - msgen -o new.po old.po + ```shell + msgen -o new.po old.po ``` Notice, in this Catalog it will be totally same strings for initial text and translated. When you have Catalog to translation open POT or PO file in PoEdit and start translating. - ## General guidelines for Orca Slicer translators +- We recommend using _PoEdit_ application for translation (as described above). It will help you eliminate most punctuation errors and will show you strings with "random" translations (if the fuzzy parameter was used). -- We recommend using *PoEdit* application for translation (as described above). It will help you eliminate most punctuation errors and will show you strings with "random" translations (if the fuzzy parameter was used). - -- To check how the translated text looks on the UI elements, test it :) If you use *PoEdit*, all you need to do is save the file. At this point, a MO file will be created. Rename it Orca Slicer.mo, and you can run Orca Slicer (see above). +- To check how the translated text looks on the UI elements, test it :) If you use _PoEdit_, all you need to do is save the file. At this point, a MO file will be created. Rename it Orca Slicer.mo, and you can run Orca Slicer (see above). - If you see an encoding error (garbage characters instead of Unicode) somewhere in Orca Slicer, report it. It is likely not a problem of your translation, but a bug in the software. - See on which UI elements the translated phrase will be used. Especially if it's a button, it is very important to decide on the translation and not write alternative translations in parentheses, as this will significantly increase the width of the button, which is sometimes highly undesirable: -![Long text on button](images/long_text_on_button.png) - - If you decide to use autocorrect or any batch processing tool, the output requires very careful proofreading. It is very easy to make it do changes that break things big time. - **Any formatting parts of the phrases must remain unchanged.** For example, you should not change `%1%` to `%1 %`, you should not change `%%` to `%` (for percent sign) and similar. This will lead to application crashes. @@ -101,4 +106,3 @@ When you have Catalog to translation open POT or PO file in PoEdit and start tra - If the phrase doesn't have a dot at the end, don't add it. And if it does, then don't forget to :) - It is useful to stick to the same terminology in the application (especially with basic terms such as "filament" and similar). Stay consistent. Otherwise it will confuse users. - diff --git a/doc/developer-reference/Preset-and-bundle.md b/doc/developer-reference/Preset-and-bundle.md index 4e0b00d186..ca2d680f0d 100644 --- a/doc/developer-reference/Preset-and-bundle.md +++ b/doc/developer-reference/Preset-and-bundle.md @@ -1,26 +1,27 @@ This page deals with the explanation for 3 classes in the code. -## [`Preset`](../../src/libslic3r/Preset.hpp) +## [`Preset`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/libslic3r/Preset.hpp) As the name might suggest this class deals with presets for various things. It defines an enum `Type` which basically tells you what kind of data the present contains. Below are a few explained and there corresponding UI elements -#### Note: There is a lot of outdated and legacy code in the code base. +> [!WARNING] +> There is a lot of outdated and legacy code in the code base. - `TYPE_PRINT`: Refers to a process preset. It's called 'Print' probably due to some legacy code. -Example Image +![process-preset](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/process-preset.png?raw=true) - `TYPE_FILAMENT`: As the name suggests this preset is for filaments -Example Image +![filament-preset](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/filament-preset.png?raw=true) - `TYPE_PRINTER`: Preset for printers. -Example Image +![printer-preset](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/printer-preset.png?raw=true) There are other preset types but some of them are for SLA. Which is legacy code, since SLA printers are no longer supported. Above 3 are the important types. -## [`PresetBundle`](../../src/libslic3r/PresetBundle.hpp) +## [`PresetBundle`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/libslic3r/PresetBundle.hpp) This is a bundle containing a few types of `PresetCollection`. One bundle has presets for some printers, filaments and some processes (TYPE_PRINT). @@ -30,9 +31,10 @@ This is a bundle containing a few types of `PresetCollection`. One bundle has pr each one of these contains a collection of processes, filaments and printers respectively.\ -#### Note: Printers, filaments and processes in the bundle don't all have to be compatible with each other. In fact all the saved presets are stored in one `PresetBundle`. The `PresetBundle` is loaded on start up. The list of filaments and processes shown for a particular printer is a subset of `filaments` and `prints` `PresetCollection`s. +> [!IMPORTANT] +> Printers, filaments and processes in the bundle don't all have to be compatible with each other. In fact all the saved presets are stored in one `PresetBundle`. The `PresetBundle` is loaded on start up. The list of filaments and processes shown for a particular printer is a subset of `filaments` and `prints` `PresetCollection`s. -## [`PresetCollection`](../../src/libslic3r/Preset.hpp) +## [`PresetCollection`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/libslic3r/Preset.hpp) `PrinterPresetCollection` is a class derived from `PresetCollection`. diff --git a/doc/developer-reference/plater-sidebar-tab-combobox.md b/doc/developer-reference/plater-sidebar-tab-combobox.md index a35ca6f8cf..e7a4c51895 100644 --- a/doc/developer-reference/plater-sidebar-tab-combobox.md +++ b/doc/developer-reference/plater-sidebar-tab-combobox.md @@ -1,23 +1,28 @@ -### !! incomplete, possibly inaccurate, being updated with new info !! +# Application Structure Overview -## [`Plater`](../../src/slic3r/GUI/Plater.hpp) +WIP... + +> [!WARNING] +> !! incomplete, possibly inaccurate, being updated with new info !! + +## [`Plater`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/slic3r/GUI/Plater.hpp) Refers to the entire application. The whole view, file loading, project saving and loading is all managed by this class. This class contains members for the model viewer, the sidebar, gcode viewer and everything else. -## [`Sidebar`](../../src/slic3r/GUI/Plater.hpp) +## [`Sidebar`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/slic3r/GUI/Plater.hpp) This is relating the the sidebar in the application window -Example Image +![full-sidebar](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/full-sidebar.png?raw=true) -## [`ComboBox`](../../src/slic3r/GUI/Widgets/ComboBox.hpp) +## [`ComboBox`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/slic3r/GUI/Widgets/ComboBox.hpp) The drop down menus where you can see and select presets -Example Image +![combobox](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/combobox.png?raw=true) -## [`Tab`](../../src/slic3r/GUI/Tab.hpp) +## [`Tab`](https://github.com/SoftFever/OrcaSlicer/blob/main/src/slic3r/GUI/Tab.hpp) Refers to the various windows with settings. e.g. the Popup to edit printer or filament preset. Also the section to edit process preset and the object list. These 4 are managed by `TabPrinter`, `TabFilament`, `TabPrint` and `TabPrintModel` respectively. -Example Image +![tab-popup](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/tab-popup.png?raw=true) \ No newline at end of file diff --git a/doc/developer-reference/slicing-hierarchy.md b/doc/developer-reference/slicing-hierarchy.md index 65d28e11aa..f703c75f15 100644 --- a/doc/developer-reference/slicing-hierarchy.md +++ b/doc/developer-reference/slicing-hierarchy.md @@ -2,4 +2,43 @@ The Slicing logic is not the easiest to locate in the code base. Below is a flow diagram of function calls that are made after clicking the `Slice Plate` button in the UI. Most of the processing happens in different threads. Note the calls after `BackgroundSlicingProcess::start()`, but this is how you can find the slicing logic. -Example Image +```mermaid +flowchart TD + A["Slice plate"] --> B["void Plater::priv::on_action_slice_plate(SimpleEvent&)"] + B --> C["void Plater::reslice()"] + C --> D["bool Plater::priv::restart_background_process(unsigned int state)"] + D --> E["bool BackgroundSlicingProcess::start()"] + E --> F["void BackgroundSlicingProcess::thread_proc_safe_seh_throw()"] + F --> G["unsigned long BackgroundSlicingProcess::thread_proc_safe_seh()"] + G --> H["void BackgroundSlicingProcess::thread_proc_safe()"] + H --> I["void BackgroundSlicingProcess::thread_proc()"] + I --> J["void BackgroundSlicingProcess::call_process_seh_throw(std::exception_ptr &ex)"] + J --> K["unsigned long BackgroundSlicingProcess::call_process_seh(std::exception_ptr &ex)"] + K --> L["void BackgroundSlicingProcess::call_process(std::exception_ptr &ex)"] + L --> M["void BackgroundSlicingProcess::process_fff()"] + M --> N["void Print::process(long long *time_cost_with_cache, bool use_cache)"] + N --> O["void PrintObject::make_perimeters()"] + O --> P["void PrintObject::slice()"] + + %% Labels for libraries + subgraph G1 [libSlic3r_gui] + B + C + D + E + F + G + H + I + J + K + L + M + end + + subgraph G2 [libSlic3r] + N + O + P + end +``` \ No newline at end of file diff --git a/doc/images/Adaptative-Bed-Mesh/ABM-Machine-G-code.png b/doc/images/Adaptative-Bed-Mesh/ABM-Machine-G-code.png new file mode 100644 index 0000000000..c0367a90c2 Binary files /dev/null and b/doc/images/Adaptative-Bed-Mesh/ABM-Machine-G-code.png differ diff --git a/doc/images/Adaptative-Bed-Mesh/ABM-PrinterConfig.png b/doc/images/Adaptative-Bed-Mesh/ABM-PrinterConfig.png new file mode 100644 index 0000000000..c2c691c0ae Binary files /dev/null and b/doc/images/Adaptative-Bed-Mesh/ABM-PrinterConfig.png differ diff --git a/doc/images/Chamber/Chamber-Temperature-Control-Material.png b/doc/images/Chamber/Chamber-Temperature-Control-Material.png new file mode 100644 index 0000000000..66559a86a3 Binary files /dev/null and b/doc/images/Chamber/Chamber-Temperature-Control-Material.png differ diff --git a/doc/images/Chamber/Chamber-Temperature-Control-Printer.png b/doc/images/Chamber/Chamber-Temperature-Control-Printer.png new file mode 100644 index 0000000000..1d7429c925 Binary files /dev/null and b/doc/images/Chamber/Chamber-Temperature-Control-Printer.png differ diff --git a/doc/images/ERS/equation1.jpeg b/doc/images/ERS/equation1.jpeg deleted file mode 100644 index 9b8439862f..0000000000 Binary files a/doc/images/ERS/equation1.jpeg and /dev/null differ diff --git a/doc/images/ERS/equation1terms.jpeg b/doc/images/ERS/equation1terms.jpeg deleted file mode 100644 index 35f6c7dba2..0000000000 Binary files a/doc/images/ERS/equation1terms.jpeg and /dev/null differ diff --git a/doc/images/ERS/equation2.jpeg b/doc/images/ERS/equation2.jpeg deleted file mode 100644 index 2a4536bbdb..0000000000 Binary files a/doc/images/ERS/equation2.jpeg and /dev/null differ diff --git a/doc/images/ERS/artefact.jpeg b/doc/images/ERS/ers-artefact.jpg similarity index 100% rename from doc/images/ERS/artefact.jpeg rename to doc/images/ERS/ers-artefact.jpg diff --git a/doc/images/ERS/intro.jpg b/doc/images/ERS/ers-intro.jpg similarity index 100% rename from doc/images/ERS/intro.jpg rename to doc/images/ERS/ers-intro.jpg diff --git a/doc/images/ERS/printspeed.jpeg b/doc/images/ERS/ers-printspeed.jpg similarity index 100% rename from doc/images/ERS/printspeed.jpeg rename to doc/images/ERS/ers-printspeed.jpg diff --git a/doc/images/flow-calibration.gif b/doc/images/Flow-Rate/flow-calibration.gif similarity index 100% rename from doc/images/flow-calibration.gif rename to doc/images/Flow-Rate/flow-calibration.gif diff --git a/doc/images/Flow-Rate/flowcalibration_update_flowrate.png b/doc/images/Flow-Rate/flowcalibration_update_flowrate.png new file mode 100644 index 0000000000..6ac5024733 Binary files /dev/null and b/doc/images/Flow-Rate/flowcalibration_update_flowrate.png differ diff --git a/doc/images/Flow-Rate/flowrate-0-5.jpg b/doc/images/Flow-Rate/flowrate-0-5.jpg new file mode 100644 index 0000000000..364b67351a Binary files /dev/null and b/doc/images/Flow-Rate/flowrate-0-5.jpg differ diff --git a/doc/images/Flow-Rate/flowrate-6.jpg b/doc/images/Flow-Rate/flowrate-6.jpg new file mode 100644 index 0000000000..d5f65683c9 Binary files /dev/null and b/doc/images/Flow-Rate/flowrate-6.jpg differ diff --git a/doc/images/Flow-Rate/flowrate-Bambulab-uncheck.png b/doc/images/Flow-Rate/flowrate-Bambulab-uncheck.png new file mode 100644 index 0000000000..b362a3d689 Binary files /dev/null and b/doc/images/Flow-Rate/flowrate-Bambulab-uncheck.png differ diff --git a/doc/images/Flow-Rate/flowrate-pass1.jpg b/doc/images/Flow-Rate/flowrate-pass1.jpg new file mode 100644 index 0000000000..8cbe342800 Binary files /dev/null and b/doc/images/Flow-Rate/flowrate-pass1.jpg differ diff --git a/doc/images/Flow-Rate/flowrate-pass2.jpg b/doc/images/Flow-Rate/flowrate-pass2.jpg new file mode 100644 index 0000000000..5d4197d143 Binary files /dev/null and b/doc/images/Flow-Rate/flowrate-pass2.jpg differ diff --git a/doc/images/InputShaping/IS_damp_klipper_print_measure.jpg b/doc/images/InputShaping/IS_damp_klipper_print_measure.jpg new file mode 100644 index 0000000000..38d8b5aa19 Binary files /dev/null and b/doc/images/InputShaping/IS_damp_klipper_print_measure.jpg differ diff --git a/doc/images/InputShaping/IS_damp_klipper_slicer_measure.png b/doc/images/InputShaping/IS_damp_klipper_slicer_measure.png new file mode 100644 index 0000000000..a050ee98c1 Binary files /dev/null and b/doc/images/InputShaping/IS_damp_klipper_slicer_measure.png differ diff --git a/doc/images/InputShaping/IS_damp_marlin_print_measure.jpg b/doc/images/InputShaping/IS_damp_marlin_print_measure.jpg new file mode 100644 index 0000000000..ea40d66b7c Binary files /dev/null and b/doc/images/InputShaping/IS_damp_marlin_print_measure.jpg differ diff --git a/doc/images/InputShaping/IS_damp_marlin_slicer_measure.png b/doc/images/InputShaping/IS_damp_marlin_slicer_measure.png new file mode 100644 index 0000000000..d255eacb9d Binary files /dev/null and b/doc/images/InputShaping/IS_damp_marlin_slicer_measure.png differ diff --git a/doc/images/InputShaping/IS_damp_menu.png b/doc/images/InputShaping/IS_damp_menu.png new file mode 100644 index 0000000000..bb3674826d Binary files /dev/null and b/doc/images/InputShaping/IS_damp_menu.png differ diff --git a/doc/images/InputShaping/IS_freq_klipper_print_measure.jpg b/doc/images/InputShaping/IS_freq_klipper_print_measure.jpg new file mode 100644 index 0000000000..6eed83ef36 Binary files /dev/null and b/doc/images/InputShaping/IS_freq_klipper_print_measure.jpg differ diff --git a/doc/images/InputShaping/IS_freq_klipper_slicer_measure.png b/doc/images/InputShaping/IS_freq_klipper_slicer_measure.png new file mode 100644 index 0000000000..d73e5258ec Binary files /dev/null and b/doc/images/InputShaping/IS_freq_klipper_slicer_measure.png differ diff --git a/doc/images/InputShaping/IS_freq_marlin_print_measure.jpg b/doc/images/InputShaping/IS_freq_marlin_print_measure.jpg new file mode 100644 index 0000000000..ae311923eb Binary files /dev/null and b/doc/images/InputShaping/IS_freq_marlin_print_measure.jpg differ diff --git a/doc/images/InputShaping/IS_freq_marlin_slicer_measure.png b/doc/images/InputShaping/IS_freq_marlin_slicer_measure.png new file mode 100644 index 0000000000..c8f6746fe6 Binary files /dev/null and b/doc/images/InputShaping/IS_freq_marlin_slicer_measure.png differ diff --git a/doc/images/InputShaping/IS_freq_menu.png b/doc/images/InputShaping/IS_freq_menu.png new file mode 100644 index 0000000000..e4764b50bf Binary files /dev/null and b/doc/images/InputShaping/IS_freq_menu.png differ diff --git a/doc/images/JunctionDeviation/jd_first_menu.png b/doc/images/JunctionDeviation/jd_first_menu.png new file mode 100644 index 0000000000..8888e401d7 Binary files /dev/null and b/doc/images/JunctionDeviation/jd_first_menu.png differ diff --git a/doc/images/JunctionDeviation/jd_first_print_measure.jpg b/doc/images/JunctionDeviation/jd_first_print_measure.jpg new file mode 100644 index 0000000000..a850264848 Binary files /dev/null and b/doc/images/JunctionDeviation/jd_first_print_measure.jpg differ diff --git a/doc/images/JunctionDeviation/jd_first_slicer_measure.png b/doc/images/JunctionDeviation/jd_first_slicer_measure.png new file mode 100644 index 0000000000..35a9d05164 Binary files /dev/null and b/doc/images/JunctionDeviation/jd_first_slicer_measure.png differ diff --git a/doc/images/JunctionDeviation/jd_second_menu.png b/doc/images/JunctionDeviation/jd_second_menu.png new file mode 100644 index 0000000000..683b303f16 Binary files /dev/null and b/doc/images/JunctionDeviation/jd_second_menu.png differ diff --git a/doc/images/JunctionDeviation/jd_second_print_measure.jpg b/doc/images/JunctionDeviation/jd_second_print_measure.jpg new file mode 100644 index 0000000000..da0c4fc9bb Binary files /dev/null and b/doc/images/JunctionDeviation/jd_second_print_measure.jpg differ diff --git a/doc/images/JunctionDeviation/jd_second_slicer_measure.png b/doc/images/JunctionDeviation/jd_second_slicer_measure.png new file mode 100644 index 0000000000..afdaf677af Binary files /dev/null and b/doc/images/JunctionDeviation/jd_second_slicer_measure.png differ diff --git a/doc/images/Precision/PolyHoles.png b/doc/images/Precision/PolyHoles.png new file mode 100644 index 0000000000..7fce37757b Binary files /dev/null and b/doc/images/Precision/PolyHoles.png differ diff --git a/doc/images/Precision/PreciseWallOff.svg b/doc/images/Precision/PreciseWallOff.svg new file mode 100644 index 0000000000..f920f06f41 --- /dev/null +++ b/doc/images/Precision/PreciseWallOff.svg @@ -0,0 +1,3 @@ + + +
Inner wall
Inner wall
Inner wall
Inner wall
Outer wall
Outer wall
\ No newline at end of file diff --git a/doc/images/Precision/PreciseWallOn.svg b/doc/images/Precision/PreciseWallOn.svg new file mode 100644 index 0000000000..5d27354d1e --- /dev/null +++ b/doc/images/Precision/PreciseWallOn.svg @@ -0,0 +1,3 @@ + + +
Inner wall
Inner wall
Inner wall
Inner wall
Outer wall
Outer wall
\ No newline at end of file diff --git a/doc/images/Precision/PreciseZOff.png b/doc/images/Precision/PreciseZOff.png new file mode 100644 index 0000000000..43b5d56cc6 Binary files /dev/null and b/doc/images/Precision/PreciseZOff.png differ diff --git a/doc/images/Precision/PreciseZOn.png b/doc/images/Precision/PreciseZOn.png new file mode 100644 index 0000000000..861aec011c Binary files /dev/null and b/doc/images/Precision/PreciseZOn.png differ diff --git a/doc/images/Precision/arc-fitting.svg b/doc/images/Precision/arc-fitting.svg new file mode 100644 index 0000000000..acb997cede --- /dev/null +++ b/doc/images/Precision/arc-fitting.svg @@ -0,0 +1,3 @@ + + +
Sliced GCode Path
Sliced GCode Path
New GCode Arc
New GCode Arc
\ No newline at end of file diff --git a/doc/images/Precision/elephant-foot-compensation.png b/doc/images/Precision/elephant-foot-compensation.png new file mode 100644 index 0000000000..55d87c251d Binary files /dev/null and b/doc/images/Precision/elephant-foot-compensation.png differ diff --git a/doc/images/Precision/elephant-foot.svg b/doc/images/Precision/elephant-foot.svg new file mode 100644 index 0000000000..88a29c0136 --- /dev/null +++ b/doc/images/Precision/elephant-foot.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/doc/images/STL-Transformation/simplify-menu.png b/doc/images/STL-Transformation/simplify-menu.png new file mode 100644 index 0000000000..a78ff408d1 Binary files /dev/null and b/doc/images/STL-Transformation/simplify-menu.png differ diff --git a/doc/images/STL-Transformation/stl-transformation-enable.png b/doc/images/STL-Transformation/stl-transformation-enable.png new file mode 100644 index 0000000000..56edb4175a Binary files /dev/null and b/doc/images/STL-Transformation/stl-transformation-enable.png differ diff --git a/doc/images/STL-Transformation/stl-transformation-params.png b/doc/images/STL-Transformation/stl-transformation-params.png new file mode 100644 index 0000000000..da9c312ef8 Binary files /dev/null and b/doc/images/STL-Transformation/stl-transformation-params.png differ diff --git a/doc/images/STL-Transformation/stl-transformation-smooth-rough.png b/doc/images/STL-Transformation/stl-transformation-smooth-rough.png new file mode 100644 index 0000000000..0d69838bc8 Binary files /dev/null and b/doc/images/STL-Transformation/stl-transformation-smooth-rough.png differ diff --git a/doc/images/STL-Transformation/stl-transformation-split.png b/doc/images/STL-Transformation/stl-transformation-split.png new file mode 100644 index 0000000000..85480c97b2 Binary files /dev/null and b/doc/images/STL-Transformation/stl-transformation-split.png differ diff --git a/doc/images/STL-Transformation/stl-transformation.png b/doc/images/STL-Transformation/stl-transformation.png new file mode 100644 index 0000000000..4390b85403 Binary files /dev/null and b/doc/images/STL-Transformation/stl-transformation.png differ diff --git a/doc/images/Temp-calib/temp-tower.jpg b/doc/images/Temp-calib/temp-tower.jpg new file mode 100644 index 0000000000..5394d25420 Binary files /dev/null and b/doc/images/Temp-calib/temp-tower.jpg differ diff --git a/doc/images/temp_tower_test.gif b/doc/images/Temp-calib/temp-tower_test.gif similarity index 100% rename from doc/images/temp_tower_test.gif rename to doc/images/Temp-calib/temp-tower_test.gif diff --git a/doc/images/Temp-calib/temp-tower_test_menu.png b/doc/images/Temp-calib/temp-tower_test_menu.png new file mode 100644 index 0000000000..dfc074ebe9 Binary files /dev/null and b/doc/images/Temp-calib/temp-tower_test_menu.png differ diff --git a/doc/images/Tolerance/FilamentShrinkageCompensation.png b/doc/images/Tolerance/FilamentShrinkageCompensation.png new file mode 100644 index 0000000000..8da497eca0 Binary files /dev/null and b/doc/images/Tolerance/FilamentShrinkageCompensation.png differ diff --git a/doc/images/OrcaToleranceTes_m6.jpg b/doc/images/Tolerance/OrcaToleranceTes_m6.jpg similarity index 100% rename from doc/images/OrcaToleranceTes_m6.jpg rename to doc/images/Tolerance/OrcaToleranceTes_m6.jpg diff --git a/doc/images/OrcaToleranceTest_print.jpg b/doc/images/Tolerance/OrcaToleranceTest_print.jpg similarity index 100% rename from doc/images/OrcaToleranceTest_print.jpg rename to doc/images/Tolerance/OrcaToleranceTest_print.jpg diff --git a/doc/images/Tolerance/QualityPrecision.png b/doc/images/Tolerance/QualityPrecision.png new file mode 100644 index 0000000000..7b763ea67c Binary files /dev/null and b/doc/images/Tolerance/QualityPrecision.png differ diff --git a/doc/images/Tolerance/tolerance_hole.svg b/doc/images/Tolerance/tolerance_hole.svg new file mode 100644 index 0000000000..927be09ae7 --- /dev/null +++ b/doc/images/Tolerance/tolerance_hole.svg @@ -0,0 +1,3 @@ + + +
6,00mm
6,00mm
\ No newline at end of file diff --git a/doc/images/WallGenerator/wallgenerator-arachne.png b/doc/images/WallGenerator/wallgenerator-arachne.png new file mode 100644 index 0000000000..21d14d77f3 Binary files /dev/null and b/doc/images/WallGenerator/wallgenerator-arachne.png differ diff --git a/doc/images/WallGenerator/wallgenerator-classic.png b/doc/images/WallGenerator/wallgenerator-classic.png new file mode 100644 index 0000000000..8d884f6a65 Binary files /dev/null and b/doc/images/WallGenerator/wallgenerator-classic.png differ diff --git a/doc/images/activate_chamber_heater.jpg b/doc/images/activate_chamber_heater.jpg deleted file mode 100644 index c6c4f550ac..0000000000 Binary files a/doc/images/activate_chamber_heater.jpg and /dev/null differ diff --git a/doc/images/calibration.png b/doc/images/calibration.png new file mode 100644 index 0000000000..65632b2889 Binary files /dev/null and b/doc/images/calibration.png differ diff --git a/doc/images/combobox.png b/doc/images/combobox.png index 0b720e6622..ef2832cc9e 100644 Binary files a/doc/images/combobox.png and b/doc/images/combobox.png differ diff --git a/doc/images/filament-preset.png b/doc/images/filament-preset.png index 7ad4c1c52e..0aa6030adb 100644 Binary files a/doc/images/filament-preset.png and b/doc/images/filament-preset.png differ diff --git a/doc/images/fill/infill-top-2d-lattice.png b/doc/images/fill/infill-top-2d-lattice.png new file mode 100644 index 0000000000..a67d27a4f4 Binary files /dev/null and b/doc/images/fill/infill-top-2d-lattice.png differ diff --git a/doc/images/fill/infill-top-3d-honeycomb.png b/doc/images/fill/infill-top-3d-honeycomb.png new file mode 100644 index 0000000000..749df03131 Binary files /dev/null and b/doc/images/fill/infill-top-3d-honeycomb.png differ diff --git a/doc/images/fill/infill-top-adaptive-cubic.png b/doc/images/fill/infill-top-adaptive-cubic.png new file mode 100644 index 0000000000..8fdb765017 Binary files /dev/null and b/doc/images/fill/infill-top-adaptive-cubic.png differ diff --git a/doc/images/fill/infill-top-aligned-rectilinear.png b/doc/images/fill/infill-top-aligned-rectilinear.png new file mode 100644 index 0000000000..0df2b714d9 Binary files /dev/null and b/doc/images/fill/infill-top-aligned-rectilinear.png differ diff --git a/doc/images/fill/infill-top-archimedean-chords.png b/doc/images/fill/infill-top-archimedean-chords.png new file mode 100644 index 0000000000..3e2f78d47a Binary files /dev/null and b/doc/images/fill/infill-top-archimedean-chords.png differ diff --git a/doc/images/fill/infill-top-concentric.png b/doc/images/fill/infill-top-concentric.png new file mode 100644 index 0000000000..fe981fe792 Binary files /dev/null and b/doc/images/fill/infill-top-concentric.png differ diff --git a/doc/images/fill/infill-top-cross-hatch.png b/doc/images/fill/infill-top-cross-hatch.png new file mode 100644 index 0000000000..15e6b67a9a Binary files /dev/null and b/doc/images/fill/infill-top-cross-hatch.png differ diff --git a/doc/images/fill/infill-top-cubic.png b/doc/images/fill/infill-top-cubic.png new file mode 100644 index 0000000000..0f3a1af305 Binary files /dev/null and b/doc/images/fill/infill-top-cubic.png differ diff --git a/doc/images/fill/infill-top-grid.png b/doc/images/fill/infill-top-grid.png new file mode 100644 index 0000000000..6a853404a6 Binary files /dev/null and b/doc/images/fill/infill-top-grid.png differ diff --git a/doc/images/fill/infill-top-gyroid.png b/doc/images/fill/infill-top-gyroid.png new file mode 100644 index 0000000000..dee06c34cd Binary files /dev/null and b/doc/images/fill/infill-top-gyroid.png differ diff --git a/doc/images/fill/infill-top-hilbert-curve.png b/doc/images/fill/infill-top-hilbert-curve.png new file mode 100644 index 0000000000..60399e2e9f Binary files /dev/null and b/doc/images/fill/infill-top-hilbert-curve.png differ diff --git a/doc/images/fill/infill-top-honeycomb.png b/doc/images/fill/infill-top-honeycomb.png new file mode 100644 index 0000000000..bf6ec72ef2 Binary files /dev/null and b/doc/images/fill/infill-top-honeycomb.png differ diff --git a/doc/images/fill/infill-top-infill-top-2d-honeycomb.png b/doc/images/fill/infill-top-infill-top-2d-honeycomb.png new file mode 100644 index 0000000000..257dd83c7c Binary files /dev/null and b/doc/images/fill/infill-top-infill-top-2d-honeycomb.png differ diff --git a/doc/images/fill/infill-top-lightning.png b/doc/images/fill/infill-top-lightning.png new file mode 100644 index 0000000000..cd9903e34c Binary files /dev/null and b/doc/images/fill/infill-top-lightning.png differ diff --git a/doc/images/fill/infill-top-line.png b/doc/images/fill/infill-top-line.png new file mode 100644 index 0000000000..67b1ff61fa Binary files /dev/null and b/doc/images/fill/infill-top-line.png differ diff --git a/doc/images/fill/infill-top-octagram-spiral.png b/doc/images/fill/infill-top-octagram-spiral.png new file mode 100644 index 0000000000..94afbd3eab Binary files /dev/null and b/doc/images/fill/infill-top-octagram-spiral.png differ diff --git a/doc/images/fill/infill-top-quarter-cubic.png b/doc/images/fill/infill-top-quarter-cubic.png new file mode 100644 index 0000000000..1041e01f29 Binary files /dev/null and b/doc/images/fill/infill-top-quarter-cubic.png differ diff --git a/doc/images/fill/infill-top-rectilinear.png b/doc/images/fill/infill-top-rectilinear.png new file mode 100644 index 0000000000..c4b5639b4f Binary files /dev/null and b/doc/images/fill/infill-top-rectilinear.png differ diff --git a/doc/images/fill/infill-top-support-cubic.png b/doc/images/fill/infill-top-support-cubic.png new file mode 100644 index 0000000000..309910eab4 Binary files /dev/null and b/doc/images/fill/infill-top-support-cubic.png differ diff --git a/doc/images/fill/infill-top-tpms-d.png b/doc/images/fill/infill-top-tpms-d.png new file mode 100644 index 0000000000..21159fe3ab Binary files /dev/null and b/doc/images/fill/infill-top-tpms-d.png differ diff --git a/doc/images/fill/infill-top-tri-hexagon.png b/doc/images/fill/infill-top-tri-hexagon.png new file mode 100644 index 0000000000..e2229ae195 Binary files /dev/null and b/doc/images/fill/infill-top-tri-hexagon.png differ diff --git a/doc/images/fill/infill-top-triangles.png b/doc/images/fill/infill-top-triangles.png new file mode 100644 index 0000000000..e8bbed4e8d Binary files /dev/null and b/doc/images/fill/infill-top-triangles.png differ diff --git a/doc/images/flowcalibration_update_flowrate.jpg b/doc/images/flowcalibration_update_flowrate.jpg deleted file mode 100644 index f52250be42..0000000000 Binary files a/doc/images/flowcalibration_update_flowrate.jpg and /dev/null differ diff --git a/doc/images/full-sidebar.png b/doc/images/full-sidebar.png index 316fd2e95f..2ee3f86cb1 100644 Binary files a/doc/images/full-sidebar.png and b/doc/images/full-sidebar.png differ diff --git a/doc/images/pa/apa-expected-results.jpg b/doc/images/pa/apa-expected-results.jpg new file mode 100644 index 0000000000..cc2a669a34 Binary files /dev/null and b/doc/images/pa/apa-expected-results.jpg differ diff --git a/doc/images/pa/apa-expected-seam.jpg b/doc/images/pa/apa-expected-seam.jpg new file mode 100644 index 0000000000..f16a522621 Binary files /dev/null and b/doc/images/pa/apa-expected-seam.jpg differ diff --git a/doc/images/pa/apa-expected-solid-infill.jpg b/doc/images/pa/apa-expected-solid-infill.jpg new file mode 100644 index 0000000000..e74a049f7d Binary files /dev/null and b/doc/images/pa/apa-expected-solid-infill.jpg differ diff --git a/doc/images/pa/apa-identify-optimal.jpg b/doc/images/pa/apa-identify-optimal.jpg new file mode 100644 index 0000000000..29ccecf190 Binary files /dev/null and b/doc/images/pa/apa-identify-optimal.jpg differ diff --git a/doc/images/pa/apa-identify-too-high.jpg b/doc/images/pa/apa-identify-too-high.jpg new file mode 100644 index 0000000000..66a1ee9db2 Binary files /dev/null and b/doc/images/pa/apa-identify-too-high.jpg differ diff --git a/doc/images/pa/apa-identify-too-low.jpg b/doc/images/pa/apa-identify-too-low.jpg new file mode 100644 index 0000000000..0c7e720e91 Binary files /dev/null and b/doc/images/pa/apa-identify-too-low.jpg differ diff --git a/doc/images/pa/apa-material-config.png b/doc/images/pa/apa-material-config.png new file mode 100644 index 0000000000..2dfcb894e7 Binary files /dev/null and b/doc/images/pa/apa-material-config.png differ diff --git a/doc/images/pa/apa-profile.png b/doc/images/pa/apa-profile.png new file mode 100644 index 0000000000..a150316fb2 Binary files /dev/null and b/doc/images/pa/apa-profile.png differ diff --git a/doc/images/pa/apa-setup-result-acceleration-jerk.png b/doc/images/pa/apa-setup-result-acceleration-jerk.png new file mode 100644 index 0000000000..659d2dbd69 Binary files /dev/null and b/doc/images/pa/apa-setup-result-acceleration-jerk.png differ diff --git a/doc/images/pa/apa-setup-result-speed.png b/doc/images/pa/apa-setup-result-speed.png new file mode 100644 index 0000000000..4117c1337c Binary files /dev/null and b/doc/images/pa/apa-setup-result-speed.png differ diff --git a/doc/images/pa/apa-test.png b/doc/images/pa/apa-test.png new file mode 100644 index 0000000000..5e5cf76dc6 Binary files /dev/null and b/doc/images/pa/apa-test.png differ diff --git a/doc/images/pa/apa-test210.jpg b/doc/images/pa/apa-test210.jpg new file mode 100644 index 0000000000..892c338c9d Binary files /dev/null and b/doc/images/pa/apa-test210.jpg differ diff --git a/doc/images/pa/apa-unexpected-solid-infill.jpg b/doc/images/pa/apa-unexpected-solid-infill.jpg new file mode 100644 index 0000000000..a9ce880394 Binary files /dev/null and b/doc/images/pa/apa-unexpected-solid-infill.jpg differ diff --git a/doc/images/pa/pa-line-0-016.jpg b/doc/images/pa/pa-line-0-016.jpg new file mode 100644 index 0000000000..0b3f511838 Binary files /dev/null and b/doc/images/pa/pa-line-0-016.jpg differ diff --git a/doc/images/pa/pa-line.gif b/doc/images/pa/pa-line.gif new file mode 100644 index 0000000000..aace86d431 Binary files /dev/null and b/doc/images/pa/pa-line.gif differ diff --git a/doc/images/pa/pa-lines.png b/doc/images/pa/pa-lines.png new file mode 100644 index 0000000000..23c1a7a49f Binary files /dev/null and b/doc/images/pa/pa-lines.png differ diff --git a/doc/images/pa/pa-pattern-batch-objects.png b/doc/images/pa/pa-pattern-batch-objects.png index aed9eab40f..d5d924d9e9 100644 Binary files a/doc/images/pa/pa-pattern-batch-objects.png and b/doc/images/pa/pa-pattern-batch-objects.png differ diff --git a/doc/images/pa/pa-pattern-batch.png b/doc/images/pa/pa-pattern-batch.png index 8a8fe6c18f..bdacef279b 100644 Binary files a/doc/images/pa/pa-pattern-batch.png and b/doc/images/pa/pa-pattern-batch.png differ diff --git a/doc/images/pa/pa-pattern-general.png b/doc/images/pa/pa-pattern-general.png new file mode 100644 index 0000000000..23c0141f55 Binary files /dev/null and b/doc/images/pa/pa-pattern-general.png differ diff --git a/doc/images/pa/pa-pattern-single.png b/doc/images/pa/pa-pattern-single.png index 9c45170281..e84e85c3b3 100644 Binary files a/doc/images/pa/pa-pattern-single.png and b/doc/images/pa/pa-pattern-single.png differ diff --git a/doc/images/pa/pa-tower-measure.jpg b/doc/images/pa/pa-tower-measure.jpg new file mode 100644 index 0000000000..d1fd3c49bc Binary files /dev/null and b/doc/images/pa/pa-tower-measure.jpg differ diff --git a/doc/images/pa/pa-tower.jpg b/doc/images/pa/pa-tower.jpg new file mode 100644 index 0000000000..0a4c5b0edc Binary files /dev/null and b/doc/images/pa/pa-tower.jpg differ diff --git a/doc/images/pa/pressure_advance_enable.png b/doc/images/pa/pressure_advance_enable.png new file mode 100644 index 0000000000..478061d9f6 Binary files /dev/null and b/doc/images/pa/pressure_advance_enable.png differ diff --git a/doc/images/precise_wall.png b/doc/images/precise_wall.png deleted file mode 100644 index e8f237a591..0000000000 Binary files a/doc/images/precise_wall.png and /dev/null differ diff --git a/doc/images/printer-preset.png b/doc/images/printer-preset.png index d4d73718a1..fc0d567c94 100644 Binary files a/doc/images/printer-preset.png and b/doc/images/printer-preset.png differ diff --git a/doc/images/process-preset.png b/doc/images/process-preset.png index 2a2fc53db3..02f8f3a7fd 100644 Binary files a/doc/images/process-preset.png and b/doc/images/process-preset.png differ diff --git a/doc/images/retraction_test.gif b/doc/images/retraction/retraction_test.gif similarity index 100% rename from doc/images/retraction_test.gif rename to doc/images/retraction/retraction_test.gif diff --git a/doc/images/retraction/retraction_test_menu.png b/doc/images/retraction/retraction_test_menu.png new file mode 100644 index 0000000000..dd2940de72 Binary files /dev/null and b/doc/images/retraction/retraction_test_menu.png differ diff --git a/doc/images/retraction/retraction_test_print.jpg b/doc/images/retraction/retraction_test_print.jpg new file mode 100644 index 0000000000..716496f483 Binary files /dev/null and b/doc/images/retraction/retraction_test_print.jpg differ diff --git a/doc/images/retraction_test_dlg.png b/doc/images/retraction_test_dlg.png deleted file mode 100644 index 85dcfdd2c1..0000000000 Binary files a/doc/images/retraction_test_dlg.png and /dev/null differ diff --git a/doc/images/retraction_test_print.jpg b/doc/images/retraction_test_print.jpg deleted file mode 100644 index b60eff8c91..0000000000 Binary files a/doc/images/retraction_test_print.jpg and /dev/null differ diff --git a/doc/images/seam/seam-aligned.png b/doc/images/seam/seam-aligned.png new file mode 100644 index 0000000000..824950f2dd Binary files /dev/null and b/doc/images/seam/seam-aligned.png differ diff --git a/doc/images/seam/seam-back.png b/doc/images/seam/seam-back.png new file mode 100644 index 0000000000..7ff54e0551 Binary files /dev/null and b/doc/images/seam/seam-back.png differ diff --git a/doc/images/seam/seam-gap.png b/doc/images/seam/seam-gap.png new file mode 100644 index 0000000000..fcd8a631bf Binary files /dev/null and b/doc/images/seam/seam-gap.png differ diff --git a/doc/images/seam/seam-nearest.png b/doc/images/seam/seam-nearest.png new file mode 100644 index 0000000000..7691edc5c4 Binary files /dev/null and b/doc/images/seam/seam-nearest.png differ diff --git a/doc/images/seam/seam-quality.jpg b/doc/images/seam/seam-quality.jpg new file mode 100644 index 0000000000..2e3d76195c Binary files /dev/null and b/doc/images/seam/seam-quality.jpg differ diff --git a/doc/images/seam/seam-random.png b/doc/images/seam/seam-random.png new file mode 100644 index 0000000000..daba4a2c72 Binary files /dev/null and b/doc/images/seam/seam-random.png differ diff --git a/doc/images/seam/seam-wipe-on-loop.png b/doc/images/seam/seam-wipe-on-loop.png new file mode 100644 index 0000000000..6b10c051fb Binary files /dev/null and b/doc/images/seam/seam-wipe-on-loop.png differ diff --git a/doc/images/seam/seam-wipe-on-loops-options.png b/doc/images/seam/seam-wipe-on-loops-options.png new file mode 100644 index 0000000000..3d6c900025 Binary files /dev/null and b/doc/images/seam/seam-wipe-on-loops-options.png differ diff --git a/doc/images/slicing_call_heirarchy.svg b/doc/images/slicing_call_heirarchy.svg deleted file mode 100644 index 2a2ffbf847..0000000000 --- a/doc/images/slicing_call_heirarchy.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - -
void Plater::priv::on_action_slice_plate(SimpleEvent&)
void Plater::reslice()
bool Plater::priv::restart_background_process(unsigned int state)
bool BackgroundSlicingProcess::start()
void BackgroundSlicingProcess::thread_proc_safe_seh_throw()
unsigned long BackgroundSlicingProcess::thread_proc_safe_seh()
void BackgroundSlicingProcess::thread_proc_safe()
void BackgroundSlicingProcess::thread_proc()
void BackgroundSlicingProcess::call_process_seh_throw(std::exception_ptr &ex)
unsigned long BackgroundSlicingProcess::call_process_seh(std::exception_ptr &ex)
void BackgroundSlicingProcess::call_process(std::exception_ptr &ex)
void BackgroundSlicingProcess::process_fff()
void Print::process(long long *time_cost_with_cache, bool use_cache)
void PrintObject::make_perimeters()
void PrintObject::slice()
libslic3r
libslic3r_gui
\ No newline at end of file diff --git a/doc/images/tab-popup.png b/doc/images/tab-popup.png index e31f47dc88..8a6f032887 100644 Binary files a/doc/images/tab-popup.png and b/doc/images/tab-popup.png differ diff --git a/doc/images/tolerance_hole.jpg b/doc/images/tolerance_hole.jpg deleted file mode 100644 index 041e271984..0000000000 Binary files a/doc/images/tolerance_hole.jpg and /dev/null differ diff --git a/doc/pellet-flow-coefficient.md b/doc/material_settings/pellet-flow-coefficient.md similarity index 91% rename from doc/pellet-flow-coefficient.md rename to doc/material_settings/pellet-flow-coefficient.md index 8e91312ad6..a3be0bda40 100644 --- a/doc/pellet-flow-coefficient.md +++ b/doc/material_settings/pellet-flow-coefficient.md @@ -1,3 +1,5 @@ +# Pellet Flow Coefficient + Large format printers with print volumes in the order of 1m^3 generally use pellets for printing. The overall tech is very similar to FDM printing. It is FDM printing, but instead of filaments, it uses pellets. @@ -15,7 +17,9 @@ for your own pellets for a particular printer model. We are translating the pellet_flow_coefficient into filament_diameter so that everything works just like it does already with very minor adjustments. -filament_diameter = sqrt( (4 \* pellet_flow_coefficient) / PI ) +```math +\text{filament\_diameter} = \sqrt{\frac{4 \times \text{pellet\_flow\_coefficient}}{\pi}} +``` sqrt just makes the relationship between flow_coefficient and volume linear. diff --git a/doc/material_settings/semm.md b/doc/material_settings/semm.md new file mode 100644 index 0000000000..a5e22f3584 --- /dev/null +++ b/doc/material_settings/semm.md @@ -0,0 +1,19 @@ +# Single Extruder Multimaterial Printing in OrcaSlicer + +## Introduction + +In this guide, we will explain the parameters for single extruder multimaterial printing in OrcaSlicer. The whole process and parameters are same as PrusaSlicer as OrcaSlicer is based on PrusaSlicer. +OrcaSlicer has some additional features and minor differences though. We will explain them in this guide. + +## Prime tower + +The prime tower is a structure that is printed before the actual print to ensure that the nozzle is primed with the correct filament. It helps to prevent oozing and stringing during the print. The prime tower can be customized in various ways, such as its size, shape, and position. + +## Ramming + +Ramming is a technique used to push the filament through the nozzle to ensure that it is primed and ready for printing. It can be adjusted in terms of speed and distance to optimize the priming process. + +## Manual filament change + +Manual filament change is a feature that allows the user to change the filament during the print. This can be useful for multi-material prints or when changing colors. The user can specify the position and timing of the filament change, as well as the speed and distance of the ramming process. +WIP... diff --git a/doc/precise-z-height.md b/doc/precise-z-height.md deleted file mode 100644 index d7905e8baf..0000000000 --- a/doc/precise-z-height.md +++ /dev/null @@ -1,6 +0,0 @@ -This feature ensures the accurate Z height of the model after slicing, even if the model height is not a multiple of the layer height. - -For example, slicing a 20mm x 20mm x 20.1mm cube with a layer height of 0.2mm would typically result in a final height of 20.2mm due to the layer height increments. - -By enabling this parameter, the layer height of the last five layers is adjusted so that the final sliced height matches the actual object height, resulting in an accurate 20.1mm (as shown in the picture). -![image](https://github.com/SoftFever/OrcaSlicer/assets/103989404/e2d4efab-a8f4-4df6-baa6-42f526ac83ec) diff --git a/doc/print_prepare/stl-transformation.md b/doc/print_prepare/stl-transformation.md new file mode 100644 index 0000000000..7a1ea7ec39 --- /dev/null +++ b/doc/print_prepare/stl-transformation.md @@ -0,0 +1,56 @@ +# STL Transformation + +OrcaSlicer primarily relies on STL meshes for slicing, but STL files may come with several limitations. + +Typically, STL files feature a low polygon count, which can adversely affect print quality. +In contrast, using STEP files offers a higher-quality mesh that more accurately represents the original design. However, be aware that both high-polygon STL and STEP files can increase slicing time. + +![stl-transformation-smooth-rough](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/STL-Transformation/stl-transformation-smooth-rough.png?raw=true) + +## Importing STEP files + +This setting determines how STEP files are converted into STL files and is displayed during the STEP file import process. + +If you don't see this when opening a STEP file, check [Don't show again](#Don't-show-again) below. + +![stl-transformation](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/STL-Transformation/stl-transformation.png?raw=true) + +### Parameters: + +The transformation uses [Linear Deflection and Angular Deflection](https://dev.opencascade.org/doc/overview/html/occt_user_guides__mesh.html) parameters to control the mesh quality. +A finer mesh will result in a more accurate representation of the original surface, but it will also increase the file size and processing time. + +![stl-transformation-params](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/STL-Transformation/stl-transformation-params.png?raw=true) + +- **Linear Deflection:** Specifies the maximum distance allowed between the original surface and its polygonal approximation. Lower values produce a mesh that more accurately follows the original curvature. +- **Angular Deflection:** Defines the maximum allowable angle difference between the actual surface and its tessellated counterpart. Smaller angular deflection values yield a more precise mesh. + +#### Split compound and compsolid into multiple objects: + +Enabling this option will split the imported 3D file into separate objects. This is especially useful for adjusting individual object positions, tweaking print settings, or optimizing the model through simplification. + +![stl-transformation-split](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/STL-Transformation/stl-transformation-split.png?raw=true) + +#### Don't show again + +This option will hide the STL transformation dialog when opening a STEP file. +To restore the dialog, go to "Preferences" (Ctrl + P) > "Show the STEP mesh parameter setting dialog". + +![stl-transformation-enable](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/STL-Transformation/stl-transformation-enable.png?raw=true) + +## Simplify model + +When working with models that have a high polygon count, the Simplify Model option can significantly reduce complexity and help decrease slicing times. + +This function is especially useful for improving the performance of the slicer or achieving a specific faceted look for artistic or technical reasons. + +To access the Simplify Model option, right-click on the object to simplify in the "Prepare" menu. + +![simplify-menu](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/STL-Transformation/simplify-menu.png?raw=true) + +It is recommended to enable the "Show Wireframe" option when running a simplification process to visually inspect the outcome. However, be cautious: overly aggressive simplification may lead to noticeable detail loss, increased ringing, or other printing issues. + +### You can Simplify your model using the following options: + +- **Detail Level:** Control the level of detail in the simplified model by choosing from five preset options. This setting allows for a balance between mesh fidelity and performance. +- **Decimate Ratio:** Adjust the ratio between the original model's polygon count and that of the simplified model. For instance, a decimate ratio of 0.5 will yield a model with approximately half the original number of polygons. diff --git a/doc/print_settings/quality/quality_settings_layer_height.md b/doc/print_settings/quality/quality_settings_layer_height.md index 350738f379..acdf4effdd 100644 --- a/doc/print_settings/quality/quality_settings_layer_height.md +++ b/doc/print_settings/quality/quality_settings_layer_height.md @@ -3,9 +3,10 @@ This setting controls how tall each printed layer will be. Typically, a smaller layer height produces a better-looking part with less jagged edges, especially around curved sections (like the top of a sphere). However, lower layer heights mean more layers to print, proportionally increasing print time. ### Tips: + 1. **The optimal layer height depends on the size of your nozzle**. The set layer height must not be taller than 80% of the diameter of the nozzle, else there is little "squish" between the printed layer and the layer below, leading to weaker parts. -2. While technically there is no limit to how small a layer height one can use, **typically most printers struggle to print reliably with a layer height that is smaller than 20% of the nozzle diameter**. This is because with smaller layer heights, less material is extruded per mm and, at some point, the tolerances of the extruder system result in variations in the flow to such an extent that visible artifacts occur, especially if printing at high speeds. +2. While technically there is no limit to how small a layer height one can use, **typically most printers struggle to print reliably with a layer height that is smaller than 20% of the nozzle diameter**. This is because with smaller layer heights, less material is extruded per mm and, at some point, the tolerances of the extruder system result in variations in the flow to such an extent that visible artifacts occur, especially if printing at high speeds. For example, it is not uncommon to see "fish scale" type patterns on external walls when printing with a 0.4 mm nozzle at 0.08 mm layer height at speeds of 200mm/sec+. If you observe that pattern, simply increase your layer height to 30% of your nozzle height and/or slow down the print speed considerably. @@ -14,4 +15,5 @@ For example, it is not uncommon to see "fish scale" type patterns on external wa This setting controls how tall the first layer of the print will be. Typically, this is set to 50% of the nozzle width for optimal bed adhesion. ### Tip: + A thicker first layer is more forgiving to slight variations to the evenness of the build surface, resulting in a more uniform, visually, first layer. Set it to 0.25mm for a 0.4mm nozzle, for example, if your build surface is uneven or your printer has a slightly inconsistent z offset between print runs. However, as a rule of thumb, try not to exceed 65% of the nozzle width so as to not compromise bed adhesion too much. diff --git a/doc/print_settings/quality/quality_settings_line_width.md b/doc/print_settings/quality/quality_settings_line_width.md index ae4ae05233..9c50d9d8a2 100644 --- a/doc/print_settings/quality/quality_settings_line_width.md +++ b/doc/print_settings/quality/quality_settings_line_width.md @@ -2,24 +2,24 @@ These settings control how wide the extruded lines are. -- **Default**: The default line width in mm or as a percentage of the nozzle size. - -- **First Layer**: The line width of the first layer. Typically, this is wider than the rest of the print, to promote better bed adhesion. See tips below for why. - -- **Outer Wall**: The line width in mm or as a percentage of the nozzle size used when printing the model’s external wall perimeters. - -- **Inner Wall**: The line width in mm or as a percentage of the nozzle size used when printing the model’s internal wall perimeters. - -- **Top Surface**: The line width in mm or as a percentage of the nozzle size used when printing the model’s top surface. - -- **Sparse Infill**: The line width in mm or as a percentage of the nozzle size used when printing the model’s sparse infill. - -- **Internal Solid Infill**: The line width in mm or as a percentage of the nozzle size used when printing the model’s internal solid infill. - -- **Support**: The line width in mm or as a percentage of the nozzle size used when printing the model’s support structures. +- **Default:** The default line width in mm or as a percentage of the nozzle size. +- **First Layer:** The line width of the first layer. Typically, this is wider than the rest of the print, to promote better bed adhesion. See tips below for why. + +- **Outer Wall:** The line width in mm or as a percentage of the nozzle size used when printing the model’s external wall perimeters. + +- **Inner Wall:** The line width in mm or as a percentage of the nozzle size used when printing the model’s internal wall perimeters. + +- **Top Surface:** The line width in mm or as a percentage of the nozzle size used when printing the model’s top surface. + +- **Sparse Infill:** The line width in mm or as a percentage of the nozzle size used when printing the model’s sparse infill. + +- **Internal Solid Infill:** The line width in mm or as a percentage of the nozzle size used when printing the model’s internal solid infill. + +- **Support:** The line width in mm or as a percentage of the nozzle size used when printing the model’s support structures. ## Tips: + 1. **Typically, the line width will be anything from 100% up to 150% of the nozzle width**. Due to the way the slicer’s flow math works, a 100% line width will attempt to extrude slightly “smaller” than the nozzle size and when squished onto the layer below will match the nozzle orifice. You can read more on the flow math here: [Flow Math](https://manual.slic3r.org/advanced/flow-math). 2. **For most cases, the minimum acceptable recommended line width is 105% of the nozzle diameter**, typically reserved for the outer walls, where greater precision is required. A wider line is less precise than a thinner line. diff --git a/doc/print_settings/quality/quality_settings_precision.md b/doc/print_settings/quality/quality_settings_precision.md new file mode 100644 index 0000000000..b6f0bca793 --- /dev/null +++ b/doc/print_settings/quality/quality_settings_precision.md @@ -0,0 +1,112 @@ +# Precision + +This section covers the settings that affect the precision of your prints. These settings can help you achieve better dimensional accuracy, reduce artifacts, and improve overall print quality. + +- [Slice gap closing radius](#slice-gap-closing-radius) +- [Resolution](#resolution) +- [Arc fitting](#arc-fitting) +- [X-Y Compensation](#x-y-compensation) +- [Elephant foot compensation](#elephant-foot-compensation) +- [Precise wall](#precise-wall) + - [Technical explanation](#technical-explanation) +- [Precise Z Height](#precise-z-height) +- [Polyholes](#polyholes) + + +## Slice gap closing radius + +Cracks smaller than 2x gap closing radiusCracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low. + +## Resolution + +The G-code path is generated after simplifying the contour of models to avoid too many points and G-code lines. Smaller value means higher resolution and more time to slice. + +## Arc fitting + +Enable this to get a G-code file which has [G2 and G3](https://marlinfw.org/docs/gcode/G002-G003.html) moves. + +After a model is sliced this feature will replace straight line segments with arcs where possible. This is particularly useful for curved surfaces, as it allows the printer to move in a more fluid manner, reducing the number of G-code commands and improving the overall print quality. + +This will result in a smaller G-code file for the same model, as arcs are used instead of many short line segments. This can improve print quality and reduce printing time, especially for curved surfaces. + +![arc-fitting](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/arc-fitting.svg?raw=true) + +> [!IMPORTANT] +> This option is only available for machines that support G2 and G3 commands and may impact in CPU usage on the printer. + +> [!NOTE] +> **Klipper machines**, this option is recommended to be disabled. +Klipper does not benefit from arc commands as these are split again into line segments by the firmware. This results in a reduction in surface quality as line segments are converted to arcs by the slicer and then back to line segments by the firmware. + +## X-Y Compensation + +Used to compensate external dimensions of the model. +With this option you can compensate material expansion or shrinkage, which can occur due to various factors such as the type of filament used, temperature fluctuations, or printer calibration issues. + +Follow the [Calibration Guide](https://github.com/SoftFever/OrcaSlicer/wiki/Calibration) and [Filament Tolerance Calibration](https://github.com/SoftFever/OrcaSlicer/wiki/tolerance-calib) to determine the correct value for your printer and filament combination. + +## Elephant foot compensation + +This feature compensates for the "elephant foot" effect, which occurs when the first few layers of a print are wider than the rest due: + +- Weight of the material above them. +- Thermal expansion of the material. +- Bed temperature being too high. +- Inaccurate bed height. + +![elephant-foot](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/elephant-foot.svg?raw=true) + +To mitigate this effect, OrcaSlicer allows you to specify a negative distance that will be applied to the first specified number of layers. This adjustment effectively reduces the width of the first few layers, helping to achieve a more accurate final print size. + +![elephant-foot-compensation](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/elephant-foot-compensation.png?raw=true) + +## Precise wall + +The 'Precise Wall' is a distinctive feature introduced by OrcaSlicer, aimed at improving the dimensional accuracy of prints and minimizing layer inconsistencies by slightly increasing the spacing between the outer wall and the inner wall. + +### Technical explanation + +Below is a technical explanation of how this feature works. + +First, it's important to understand some basic concepts like flow, extrusion width, and space. Slic3r has an excellent document that covers these topics in detail. You can refer to this [article](https://manual.slic3r.org/advanced/flow-math). + +Now, let's dive into the specifics. Slic3r and its forks, such as PrusaSlicer, SuperSlicer, and OrcaSlicer, assume that the extrusion path has an oval shape, which accounts for the overlaps. For example, if we set the wall width to 0.4mm and the layer height to 0.2mm, the combined thickness of two walls laid side by side is 0.714mm instead of 0.8mm due to the overlapping. + +- **Precise Wall Off** + + ![PreciseWallOff](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/PreciseWallOff.svg?raw=true) + +- **Precise Wall On** + + ![PreciseWallOn](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/PreciseWallOn.svg?raw=true) + +This approach enhances the strength of 3D-printed parts. However, it does have some side effects. For instance, when the inner-outer wall order is used, the outer wall can be pushed outside, leading to potential size inaccuracy and more layer inconsistency. + +It's important to keep in mind that this approach to handling flow is specific to Slic3r and its forks. Other slicing software, such as Cura, assumes that the extrusion path is rectangular and, therefore, does not include overlapping. Two 0.4 mm walls will result in a 0.8 mm shell thickness in Cura. + +OrcaSlicer adheres to Slic3r's approach to handling flow. To address the downsides mentioned earlier, OrcaSlicer introduced the 'Precise Wall' feature. When this feature is enabled in OrcaSlicer, the overlap between the outer wall and its adjacent inner wall is set to zero. This ensures that the overall strength of the printed part is unaffected, while the size accuracy and layer consistency are improved. + +## Precise Z Height + +This feature ensures the accurate Z height of the model after slicing, even if the model height is not a multiple of the layer height. + +For example, slicing a 20mm x 20mm x 20.1mm cube with a layer height of 0.2mm would typically result in a final height of 20.2mm due to the layer height increments. + +By enabling this parameter, the layer height of the last five layers is adjusted so that the final sliced height matches the actual object height, resulting in an accurate 20.1mm (as shown in the picture). + +- **Precise Z Height Off** + + ![PreciseZOff](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/PreciseZOff.png?raw=true) + +- **Precise Z Height On** + + ![PreciseZOn](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/PreciseZOn.png?raw=true) + +## Polyholes + +A polyhole is a technique used in FFF 3D printing to improve the accuracy of circular holes. Instead of modeling a perfect circle, the hole is represented as a polygon with a reduced number of flat sides. This simplification forces the slicer to treat each segment as a straight line, which prints more reliably. By carefully choosing the number of sides and ensuring the polygon sits on the outer boundary of the hole, you can produce openings that more closely match the intended diameter. + +![PolyHoles](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Precision/PolyHoles.png?raw=true) + +- Original implementation: [SuperSlicer Polyholes](https://github.com/supermerill/SuperSlicer/wiki/Polyholes) +- Idea and mathematics: [Hydraraptor](https://hydraraptor.blogspot.com/2011/02/polyholes.html) diff --git a/doc/print_settings/quality/quality_settings_seam.md b/doc/print_settings/quality/quality_settings_seam.md index 7777be8ff6..4c85ce79d9 100644 --- a/doc/print_settings/quality/quality_settings_seam.md +++ b/doc/print_settings/quality/quality_settings_seam.md @@ -2,37 +2,86 @@ Unless printed in spiral vase mode, every layer needs to begin somewhere and end somewhere. That start and end of the extrusion is what results in what visually looks like a seam on the perimeters. This section contains options to control the visual appearance of a seam. -- **Seam Position**: Controls the placement of the seam. - 1. **Aligned**: Will attempt to align the seam to a hidden internal facet of the model. - 2. **Nearest**: Will place the seam at the nearest starting point compared to where the nozzle stopped printing in the previous layer. - 3. **Back**: Will align the seam in a (mostly) straight line at the rear of the model. - 4. **Random**: Will randomize the placement of the seam between layers. - - Typically, aligned or back work the best, especially in combination with seam painting. However, as seams create weak points and slight surface "bulges" or "divots," random seam placement may be optimal for parts that need higher strength as that weak point is spread to different locations between layers (e.g., a pin meant to fit through a hole). +## Seam Position -- **Staggered Inner Seams**: As the seam location forms a weak point in the print (it's a discontinuity in the extrusion process after all!), staggering the seam on the internal perimeters can help reduce stress points. This setting moves the start of the internal wall's seam around across layers as well as away from the external perimeter seam. This way, the internal and external seams don't all align at the same point and between them across layers, distributing those weak points further away from the seam location, hence making the part stronger. It can also help improve the water tightness of your model. +Controlling the position of seams can help improve the appearance and strength of the final print. -- **Seam Gap**: Controls the gap in mm or as a percentage of the nozzle size between the two ends of a loop starting and ending with a seam. A larger gap will reduce the bulging seen at the seam. A smaller gap reduces the visual appearance of a seam. For a well-tuned printer with pressure advance, a value of 0-15% is typically optimal. +Typically, aligned or back work the best, especially in combination with seam painting. However, as seams create weak points and slight surface "bulges" or "divots", random seam placement may be optimal for parts that need higher strength as that weak point is spread to different locations between layers (e.g., a pin meant to fit through a hole). -- **Scarf Seam**: Read more here: [Better Seams - An Orca Slicer Guide](https://www.printables.com/model/783313-better-seams-an-orca-slicer-guide-to-using-scarf-s). +### Aligned -- **Role-Based Wipe Speed**: Controls the speed of a wipe motion, i.e., how fast the nozzle will move over a printed area to "clean" it before traveling to another area of the model. It is recommended to turn this option on, to ensure the nozzle performs the wipe motion with the same speed that the feature was printed with. +Will attempt to align the seam to a hidden internal facet of the model. -- **Wipe Speed**: If role-based wipe speed is disabled, set this field to the absolute wipe speed or as a percentage over the travel speed. +![seam-aligned](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-aligned.png?raw=true) -- **Wipe on Loops**: When finishing printing a "loop" (i.e., an extrusion that starts and ends at the same point), move the nozzle slightly inwards towards the part. That move aims to reduce seam unevenness by tucking in the end of the seam to the part. It also slightly cleans the nozzle before traveling to the next area of the model, reducing stringing. +### Nearest -- **Wipe Before External Perimeters**: To minimize the visibility of potential over-extrusion at the start of an external perimeter, the de-retraction move is performed slightly on the inside of the model and, hence, the start of the external perimeter. That way, any potential over-extrusion is hidden from the outside surface. +Will place the seam at the nearest starting point compared to where the nozzle stopped printing in the previous layer. +This is optimized for speed, low travel, and acceptable strength. + +![seam-nearest](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-nearest.png?raw=true) + +### Back + +This option places the seam on the back side (Min Y point in that layer) of the object, away from the view. It is useful for objects that will be displayed with a specific orientation. + +![seam-back](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-back.png?raw=true) + +### Random + +This option places the seam randomly across the object, which can help to distribute the seam points and increase the overall strength of the print. + +![seam-random](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-random.png?raw=true) + +## Modifiers + +### Staggered inner seams + +As the seam location forms a weak point in the print (it's a discontinuity in the extrusion process after all!), staggering the seam on the internal perimeters can help reduce stress points. This setting moves the start of the internal wall's seam around across layers as well as away from the external perimeter seam. This way, the internal and external seams don't all align at the same point and between them across layers, distributing those weak points further away from the seam location, hence making the part stronger. It can also help improve the water tightness of your model. + +### Seam gap + +Controls the gap in mm or as a percentage of the nozzle size between the two ends of a loop starting and ending with a seam. A larger gap will reduce the bulging seen at the seam. A smaller gap reduces the visual appearance of a seam. For a well-tuned printer with pressure advance, a value of 0-15% is typically optimal. + +![seam-gap](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-gap.png?raw=true) + +### Scarf joint seam + +Read more here: [Better Seams - An Orca Slicer Guide](https://www.printables.com/model/783313-better-seams-an-orca-slicer-guide-to-using-scarf-s). + +### Role-based wipe speed + +Controls the speed of a wipe motion, i.e., how fast the nozzle will move over a printed area to "clean" it before traveling to another area of the model. It is recommended to turn this option on, to ensure the nozzle performs the wipe motion with the same speed that the feature was printed with. + +### Wipe speed + +If role-based wipe speed is disabled, set this field to the absolute wipe speed or as a percentage over the travel speed. + +### Wipe on loop(inward movement) + +When finishing printing a "loop" (i.e., an extrusion that starts and ends at the same point), move the nozzle slightly inwards towards the part. That move aims to reduce seam unevenness by tucking in the end of the seam to the part. It also slightly cleans the nozzle before traveling to the next area of the model, reducing stringing. + +![seam-wipe-on-loop](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-wipe-on-loop.png?raw=true) + +![seam-outer-wall-wipe](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-outer-wall-wipe.png?raw=true) + +![seam-wipe-on-loops-options](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-wipe-on-loops-options.png?raw=true) + +### Wipe Before External + +To minimize the visibility of potential over-extrusion at the start of an external perimeter, the de-retraction move is performed slightly on the inside of the model and, hence, the start of the external perimeter. That way, any potential over-extrusion is hidden from the outside surface. This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print order, as in these modes, it is more likely an external perimeter is printed immediately after a de-retraction move, which would cause slight extrusion variance at the start of a seam. -## Tips: +## Tips + With seams being inevitable when 3D printing using FFF, there are two distinct approaches on how to deal with them: -1. **Try and hide the seam as much as possible**: This can be done by enabling scarf seam, which works very well, especially with simple models with limited overhang regions. -2. **Try and make the seam as "clean" and "distinct" as possible**: This can be done by tuning the seam gap and enabling role-based wipe speed, wipe on loops, and wipe before the external loop. +1. **Try and hide the seam as much as possible:** This can be done by enabling scarf seam, which works very well, especially with simple models with limited overhang regions. +2. **Try and make the seam as "clean" and "distinct" as possible:** This can be done by tuning the seam gap and enabling role-based wipe speed, wipe on loops, and wipe before the external loop. + +## Troubleshooting Seam Performance -## Troubleshooting Seam Performance: The section below will focus on troubleshooting traditional seams. For scarf seam troubleshooting, refer to the guide linked above. There are several factors that influence how clean the seam of your model is, with the biggest one being extrusion control after a travel move. As a seam defines the start and end of an extrusion, it is critical that: @@ -42,10 +91,10 @@ There are several factors that influence how clean the seam of your model is, wi However, due to mechanical and material tolerances, as well as the very nature of 3D printing with FFF, that is not always possible. Hopefully with some tuning you'll be able to achieve prints like this! -![IMG_4059](https://github.com/user-attachments/assets/e60c3d24-9b21-4484-bcbe-614237a2fe09) +![seam-quality](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/seam/seam-quality.jpg?raw=true) +### Troubleshooting the Start of a Seam -### Troubleshooting the Start of a Seam: Imagine the scenario where the toolhead finishes printing a layer line on one side of the bed, retracts, travels the whole distance of the bed to de-retract, and starts printing another part. Compare this to the scenario where the toolhead finishes printing an internal perimeter and only travels a few mm to start printing an external perimeter, without even retracting or de-retracting. The first scenario has much more opportunity for the filament to ooze outside the nozzle, resulting in a small blob forming at the start of the seam or, conversely, if too much material has leaked, a gap/under extrusion at the start of the seam. @@ -64,7 +113,8 @@ So this is a trade-off between print speed and print quality. From experimental In addition, larger nozzle diameters allow for more opportunity for material to leak compared to smaller diameter nozzles. A 0.2/0.25 mm nozzle will have significantly better seam performance than a 0.4, and that will have much better performance than a 0.6mm nozzle and so forth. -### Troubleshooting the End of a Seam: +### Troubleshooting the End of a Seam + The end of a seam is much easier to get right, as the extrusion system is already at a pressure equilibrium while printing. It just needs to stop extruding at the right time and consistently. **If you are getting bulges at the seam**, the extruder is not stopping at the right time. The first thing to tune would be **pressure advance** – too low of a PA will result in the nozzle still being pressurized when finishing the print move, hence leaving a wider line at the end as it stops printing. @@ -75,7 +125,8 @@ Furthermore, the printer mechanics have tolerances – the print head may be req Finally, the techniques of **wiping can help improve the visual continuity and consistency of a seam** (please note, these settings do not make the seam less visible, but rather make them more consistent!). Wiping on loops with a consistent speed helps tuck in the end of the seam, hiding the effects of retraction from view. -### The Role of Wall Ordering in Seam Appearance: +### The Role of Wall Ordering in Seam Appearance + The order of wall printing plays a significant role in the appearance of a seam. **Starting to print the external perimeter first after a long travel move will always result in more visible artifacts compared to printing the internal perimeters first and traveling just a few mm to print the external perimeter.** For optimal seam performance, printing with **inner-outer-inner wall order is typically best, followed by inner-outer**. It reduces the amount of traveling performed prior to printing the external perimeter and ensures the nozzle is having as consistent pressure as possible, compared to printing outer-inner. diff --git a/doc/print_settings/quality/quality_settings_wall_generator.md b/doc/print_settings/quality/quality_settings_wall_generator.md new file mode 100644 index 0000000000..f7279aa253 --- /dev/null +++ b/doc/print_settings/quality/quality_settings_wall_generator.md @@ -0,0 +1,23 @@ +# Wall Generator + +WIP... + +## Classic + +WIP... + +![wallgenerator-classic](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/WallGenerator/wallgenerator-classic.png?raw=true) + +## Arachne + +WIP... + +![wallgenerator-arachne](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/WallGenerator/wallgenerator-arachne.png?raw=true) + +- Wall transitioning threshhold angle +- Wall transitioning filter +- Wall transitioning length +- Wall distribution count +- First layer minimum wall width +- Minimum feature size +- Minimum wall length diff --git a/doc/print_settings/speed/extrusion-rate-smoothing.md b/doc/print_settings/speed/speed_extrusion_rate_smoothing.md similarity index 85% rename from doc/print_settings/speed/extrusion-rate-smoothing.md rename to doc/print_settings/speed/speed_extrusion_rate_smoothing.md index 3407e45fdf..9c479ec86e 100644 --- a/doc/print_settings/speed/extrusion-rate-smoothing.md +++ b/doc/print_settings/speed/speed_extrusion_rate_smoothing.md @@ -1,181 +1,192 @@ -

Extrusion rate smoothing

- -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. - -![Screenshot 2023-09-18 at 22 44 26](https://github.com/SoftFever/OrcaSlicer/assets/59056762/281b9c78-9f5c-428e-86b9-509de099a3e7) - -

Theory

- -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.** -![ERS Disabled](https://github.com/SoftFever/OrcaSlicer/assets/59056762/31fdbf91-2067-4286-8bc1-4f7de4a628b6) - -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. - - -

Acceleration vs. Extrusion rate smoothing

-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: - -![image](https://github.com/igiannakas/OrcaSlicer/assets/59056762/4ba0356b-49ab-428c-ab10-f2c88bcc1bcb) - -![image](https://github.com/igiannakas/OrcaSlicer/assets/59056762/3958deb5-fbc3-4d07-8903-4575033717fd) - -The time taken to decelerate to this new speed would be approx. 0.08 seconds, derived from the following equation: - -![image](https://github.com/igiannakas/OrcaSlicer/assets/59056762/ea9f19b4-defe-4656-9ecc-a6576c87d8e0) - -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. - -![image](https://github.com/igiannakas/OrcaSlicer/assets/59056762/83242b26-7174-4da1-b815-d9fcec767bcd) - -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. - -

Pressure advance vs extrusion rate smoothing

- -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. - -

Finding the ideal Extrusion Rate smoothing value

- -**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. - -

A note for Bowden printers using marlin without pressure advance.

-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. - -

A note on ERS Segment length

-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. - -

Limitations

- -**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. - -

Credits

- -**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 - +# Extrusion rate smoothing + +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. + +![ers-intro](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/ERS/ers-intro.jpg?raw=true) + +## Theory + +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.** +![ers-artefact](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/ERS/ers-artefact.jpg?raw=true) + +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. + +### Acceleration vs. Extrusion rate smoothing + +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: + +Where: + +- vf = final speed. +- vi = initial speed. +- a = acceleration (in this case, it will be negative as it's a deceleration). +- d = distance. + +```math +d = \frac{v_f^2 - v_i^2}{2a} +``` + +The time taken to decelerate to this new speed would be approx. 0.08 seconds, derived from the following equation: + +```math +t = \frac{v_f - v_i}{a} +``` + +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. + +![ers-printspeed](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/ERS/ers-printspeed.jpg?raw=true) + +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. + +### Pressure advance vs extrusion rate smoothing + +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, **pressure 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 in [this Klipper forum post](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. + +## Finding the ideal Extrusion Rate smoothing value + +**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. + +## A note for Bowden printers using marlin without pressure advance + +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. + +## A note on ERS Segment length + +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. + +## Limitations + +**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. + +## Credits + +**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. diff --git a/doc/print_settings/strength/infill_desc_calculator.xlsx b/doc/print_settings/strength/infill_desc_calculator.xlsx new file mode 100644 index 0000000000..d2eb743142 Binary files /dev/null and b/doc/print_settings/strength/infill_desc_calculator.xlsx differ diff --git a/doc/print_settings/strength/strength_settings_infill.md b/doc/print_settings/strength/strength_settings_infill.md new file mode 100644 index 0000000000..394ab8720e --- /dev/null +++ b/doc/print_settings/strength/strength_settings_infill.md @@ -0,0 +1,335 @@ +# Infill + +Infill is the internal structure of a 3D print, providing strength and support. It can be adjusted to balance material usage, print time, and part strength. + +## Sparse infill density + +Density usually should be calculated as a % of the total infill volume, not the total print volume. +Higher density increases strength but also material usage and print time. Lower density saves material and time but reduces strength. + +Nevertheless, **not all patterns interpret density the same way**, so the actual material usage may vary. You can see each pattern's material usage in the [Sparse Infill Pattern](#sparse-infill-pattern) section. + +## Sparse Infill Pattern + +Infill patterns determine how material is distributed within a print. Different patterns can affect strength, flexibility, and print speed using the same density setting. + +There is no one-size-fits-all solution, as the best pattern depends on the specific print and its requirements. + +Many patterns may look similar and have similar overall specifications, but they can behave very differently in practice. +As most settings in 3D printing, experience is the best way to determine which pattern works best for your specific needs. + +| Infill | X-Y Strength | Z Strength | Material Usage | Print Time | +|---------------------------------------------|--------------|-------------|----------------|-------------| +| [Concentric](#concentric) | Low | Normal | Normal | Normal | +| [Rectilinear](#rectilinear) | Normal-Low | Low | Normal | Normal | +| [Grid](#grid) | High | High | Normal | Normal | +| [2D Lattice](#2d-lattice) | Normal-Low | Low | Normal | Normal | +| [Line](#line) | Low | Low | Normal | Normal-Low | +| [Cubic](#cubic) | High | High | Normal | Normal-Low | +| [Triangles](#triangles) | High | Normal | Normal | Normal-Low | +| [Tri-hexagon](#tri-hexagon) | High | Normal-High | Normal | Normal-Low | +| [Gyroid](#gyroid) | High | High | Normal | Normal-High | +| [TPMS-D](#tpms-d) | High | High | Normal | High | +| [Honeycomb](#honeycomb) | High | High | High | Ultra-High | +| [Adaptive Cubic](#adaptive-cubic) | Normal-High | Normal-High | Low | Low | +| [Aligned Rectilinear](#aligned-rectilinear) | Normal-Low | Normal | Normal | Normal | +| [2D Honeycomb](#2d-honeycomb) | Normal-Low | Normal-Low | Normal | Normal-Low | +| [3D Honeycomb](#3d-honeycomb) | Normal-High | Normal-High | Normal-Low | High | +| [Hilbert Curve](#hilbert-curve) | Low | Normal | Normal | High | +| [Archimedean Chords](#archimedean-chords) | Low | Normal | Normal | Normal-Low | +| [Octagram Spiral](#octagram-spiral) | Low | Normal | Normal | Normal-High | +| [Support Cubic](#support-cubic) | Low | Low | Extra-Low | Extra-Low | +| [Lightning](#lightning) | Low | Low | Ultra-Low | Ultra-Low | +| [Cross Hatch](#cross-hatch) | Normal-High | Normal-High | Normal | Normal-High | +| [Quarter Cubic](#quarter-cubic) | High | High | Normal | Normal-Low | + +> [!NOTE] +> You can download [infill_desc_calculator.xlsx](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/print_settings/strength/infill_desc_calculator.xlsx?raw=true) used to calculate the values above. + +### Concentric + +Fills the area with progressively smaller versions of the outer contour, creating a concentric pattern. Ideal for 100% infill or flexible prints. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Normal +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal +- **Material/Time (Higher better):** Normal-High + +![infill-top-concentric](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-concentric.png?raw=true) + +### Rectilinear + +Parallel lines spaced according to infill density. Each layer is printed perpendicular to the previous, resulting in low vertical bonding. + +- **Horizontal Strength (X-Y):** Normal-Low +- **Vertical Strength (Z):** Low +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal +- **Material/Time (Higher better):** Normal-High + +![infill-top-rectilinear](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-rectilinear.png?raw=true) + +### Grid + +Two-layer pattern of perpendicular lines, forming a grid. Overlapping points may cause noise or artifacts. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal +- **Material/Time (Higher better):** Normal + +![infill-top-grid](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-grid.png?raw=true) + +### 2D Lattice + +Low-strength pattern with good flexibility. Angle 1 and angle 2 TBD. + +- **Horizontal Strength (X-Y):** Normal-Low +- **Vertical Strength (Z):** Low +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal +- **Material/Time (Higher better):** Normal + +![infill-top-2d-lattice](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-2d-lattice.png?raw=true) + +### Line + +Similar to [rectilinear](#rectilinear), but each line is slightly rotated to improve print speed. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Low +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal-High + +![infill-top-line](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-line.png?raw=true) + +### Cubic + +3D cube pattern with corners facing down, distributing force in all directions. Triangles in the horizontal plane provide good X-Y strength. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal-High + +![infill-top-cubic](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-cubic.png?raw=true) + +### Triangles + +Triangle-based grid, offering strong X-Y strength but with triple overlaps at intersections. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** Normal +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal-High + +![infill-top-triangles](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-triangles.png?raw=true) + +### Tri-hexagon + +Similar to the [triangles](#triangles) pattern but offset to prevent triple overlaps at intersections. This design combines triangles and hexagons, providing excellent X-Y strength. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** Normal-High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal-High + +![infill-top-tri-hexagon](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-tri-hexagon.png?raw=true) + +### Gyroid + +Mathematical, isotropic surface providing equal strength in all directions. Excellent for strong, flexible prints and resin filling due to its interconnected structure. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-High +- **Material/Time (Higher better):** Low + +![infill-top-gyroid](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-gyroid.png?raw=true) + +### TPMS-D + +Triply Periodic Minimal Surface - D. Hybrid between [Cross Hatch](#cross-hatch) and [Gyroid](#gyroid), combining rigidity and smooth transitions. Isotropic and strong in all directions. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** High +- **Material/Time (Higher better):** Low + +![infill-top-tpms-d](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-tpms-d.png?raw=true) + +### Honeycomb + +Hexagonal pattern balancing strength and material use. Double walls in each hexagon increase material consumption. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** High +- **Density Calculation:** % of total infill volume +- **Material Usage:** High +- **Print Time:** Ultra-High +- **Material/Time (Higher better):** Extra Low + +![infill-top-honeycomb](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-honeycomb.png?raw=true) + +### Adaptive Cubic + +[Cubic](#cubic) pattern with adaptive density: denser near walls, sparser in the center. Saves material and time while maintaining strength, ideal for large prints. + +- **Horizontal Strength (X-Y):** Normal-High +- **Vertical Strength (Z):** Normal-High +- **Density Calculation:** Same as [Cubic](#cubic) but reduced in the center +- **Material Usage:** Low +- **Print Time:** Low +- **Material/Time (Higher better):** Normal + +![infill-top-adaptive-cubic](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-adaptive-cubic.png?raw=true) + +### Aligned Rectilinear + +Parallel lines spaced by the infill spacing, each layer printed in the same direction as the previous layer. Good horizontal strength perpendicular to the lines, but terrible in parallel direction. +Recommended with layer anchoring to improve not perpendicular strength. + +- **Horizontal Strength (X-Y):** Normal-Low +- **Vertical Strength (Z):** Normal +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal +- **Material/Time (Higher better):** Normal + +![infill-top-aligned-rectilinear](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-aligned-rectilinear.png?raw=true) + +### 2D Honeycomb + +Vertical Honeycomb pattern. Acceptable torsional stiffness. Developed for low densities structures like wings. Improve over [2D Lattice](#2d-lattice) offers same performance with lower densities.This infill includes a Overhang angle parameter to improve interlayer point of contact and reduce the risk of delamination. + +- **Horizontal Strength (X-Y):** Normal-Low +- **Vertical Strength (Z):** Normal-Low +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal + +![infill-top-2d-honeycomb](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-2d-honeycomb.png?raw=true) + +### 3D Honeycomb + +This infill tries to generate a printable honeycomb structure by printing squares and octagons mantaining a vertical angle high enough to mantian contact with the previous layer. + +- **Horizontal Strength (X-Y):** Normal-High +- **Vertical Strength (Z):** Normal-High +- **Density Calculation:** Unknown +- **Material Usage:** Normal-Low +- **Print Time:** High +- **Material/Time (Higher better):** Extra Low + +![infill-top-3d-honeycomb](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-3d-honeycomb.png?raw=true) + +### Hilbert Curve + +Hilbert Curve is a space-filling curve that can be used to create a continuous infill pattern. It is known for its Esthetic appeal and ability to fill space efficiently. +Print speed is very low due to the complexity of the path, which can lead to longer print times. It is not recommended for structural parts but can be used for Esthetic purposes. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Normal +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** High +- **Material/Time (Higher better):** Extra Low + +![infill-top-hilbert-curve](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-hilbert-curve.png?raw=true) + +### Archimedean Chords + +Spiral pattern that fills the area with concentric arcs, creating a smooth and continuous infill. Can be filled with resin thanks to its interconnected hollow structure, which allows the resin to flow through it and cure properly. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Normal +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal-High + +![infill-top-archimedean-chords](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-archimedean-chords.png?raw=true) + +### Octagram Spiral + +Esthetic pattern with low strength and high print time. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Normal +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-High +- **Material/Time (Higher better):** Normal + +![infill-top-octagram-spiral](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-octagram-spiral.png?raw=true) + +### Support Cubic + +Support |Cubic is a variation of the [Cubic](#cubic) infill pattern that is specifically designed for support top layers. Will use more material than Lightning infill but will provide better strength. Nevertheless, it is still a low-density infill pattern. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Low +- **Density Calculation:** % of layer before top shell layers +- **Material Usage:** Extra-Low +- **Print Time:** Extra-Low +- **Material/Time (Higher better):** Normal + +![infill-top-support-cubic](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-support-cubic.png?raw=true) + +### Lightning + +Ultra-fast, ultra-low material infill. Designed for speed and efficiency, ideal for quick prints or non-structural prototypes. + +- **Horizontal Strength (X-Y):** Low +- **Vertical Strength (Z):** Low +- **Density Calculation:** % of layer before top shell layers +- **Material Usage:** Ultra-Low +- **Print Time:** Ultra-Low +- **Material/Time (Higher better):** Extra Low + +![infill-top-lightning](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-lightning.png?raw=true) + +### Cross Hatch + +Similar to [Gyroid](#gyroid) but with linear patterns, creating weak points at internal corners. + +- **Horizontal Strength (X-Y):** Normal-High +- **Vertical Strength (Z):** Normal-High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-High +- **Material/Time (Higher better):** Low + +![infill-top-cross-hatch](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-cross-hatch.png?raw=true) + +### Quarter Cubic + +[Cubic](#cubic) pattern with extra internal divisions, improving X-Y strength. + +- **Horizontal Strength (X-Y):** High +- **Vertical Strength (Z):** High +- **Density Calculation:** % of total infill volume +- **Material Usage:** Normal +- **Print Time:** Normal-Low +- **Material/Time (Higher better):** Normal + +![infill-top-quarter-cubic](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/fill/infill-top-quarter-cubic.png?raw=true) diff --git a/doc/Auxiliary-fan.md b/doc/printer_settings/Auxiliary-fan.md similarity index 82% rename from doc/Auxiliary-fan.md rename to doc/printer_settings/Auxiliary-fan.md index 1177248d46..95d1ec0158 100644 --- a/doc/Auxiliary-fan.md +++ b/doc/printer_settings/Auxiliary-fan.md @@ -1,10 +1,14 @@ +# Auxiliary Fan + OrcaSlicer use `M106 P2` command to control auxiliary cooling fan. -If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhaust fan. -Below is a reference configuration for Klipper. -*Note: Don't forget to change the pin name to the actual pin name you are using in the configuration* +If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhaust fan. +Below is a reference configuration for Klipper. -``` +> [!NOTE] +> Don't forget to change the pin name to the actual pin name you are using in the configuration + +```ini # instead of using [fan], we define the default part cooling fan with [fan_generic] here # this is the default part cooling fan [fan_generic fan0] @@ -31,5 +35,4 @@ gcode: {% set fan = 'fan' + (params.P|int if params.P is defined else 0)|string %} {% set speed = (params.S|float / 255 if params.S is defined else 1.0) %} SET_FAN_SPEED FAN={fan} SPEED={speed} - ``` diff --git a/doc/printer_settings/Chamber-temperature.md b/doc/printer_settings/Chamber-temperature.md new file mode 100644 index 0000000000..52b81d7aa8 --- /dev/null +++ b/doc/printer_settings/Chamber-temperature.md @@ -0,0 +1,66 @@ +# Chamber Temperature Control + +OrcaSlicer use `M141/M191` command to control active chamber heater. + +If your Filament's `Activate temperature control` and your printer `Support control chamber temperature` option are checked , OrcaSlicer will insert `M191` command at the beginning of the gcode (before `Machine G-code`). + +![Chamber-Temperature-Control-Printer](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Chamber/Chamber-Temperature-Control-Printer.png?raw=true) +![Chamber-Temperature-Control-Material](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Chamber/Chamber-Temperature-Control-Material.png?raw=true) + + +> [!NOTE] +> If the machine is equipped with an auxiliary fan, OrcaSlicer will automatically activate the fan during the heating period to help circulate air in the chamber. + +## Using Chamber Temperature Variables in Machine G-code + +You can use chamber temperature variables in your `Machine G-code` to control the chamber temperature manually, if desired: + +- To set the chamber temperature to the value specified for the first filament: + ```gcode + M191 S{chamber_temperature[0]} + ``` +- To set the chamber temperature to the highest value specified across all filaments: + ```gcode + M191 S{overall_chamber_temperature} + ``` + +## Klipper + +If you are using Klipper, you can define these macros to control the active chamber heater. +Bellow is a reference configuration for Klipper. + +> [!IMPORTANT] +> Don't forget to change the pin name/values to the actual values you are using in the configuration. + +```gcode +[heater_generic chamber_heater] +heater_pin:PB10 +max_power:1.0 +# Orca note: here the temperature sensor should be the sensor you are using for chamber temperature, not the PTC sensor +sensor_type:NTC 100K MGB18-104F39050L32 +sensor_pin:PA1 +control = pid +pid_Kp = 63.418 +pid_ki = 0.960 +pid_kd = 1244.716 +min_temp:0 +max_temp:70 + +[gcode_macro M141] +gcode: + SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={params.S|default(0)} + +[gcode_macro M191] +gcode: + {% set s = params.S|float %} + {% if s == 0 %} + # If target temperature is 0, do nothing + M117 Chamber heating cancelled + {% else %} + SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={s} + # Orca: uncomment the following line if you want to use heat bed to assist chamber heating + # M140 S100 + TEMPERATURE_WAIT SENSOR="heater_generic chamber_heater" MINIMUM={s-1} MAXIMUM={s+1} + M117 Chamber at target temperature + {% endif %} +``` diff --git a/doc/adaptive-bed-mesh.md b/doc/printer_settings/adaptive-bed-mesh.md similarity index 80% rename from doc/adaptive-bed-mesh.md rename to doc/printer_settings/adaptive-bed-mesh.md index a711eaff0c..445e5083bc 100644 --- a/doc/adaptive-bed-mesh.md +++ b/doc/printer_settings/adaptive-bed-mesh.md @@ -1,44 +1,57 @@ # 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. + +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. - -![Screenshot 2024-02-24 104601](https://github.com/SoftFever/OrcaSlicer/assets/103989404/8ab1f26f-987d-4419-942f-b1384270a164) +![ABM-PrinterConfig](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Adaptative-Bed-Mesh/ABM-PrinterConfig.png?raw=true) ## 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). +`Mesh margin`: This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions. + +> [!NOTE] +> 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 -## 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`. +`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: +## Example of Adaptive Bed Mesh usage in Orca Slicer: ### Marlin: -``` + +```gcode ; Marlin don't support speicify the probe count yet, so we only specify the probe area G29 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: -``` + +```gcode ; Always pass `ADAPTIVE_MARGIN=0` because Orca has already handled `adaptive_bed_mesh_margin` internally ; Make sure to set ADAPTIVE to 0 otherwise Klipper will use it's own adaptive bed mesh logic 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=0 ADAPTIVE_MARGIN=0 ``` + ### RRF: + +```gcode +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]} ``` -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]} -``` -![Screenshot 2024-02-24 104759](https://github.com/SoftFever/OrcaSlicer/assets/103989404/ad4a8020-bec6-4361-abb9-4017ca77471f) + +![ABM-Machine-G-code](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/Adaptative-Bed-Mesh/ABM-Machine-G-code.png?raw=true) diff --git a/doc/air-filtration.md b/doc/printer_settings/air-filtration.md similarity index 74% rename from doc/air-filtration.md rename to doc/printer_settings/air-filtration.md index 4ab0868174..ec38d632f9 100644 --- a/doc/air-filtration.md +++ b/doc/printer_settings/air-filtration.md @@ -1,10 +1,15 @@ +# Air Filtration/Exhaust Fan Control in OrcaSlicer + OrcaSlicer use `M106 P3` command to control air-filtration/exhaust fan. -If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhaust fan. -Below is a reference configuration for Klipper. -*Note: Don't forget to change the pin name to the actual pin name you are using in the configuration* +If you are using Klipper, you can define a `M106` macro to control both the normal part cooling fan, auxiliary fan, and exhaust fan. -``` +Below is a reference configuration for Klipper. + +> [!NOTE] +> Don't forget to change the pin name to the actual pin name you are using in the configuration. + +```ini # instead of using [fan], we define the default part cooling fan with [fan_generic] here # this is the default part cooling fan [fan_generic fan0] @@ -31,5 +36,4 @@ gcode: {% set fan = 'fan' + (params.P|int if params.P is defined else 0)|string %} {% set speed = (params.S|float / 255 if params.S is defined else 1.0) %} SET_FAN_SPEED FAN={fan} SPEED={speed} - ``` diff --git a/doc/bed-types.md b/doc/printer_settings/bed-types.md similarity index 65% rename from doc/bed-types.md rename to doc/printer_settings/bed-types.md index 77d5f93d9d..73b18e6fa0 100644 --- a/doc/bed-types.md +++ b/doc/printer_settings/bed-types.md @@ -2,15 +2,15 @@ You can enable it in printer settings. +Once enabled, you can select the bed type in the drop-down menu, corresponding bed temperature will be set automatically. +You can set the bed temperature for each bed type in the filament settings as demonstrated in the following image. -Once enabled, you can select the bed type in the drop-down menu, corresponding bed temperature will be set automatically. -You can set the bed temperature for each bed type in the filament settings as demonstrated in the following image. -![multi_bed](./images/bed-types.gif) +![bed-types](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/images/bed-types.gif?raw=true) +Orca also support `curr_bed_type` variable in custom G-code. +For example, the following sample G-codes can detect the selected bed type and adjust the G-code offset accordingly for Klipper: -Orca also support `curr_bed_type` variable in custom G-code. -For example, the following sample G-codes can detect the selected bed type and adjust the G-code offset accordingly for Klipper: -``` +```c++ {if curr_bed_type=="Textured PEI Plate"} SET_GCODE_OFFSET Z=-0.05 {else} @@ -19,9 +19,10 @@ For example, the following sample G-codes can detect the selected bed type and a ``` available bed types are: -``` + +```c++ "Cool Plate" "Engineering Plate" "High Temp Plate" "Textured PEI Plate" -``` \ No newline at end of file +``` diff --git a/doc/semm.md b/doc/semm.md deleted file mode 100644 index 9bff668fc9..0000000000 --- a/doc/semm.md +++ /dev/null @@ -1,11 +0,0 @@ -# Single Extruder Multimaterial Printing in OrcaSlicer - -## Introduction -In this guide, we will explain the parameters for single extruder multimaterial printing in OrcaSlicer. The whole process and parameters are same as PrusaSlicer as OrcaSlicer is based on PrusaSlicer. -OrcaSlicer has some additional features and minor differences though. We will explain them in this guide. -## Prime tower -WIP... -## Ramming -WIP... -## Manual filament change -WIP... \ No newline at end of file diff --git a/flatpak/io.github.softfever.OrcaSlicer.yml b/flatpak/io.github.softfever.OrcaSlicer.yml index 73ab58b17d..3dde299a64 100755 --- a/flatpak/io.github.softfever.OrcaSlicer.yml +++ b/flatpak/io.github.softfever.OrcaSlicer.yml @@ -1,6 +1,6 @@ app-id: io.github.softfever.OrcaSlicer runtime: org.gnome.Platform -runtime-version: "46" +runtime-version: "47" sdk: org.gnome.Sdk command: entrypoint separate-locales: true @@ -36,29 +36,6 @@ modules: url: https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.22.8.tar.xz sha256: e305b9f07f52743ca481da0a4e0c76c35efd60adaf1b0694eb3bb021e2137e39 - # For libOSMesa - - name: mesa - buildsystem: meson - config-opts: - - -Dosmesa=classic - - -Ddri-drivers=[] - - -Dgallium-drivers=[] - - -Dvulkan-drivers=[] - - -Dplatforms=[] - build-options: - arch: - aarch64: - config-opts: - - -Dlibunwind=disabled - cleanup: - - /share/drirc.d - - /include - - "*.a" - sources: - - type: archive - url: https://archive.mesa3d.org/older-versions/20.x/mesa-20.2.6.tar.xz - sha256: f12ca3c6c622f11cd79ad66b4220f04514fa96f795062fe92a37339ab19885db - - name: glu config-opts: - --disable-static @@ -84,9 +61,9 @@ modules: - name: libspnav sources: - type: archive - url: https://github.com/FreeSpacenav/libspnav/releases/download/v1.1/libspnav-1.1.tar.gz - sha256: 04b297f68a10db4fa40edf68d7f823ba7b9d0442f2b665181889abe2cea42759 - + url: https://github.com/FreeSpacenav/libspnav/releases/download/v1.2/libspnav-1.2.tar.gz + sha256: 093747e7e03b232e08ff77f1ad7f48552c06ac5236316a5012db4269951c39db + - name: orca_wxwidgets buildsystem: simple build-commands: @@ -115,7 +92,7 @@ modules: -DwxUSE_LIBPNG=sys \ -DwxUSE_ZLIB=sys \ -DwxUSE_LIBJPEG=sys \ - -DwxUSE_LIBTIFF=sys \ + -DwxUSE_LIBTIFF=OFF \ -DwxUSE_EXPAT=sys \ -DBUILD_SHARED_LIBS:BOOL=ON \ -DCMAKE_INSTALL_PREFIX:STRING=/app \ @@ -195,11 +172,17 @@ modules: dest: external-packages/GMP sha256: eae9326beb4158c386e39a356818031bd28f3124cf915f8c5b1dc4c7a36b4d7c + # curl + - type: file + url: https://github.com/curl/curl/archive/refs/tags/curl-7_75_0.zip + dest: external-packages/CURL + sha256: a63ae025bb0a14f119e73250f2c923f4bf89aa93b8d4fafa4a9f5353a96a765a + # MPFR - type: file - url: https://www.mpfr.org/mpfr-current/mpfr-4.2.1.tar.bz2 + url: https://www.mpfr.org/mpfr-4.2.2/mpfr-4.2.2.tar.bz2 dest: external-packages/MPFR - sha256: b9df93635b20e4089c29623b19420c4ac848a1b29df1cfd59f26cab0d2666aa0 + sha256: 9ad62c7dc910303cd384ff8f1f4767a655124980bb6d8650fe62c815a231bb7b # NLopt - type: file @@ -231,6 +214,12 @@ modules: dest: external-packages/OpenEXR sha256: 0307a3d7e1fa1e77e9d84d7e9a8694583fbbbfd50bdc6884e2c96b8ef6b902de + # OpenSSL + - type: file + url: https://github.com/openssl/openssl/archive/OpenSSL_1_1_1w.tar.gz + dest: external-packages/OpenSSL + sha256: 2130e8c2fb3b79d1086186f78e59e8bc8d1a6aedf17ab3907f4cb9ae20918c41 + # OpenVDB - type: file url: https://github.com/tamasmeszaros/openvdb/archive/a68fd58d0e2b85f01adeb8b13d7555183ab10aa5.zip diff --git a/flatpak/patches/0001-Enable-using-a-dark-theme-when-Gnome-dark-style-is-s.patch b/flatpak/patches/0001-Enable-using-a-dark-theme-when-Gnome-dark-style-is-s.patch index 7f8bd07d44..877b69b459 100644 --- a/flatpak/patches/0001-Enable-using-a-dark-theme-when-Gnome-dark-style-is-s.patch +++ b/flatpak/patches/0001-Enable-using-a-dark-theme-when-Gnome-dark-style-is-s.patch @@ -1,4 +1,4 @@ -From 221be0af1a0b5bcf05c59b3403f969643b42dbaf Mon Sep 17 00:00:00 2001 +From f0135d9c3faf0207f7100991ccf512f228b90570 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sat, 30 Sep 2023 16:42:58 -0700 Subject: [PATCH] Enable using a dark theme when Gnome "dark style" is set @@ -8,11 +8,11 @@ automatically, so request it explicitly. Co-authored-by: Colin Kinloch --- - src/gtk/settings.cpp | 112 ++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 111 insertions(+), 1 deletion(-) + src/gtk/settings.cpp | 118 ++++++++++++++++++++++++++++++++++++++++++- + 1 file changed, 117 insertions(+), 1 deletion(-) diff --git a/src/gtk/settings.cpp b/src/gtk/settings.cpp -index 304724773711..74898d9bb953 100644 +index 3047247737..f13ea2ef24 100644 --- a/src/gtk/settings.cpp +++ b/src/gtk/settings.cpp @@ -183,6 +183,64 @@ static void notify_gtk_font_name(GObject*, GParamSpec*, void*) @@ -80,7 +80,7 @@ index 304724773711..74898d9bb953 100644 // Some notes on using GtkStyleContext. Style information from a context // attached to a non-visible GtkWidget is not accurate. The context has an // internal visibility state, controlled by the widget, which it presumably -@@ -1124,12 +1182,62 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) +@@ -1124,12 +1182,68 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) class wxSystemSettingsModule: public wxModule { public: @@ -109,8 +109,14 @@ index 304724773711..74898d9bb953 100644 + + m_proxy = nullptr; + ++ if (getenv("ORCA_SLICER_DARK_THEME") != nullptr) { ++ /* 1 for prefer dark */ ++ GVariant *value = g_variant_new_uint32(1); ++ UpdatePreferDark(value); ++ g_variant_unref(value); ++ } + // GTK_THEME environment variable overrides other settings -+ if (getenv("GTK_THEME") == nullptr) ++ else if (getenv("GTK_THEME") == nullptr) + { + m_proxy = g_dbus_proxy_new_for_bus_sync( + G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, nullptr, @@ -144,7 +150,7 @@ index 304724773711..74898d9bb953 100644 void wxSystemSettingsModule::OnExit() { #ifdef __WXGTK3__ -@@ -1141,6 +1249,8 @@ void wxSystemSettingsModule::OnExit() +@@ -1141,6 +1255,8 @@ void wxSystemSettingsModule::OnExit() g_signal_handlers_disconnect_by_func(settings, (void*)notify_gtk_font_name, NULL); } @@ -154,5 +160,5 @@ index 304724773711..74898d9bb953 100644 if (gs_tlw_parent) { -- -2.46.2 +2.49.0 diff --git a/linux.d/README.md b/linux.d/README.md index 7f05a77cd4..4cfc11b045 100644 --- a/linux.d/README.md +++ b/linux.d/README.md @@ -1,3 +1,3 @@ Files in this directory are named for the **exact** output of `awk -F= '/^ID=/ {print $2}' /etc/os-release` for their respective distribution. -When `BuildLinux.sh` is executed, the respective file for the distribution will be sourced so the distribution specific instructions/logic are used. +When `build_linux.sh` is executed, the respective file for the distribution will be sourced so the distribution specific instructions/logic are used. diff --git a/linux.d/arch b/linux.d/arch index bae4c06e99..8ce865c988 100644 --- a/linux.d/arch +++ b/linux.d/arch @@ -17,6 +17,7 @@ export REQUIRED_DEV_PACKAGES=( gtk3 libmspack libsecret + libspnav mesa ninja openssl diff --git a/linux.d/debian b/linux.d/debian index 1c299cba31..cce41d74ce 100644 --- a/linux.d/debian +++ b/linux.d/debian @@ -15,8 +15,8 @@ REQUIRED_DEV_PACKAGES=( libgstreamerd-3-dev libgtk-3-dev libmspack-dev - libosmesa6-dev libsecret-1-dev + libspnav-dev libssl-dev libtool libudev-dev @@ -27,19 +27,23 @@ REQUIRED_DEV_PACKAGES=( if [[ -n "$UPDATE_LIB" ]] then - # for ubuntu 22+ and 23+: - ubu_major_version="$(grep VERSION_ID /etc/os-release | cut -d "=" -f 2 | cut -d "." -f 1 | tr -d /\"/)" - if [ $ubu_major_version == "22" ] || [ $ubu_major_version == "23" ] - then - REQUIRED_DEV_PACKAGES+=(curl libfuse-dev libssl-dev libcurl4-openssl-dev m4) + source /etc/os-release + if [ "${ID}" == "ubuntu" ] && [ -n "${VERSION_ID}" ]; then + # It's ubuntu and we have a VERSION_ID like "24.04". + if dpkg --compare-versions "${VERSION_ID}" ge 22 && dpkg --compare-versions "${VERSION_ID}" lt 24 ; + then + # Some extra packages needed on Ubuntu 22.x and 23.x: + REQUIRED_DEV_PACKAGES+=(curl libfuse-dev libssl-dev libcurl4-openssl-dev m4) + fi fi + if [[ -n "$BUILD_DEBUG" ]] then REQUIRED_DEV_PACKAGES+=(libssl-dev libcurl4-openssl-dev) fi # check which version of libwebkit2gtk is available - if [ "$(apt show --quiet libwebkit2gtk-4.0-dev)" != "" ] + if [ "$(apt show --quiet libwebkit2gtk-4.0-dev 2>/dev/null)" != "" ] then REQUIRED_DEV_PACKAGES+=(libwebkit2gtk-4.0-dev) else diff --git a/linux.d/fedora b/linux.d/fedora index 47086053ba..ed91883dd9 100644 --- a/linux.d/fedora +++ b/linux.d/fedora @@ -18,10 +18,10 @@ REQUIRED_DEV_PACKAGES=( libmspack-devel libquadmath-devel libsecret-devel + libspnav-devel libtool m4 mesa-libGLU-devel - mesa-libOSMesa-devel ninja-build openssl-devel perl-FindBin diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 156df7eca1..184f943551 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "" msgid "Alt + Mouse wheel" @@ -114,7 +114,7 @@ msgstr "" #, possible-boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" @@ -587,10 +587,10 @@ msgstr "" msgid "%1%" msgstr "" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "" -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "" msgid "Face recognition" @@ -778,7 +778,7 @@ msgid "Change Text Type" msgstr "" #, possible-boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "" msgid "Name can't be empty." @@ -991,8 +991,8 @@ msgstr "" #, possible-boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" msgid "No symbol" @@ -1117,7 +1117,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, possible-boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1289,7 +1289,7 @@ msgid "Measure" msgstr "" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" msgid "Please select at least one object." @@ -1341,13 +1341,13 @@ msgid "" "feature 2 has been feature 1" msgstr "" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "" -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "" -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "" msgid "Copy to clipboard" @@ -1371,7 +1371,7 @@ msgstr "" msgid "Center coincidence" msgstr "" -msgid "Featue 1" +msgid "Feature 1" msgstr "" msgid "Reverse rotation" @@ -1423,7 +1423,7 @@ msgid "" msgstr "" msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" @@ -1542,7 +1542,7 @@ msgstr "" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" msgid "Privacy Policy Update" @@ -1747,7 +1747,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1838,16 +1838,16 @@ msgstr "" msgid "Edit in Parameter Table" msgstr "" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "" msgid "Assemble" @@ -2096,7 +2096,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2108,7 +2108,7 @@ msgstr "" msgid "Deleting the last solid part is not allowed." msgstr "" -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "" msgid "Assembly" @@ -2151,12 +2151,12 @@ msgid "Selection conflicts" msgstr "" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" msgid "The type of the last solid object part is not to be changed." @@ -2217,7 +2217,7 @@ msgstr "" msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "" msgid "Outside" @@ -2475,16 +2475,16 @@ msgid "Edit" msgstr "" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" msgid "No arrangeable objects are selected." msgstr "" msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" msgid "Arranging..." @@ -2515,13 +2515,13 @@ msgid "" msgstr "" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" msgid "Orienting..." @@ -2572,7 +2572,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "" -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "" msgid "" @@ -2595,7 +2595,7 @@ msgid "" "again." msgstr "" -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" msgid "" @@ -2632,10 +2632,10 @@ msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "" -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "" #, possible-c-format, possible-boost-format @@ -2679,10 +2679,10 @@ msgstr "" msgid "Download failed" msgstr "" -msgid "Cancelled" +msgid "Canceled" msgstr "" -msgid "Install successfully." +msgid "Installed successfully" msgstr "" msgid "Installing" @@ -2747,9 +2747,6 @@ msgstr "" msgid "Close" msgstr "" -msgid "Colour" -msgstr "" - msgid "" "Nozzle\n" "Temperature" @@ -2901,13 +2898,13 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" msgid "Filament used in this print job" @@ -2925,7 +2922,7 @@ msgstr "" msgid "Print using materials mounted on the back of the case" msgstr "" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "" msgid "Print with filaments mounted on the back of the chassis" @@ -2948,7 +2945,7 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -2971,7 +2968,7 @@ msgid "" msgstr "" msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" @@ -2985,8 +2982,8 @@ msgstr "" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" msgid "" @@ -3008,8 +3005,8 @@ msgid "AMS filament backup" msgstr "" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" msgid "Air Printing Detection" @@ -3062,7 +3059,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "" -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "" msgid "Slicing complete" @@ -3134,12 +3131,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "" #, possible-boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3310,7 +3307,7 @@ msgstr "" msgid "Select Printers" msgstr "" -msgid "Ams Status" +msgid "AMS Status" msgstr "" msgid "Printing Options" @@ -3332,7 +3329,7 @@ msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" @@ -3340,7 +3337,7 @@ msgid "Wait" msgstr "" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" msgid "Send" @@ -3433,8 +3430,8 @@ msgid "Bed Shape" msgstr "" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" msgid "" @@ -3453,8 +3450,8 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" msgid "" @@ -3464,9 +3461,9 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" msgid "" @@ -3508,7 +3505,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3550,7 +3547,7 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3606,7 +3603,7 @@ msgstr "" msgid "Pause of front cover falling" msgstr "" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "" msgid "Calibrating extrusion flow" @@ -3642,7 +3639,7 @@ msgstr "" msgid "Cooling chamber" msgstr "" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "" msgid "Motor noise showoff" @@ -3686,23 +3683,23 @@ msgstr "" msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "" msgid "" @@ -3715,7 +3712,7 @@ msgstr "" msgid "Selected diameter and machine diameter do not match" msgstr "" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "" msgid "Calibration error" @@ -3728,12 +3725,12 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "" msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" @@ -3747,7 +3744,7 @@ msgstr "" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -3806,7 +3803,7 @@ msgid "parameter name" msgstr "" #, possible-c-format, possible-boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "" #, possible-c-format, possible-boost-format @@ -3891,7 +3888,7 @@ msgstr "" msgid "Temperature: " msgstr "" -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "" msgid "Generating geometry vertex data" @@ -4005,10 +4002,7 @@ msgstr "" msgid "Printer" msgstr "" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4134,7 +4128,10 @@ msgstr "" msgid "Add plate" msgstr "" -msgid "Auto orient" +msgid "Auto orient all/selected objects" +msgstr "" + +msgid "Auto orient all objects on current plate" msgstr "" msgid "Arrange all objects" @@ -4158,7 +4155,7 @@ msgstr "" msgid "Assembly Return" msgstr "" -msgid "return" +msgid "Return" msgstr "" msgid "Paint Toolbar" @@ -4187,24 +4184,24 @@ msgstr "" #, possible-boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "" msgid "A G-code path goes beyond the max print height." msgstr "" -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "" -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "" msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4278,7 +4275,7 @@ msgstr "" msgid "1080p" msgstr "" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "" msgid "Please input the printer access code:" @@ -4576,19 +4573,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4600,19 +4597,19 @@ msgstr "" msgid "Show &Labels" msgstr "" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "" msgid "Show &Overhang" msgstr "" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" @@ -4779,7 +4776,7 @@ msgid "Filament Settings" msgstr "" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -4809,7 +4806,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "" -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" msgid "" @@ -4826,7 +4823,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" @@ -4972,8 +4969,8 @@ msgid "Failed to parse model information." msgstr "" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" #, possible-c-format, possible-boost-format @@ -5160,8 +5157,7 @@ msgid "Layer: %d/%d" msgstr "" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" msgid "Still unload" @@ -5170,7 +5166,7 @@ msgstr "" msgid "Still load" msgstr "" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "" msgid "" @@ -5217,9 +5213,6 @@ msgstr "" msgid "Please click on the star first." msgstr "" -msgid "InFo" -msgstr "" - msgid "Get oss config failed." msgstr "" @@ -5238,7 +5231,7 @@ msgstr "" msgid " No corresponding storage bucket\n" msgstr "" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr "" msgid "" @@ -5260,7 +5253,7 @@ msgid "obtaining instance_id failed\n" msgstr "" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5271,12 +5264,12 @@ msgstr "" msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" msgid "You can select up to 16 images." @@ -5284,7 +5277,7 @@ msgstr "" msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" msgid "Status" @@ -5327,7 +5320,7 @@ msgid "Newer 3mf version" msgstr "" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5433,7 +5426,7 @@ msgstr[1] "" #, possible-c-format, possible-boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "" msgstr[1] "" @@ -5458,7 +5451,7 @@ msgstr "" msgid "Warning:" msgstr "" -msgid "Export successfully." +msgid "Exported successfully" msgstr "" msgid "Model file downloaded." @@ -5476,10 +5469,10 @@ msgstr "" msgid "WARNING:" msgstr "" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "" msgid "Support painting" @@ -5708,7 +5701,7 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" @@ -5757,8 +5750,8 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" msgid "You'd better upgrade your software.\n" @@ -5776,22 +5769,23 @@ msgstr "" msgid "Please correct them in the param tabs" msgstr "" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" @@ -5845,8 +5839,8 @@ msgid "The file does not contain any geometry data." msgstr "" msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" msgid "Object too large" @@ -5946,7 +5940,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" msgid "You can keep the modified presets to the new project or discard them" @@ -5976,7 +5970,7 @@ msgstr "" msgid "Download failed, unknown file format." msgstr "" -msgid "downloading project ..." +msgid "downloading project..." msgstr "" msgid "Download failed, File size exception." @@ -6013,7 +6007,7 @@ msgstr "" msgid "The selected file" msgstr "" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "" msgid "Error occurs while loading G-code file" @@ -6055,10 +6049,10 @@ msgstr "" msgid "G-code loading" msgstr "" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "" msgid "All objects will be removed, continue?" @@ -6204,8 +6198,8 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" @@ -6348,6 +6342,12 @@ msgstr "" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" +msgid "Swap pan and rotate mouse buttons" +msgstr "" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "" + msgid "Reverse mouse zoom" msgstr "" @@ -6387,7 +6387,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" msgid "" @@ -6404,7 +6404,7 @@ msgstr "" msgid "Network" msgstr "" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" msgid "User Sync" @@ -6473,7 +6473,7 @@ msgstr "" msgid "Clear my choice on the unsaved projects." msgstr "" -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "" msgid "Auto-Backup" @@ -6588,10 +6588,10 @@ msgstr "" msgid "save debug settings" msgstr "" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "" msgid "System presets" @@ -6606,10 +6606,10 @@ msgstr "" msgid "AMS filaments" msgstr "" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "" msgid "Add/Remove presets" @@ -6627,7 +6627,7 @@ msgstr "" msgid "Add/Remove materials" msgstr "" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "" msgid "Create printer" @@ -6699,13 +6699,13 @@ msgstr "" msgid "Jump to model publish web page" msgstr "" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" msgid "Publish" msgstr "" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "" msgid "Slicing Plate 1" @@ -6730,7 +6730,7 @@ msgstr "" msgid "Name is unavailable." msgstr "" -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "" #, possible-boost-format @@ -6738,10 +6738,11 @@ msgid "Preset \"%1%\" already exists." msgstr "" #, possible-boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" -msgid "Please note that saving action will replace this preset" +msgid "Please note that saving will overwrite this preset." msgstr "" msgid "The name cannot be the same as a preset alias name." @@ -6935,7 +6936,7 @@ msgid "Please check the following:" msgstr "" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -6962,7 +6963,7 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" @@ -7068,7 +7069,7 @@ msgstr "" msgid "Log in printer" msgstr "" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "" msgid "Check the reason" @@ -7081,10 +7082,10 @@ msgid "Terms and Conditions" msgstr "" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" @@ -7108,7 +7109,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7151,12 +7152,12 @@ msgid "Click to reset all settings to the last saved preset." msgstr "" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" @@ -7164,14 +7165,14 @@ msgid "Still print by object?" msgstr "" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7192,10 +7193,10 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "" msgid "Adjust" @@ -7206,16 +7207,16 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" msgid "" @@ -7439,49 +7440,49 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" msgid "Smooth PEI Plate / High Temp Plate" msgstr "" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" msgid "Textured PEI Plate" msgstr "" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" msgid "Volumetric speed limitation" @@ -7535,13 +7536,13 @@ msgstr "" msgid "Wipe tower parameters" msgstr "" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "" msgid "Ramming settings" msgstr "" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" msgid "Dependencies" @@ -7553,7 +7554,7 @@ msgstr "" msgid "Printable space" msgstr "" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, possible-boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "" @@ -7576,7 +7577,7 @@ msgstr "" msgid "Accessory" msgstr "" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "" msgid "Machine start G-code" @@ -7594,7 +7595,7 @@ msgstr "" msgid "Layer change G-code" msgstr "" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "" msgid "Change filament G-code" @@ -7678,7 +7679,7 @@ msgid "" "presets would be deleted if the printer is deleted." msgstr "" -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" msgid "The following presets inherit this preset." @@ -7697,7 +7698,7 @@ msgstr[0] "" msgstr[1] "" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" @@ -7889,7 +7890,7 @@ msgstr "" msgid "Configuration update" msgstr "" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "" msgid "Description:" @@ -7898,20 +7899,20 @@ msgstr "" msgid "Configuration incompatible" msgstr "" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "" #, possible-c-format, possible-boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" #, possible-c-format, possible-boost-format msgid "Exit %s" msgstr "" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" msgid "Configuration updates" @@ -7964,13 +7965,13 @@ msgid "Map Filament" msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" msgid "Ramming customization" @@ -8068,7 +8069,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" @@ -8136,9 +8137,12 @@ msgid "Shift+R" msgstr "" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." +msgstr "" + +msgid "Auto orients all objects on the active plate." msgstr "" msgid "Shift+Tab" @@ -8249,7 +8253,10 @@ msgstr "" msgid "Gizmo cut" msgstr "" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" +msgstr "" + +msgid "Gizmo mesh boolean" msgstr "" msgid "Gizmo SLA support points" @@ -8258,7 +8265,16 @@ msgstr "" msgid "Gizmo FDM paint-on seam" msgstr "" -msgid "Gizmo Text emboss / engrave" +msgid "Gizmo text emboss/engrave" +msgstr "" + +msgid "Gizmo measure" +msgstr "" + +msgid "Gizmo assemble" +msgstr "" + +msgid "Gizmo brim ears" msgstr "" msgid "Zoom in" @@ -8300,7 +8316,7 @@ msgstr "" msgid "Set extruder number for the objects and parts" msgstr "" -msgid "Delete objects, parts, modifiers " +msgid "Delete objects, parts, modifiers" msgstr "" msgid "Select the object/part and press space to change the name" @@ -8330,7 +8346,7 @@ msgstr "" msgid "On/Off one layer mode of the vertical slider" msgstr "" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "" msgid "Move slider 5x faster" @@ -8349,7 +8365,7 @@ msgid "Release Note" msgstr "" #, possible-c-format, possible-boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "" msgid "Network plug-in update" @@ -8360,7 +8376,7 @@ msgid "" msgstr "" #, possible-c-format, possible-boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "" msgid "New version of Orca Slicer" @@ -8378,10 +8394,10 @@ msgstr "" msgid "Resume Printing" msgstr "" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "" msgid "Stop Printing" @@ -8496,10 +8512,10 @@ msgstr "" msgid "Updating" msgstr "" -msgid "Updating failed" +msgid "Update failed" msgstr "" -msgid "Updating successful" +msgid "Update successful" msgstr "" msgid "" @@ -8613,7 +8629,7 @@ msgid "" msgstr "" msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" @@ -8661,7 +8677,7 @@ msgid "Multiple" msgstr "" #, possible-boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" msgid "" @@ -8791,9 +8807,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr "" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" msgid "No extrusions under current settings." @@ -8867,20 +8883,21 @@ msgid "" "requires that all objects have the same layer height." msgstr "" -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -8890,7 +8907,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" msgid "" @@ -8933,7 +8950,7 @@ msgid "" "Support enforcers are used but support is not enabled. Please enable support." msgstr "" -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "" msgid "" @@ -9029,8 +9046,8 @@ msgid "Elephant foot compensation" msgstr "" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" msgid "Elephant foot compensation layers" @@ -9048,19 +9065,19 @@ msgstr "" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" msgid "Printable height" msgstr "" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" msgid "Preferred orientation" msgstr "" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" @@ -9069,7 +9086,7 @@ msgstr "" msgid "Use 3rd-party print host" msgstr "" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" msgid "Hostname, IP or URL" @@ -9087,7 +9104,7 @@ msgid "Device UI" msgstr "" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" msgid "API Key / Password" @@ -9098,7 +9115,7 @@ msgid "" "contain the API Key or the password required for authentication." msgstr "" -msgid "Name of the printer" +msgid "Name of the printer." msgstr "" msgid "HTTPS CA File" @@ -9125,7 +9142,7 @@ msgid "" "certificates if connection fails." msgstr "" -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "" msgid "Authorization Type" @@ -9137,20 +9154,21 @@ msgstr "" msgid "HTTP digest" msgstr "" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" msgid "mm or %" @@ -9160,31 +9178,31 @@ msgid "Other layers" msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" msgid "°C" msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" msgid "Initial layer" @@ -9194,50 +9212,44 @@ msgid "Initial layer bed temperature" msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" -msgstr "" - msgid "First layer print sequence" msgstr "" @@ -9250,7 +9262,7 @@ msgstr "" msgid "Other layers filament sequence" msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" msgid "Bottom shell layers" @@ -9259,7 +9271,7 @@ msgstr "" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" msgid "Bottom shell thickness" @@ -9270,7 +9282,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" msgid "Apply gap fill" @@ -9286,22 +9298,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -9391,9 +9403,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -9404,8 +9416,8 @@ msgid "Bridge flow ratio" msgstr "" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -9429,7 +9441,7 @@ msgstr "" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -9439,7 +9451,7 @@ msgid "Bottom surface flow ratio" msgstr "" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -9457,8 +9469,8 @@ msgid "Only one wall on top surfaces" msgstr "" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" msgid "One wall threshold" @@ -9481,7 +9493,7 @@ msgstr "" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" msgid "Extra perimeters on overhangs" @@ -9511,7 +9523,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -9531,9 +9543,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -9560,13 +9572,13 @@ msgstr "" msgid "Classic mode" msgstr "" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "" msgid "Slow down for overhang" msgstr "" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" msgid "Slow down for curled perimeters" @@ -9575,11 +9587,11 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -9600,7 +9612,7 @@ msgid "External" msgstr "" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -9619,7 +9631,7 @@ msgstr "" msgid "Brim width" msgstr "" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "" msgid "Brim type" @@ -9638,7 +9650,7 @@ msgstr "" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" msgid "Brim ears" @@ -9651,8 +9663,8 @@ msgid "Brim ear max angle" msgstr "" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" @@ -9662,7 +9674,7 @@ msgstr "" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" msgid "Compatible machine" @@ -9692,7 +9704,7 @@ msgid "" "compatible with the active print profile." msgstr "" -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "" msgid "By layer" @@ -9704,7 +9716,7 @@ msgstr "" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" @@ -9717,7 +9729,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" msgid "Normal printing" @@ -9725,19 +9737,19 @@ msgstr "" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" msgid "Default filament profile" msgstr "" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "" msgid "Default process profile" msgstr "" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "" msgid "Activate air filtration" @@ -9750,27 +9762,27 @@ msgid "Fan speed" msgstr "" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "" msgid "No cooling for the first" msgstr "" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" msgid "Don't support bridges" msgstr "" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" msgid "Thick external bridges" @@ -9810,20 +9822,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -9846,31 +9858,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -9894,18 +9900,18 @@ msgstr "" msgid "End G-code" msgstr "" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "" msgid "Ensure vertical shell thickness" @@ -9931,7 +9937,7 @@ msgstr "" msgid "Top surface pattern" msgstr "" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "" msgid "Concentric" @@ -9961,7 +9967,7 @@ msgstr "" msgid "Bottom surface pattern" msgstr "" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" msgid "Internal solid infill pattern" @@ -9996,14 +10002,14 @@ msgid "Small perimeters threshold" msgstr "" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10017,7 +10023,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10144,7 +10150,7 @@ msgstr "" msgid "Extruder Color" msgstr "" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "" msgid "Extruder offset" @@ -10154,19 +10160,19 @@ msgid "Flow ratio" msgstr "" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -10180,7 +10186,7 @@ msgid "" "enabled." msgstr "" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" msgid "Enable adaptive pressure advance (beta)" @@ -10227,19 +10233,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10256,9 +10261,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10273,8 +10278,9 @@ msgid "Keep fan always on" msgstr "" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" msgid "Don't slow down outer walls" @@ -10284,13 +10290,11 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" @@ -10299,7 +10303,7 @@ msgstr "" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" msgid "Default color" @@ -10325,7 +10329,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" msgid "mm³/s" @@ -10337,7 +10341,7 @@ msgstr "" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -10346,7 +10350,7 @@ msgstr "" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -10355,12 +10359,12 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" msgid "Pellet flow coefficient" @@ -10414,7 +10418,7 @@ msgid "Unloading speed" msgstr "" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" @@ -10429,8 +10433,8 @@ msgid "Delay after unloading" msgstr "" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" @@ -10452,7 +10456,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -10495,45 +10499,45 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" msgid "Multi-tool ramming volume" msgstr "" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "" msgid "Multi-tool ramming flow" msgstr "" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" msgid "Density" msgstr "" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "" msgid "g/cm³" msgstr "" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "" msgid "Soluble material" msgstr "" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" msgid "Support material" msgstr "" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" msgid "Softening temperature" @@ -10541,14 +10545,14 @@ msgstr "" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" msgid "Price" msgstr "" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "" msgid "money/kg" @@ -10557,7 +10561,7 @@ msgstr "" msgid "Vendor" msgstr "" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "" msgid "(Undefined)" @@ -10568,7 +10572,7 @@ msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Solid infill direction" @@ -10576,7 +10580,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -10591,13 +10595,13 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "" msgid "Grid" @@ -10666,7 +10670,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -10688,7 +10692,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -10696,21 +10700,21 @@ msgstr "" msgid "0 (Simple connect)" msgstr "" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" msgid "" @@ -10734,13 +10738,13 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" msgid "Enable accel_to_decel" msgstr "" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "" msgid "accel_to_decel" @@ -10748,25 +10752,25 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "" msgid "" @@ -10779,22 +10783,22 @@ msgstr "" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "" msgid "Initial layer infill" msgstr "" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "" msgid "Initial layer travel speed" msgstr "" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "" msgid "Number of slow layers" @@ -10808,7 +10812,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" msgid "Full fan speed at layer" @@ -10830,7 +10834,7 @@ msgstr "" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -10851,7 +10855,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" msgid "Contour" @@ -10868,7 +10872,7 @@ msgstr "" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" msgid "Fuzzy skin point distance" @@ -10876,20 +10880,20 @@ msgstr "" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -10952,7 +10956,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" msgid "Precise Z height" @@ -10969,7 +10973,7 @@ msgstr "" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -10981,7 +10985,8 @@ msgstr "" msgid "Add line number" msgstr "" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" msgid "Scan first layer" @@ -10989,7 +10994,7 @@ msgstr "" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" msgid "Nozzle type" @@ -10997,7 +11002,7 @@ msgstr "" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" msgid "Undefine" @@ -11026,7 +11031,7 @@ msgstr "" msgid "Printer structure" msgstr "" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "" msgid "CoreXY" @@ -11057,10 +11062,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" @@ -11084,7 +11089,7 @@ msgstr "" msgid "Time cost" msgstr "" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "" msgid "money/h" @@ -11109,7 +11114,7 @@ msgstr "" msgid "G-code flavor" msgstr "" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "" msgid "Klipper" @@ -11118,20 +11123,20 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11140,7 +11145,7 @@ msgstr "" msgid "Exclude objects" msgstr "" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" msgid "Verbose G-code" @@ -11164,7 +11169,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11204,16 +11209,16 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "" msgid "Inherits profile" msgstr "" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" @@ -11222,7 +11227,7 @@ msgstr "" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" msgid "Maximum width of a segmented region" @@ -11237,7 +11242,7 @@ msgstr "" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" @@ -11309,7 +11314,7 @@ msgstr "" msgid "Ironing Pattern" msgstr "" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "" msgid "Ironing flow" @@ -11317,13 +11322,13 @@ msgstr "" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" msgid "Ironing line spacing" msgstr "" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "" msgid "Ironing inset" @@ -11331,13 +11336,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "" msgid "Ironing angle" @@ -11348,7 +11353,7 @@ msgid "" "uses the default method." msgstr "" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" msgid "Supports silent mode" @@ -11356,7 +11361,7 @@ msgstr "" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" msgid "Emit limits to G-code" @@ -11367,21 +11372,21 @@ msgstr "" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "" msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -11493,20 +11498,20 @@ msgstr "" msgid "Maximum acceleration for travel" msgstr "" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" msgid "Max" msgstr "" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" msgid "Extrusion rate smoothing" @@ -11518,23 +11523,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -11549,11 +11554,11 @@ msgstr "" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -11568,7 +11573,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "" msgid "" @@ -11583,8 +11588,8 @@ msgid "Min" msgstr "" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" msgid "Min print speed" @@ -11618,7 +11623,7 @@ msgstr "" msgid "Nozzle volume" msgstr "" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "" msgid "Cooling tube position" @@ -11656,7 +11661,7 @@ msgstr "" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" @@ -11672,7 +11677,7 @@ msgstr "" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" msgid "" @@ -11683,7 +11688,7 @@ msgstr "" msgid "Filename format" msgstr "" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" msgid "Make overhangs printable" @@ -11706,7 +11711,7 @@ msgstr "" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" msgid "mm²" @@ -11729,10 +11734,10 @@ msgid "" "nozzle diameter." msgstr "" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "" msgid "Alternate extra wall" @@ -11740,10 +11745,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -11775,25 +11780,25 @@ msgstr "" msgid "Raft contact Z distance" msgstr "" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" msgid "Raft expansion" msgstr "" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "" msgid "Initial layer density" msgstr "" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "" msgid "Initial layer expansion" msgstr "" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" msgid "Raft layers" @@ -11801,13 +11806,13 @@ msgstr "" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" msgid "Travel distance threshold" @@ -11815,20 +11820,20 @@ msgstr "" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" msgid "Retract amount before wipe" msgstr "" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" msgid "Retract when change layer" msgstr "" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "" msgid "Retract on top layer" @@ -11836,7 +11841,7 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -11847,12 +11852,12 @@ msgid "" "travel. Set zero to disable retraction" msgstr "" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -11861,8 +11866,8 @@ msgid "Retraction distance when cut" msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" msgid "Z-hop height" @@ -11871,31 +11876,28 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" msgid "Z-hop type" msgstr "" -msgid "Z hop type" -msgstr "" - msgid "Slope" msgstr "" @@ -11906,8 +11908,8 @@ msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -11930,7 +11932,7 @@ msgid "On surfaces" msgstr "" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" @@ -11962,15 +11964,15 @@ msgstr "" msgid "Retraction Speed" msgstr "" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "" msgid "De-retraction Speed" msgstr "" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" msgid "Use firmware retraction" @@ -11988,13 +11990,13 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" msgstr "" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "" msgid "Nearest" @@ -12069,7 +12071,7 @@ 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 " +"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 " @@ -12123,7 +12125,7 @@ msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -12144,7 +12146,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -12156,9 +12158,9 @@ msgstr "" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" msgid "Skirt distance" @@ -12178,7 +12180,7 @@ msgstr "" msgid "Skirt height" msgstr "" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "" msgid "Single loop draft shield" @@ -12196,7 +12198,7 @@ msgstr "" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -12225,7 +12227,7 @@ msgstr "" msgid "Skirt loops" msgstr "" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" msgid "Skirt speed" @@ -12241,15 +12243,16 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" msgid "Minimum sparse infill threshold" @@ -12257,7 +12260,7 @@ msgstr "" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" msgid "Solid infill" @@ -12271,13 +12274,13 @@ msgid "" "computed over the nozzle diameter." msgstr "" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" msgid "Smooth Spiral" @@ -12285,7 +12288,7 @@ msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" msgid "Max XY Smoothing" @@ -12294,7 +12297,7 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" msgid "Spiral starting flow ratio" @@ -12338,8 +12341,8 @@ msgstr "" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -12356,23 +12359,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "" msgid "Single Extruder Multi Material" msgstr "" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" msgid "Manual Filament Change" @@ -12389,18 +12392,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -12456,9 +12459,9 @@ msgid "Enable support generation." msgstr "" msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" msgid "Normal (auto)" @@ -12476,7 +12479,7 @@ msgstr "" msgid "Support/object xy distance" msgstr "" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "" msgid "Support/object first layer gap" @@ -12494,7 +12497,7 @@ msgstr "" msgid "On build plate only" msgstr "" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "" msgid "Support critical regions only" @@ -12514,13 +12517,13 @@ msgstr "" msgid "Top Z distance" msgstr "" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "" msgid "Bottom Z distance" msgstr "" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "" msgid "Support/raft base" @@ -12528,7 +12531,7 @@ msgstr "" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" msgid "Avoid interface filament for base" @@ -12555,19 +12558,19 @@ msgstr "" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" msgid "Top interface layers" msgstr "" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "" msgid "Bottom interface layers" msgstr "" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "" msgid "Same as top" @@ -12576,22 +12579,22 @@ msgstr "" msgid "Top interface spacing" msgstr "" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" msgid "Bottom interface spacing" msgstr "" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "" msgid "Base pattern" msgstr "" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "" msgid "Rectilinear grid" @@ -12606,7 +12609,7 @@ msgstr "" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" msgid "Rectilinear Interlaced" @@ -12615,16 +12618,16 @@ msgstr "" msgid "Base pattern spacing" msgstr "" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "" msgid "Normal Support expansion" msgstr "" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" -msgid "Speed of support" +msgid "Speed of support." msgstr "" msgid "" @@ -12660,7 +12663,7 @@ msgstr "" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" @@ -12685,8 +12688,8 @@ msgid "Tree support branch angle" msgstr "" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" @@ -12723,8 +12726,8 @@ msgid "Adaptive layer height" msgstr "" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" msgid "Auto brim width" @@ -12732,13 +12735,13 @@ msgstr "" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" msgid "Tree support brim width" msgstr "" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" msgid "Tip Diameter" @@ -12779,7 +12782,7 @@ msgstr "" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" msgid "Activate temperature control" @@ -12791,7 +12794,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -12806,13 +12809,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -12821,7 +12824,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "" msgid "Detect thin wall" @@ -12829,15 +12832,15 @@ msgstr "" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" msgid "" @@ -12845,7 +12848,7 @@ msgid "" "the nozzle diameter." msgstr "" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "" msgid "Top shell layers" @@ -12854,7 +12857,7 @@ msgstr "" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" msgid "Top solid layers" @@ -12868,18 +12871,19 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "" msgid "Wipe while retracting" msgstr "" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" msgid "Wipe Distance" @@ -12887,11 +12891,11 @@ msgstr "" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -12920,7 +12924,7 @@ msgstr "" msgid "The volume of material to prime extruder on tower." msgstr "" -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "" msgid "Wipe tower rotation angle" @@ -12954,7 +12958,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -12991,8 +12995,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" msgid "Maximal bridging distance" @@ -13020,28 +13024,29 @@ msgid "Idle temperature" msgstr "" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "" msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" msgid "X-Y contour compensation" msgstr "" msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" msgid "Convert holes to polyholes" @@ -13085,23 +13090,23 @@ msgstr "" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" msgid "Use relative E distances" msgstr "" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" msgid "Arachne" @@ -13113,7 +13118,7 @@ msgstr "" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" msgid "Wall transitioning filter margin" @@ -13126,7 +13131,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" msgid "Wall transitioning threshold angle" @@ -13137,7 +13142,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" msgid "Wall distribution count" @@ -13145,7 +13150,7 @@ msgstr "" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" msgid "Minimum feature size" @@ -13153,9 +13158,9 @@ msgstr "" msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" msgid "Minimum wall length" @@ -13188,16 +13193,16 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" msgid "Detect narrow internal solid infill" msgstr "" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" msgid "invalid value " @@ -13227,7 +13232,7 @@ msgstr "" msgid "Load slicing data" msgstr "" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "" msgid "Export STL" @@ -13239,7 +13244,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -13262,13 +13267,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "" msgid "Minimum save" @@ -13292,7 +13297,7 @@ msgstr "" msgid "No check" msgstr "" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" msgid "Normative check" @@ -13325,17 +13330,17 @@ msgstr "" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "" -msgid "Repetions count" +msgid "Repetition count" msgstr "" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "" msgid "Ensure on bed" msgstr "" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" msgid "" @@ -13346,7 +13351,7 @@ msgstr "" msgid "Convert Unit" msgstr "" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "" msgid "Orient Options" @@ -13364,63 +13369,63 @@ msgstr "" msgid "Rotation angle around the Y axis in degrees." msgstr "" -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "" msgid "Load General Settings" msgstr "" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "" msgid "Load Filament Settings" msgstr "" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "" msgid "Skip Objects" msgstr "" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -13449,13 +13454,13 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "" msgid "Load filament ids" @@ -13464,30 +13469,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -13514,13 +13519,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" msgid "" @@ -13604,10 +13609,10 @@ msgstr "" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "" msgid "Total volume" @@ -13826,7 +13831,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" msgid "Support: generate contact points" @@ -13845,9 +13850,6 @@ msgstr "" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -msgid "Canceled" -msgstr "" - msgid "load_obj: failed to parse" msgstr "" @@ -13942,7 +13944,7 @@ msgid "The name cannot be empty." msgstr "" #, possible-c-format, possible-boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "" msgid "The name cannot be the same as the system preset name." @@ -13974,7 +13976,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" @@ -13984,7 +13986,7 @@ msgstr "" msgid "The failed test result has been dropped." msgstr "" -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "" #, possible-c-format, possible-boost-format @@ -14006,10 +14008,10 @@ msgstr "" msgid "Please select at least one filament for calibration" msgstr "" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" msgid "When do you need Flow Dynamics Calibration" @@ -14020,10 +14022,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" msgid "About this calibration" @@ -14056,12 +14058,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" msgid "" @@ -14137,7 +14139,7 @@ msgstr "" msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" msgid "Please find the best line on your plate" @@ -14189,9 +14191,6 @@ msgstr "" msgid "flow ratio : %s " msgstr "" -msgid "Please choose a block with smoothest top surface" -msgstr "" - msgid "Please choose a block with smoothest top surface." msgstr "" @@ -14233,7 +14232,7 @@ msgstr "" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" msgid "Pattern" @@ -14473,7 +14472,7 @@ msgstr "" msgid "mm/mm" msgstr "" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" @@ -14520,7 +14519,7 @@ msgstr "" msgid "Show error message" msgstr "" -msgid "Enqueued" +msgid "Queued" msgstr "" msgid "Uploading" @@ -14609,13 +14608,13 @@ msgstr "" msgid "DNS Server:" msgstr "" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "" msgid "Test bing.com:" @@ -14679,7 +14678,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "" msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" msgid "Filament type is not selected, please reselect type." @@ -14696,7 +14695,7 @@ msgstr "" msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "" -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "" msgid "" @@ -14705,7 +14704,7 @@ msgstr "" #, possible-c-format, possible-boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -14720,8 +14719,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" @@ -14745,7 +14744,7 @@ msgstr "" msgid "Create Type" msgstr "" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "" msgid "Select Model" @@ -14788,16 +14787,16 @@ msgstr "" msgid "Exception in obtaining file size, please import again." msgstr "" -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" msgid "The printer model was not found, please reselect." msgstr "" -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "" -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "" msgid "Printer Preset" @@ -14850,7 +14849,7 @@ msgstr "" msgid "Create process presets failed. As follows:\n" msgstr "" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "" msgid "Current vendor has no models, please reselect." @@ -14877,10 +14876,10 @@ msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "" msgid "Printer Created" @@ -14904,7 +14903,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" @@ -14953,12 +14952,12 @@ msgid "" msgstr "" msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" @@ -15007,7 +15006,7 @@ msgid "" "be deleted after exiting the dialog." msgstr "" -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" msgid "The following presets inherits this preset." @@ -15031,7 +15030,7 @@ msgid "Delete Filament" msgstr "" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" @@ -15149,16 +15148,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "" msgid "Could not connect to AstroBox" msgstr "" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "" -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "" msgid "Could not connect to Duet" @@ -15176,7 +15175,7 @@ msgstr "" msgid "Upload not enabled on FlashAir card." msgstr "" -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" msgid "Could not connect to FlashAir" @@ -15187,28 +15186,28 @@ msgid "" "is required." msgstr "" -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "" msgid "Could not connect to MKS" msgstr "" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "" msgid "Could not connect to OctoPrint" msgstr "" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "" -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "" msgid "Could not connect to Prusa SLA" msgstr "" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "" msgid "Could not connect to PrusaLink" @@ -15232,19 +15231,19 @@ msgstr "" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "" msgid "Could not connect to Prusa Connect" msgstr "" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "" msgid "Could not connect to Repetier" msgstr "" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "" #, possible-boost-format @@ -15268,172 +15267,169 @@ msgid "" msgstr "" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" msgid "Connected to Obico successfully!" @@ -15457,7 +15453,7 @@ msgstr "" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -15472,7 +15468,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -msgid "User cancelled." +msgid "User canceled." msgstr "" msgid "Head diameter" @@ -15503,8 +15499,8 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" @@ -15552,7 +15548,7 @@ msgid "Switch workspaces\nYou can switch between Prepare and Preview %s)." msgstr "" "S'han trobat conflictes de rutes gcode a la capa %d, z = %.2lf mm. Si us " "plau, separeu els objectes conflictius més lluny ( %s <-> %s )." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Un objecte està col·locat sobre el límit de la placa." msgid "A G-code path goes beyond the max print height." msgstr "Una trajectòria de Codi-G va més enllà de l'alçada màxima d'impressió." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Una trajectòria de Codi-G va més enllà del límit de placa." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Només és visible l'objecte que s'està editant." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4605,7 +4604,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Connectar Impressora( LAN )" msgid "Please input the printer access code:" @@ -4905,7 +4904,7 @@ msgstr "Perspectiva automàtica" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Canviar automàticament entre ortogràfic i perspectiva en canviar de vistes " "superior/inferior/lateral" @@ -4913,13 +4912,13 @@ msgstr "" msgid "Show &G-code Window" msgstr "Mostra Finestra %Codi-G" -msgid "Show g-code window in Preview scene" -msgstr "Mostra la finestra de Codi-g a l'escena prèvia" +msgid "Show G-code window in Preview scene." +msgstr "Mostra la finestra de Codi-G a l'escena prèvia" msgid "Show 3D Navigator" msgstr "Mostrar el navegador 3D" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "Mostrar el navegador 3D en Preparació i Previsualització" msgid "Reset Window Layout" @@ -4931,19 +4930,19 @@ msgstr "Restableix el disseny predeterminat de la finestra" msgid "Show &Labels" msgstr "Mostrar &Etiquetes" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Mostrar etiquetes d'objecte en escena 3D" msgid "Show &Overhang" msgstr "Mostrar %Voladís" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "Mostra el ressaltat del voladís de l'objecte a l'escena 3D" msgid "Show Selected Outline (beta)" msgstr "Mostra l'esquema seleccionat (beta)" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "Mostrar el contorn al voltant de l'objecte seleccionat a l'escena 3D" msgid "Preferences" @@ -5121,13 +5120,13 @@ msgid "Filament Settings" msgstr "Configuració del Filament" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Vols sincronitzar les teves dades personals des de Bambu Cloud? \n" +"Vols sincronitzar les teves dades personals des de Bambu Cloud?\n" "Conté la següent informació:\n" "1. Els perfils de Procés\n" "2. Els perfils de Filament\n" @@ -5161,7 +5160,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "La càmera de la impressora funciona malament." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Ha ocorregut un problema. Actualitzeu el firmware de la impressora i torneu-" "ho a provar." @@ -5183,7 +5182,7 @@ msgstr "" "S'ha produït un error de connexió. Comproveu la xarxa i torneu-ho a provar" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Comproveu la xarxa i torneu-ho a provar. Podeu reiniciar o actualitzar la " @@ -5348,8 +5347,8 @@ msgid "Failed to parse model information." msgstr "No s'ha pogut analitzar la informació del model." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "El fitxer .gcode.3mf no conté dades de Codi-G. Lamineu-lo amb Orca Slicer i " "exporteu un nou fitxer .gcode.3mf." @@ -5546,11 +5545,10 @@ msgid "Layer: %d/%d" msgstr "Capa: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Escalfeu el broquet per sobre dels 170 graus abans de carregar o descarregar " -"el filament." +"Escalfeu el broquet per sobre dels 170 °C abans de carregar o descarregar el " +"filament." msgid "Still unload" msgstr "Encara descarregat" @@ -5558,7 +5556,7 @@ msgstr "Encara descarregat" msgid "Still load" msgstr "Encara carregat" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Seleccioneu una ranura AMS abans del calibratge" msgid "" @@ -5607,9 +5605,6 @@ msgstr "Enviar" msgid "Please click on the star first." msgstr "Feu clic les estrelles, primer." -msgid "InFo" -msgstr "Informació" - msgid "Get oss config failed." msgstr "No s'ha pogut obtenir la configuració del Sistema Operatiu." @@ -5628,7 +5623,7 @@ msgstr " error a la càrrega de configuració\n" msgid " No corresponding storage bucket\n" msgstr " No hi ha cub d'emmagatzematge corresponent\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " no es pot obrir\n" msgid "" @@ -5654,7 +5649,7 @@ msgid "obtaining instance_id failed\n" msgstr "error en obtenir instance_id \n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5668,7 +5663,7 @@ msgstr "missatge d'error: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5676,7 +5671,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Algunes de les vostres imatges no s'han pogut penjar. Voleu redirigir a la " "pàgina web per valorar-la?" @@ -5686,7 +5681,7 @@ msgstr "Podeu seleccionar fins a 16 imatges." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Es requereix com a mínim un registre d'impressió correcte d'aquest perfil " "d'impressió \n" @@ -5732,7 +5727,7 @@ msgid "Newer 3mf version" msgstr "Nova versió 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "La versió d'arxiu 3mf està en Beta i és més recent que la versió actual " @@ -5847,9 +5842,9 @@ msgstr[1] "%1$d Els objectes tenen pintura en color." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d L'objecte s'ha carregat com a part de l'objecte de tall." -msgstr[1] "%1$d Els objectes s'han carregat com a parts de l'objecte de tall" +msgstr[1] "%1$d Els objectes s'han carregat com a parts de l'objecte de tall." msgid "ERROR" msgstr "ERROR" @@ -5872,7 +5867,7 @@ msgstr "Error:" msgid "Warning:" msgstr "Advertència:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Exportació amb èxit." msgid "Model file downloaded." @@ -5890,11 +5885,11 @@ msgstr " Feu clic aquí per instal·lar-lo." msgid "WARNING:" msgstr "AVÍS:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "El teu model necessita suports! Si us plau, habiliteu el material de suport." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Superposició de la trajectòria del Codi-G" msgid "Support painting" @@ -6140,7 +6135,7 @@ msgstr "Vols desar els canvis a \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Desmuntat amb èxit. El dispositiu %s ( %s ) ara es pot retirar de manera " @@ -6200,8 +6195,8 @@ msgstr "Carregar 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "La versió de 3mf %s és més nova que la versió de %s %s, S'han trobat les " "següents claus no reconegudes:" @@ -6223,28 +6218,31 @@ msgstr "Valors no vàlids trobats en el 3mf:" msgid "Please correct them in the param tabs" msgstr "Corregiu-los a les pestanyes de paràmetres" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "El fitxer 3mf ha realitzat les següents modificacions al Codi-G de filament " "o impressora:" +#, fuzzy msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Confirmeu que aquests Codis-G modificats són segurs per evitar danys a la " "màquina!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "Codis-G modificats" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "El fitxer 3mf té els perfils personalitzats de filament o impressora " "següents:" +#, fuzzy msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Confirmeu que els Codis-G d'aquests perfils són segurs per evitar danys a la " @@ -6306,8 +6304,8 @@ msgid "The file does not contain any geometry data." msgstr "El fitxer no conté cap dada de geometria." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "El teu objecte sembla ser massa gran, Vols reduir-lo per adaptar-lo " "automàticament al llit?" @@ -6416,11 +6414,11 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Mode de previsualització\n" "El fitxer carregat només conté Codi-G, no pot accedir a la pàgina de " -"Preparació" +"Preparació." msgid "You can keep the modified presets to the new project or discard them" msgstr "Podeu mantenir els perfils modificats al projecte nou o descartar-los" @@ -6452,7 +6450,7 @@ msgstr "preparar el fitxer 3MF..." msgid "Download failed, unknown file format." msgstr "S'ha produït un error en la baixada, format de fitxer desconegut." -msgid "downloading project ..." +msgid "downloading project..." msgstr "descarregant projecte ..." msgid "Download failed, File size exception." @@ -6495,7 +6493,7 @@ msgstr "Importar fitxer SLA" msgid "The selected file" msgstr "El fitxer seleccionat" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "no conté Codi-G vàlid." msgid "Error occurs while loading G-code file" @@ -6541,10 +6539,10 @@ msgstr "Només es pot obrir un fitxer de Codi-G al mateix temps." msgid "G-code loading" msgstr "Càrrega del Codi-G" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Els fitxers de Codi-G no es poden carregar amb els models junts!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "No es poden afegir models en mode de previsualització!" msgid "All objects will be removed, continue?" @@ -6709,11 +6707,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" -"Placa %d: no es recomana utilitzar %s per imprimir el filament %s(%s). Si " +"Placa %d: no es recomana utilitzar %s per imprimir el filament %s (%s). Si " "encara voleu fer aquesta impressió, configureu la temperatura del llit " "d'aquest filament a diferent de zero." @@ -6874,6 +6872,12 @@ msgstr "" "Si està activat, fa servir la càmera lliure. Si no està activat, fa servir " "la càmera restringida." +msgid "Swap pan and rotate mouse buttons" +msgstr "Intercanviar la panoràmica i girar els botons del ratolí" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Si està activat, intercanvia les funcions de panoràmica i rotació dels botons esquerre i dret del ratolí." + msgid "Reverse mouse zoom" msgstr "Zoom invers del ratolí" @@ -6922,7 +6926,7 @@ msgstr "" "Si està habilitada, l'Orca recordarà i canviarà automàticament la " "configuració del filament/procés per a cada impressora." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Gestió multidispositiu(Entra en vigor després de reiniciar Studio)." msgid "" @@ -6941,7 +6945,7 @@ msgstr "Organitza automàticament la placa després de la clonació d'objectes" msgid "Network" msgstr "Xarxa" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/" "Processament )" @@ -7020,7 +7024,7 @@ msgstr "Màxima quantitat de projectes recents" msgid "Clear my choice on the unsaved projects." msgstr "Esborrar la meva elecció sobre els projectes no desats." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "No hi ha avisos en carregar 3MF amb Codis-G modificats" msgid "Auto-Backup" @@ -7137,10 +7141,10 @@ msgstr "botó de desar depuració" msgid "save debug settings" msgstr "desar la configuració de depuració" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "La configuració de DEPURACIÓ s'ha desat correctament!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "L'entorn del núvol ha canviat, torneu a iniciar sessió!" msgid "System presets" @@ -7155,10 +7159,10 @@ msgstr "Perfils incompatibles" msgid "AMS filaments" msgstr "Filaments AMS" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Feu clic per triar el color del filament" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Si us plau, tria el color del filament" msgid "Add/Remove presets" @@ -7176,7 +7180,7 @@ msgstr "Afegir o Suprimir filaments" msgid "Add/Remove materials" msgstr "Afegir o Suprimir materials" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Seleccionar/eliminar impressores ( perfils del sistema )" msgid "Create printer" @@ -7248,14 +7252,14 @@ msgstr "Pujant 3mf" msgid "Jump to model publish web page" msgstr "Anar a la pàgina web de publicació de models" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Nota: La preparació pot trigar uns quants minuts. Si us plau, sigui pacient." msgid "Publish" msgstr "Publicar" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "La publicació ha estat cancel·lada" msgid "Slicing Plate 1" @@ -7280,7 +7284,7 @@ msgstr "Perfil intern del Projecte" msgid "Name is unavailable." msgstr "El nom no està disponible." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "No es permet sobreescriure un perfil del sistema" #, boost-format @@ -7288,11 +7292,12 @@ msgid "Preset \"%1%\" already exists." msgstr "El Perfil \"%1%\" ja existeix." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "El Perfil \"%1%\" ja existeix i és incompatible amb la impressora actual." -msgid "Please note that saving action will replace this preset" +msgid "Please note that saving will overwrite this preset." msgstr "Tingueu en compte que l'acció de desar substituirà aquest perfil" msgid "The name cannot be the same as a preset alias name." @@ -7515,7 +7520,7 @@ msgid "Please check the following:" msgstr "Si us plau, comproveu el següent:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7551,7 +7556,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "La impressió de material a alta temperatura (material %s) amb %s pot causar " @@ -7671,7 +7676,7 @@ msgstr "S'ha produït un error en l'inici de sessió. Comproveu el codi PIN." msgid "Log in printer" msgstr "Iniciar sessió a la impressora" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Voleu iniciar sessió en aquesta impressora amb el compte actual?" msgid "Check the reason" @@ -7684,10 +7689,10 @@ msgid "Terms and Conditions" msgstr "Termes i Condicions" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Gràcies per adquirir un dispositiu de Bambu Lab. Abans d'utilitzar el teu " @@ -7717,7 +7722,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7774,7 +7779,7 @@ msgstr "" "Feu clic per restablir tots els paràmetres a l'última configuració desada." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "La Torre de Purga és necessària per a un timelapse suau. Pot haver-hi " @@ -7782,7 +7787,7 @@ msgstr "" "la Torre de Purga?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "La Torre de Purga és necessària per a un timelapse suau. Pot haver-hi " @@ -7792,7 +7797,7 @@ msgid "Still print by object?" msgstr "Continuar imprimint per objecte?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7803,11 +7808,11 @@ msgstr "" "desactivar l'alçada de la capa de suport independent" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Canviar aquesta configuració automàticament? \n" +"Canviar aquesta configuració automàticament?\n" "Sí: Canviar aquesta configuració automàticament\n" "No - No canviar aquesta configuració" @@ -7833,14 +7838,14 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "L'alçada de la capa supera el límit a Configuració de la Impressora -> " "Extrusora -> Límits d'alçada de la capa, això pot causar problemes de " "qualitat d'impressió." -msgid "Adjust to the set range automatically? \n" -msgstr "Voleu ajustar el rang automàticament? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Voleu ajustar el rang automàticament?\n" msgid "Adjust" msgstr "Ajustar" @@ -7850,8 +7855,8 @@ msgstr "Ignorar" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Característica experimental: Retreure i tallar el filament a major distància " @@ -7861,9 +7866,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Característica experimental: Retreure i tallar el filament a major distància " "durant els canvis de filaments per minimitzar el rentat. Tot i que pot " @@ -8115,8 +8120,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Cool Plate (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura del llit quan s'instal·la la placa freda. El valor 0 significa " "que el filament no admet la impressió al Cool Plate SuperTack" @@ -8125,29 +8130,29 @@ msgid "Cool Plate" msgstr "Base Freda" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Temperatura del llit quan s'instal·la la Base Freda. El valor 0 significa " "que el filament no admet imprimir a la Base Freda" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "Placa Freda Texturitzada" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura del llit quan la placa freda està instal·lada. Un valor de 0 " "significa que el filament no és compatible per imprimir sobre la Placa Freda " "Texturitzada" -msgid "Engineering plate" -msgstr "Base d'enginyeria" +msgid "Engineering Plate" +msgstr "Base d'Enginyeria" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Temperatura del llit quan s'instal·la la Base d'Enginyeria. El valor 0 " "significa que el filament no admet imprimir a la Base d'Enginyeria" @@ -8156,9 +8161,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Base PEI Llisa / Base d'Alta Temperatura" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Temperatura del llit quan s'instal·la la placa PEI Llisa/Base d'Alta " "Temperatura. El valor 0 significa que el filament no admet imprimir a la " @@ -8168,8 +8173,8 @@ msgid "Textured PEI Plate" msgstr "Base PEI amb Textura" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura del llit quan s'instal·la la placa PEI amb Textura. El valor 0 " "significa que el filament no admet imprimir a la placa PEI amb Textura" @@ -8232,13 +8237,13 @@ msgstr "Codi-G Final del Filament" msgid "Wipe tower parameters" msgstr "Paràmetres de la Torre de Purga" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Paràmetres del canvi d'eina per a impressores d'un únic extrusor MM" msgid "Ramming settings" msgstr "Configuració de Moldejat de punta( Ramming )" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Paràmetres del canvi d'eina per a impressores multi-extrusor MM" msgid "Dependencies" @@ -8250,7 +8255,7 @@ msgstr "Dependències del perfil" msgid "Printable space" msgstr "Espai imprimible" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Valor no vàlid proporcionat per al paràmetre %1%: %2%" @@ -8273,7 +8278,7 @@ msgstr "Malla de placa adaptativa" msgid "Accessory" msgstr "Accessori" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "Codi-G de màquina" msgid "Machine start G-code" @@ -8291,7 +8296,7 @@ msgstr "Codi-G per abans d'un canvi de capa" msgid "Layer change G-code" msgstr "Codi-G per després d'un canvi de capa" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "Codi-G time lapse" msgid "Change filament G-code" @@ -8386,7 +8391,7 @@ msgstr "" "El perfil de Filament %d i el perfil de Procés %d estan adjunts a aquesta " "impressora. Aquests perfils se suprimirien si se suprimeix la impressora." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "Els perfils heretats per altres perfils no es poden eliminar!" msgid "The following presets inherit this preset." @@ -8405,11 +8410,11 @@ msgstr[0] "El següent perfil també se suprimirà." msgstr[1] "Els següents perfils també se suprimiran." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Esteu segur que voleu suprimir el perfil seleccionat? \n" +"Esteu segur que voleu suprimir el perfil seleccionat?\n" "Si el perfil correspon a un filament que s'utilitza actualment a la " "impressora, restabliu la informació del filament per a aquesta ranura." @@ -8624,7 +8629,7 @@ msgstr "Una nova versió està disponible" msgid "Configuration update" msgstr "Actualització de la configuració" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Un nou paquet de configuració està disponible, Vols instal·lar-lo?" msgid "Description:" @@ -8633,13 +8638,13 @@ msgstr "Descripció:" msgid "Configuration incompatible" msgstr "Configuració incompatible" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "el paquet de configuració és incompatible amb l'aplicació actual." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "El paquet de configuració és incompatible amb l'aplicació actual.\n" "%s actualitzarà el paquet de configuració, En cas contrari no podrà iniciar-" @@ -8649,7 +8654,7 @@ msgstr "" msgid "Exit %s" msgstr "Sortir %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "el paquet Configuració és incompatible amb l'aplicació actual." msgid "Configuration updates" @@ -8702,18 +8707,18 @@ msgid "Map Filament" msgstr "Mapejar Filament" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Nota: El color ha estat seleccionat, podeu triar D'acord \n" -" per continuar-lo o ajustar-lo manualment." +"per continuar-lo o ajustar-lo manualment." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Advertència:El recompte de nous afegits i \n" -" Els extrusors de corrent superen els 16." +"Els extrusors de corrent superen els 16." msgid "Ramming customization" msgstr "Configuració de Moldejat de punta( Ramming )" @@ -8831,11 +8836,11 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Al vostre sistema li falten còdecs H.264 per al GStreamer, necessaris per " -"reproduir vídeo. (Proveu d'instal·lar els paquets gstreamer1.0-plugins-bad " +"reproduir vídeo. (Proveu d'instal·lar els paquets gstreamer1.0-plugins-bad " "o gstreamer1.0-libav i, a continuació, reinicieu Orca Slicer?)" msgid "Bambu Network plug-in not detected." @@ -8904,13 +8909,16 @@ msgid "Shift+R" msgstr "Maj+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Orienta/alinea automàticament els objectes seleccionats o tots els objectes. " "Si hi ha objectes seleccionats, només orientarà/alinearà els seleccionats. " -"En cas contrari, orientarà/alinearà tots els objectes de la placa actual." +"En cas contrari, orientarà/alinearà tots els objectes del projecte actual." + +msgid "Auto orients all objects on the active plate." +msgstr "Orienta/alinea automàticament tots els objectes de la placa actual." msgid "Shift+Tab" msgstr "Maj+Tab" @@ -9020,8 +9028,11 @@ msgstr "Gizmo de Rotació" msgid "Gizmo cut" msgstr "Gizmo de Tall" -msgid "Gizmo Place face on bed" -msgstr "Gizmo de Recolzament sobre la Cara a la placa" +msgid "Gizmo place face on bed" +msgstr "Gizmo de recolzament sobre la Cara a la placa" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo booleà de malla" msgid "Gizmo SLA support points" msgstr "Gizmo de Punts de suport SLA" @@ -9029,8 +9040,17 @@ msgstr "Gizmo de Punts de suport SLA" msgid "Gizmo FDM paint-on seam" msgstr "Eina de Pintat de costures FDM" -msgid "Gizmo Text emboss / engrave" -msgstr "Gizmo de Text en relleu / gravat" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo de text en relleu/gravat" + +msgid "Gizmo measure" +msgstr "Gizmo mesurar" + +msgid "Gizmo assemble" +msgstr "Gizmo ensamblar" + +msgid "Gizmo brim ears" +msgstr "Gizmo orelles de la Vora d'Adherència" msgid "Zoom in" msgstr "Augmentar zoom" @@ -9071,8 +9091,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Establir el número d'extrusor per als objectes i les peces" -msgid "Delete objects, parts, modifiers " -msgstr "Eliminar objectes, peces, modificadors " +msgid "Delete objects, parts, modifiers" +msgstr "Eliminar objectes, peces, modificadors" msgid "Select the object/part and press space to change the name" msgstr "Seleccioneu l'objecte/peça i premeu espai per canviar-ne el nom" @@ -9108,7 +9128,7 @@ msgid "On/Off one layer mode of the vertical slider" msgstr "" "Activar/desactivar el mode de capa única de la barra de desplaçament vertical" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Activar/Desactivar finestra de Codi-G" msgid "Move slider 5x faster" @@ -9127,7 +9147,7 @@ msgid "Release Note" msgstr "Notes de la versió" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "informació d'actualització de la versió %s:" msgid "Network plug-in update" @@ -9140,7 +9160,7 @@ msgstr "" "s'executi Orca Slicer." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Un nou plugin de Xarxa( %s ) disponible, Vols instal·lar-lo?" msgid "New version of Orca Slicer" @@ -9158,10 +9178,10 @@ msgstr "reprendre" msgid "Resume Printing" msgstr "Reprendre Impressió" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Reprendre la impressió (defectes acceptables)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Reprendre la impressió (problema resolt)" msgid "Stop Printing" @@ -9285,10 +9305,10 @@ msgstr "Última versió" msgid "Updating" msgstr "Actualitzant" -msgid "Updating failed" +msgid "Update failed" msgstr "S'ha produït un error en l'actualització" -msgid "Updating successful" +msgid "Update successful" msgstr "Actualització correcta" msgid "" @@ -9420,7 +9440,7 @@ msgstr "" "no hi ha col·lisions." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "No s'ha pogut generar el Codi-G per un Codi-G personalitzat no vàlid.\n" @@ -9472,7 +9492,7 @@ msgid "Multiple" msgstr "Múltiple" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "No s'ha pogut calcular l'amplada de línia de %1%. No es pot obtenir valor de " "\"%2%\" " @@ -9611,9 +9631,9 @@ msgstr "" " està massa a prop de la zona d'exclusió, i es provocaran col·lisions.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "No es poden imprimir junts múltiples filaments que tinguin una gran " "diferència de temperatura. En cas contrari, l'extrusor i el broquet es poden " @@ -9712,26 +9732,27 @@ msgstr "" "La Torre de Purga no està suportada quan l'Alçada de Capa Adaptativa està " "activada. Requereix que tots els objectes tinguin la mateixa alçada de capa." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "La Torre de Purga requereix que el \"distància de suport\" sigui múltiple de " "l'alçada de capa" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "La Torre de Purga requereix que tots els objectes tinguin les mateixes " "alçades de capa" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "La Torre de Purga requereix que tots els objectes s'imprimeixin sobre el " "mateix nombre de capes de Vora d'Adherència" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "La torre de neteja només s'admet per a diversos objectes si s'imprimeixen " "amb el mateix support_top_z_distance" @@ -9745,7 +9766,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "La Torre de Purga només està suportat si tots els objectes tenen la mateixa " "alçada variable de capa" @@ -9804,7 +9825,7 @@ msgstr "" "S'usen suports forçats, però el suport no està habilitat. Si us plau, " "habiliteu el suport." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "L'alçada de la capa no pot superar el diàmetre del broquet" msgid "" @@ -9933,8 +9954,8 @@ msgid "Elephant foot compensation" msgstr "Compensació de Peu d'Elefant" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Redueix la capa inicial a la placa d'impressió per compensar l'efecte de Peu " "d'Elefant" @@ -9958,7 +9979,7 @@ msgstr "capes" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Alçada de laminat per a cada capa. Una alçada de capa més petita significa " "més precisió i més temps d'impressió" @@ -9966,13 +9987,13 @@ msgstr "" msgid "Printable height" msgstr "Alçada imprimible" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "L'alçada màxima imprimible està limitada pel mecanisme d'impressora" msgid "Preferred orientation" msgstr "Orientació preferida" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "Orientar automàticament els stls a l'eix Z després de la importació inicial" @@ -9982,7 +10003,7 @@ msgstr "Noms de perfils de la impressora" msgid "Use 3rd-party print host" msgstr "Utilitzeu l'amfitrió d'impressió de 3a part" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Permetre controlar la impressora de BambuLab a través d'amfitrions " "d'impressió de 3 ª part" @@ -10007,7 +10028,7 @@ msgid "Device UI" msgstr "Interfície d'Usuari del dispositiu" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Especifiqueu l'URL de la interfície d'usuari del dispositiu si no és el " "mateix que print_host" @@ -10022,7 +10043,7 @@ msgstr "" "Orca Slicer pot pujar fitxers de Codi-G a una impressora. Aquest camp ha de " "contenir la clau API o la contrasenya necessària per a l'autenticació." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Nom de la impressora" msgid "HTTPS CA File" @@ -10055,7 +10076,7 @@ msgstr "" "faltin punts de distribució o estiguin desconnectats. Hom pot voler " "habilitar aquesta opció per als certificats autosignats si la connexió falla." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Noms dels perfils relacionats amb la impressora física" msgid "Authorization Type" @@ -10067,22 +10088,23 @@ msgstr "Codi API" msgid "HTTP digest" msgstr "HTTP-Digest" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Evitar creuar perímetre" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Desviar i evitar travessar el perímetre ja que podria produir grumolls a la " "superfície" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Evitar creuar el perímetre - Longitud màxima del desviament" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Distància màxima de desviament per evitar creuar perímetres. No desviar si " "la distància del desviament és major que aquest valor. La longitud del " @@ -10097,42 +10119,42 @@ msgid "Other layers" msgstr "Altres capes" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Temperatura del llit de les capes excepte la inicial. El valor 0 significa " -"que el filament no admet imprimir a una Base Freda" +"que el filament no admet imprimir a una Base Freda." msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura del llit de les capes excepte la inicial. El valor 0 significa " -"que el filament no admet imprimir a la Placa Freda Texturitzada" +"que el filament no admet imprimir a la Placa Freda Texturitzada." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Temperatura del llit de les capes excepte la inicial. El valor 0 significa " -"que el filament no admet imprimir a la Base d'Enginyeria" +"que el filament no admet imprimir a la Base d'Enginyeria." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Temperatura del llit de les capes excepte la inicial. El valor 0 significa " -"que el filament no admet imprimir a la Base d'Alta Temperatura" +"que el filament no admet imprimir a la Base d'Alta Temperatura." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura del llit de les capes excepte la inicial. El valor 0 significa " -"que el filament no admet imprimir a la Base PEI amb Textura" +"que el filament no admet imprimir a la Base PEI amb Textura." msgid "Initial layer" msgstr "Capa inicial" @@ -10141,62 +10163,56 @@ msgid "Initial layer bed temperature" msgstr "Temperatura del llit en la capa inicial" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura del llit de la capa inicial. El valor 0 significa que el " "filament no admet la impressió al Cool Plate SuperTack" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Temperatura del llit en la capa inicial. El valor 0 significa que el " "filament no admet imprimir a la Base Freda" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Temperatura del llit en la capa inicial. El valor 0 significa que el " "filament no admet imprimir a la Placa Freda Texturitzada" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Temperatura del llit en la capa inicial. El valor 0 significa que el " "filament no admet imprimir a la Base d'Enginyeria" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Temperatura del llit en la capa inicial. El valor 0 significa que el " "filament no admet imprimir a la Base d'Alta Temperatura" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Temperatura del llit en la capa inicial. El valor 0 significa que el " "filament no admet imprimir a la Base PEI amb Textura" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Tipus de llit suportats per la impressora" msgid "Smooth Cool Plate" msgstr "Placa Freda Llisa" -msgid "Engineering Plate" -msgstr "Base d'Enginyeria" - msgid "Smooth High Temp Plate" msgstr "Placa Llisa d'Alta Temperatura" -msgid "Textured Cool Plate" -msgstr "Placa Freda Texturitzada" - msgid "First layer print sequence" msgstr "Seqüència d'impressió de primera capa" @@ -10209,7 +10225,7 @@ msgstr "El nombre d'altres capes de la seqüència d'impressió" msgid "Other layers filament sequence" msgstr "Seqüència de filaments d'altres capes" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Aquest Codi-G s'insereix en cada canvi de capa abans d'aixecar z" msgid "Bottom shell layers" @@ -10218,7 +10234,7 @@ msgstr "Capes de la carcassa inferior" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Aquest és el nombre de capes sòlides de la carcassa inferior, inclosa la " "capa superficial inferior. Quan el gruix calculat per aquest valor sigui més " @@ -10233,7 +10249,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "El nombre de capes sòlides inferiors s'incrementa en laminar si el gruix " "calculat per les capes inferiors de la carcassa és més prim que aquest " @@ -10255,22 +10271,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Activa l'emplenament de buits per a les superfícies sòlides seleccionades. " "La longitud mínima de l'espai que s'omplirà es pot controlar des de l'opció " @@ -10284,15 +10300,15 @@ msgstr "" "reduint el potencial d'extrusió al farciment sòlid i assegurant-se que les " "superfícies superior i inferior no tinguin buits de forats\n" "3. Enlloc: desactiva l'ompliment de buits per a totes les àrees de farciment " -"sòlides. \n" +"sòlides.\n" "\n" "Tingueu en compte que si s'utilitza el generador de perímetre clàssic, també " "es pot generar un buit entre perímetres, si una línia d'amplada completa no " "pot cabre entre ells. Aquest espai perimetral no està controlat per aquesta " -"configuració. \n" +"configuració.\n" "\n" "Si voleu eliminar tots els buits, inclòs el clàssic generat pel perímetre, " -"definiu el valor dels buits petits en un nombre gran, com ara 999999. \n" +"definiu el valor dels buits petits en un nombre gran, com ara 999999.\n" "\n" "Tanmateix, això no s'aconsella, ja que l'ompliment de buits entre perímetres " "contribueix a la força del model. Per als models on es genera un farciment " @@ -10423,9 +10439,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10437,7 +10453,7 @@ msgstr "" " Els ponts interns de menor densitat poden ajudar a reduir el coixí de la " "superfície superior i millorar la fiabilitat del pont intern, ja que hi ha " "més espai perquè l'aire circuli al voltant del pont extruït, millorant la " -"seva velocitat de refrigeració. \n" +"seva velocitat de refrigeració.\n" "\n" "Aquesta opció funciona especialment bé quan es combina amb la segona opció " "de pont intern sobre farciment, millorant encara més l'estructura de pont " @@ -10447,14 +10463,14 @@ msgid "Bridge flow ratio" msgstr "Ratio de flux del pont" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" "Redueix lleugerament aquest valor (per exemple, a 0,9) per disminuir la " -"quantitat de material utilitzat en els ponts i millorar la caiguda. \n" +"quantitat de material utilitzat en els ponts i millorar la caiguda.\n" "\n" "El flux real per al pont es calcula multiplicant aquest valor amb la relació " "de flux del filament i, si està establert, amb la relació de flux de " @@ -10486,14 +10502,14 @@ msgstr "Ratio de flux superficial superior" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Aquest factor afecta la quantitat de material per al farciment sòlid " "superior. Podeu disminuir-lo lleugerament per tenir un acabat superficial " -"suau. \n" +"suau.\n" "\n" "El flux real de la superfície superior s'utilitza calculant la multiplicació " "d'aquest valor amb la relació de flux del filament i, si està configurada, " @@ -10503,13 +10519,13 @@ msgid "Bottom surface flow ratio" msgstr "Ratio de flux superficial inferior" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Aquest factor afecta la quantitat de material per al farciment sòlid del " -"fons. \n" +"fons.\n" "\n" "El cabal de farciment sòlid inferior real utilitzat es calcula multiplicant " "aquest valor per la relació de flux de filament i, si s'estableix, la " @@ -10529,8 +10545,8 @@ msgid "Only one wall on top surfaces" msgstr "Només un perímetre a les superfícies superiors" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Utilitzeu només un perímetre a la superfície superior plana per donar més " "espai al patró de farciment superior" @@ -10564,7 +10580,7 @@ msgstr "Només un perímetre a la primera capa" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Utilitzeu només una perímetre a la primera capa per donar més espai al patró " "de farciment inferior" @@ -10604,7 +10620,7 @@ msgid "Reverse only internal perimeters" msgstr "Invertir només els perímetres interns" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10637,9 +10653,9 @@ msgstr "Pont pels forats esbocats( contraforats )" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Aquesta opció crea ponts per a forats de contraforat, permetent imprimir-los " "sense suport. Els modes disponibles son els següents:\n" @@ -10677,13 +10693,13 @@ msgstr "" msgid "Classic mode" msgstr "Mode clàssic" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Activeu aquesta opció per utilitzar el mode clàssic" msgid "Slow down for overhang" msgstr "Alentir la velocitat als voladissos" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Activeu aquesta opció per alentir la impressió per a diferents graus de " "voladís" @@ -10694,11 +10710,11 @@ msgstr "Alentir la velocitat per a perímetres corbats" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10738,7 +10754,7 @@ msgid "External" msgstr "Extern" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10766,7 +10782,7 @@ msgstr "" msgid "Brim width" msgstr "Ample de la Vora d'Adherència" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Distància del model a la línia de la Vora d'Adherència més exterior" msgid "Brim type" @@ -10788,7 +10804,7 @@ msgstr "Espai entre la Vora d'Adherència i l'objecte" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Un espai entre la línia de la Vora d'Adherència més interna i l'objecte pot " "fer que la Vora d'Adherència s'elimini més fàcilment" @@ -10804,12 +10820,12 @@ msgid "Brim ear max angle" msgstr "Angle màxim de l'orella" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" -"Angle màxim per deixar aparèixer una orella. \n" -"Si s'estableix en 0, no es crearà cap Vora d'Adherència. \n" +"Angle màxim per deixar aparèixer una orella.\n" +"Si s'estableix en 0, no es crearà cap Vora d'Adherència.\n" "Si s'estableix a ~ 180, es crearà Vora d'Adherència arreu menys en seccions " "rectes." @@ -10819,7 +10835,7 @@ msgstr "Radi de detecció de l'orella" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "La geometria es simplificarà abans de detectar angles pronunciats. Aquest " "paràmetre indica la longitud mínima de la desviació per a la simplificació.\n" @@ -10858,7 +10874,7 @@ msgstr "" "perfil d'impressió actiu. Si aquesta expressió s'avalua com a certa, aquest " "perfil es considera compatible amb el perfil d'impressió actiu." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Seqüència d'impressió, capa per capa o objecte per objecte" msgid "By layer" @@ -10870,7 +10886,7 @@ msgstr "Objecte" msgid "Intra-layer order" msgstr "Ordre intracapa" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Ordre d'impressió dins d'una sola capa" msgid "As object list" @@ -10884,7 +10900,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Activeu aquesta opció per reduir la velocitat d'impressió perquè el temps de " "la capa final no sigui inferior al llindar de temps de capa a \"Llindar " @@ -10897,7 +10913,7 @@ msgstr "Impressió normal" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "L'acceleració predeterminada tant de la impressió normal com dels viatges " "excepte a la capa inicial" @@ -10905,14 +10921,14 @@ msgstr "" msgid "Default filament profile" msgstr "Perfil de filament predeterminat" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "" "Perfil de filament predeterminat quan canvieu a aquest perfil de màquina" msgid "Default process profile" msgstr "Perfil de procés predeterminat" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Perfil de procés predeterminat quan canvieu a aquest perfil de màquina" msgid "Activate air filtration" @@ -10927,21 +10943,21 @@ msgid "Fan speed" msgstr "Velocitat del ventilador" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Velocitat del ventilador d'extracció durant la impressió. Aquesta velocitat " -"sobreescriurà la velocitat del Codi-G personalitzat del filament" +"sobreescriurà la velocitat del Codi-G personalitzat del filament." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Velocitat del ventilador d'extracció després de completar la impressió" msgid "No cooling for the first" msgstr "Sense refrigeració per a les primeres" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Apagar tots el ventiladors de refrigeració per a les primeres capes. El " "ventilador de refrigeració de la primera capa ha d'estar apagat per obtenir " @@ -10951,8 +10967,8 @@ msgid "Don't support bridges" msgstr "No suportar ponts" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "No posar suports a tot el pont, reduint la quantitat de suports necessaris. " "Els ponts normalment es poden imprimir directament sense suports si no són " @@ -11001,20 +11017,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11068,31 +11084,25 @@ msgstr "Filtreu petits ponts interns" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Aquesta opció pot ajudar a reduir el coixí a les superfícies superiors en " "models molt inclinats o corbats.\n" @@ -11100,7 +11110,7 @@ msgstr "" "Per defecte, els ponts interns petits es filtren i el farciment sòlid intern " "s'imprimeix directament sobre el farciment escàs. Això funciona bé en la " "majoria dels casos, accelerant la impressió sense comprometre massa la " -"qualitat de la superfície superior. \n" +"qualitat de la superfície superior.\n" "\n" "Tanmateix, en models molt inclinats o corbats, especialment quan s'utilitza " "una densitat de farciment escassa massa baixa, això pot provocar " @@ -11146,20 +11156,20 @@ msgstr "" msgid "End G-code" msgstr "Codi-G Final" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Codi-G Final en acabar tota la impressió" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "Codi-G entre Objectes" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Inserir Codi-G entre objectes. Aquest paràmetre només s'aplicarà quan " -"imprimiu els models objecte per objecte" +"imprimiu els models objecte per objecte." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Codi-G Final en acabar la impressió d'aquest filament" msgid "Ensure vertical shell thickness" @@ -11193,7 +11203,7 @@ msgstr "Moderat" msgid "Top surface pattern" msgstr "Patró de superfície superior" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Patró de línia del farciment de la superfície superior" msgid "Concentric" @@ -11223,7 +11233,7 @@ msgstr "Octograma en Espiral" msgid "Bottom surface pattern" msgstr "Patró de superfície inferior" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Patró de línia del farciment de la superfície inferior, no del farciment de " "pont" @@ -11272,7 +11282,7 @@ msgid "Small perimeters threshold" msgstr "Llindar de perímetres petits" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Això estableix el llindar per a la longitud perimetral petita. El llindar " "predeterminat és de 0mm" @@ -11281,7 +11291,7 @@ msgid "Walls printing order" msgstr "Ordre d'impressió de perímetres" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11295,7 +11305,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11305,7 +11315,7 @@ msgid "" " " msgstr "" "Seqüència d'impressió de les parets interiors (interiors) i exteriors " -"(exteriors). \n" +"(exteriors).\n" "\n" "Utilitzeu Interior / Exterior per a millors voladissos. Això es deu al fet " "que les parets que sobresurten poden adherir-se a un perímetre veí durant la " @@ -11321,7 +11331,7 @@ msgstr "" "ser efectiva, ja que imprimeix primer les parets interiors a partir del 3r\n" " perímetre, després el perímetre extern i, finalment, el primer perímetre " "intern. Aquesta opció es recomana contra l'opció Exterior/Interior en la " -"majoria dels casos. \n" +"majoria dels casos.\n" "\n" "Utilitzeu Exterior / Interior per obtenir la mateixa qualitat de paret " "externa i els mateixos avantatges de precisió dimensional de l'opció " @@ -11495,7 +11505,7 @@ msgstr "" msgid "Extruder Color" msgstr "Color de l'extrusor" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Només s'utilitza com a ajuda visual a la Interfície d'Usuari" msgid "Extruder offset" @@ -11505,34 +11515,34 @@ msgid "Flow ratio" msgstr "Relació de flux" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "El material pot tenir un canvi volumètric després de canviar entre estat fos " "i estat cristal·lí. Aquest ajustament canvia proporcionalment tot el flux " "d'extrusió d'aquest filament en Codi-G. L'interval de valors recomanat està " "entre 0,95 i 1,05. Potser podeu ajustar aquest valor per obtenir una " -"superfície ben plana quan hi ha un lleuger excés o dèficit de flux" +"superfície ben plana quan hi ha un lleuger excés o dèficit de flux." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" "El material pot tenir un canvi volumètric després de canviar entre estat fos " "i estat cristal·lí. Aquesta configuració canvia tot el flux d'extrusió " -"d'aquest filament en gcode proporcionalment. El rang de valors recomanat és " +"d'aquest filament en G-code proporcionalment. El rang de valors recomanat és " "entre 0,95 i 1,05. Potser podeu ajustar aquest valor per obtenir una " "superfície plana agradable quan hi ha un lleuger desbordament o " -"desbordament. \n" +"desbordament.\n" "\n" "La relació de flux d'objecte final és aquest valor multiplicat per la " "relació de flux de filaments." @@ -11547,7 +11557,7 @@ msgstr "" "Activeu l'avanç de pressió, el resultat de la calibració automàtica se " "sobreescriurà un cop activat." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "Avanç de Pressió Lineal( Klipper ) AKA Factor d'Avanç Lineal( Marlin )" msgid "Enable adaptive pressure advance (beta)" @@ -11614,19 +11624,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Afegiu conjunts de valors d'avanç de pressió (PA), les velocitats de cabal " "volumètric i les acceleracions a les quals es van mesurar, separats per una " @@ -11653,10 +11662,9 @@ msgstr "" "gran sigui el cabal volumètric. Si no és així, confirmeu que la vostra " "extrusora funciona correctament. Com més lent i amb menys acceleració " "imprimiu, més gran serà el rang de valors de PA acceptables. Si no hi ha cap " -"diferència visible, utilitzeu el valor PA de la prova més ràpida.3. " -"Introduïu els triplets dels valors de PA, flux i acceleracions al quadre de " -"text aquí i deseu el vostre perfil de filament\n" -"\n" +"diferència visible, utilitzeu el valor PA de la prova més ràpida.\n" +"3. Introduïu els triplets dels valors de PA, flux i acceleracions al quadre " +"de text aquí i deseu el vostre perfil de filament." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)" @@ -11676,14 +11684,14 @@ msgid "Pressure advance for bridges" msgstr "Avanç de pressió per als ponts" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" -"Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar. \n" +"Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n" "\n" " Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició " "d'una lleugera extrusió immediatament després dels ponts. Això és causat per " @@ -11701,8 +11709,9 @@ msgid "Keep fan always on" msgstr "Mantenir el ventilador sempre encès" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Si s'activa aquesta configuració, el ventilador de refrigeració de la part " "mai s'aturarà i funcionarà almenys a la velocitat mínima per reduir la " @@ -11711,28 +11720,25 @@ msgstr "" msgid "Don't slow down outer walls" msgstr "No freneu a les parets exteriors" +#, fuzzy msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Si s'activa, aquesta configuració garantirà que els perímetres externs no es " "redueixin per complir el temps mínim de capa. Això és especialment útil en " "els escenaris següents:\n" -"\n" -" 1. Per evitar canvis de brillantor en imprimir filaments brillants \n" +"1. Per evitar canvis de brillantor en imprimir filaments brillants\n" "2. Per evitar canvis en la velocitat de la paret externa que poden crear " -"lleugers artefactes de paret que semblen bandes z \n" +"lleugers artefactes de paret que semblen bandes z\n" "3. Per evitar la impressió a velocitats que provoquen VFA (artefactes fins) " -"a les parets externes\n" -"\n" +"a les parets externes" msgid "Layer time" msgstr "Temps de capa" @@ -11740,7 +11746,7 @@ msgstr "Temps de capa" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "S'habilitarà el ventilador de refrigeració de peces per a capes el temps " "estimat de les quals sigui inferior a aquest valor. La velocitat del " @@ -11772,7 +11778,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Aquest ajustament representa la quantitat de volum de filament que es pot " "fondre i extruir per segon. La velocitat d'impressió està limitada per la " @@ -11788,7 +11794,7 @@ msgstr "Temps de càrrega del filament" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "És hora de carregar un filament nou quan canvieu de filament. Normalment " "s'aplica a màquines multimaterial d'una sola extrusora. Per als canviadors " @@ -11800,7 +11806,7 @@ msgstr "Temps de descàrrega del filament" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "És hora de descarregar el filament vell quan canvieu el filament. Normalment " "s'aplica a màquines multimaterial d'una sola extrusora. Per als canviadors " @@ -11812,18 +11818,18 @@ msgstr "Temps de canvi d'eina" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Temps necessari per canviar d'eina. Normalment s'aplica per a canviadors " "d'eines o màquines multieina. Per a màquines multimaterial d'una sola " "extrusora, normalment és 0. Només per a estadístiques" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "El diàmetre del filament s'utilitza per calcular l'extrusió en Codi-G, per " -"la qual cosa és important i ha de ser precís" +"la qual cosa és important i ha de ser precís." msgid "Pellet flow coefficient" msgstr "Coeficient de flux de pellets" @@ -11892,7 +11898,7 @@ msgid "Unloading speed" msgstr "Velocitat de descàrrega" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Velocitat emprada per descarregar el filament a la Torre de Purga ( no " @@ -11912,8 +11918,8 @@ msgid "Delay after unloading" msgstr "Retard després de la descàrrega" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Temps d'espera després que el filament s'ha descarregat. Pot ajudar a " @@ -11940,7 +11946,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Distància d'estampació mesurada des del centre del tub de refrigeració" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11998,7 +12004,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Realitzeu l'embolcall quan utilitzeu una impressora multieina (és a dir, " "quan l'opció \"Multimaterial d'extrusora única\" a la configuració de la " @@ -12010,13 +12016,13 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Volum d'impacte multieina" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "El volum de Moldejat de Punta( Ramming ) abans del canvi d'eina." msgid "Multi-tool ramming flow" msgstr "Flux d'embolcall multieina" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" "Flux utilitzat pel Moldejat de Punta( Ramming ) de filament abans del canvi " "d'eina." @@ -12024,20 +12030,20 @@ msgstr "" msgid "Density" msgstr "Densitat" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Densitat del filament. Només per a estadístiques" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "El tipus de material del filament" msgid "Soluble material" msgstr "Material soluble" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "El material soluble s'utilitza habitualment per imprimir interfície de " "suport i suport" @@ -12046,7 +12052,7 @@ msgid "Support material" msgstr "Material de suport" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "El material de suport s'utilitza habitualment per imprimir interfície de " "suport i suport" @@ -12056,8 +12062,8 @@ msgstr "Temperatura d'estovament" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "El material s'estova a aquesta temperatura, de manera que quan la " "temperatura del llit és igual o superior a aquesta, és molt recomanable " @@ -12067,7 +12073,7 @@ msgstr "" msgid "Price" msgstr "Preu" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Preu del filament. Només per a estadístiques" msgid "money/kg" @@ -12076,7 +12082,7 @@ msgstr "diners/kg" msgid "Vendor" msgstr "Fabricant" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Fabricant del filament. Només per a mostrar" msgid "(Undefined)" @@ -12087,7 +12093,7 @@ msgstr "Direcció de farciment poc dens" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Angle per a un patró de farciment poc dens, que controla l'inici o la " "direcció principal de la línia" @@ -12097,7 +12103,7 @@ msgstr "Direcció de farciment sòlid" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Angle per al patró de farciment sòlid, que controla l'inici o la direcció " "principal de la línia" @@ -12114,7 +12120,7 @@ msgstr "Densitat de farciment poc dens" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Densitat de farciment poc dens, converteix el 100% tu el teu farciment poc " "dens en farciment sòlid i s'utilitzarà el patró de farciment sòlid intern" @@ -12122,7 +12128,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Patró farciment poc dens" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Patró de línia per al farciment poc dens" msgid "Grid" @@ -12195,7 +12201,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12206,7 +12212,7 @@ msgstr "" "no es troba aquest segment perimetral més curt que infill_anchor_max, la " "línia de farciment es connecta a un segment perimetral a un sol costat i la " "longitud del segment perimetral pres es limita a aquest paràmetre, però no " -"més de anchor_length_max. \n" +"més de anchor_length_max.\n" "Establiu aquest paràmetre a zero per desactivar els perímetres d'ancoratge " "connectats a una sola línia de farciment." @@ -12227,7 +12233,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12238,30 +12244,30 @@ msgstr "" "no es troba aquest segment perimetral més curt que aquest paràmetre, la " "línia de farciment es connecta a un segment perimetral a un sol costat i la " "longitud del segment perimetral pres es limita a infill_anchor, però no més " -"llarga que aquest paràmetre. \n" +"llarga que aquest paràmetre.\n" "Si s'estableix a 0, s'utilitzarà l'algorisme antic per a la connexió de " "farciment, hauria de crear el mateix resultat que amb 1000 i 0." msgid "0 (Simple connect)" msgstr "0 ( Connexió simple )" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Acceleració en perímetres exteriors" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Acceleració en perímetres interiors" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Acceleració en desplaçaments" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Acceleració del farciment superficial superior. L'ús d'un valor inferior pot " "millorar la qualitat de la superfície superior" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Acceleració del perímetre exterior. L'ús d'un valor inferior pot millorar la " "qualitat" @@ -12294,7 +12300,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Acceleració de la capa inicial. L'ús d'un valor inferior pot millorar " "l'adherència de la placa d'impressió" @@ -12302,7 +12308,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Habilita accel_to_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "El max_accel_to_decel de Klipper s'ajustarà automàticament" msgid "accel_to_decel" @@ -12310,25 +12316,25 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "El max_accel_to_decel de Klipper s'ajustarà a aquest %% d'acceleració" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Sacsejada( Jerk ) de perímetres exteriors" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Sacsejada( Jerk ) de perímetres interiors" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Sacsejada( Jerk ) per a la superfície superior" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Sacsejada( Jerk ) per farciment" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Sacsejada( Jerk ) per a la capa inicial" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Sacsejada( Jerk ) per deplaçament" msgid "" @@ -12343,24 +12349,24 @@ msgstr "Alçada de la capa inicial" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Alçada de la capa inicial. Fer que l'alçada inicial de la capa sigui " "lleugerament més gruixuda pot millorar l'adherència de la placa d'impressió" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Velocitat de la capa inicial excepte la part de farciment sòlid" msgid "Initial layer infill" msgstr "Farciment de la capa inicial" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Velocitat de farciment sòlid de la capa inicial" msgid "Initial layer travel speed" msgstr "Velocitat de desplaçament de la capa inicial" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Velocitat de desplaçament de la capa inicial" msgid "Number of slow layers" @@ -12376,7 +12382,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Temperatura del broquet a la capa inicial" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Temperatura del broquet per imprimir la capa inicial quan s'utilitza aquest " "filament" @@ -12405,7 +12411,7 @@ msgstr "Velocitat del ventilador a la interfície de suport" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12440,7 +12446,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Tremolor( Jitter ) Aleatori mentre imprimeix el perímetre, de manera que la " "superfície tingui un aspecte rugós. Aquest ajustament controla la posició " @@ -12460,7 +12466,7 @@ msgstr "Gruix de la Pell Difusa" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "L'amplada dins de la qual es pot tremolar. Es recomana estar per sota de " "l'amplada de la línia de la paret exterior" @@ -12470,7 +12476,7 @@ msgstr "Distància del punt de la Pell Difusa" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "La distància mitjana entre els punts aleatoris introduïts en cada segment de " "línia" @@ -12478,14 +12484,14 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "Aplicar Pell Difusa a la primera capa" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Si s'ha d'aplicar Pell Difusa a la primera capa" msgid "Fuzzy skin noise type" msgstr "Tipus de soroll de pell difusa" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12566,7 +12572,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Velocitat de farciment de buits. El buit sol tenir una amplada de línia " "irregular i s'ha d'imprimir més lentament" @@ -12589,7 +12595,7 @@ msgstr "Ajustament en Arc( Arc fitting )" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12598,7 +12604,7 @@ msgid "" "to line segments by the firmware." msgstr "" "Activeu-ho per obtenir un fitxer de codi G que tingui moviments G2 i G3. La " -"tolerància d'ajust és la mateixa que la resolució. \n" +"tolerància d'ajust és la mateixa que la resolució.\n" "\n" "Nota: per a les màquines Klipper, es recomana desactivar aquesta opció. " "Klipper no es beneficia de les ordres d'arc, ja que el microprogramari torna " @@ -12609,17 +12615,18 @@ msgstr "" msgid "Add line number" msgstr "Afegir número de línia" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Habiliteu això per afegir el número de línia ( Nx ) al començament de cada " -"línia de Codi-G" +"línia de Codi-G." msgid "Scan first layer" msgstr "Escanejar la primera capa" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Habiliteu-ho per permetre que la càmera de la impressora comprovi la " "qualitat de la primera capa" @@ -12629,7 +12636,7 @@ msgstr "Tipus de broquet" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "El material metàl·lic del broquet. Això determina la resistència abrasiva " "del broquet i quin tipus de filament es pot imprimir" @@ -12662,7 +12669,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Estructura de la impressora" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "La disposició física i els components d'un dispositiu d'impressió" msgid "CoreXY" @@ -12692,25 +12699,26 @@ msgstr "" "Activeu aquesta opció si la màquina té ventilador auxiliar de refrigeració " "de peces. Comanda de Codi-G: M106 P2 S ( 0-255 )." +#, fuzzy msgid "" "Start the fan this number of seconds earlier than its target start time (you " "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Inicieu el ventilador aquest nombre de segons abans de l'hora d'inici " "objectiu (podeu utilitzar fraccions de segons). Assumeix una acceleració " "infinita per a aquesta estimació de temps i només tindrà en compte els " "moviments G1 i G0 (l'ajust d'arc no és compatible).\n" -"No mourà les ordres dels ventiladors dels gcodes personalitzats (actuen com " +"No mourà les ordres dels ventiladors dels Codi-G personalitzats (actuen com " "una mena de \"barrera\").\n" -"No mourà les ordres del ventilador al gcode d'inici si està activat l'\"únic " -"gcode d'inici personalitzat\".\n" +"No mourà les ordres del ventilador al Codi-G d'inici si està activat l'\"únic " +"Codi-G d'inici personalitzat\".\n" "Utilitzeu 0 per desactivar-lo." msgid "Only overhangs" @@ -12741,7 +12749,7 @@ msgstr "" msgid "Time cost" msgstr "Cost per Temps" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "El cost de la impressora per hora" msgid "money/h" @@ -12771,8 +12779,8 @@ msgstr "" msgid "G-code flavor" msgstr "Tipus de Codi-G" -msgid "What kind of gcode the printer is compatible with" -msgstr "Amb quin tipus de Codi-G és compatible la impressora" +msgid "What kind of G-code the printer is compatible with." +msgstr "Amb quin tipus de Codi-G és compatible la impressora." msgid "Klipper" msgstr "Klipper" @@ -12780,21 +12788,21 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Impressora modificada de pellets" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Activeu aquesta opció si la impressora utilitza pellets en lloc de filaments" msgid "Support multi bed types" msgstr "Admetre diversos tipus de llits" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "Activa aquesta opció si vols utilitzar diversos tipus de llit" msgid "Label objects" msgstr "Etiquetar objectes" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12808,8 +12816,8 @@ msgstr "" msgid "Exclude objects" msgstr "Excloure objectes" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "Activeu aquesta opció per afegir l'ordre EXCLUDE OBJECT al Codi-G" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." +msgstr "Activeu aquesta opció per afegir l'ordre EXCLUDE OBJECT al Codi-G." msgid "Verbose G-code" msgstr "Codi-G detallat" @@ -12838,7 +12846,7 @@ msgid "Infill combination - Max layer height" msgstr "Combinació de farciment: alçada màxima de la capa" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12849,7 +12857,7 @@ msgid "" "Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " "(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Alçada màxima de la capa per a l'ompliment dispers combinat. \n" +"Alçada màxima de la capa per a l'ompliment dispers combinat.\n" "\n" "Establiu-lo a 0 o 100% to utilitzeu el diàmetre del broquet (per a una " "reducció màxima del temps d'impressió) o un valor de ~80% to maximitzeu la " @@ -12897,7 +12905,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "L'àrea de farciment sòlida superior s'amplia lleugerament per superposar-se " "a la paret per a una millor unió i per minimitzar l'aparició de forats on " @@ -12905,13 +12913,13 @@ msgstr "" "bon punt de partida, minimitzant l'aparició de forats. El valor percentual " "és relatiu a l'amplada de línia de l'emplenament escàs" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Velocitat de farciment poc dens intern" msgid "Inherits profile" msgstr "Hereta el perfil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Nom del perfil pare" msgid "Interface shells" @@ -12920,7 +12928,7 @@ msgstr "Carcasses d'interfície" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Forçar la generació de carcasses sòlides entre materials/volums adjacents. " "Això és útil per a impressions de múltiples extrusores amb materials " @@ -12939,7 +12947,7 @@ msgstr "Profunditat d'entrellaçament d'una regió segmentada" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Profunditat d'enclavament d'una regió segmentada. S'ignorarà si " @@ -13028,7 +13036,7 @@ msgstr "Tota la capa sòlida" msgid "Ironing Pattern" msgstr "Patró de planxat" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "El patró que s'utilitzarà a l'hora de planxar" msgid "Ironing flow" @@ -13036,7 +13044,7 @@ msgstr "Flux de planxa" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "La quantitat de material a extruir durant el planxat. Relatiu al flux de " "l'alçada normal de la capa. Un valor massa alt provoca una sobreextrusió a " @@ -13045,7 +13053,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Interlineat entre línies de planxa" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "La distància entre les línies de planxa" msgid "Ironing inset" @@ -13053,7 +13061,7 @@ msgstr "Reculat per al planxat" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "La distància a mantenir des de les vores. Un valor de 0 l'estableix a la " "meitat del diàmetre del broquet" @@ -13061,7 +13069,7 @@ msgstr "" msgid "Ironing speed" msgstr "Velocitat de planxat" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Velocitat d'impressió de les línies de planxat" msgid "Ironing angle" @@ -13074,17 +13082,17 @@ msgstr "" "El planxat angular es fa a. Un nombre negatiu desactiva aquesta funció i " "utilitza el mètode predeterminat." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Aquesta part de Codi-G s'insereix en cada canvi de capa després de " -"l'aixecament z" +"l'aixecament Z." msgid "Supports silent mode" msgstr "Admet el mode silenciós" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Si la màquina admet el mode silenciós en el qual la màquina utilitza una " "acceleració més baixa per imprimir" @@ -13097,25 +13105,25 @@ msgstr "Límits de la màquina" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Si està habilitat, els límits de la màquina s'emetran al fitxer de Codi-G.\n" "Aquesta opció s'ignorarà si el tipus de Codi-G està definit com a Klipper." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Aquest Codi-G s'utilitzarà com a codi per a la pausa d'impressió. L'usuari " -"pot inserir el Codi-G de pausa al visualitzador de Codi-G" +"pot inserir el Codi-G de pausa al visualitzador de Codi-G." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Aquest Codi-G s'utilitzarà com a codi personalitzat" msgid "Small area flow compensation (beta)" msgstr "Compensació de flux d'àrea petita( beta )" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Activar la compensació de flux per a petites àrees de farciment" msgid "Flow Compensation Model" @@ -13231,13 +13239,13 @@ msgstr "Màxima acceleració de retracció ( M204 R )" msgid "Maximum acceleration for travel" msgstr "Màxima acceleració de desplaçament" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" "Màxima acceleració de desplaçament ( M204 T ), només s'aplica a Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "La velocitat del ventilador de refrigeració de peça es pot augmentar quan " "s'habilita la refrigeració automàtica. Aquesta és la limitació de velocitat " @@ -13247,8 +13255,8 @@ msgid "Max" msgstr "Màx" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "La major alçada de capa imprimible per a l'extrusor. S'utilitza per limitar " "l'alçada màxima de la capa quan s'habilita l'Alçada de Capa Adaptativa" @@ -13262,23 +13270,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13294,20 +13302,20 @@ msgstr "" "canvis de velocitat d'extrusió més alts, cosa que resulta en transicions de " "velocitat més ràpides.\n" "\n" -"Un valor 0 desactiva la característica. \n" +"Un valor 0 desactiva la característica.\n" "\n" "Per a una impressora d'extrusió directa d'alta velocitat i alt flux ( com " "Bambu Lab o Voron ) aquest valor normalment no és necessari. No obstant " "això, pot proporcionar algun benefici marginal en certs casos en què les " "velocitats de les característiques varien molt. Per exemple, quan hi ha " "desacceleracions agressives a causa dels voladissos. En aquests casos es " -"recomana un valor elevat d'uns 300-350mm3/s2, ja que això permet un " +"recomana un valor elevat d'uns 300-350 mm³/s², ja que això permet un " "suavitzat suficient per ajudar a avançar la pressió a aconseguir una " "transició de flux més suau.\n" "\n" "Per a impressores més lentes sense Avanç de Pressió, el valor s'ha " -"d'establir molt més baix. Un valor de 10-15mm3/s2 és un bon punt de partida " -"per als extrusors d'extrusió directa i 5-10mm3/s2 per al tipus Bowden. \n" +"d'establir molt més baix. Un valor de 10-15 mm³/s² és un bon punt de partida " +"per als extrusors d'extrusió directa i 5-10 mm³/s² per al tipus Bowden.\n" "\n" "Aquesta característica es coneix com a Equalitzador de Pressió a Prusa " "slicer.\n" @@ -13320,23 +13328,24 @@ msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "Longitud del segment de suavitzat" +#, fuzzy msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" "Un valor més baix produeix transicions de velocitat d'extrusió més suaus. " -"Tanmateix, això dóna com a resultat un fitxer gcode significativament més " -"gran i més instruccions per processar la impressora. \n" +"Tanmateix, això dóna com a resultat un fitxer Codi-G significativament més " +"gran i més instruccions per processar la impressora.\n" "\n" "El valor predeterminat de 3 funciona bé en la majoria dels casos. Si la " "impressora està tartamudeig, augmenta aquest valor per reduir el nombre " -"d'ajustaments fets\n" +"d'ajustaments fets.\n" "\n" "Valors permesos: 0,5-5" @@ -13355,7 +13364,7 @@ msgstr "" "sense afectar la velocitat d'impressió de les funcions que no seran visibles " "per l'usuari." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Velocitat mínima per al ventilador de refrigeració de peces" msgid "" @@ -13375,8 +13384,8 @@ msgid "Min" msgstr "Mín" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "L'alçada de capa imprimible més baixa per a l'extrusor. S'utilitza per " "limitar l'alçada mínima de la capa quan s'activa l'Alçada de Capa Adaptativa" @@ -13419,7 +13428,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Volum del broquet" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Volum del broquet entre la talladora i l'extrem del broquet" msgid "Cooling tube position" @@ -13467,7 +13476,7 @@ msgstr "Distància de càrrega addicional" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Quan s'estableix a zero, la distància que el filament es mou des de la " @@ -13489,7 +13498,7 @@ msgstr "Reduir la retracció de farciment" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "No retrau quan el desplaçament està totalment a la zona de farciment. Això " "vol dir que l'oozing( goteig ) queda amagat. Això pot reduir els temps de " @@ -13506,7 +13515,7 @@ msgstr "" msgid "Filename format" msgstr "Format del nom del fitxer" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "L'usuari pot definir el nom del fitxer del projecte quan exporta" msgid "Make overhangs printable" @@ -13533,7 +13542,7 @@ msgstr "Fer voladissos imprimibles - Zona de forats( Sense suports )" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Àrea màxima d'un forat a la base del model abans que s'ompli amb material " "cònic. Un valor de 0 omplirà tots els forats de la base del model." @@ -13563,10 +13572,10 @@ msgstr "" "Amplada de línia del perímetre interior. Si s'expressa en %, es calcularà " "sobre el diàmetre del broquet." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Velocitat del perímetre interior" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Nombre de perímetres de cada capa" msgid "Alternate extra wall" @@ -13574,20 +13583,20 @@ msgstr "Perímetre addicional alternant" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" "Aquest ajustament afegeix un perímetre addicional a totes les altres capes. " "D'aquesta manera, el farciment s'encaixa verticalment entre les parets, " -"donant lloc a impressions més fortes. \n" +"donant lloc a impressions més fortes.\n" "\n" "Quan aquesta opció està habilitada, cal desactivar l'opció 'Assegurar el " -"gruix de la carcassa vertical'. \n" +"gruix de la carcassa vertical'.\n" "\n" "No es recomana l'ús de farciment de Llampec juntament amb aquesta opció, ja " "que hi ha un farciment limitat per ancorar els perímetres addicionals." @@ -13623,7 +13632,7 @@ msgstr "Model d'impressora" msgid "Raft contact Z distance" msgstr "Distància Z de contacte de la Vora d'Adherència" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Distància Z entre l'objecte i la Vora d'Adherència. S'ignorarà per a " "interfície soluble" @@ -13631,19 +13640,19 @@ msgstr "" msgid "Raft expansion" msgstr "Expansió de la Vora d'Adherència" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Expandir totes les capes de Vora d'Adherència en el pla XY" msgid "Initial layer density" msgstr "Densitat de la primera capa" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Densitat de la primera Vora d'Adherència o capa de suport" msgid "Initial layer expansion" msgstr "Expansió de la primera capa" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Expandir la primera Vora d'Adherència o capa de suport per millorar " "l'adherència de la placa d'impressió" @@ -13653,26 +13662,27 @@ msgstr "Capes de Vora d'Adherència" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "L'objecte serà elevat per aquest nombre de capes de suport. Utilitzar " "aquesta funció per evitar deformacions( warping ) quan imprimiu ABS" +#, fuzzy msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "El camí del codi G es genera després de simplificar el contorn del model per " -"evitar massa punts i línies gcode al fitxer gcode. Un valor més petit " -"significa una resolució més alta i més temps per tallar" +"evitar massa punts i línies gcode al fitxer Codi-G. Un valor més petit " +"significa una resolució més alta i més temps per tallar." msgid "Travel distance threshold" msgstr "Llindar de distància de desplaçament" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Només s'activa la retracció quan la distància de desplaçament és superior a " "aquest llindar" @@ -13681,7 +13691,7 @@ msgid "Retract amount before wipe" msgstr "Quantitat de retracció abans de netejar" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "La longitud de retracció ràpida abans de la neteja, en relació amb la " "longitud de retracció" @@ -13689,7 +13699,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Retracció quan canvia de capa" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Forçar una retracció quan canvia de capa" msgid "Retract on top layer" @@ -13697,7 +13707,7 @@ msgstr "Retreure a la capa superior" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Força una retracció a la capa superior. La desactivació podria evitar " "l'obstrucció en patrons molt lents amb moviments petits, com la corba de " @@ -13714,16 +13724,16 @@ msgstr "" "l'Ooze( goteig ) durant el llarg desplaçament. Definiu zero per desactivar " "la retracció" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Retracció llarga quan es talla (beta)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Característica experimental. Retreure i tallar el filament a més distància " +"Característica experimental: Retreure i tallar el filament a més distància " "durant els canvis per minimitzar la purga. Tot i que això redueix " "significativament el flux, també pot augmentar el risc d'obstruccions del " "broquet o altres problemes d'impressió." @@ -13732,10 +13742,10 @@ msgid "Retraction distance when cut" msgstr "Distància de retracció quan es talla" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Característica experimental. Longitud de retracció abans de tallar durant el " +"Característica experimental: Longitud de retracció abans de tallar durant el " "canvi de filament" msgid "Z-hop height" @@ -13744,40 +13754,37 @@ msgstr "Alçada Z-hop" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Cade vegada que es fa una retracció, s'aixeca una mica el broquet per crear " "espai lliure entre el broquet i la impressió. Evita que el broquet colpegi " "la impressió en els desplaçaments. L'ús de la línia espiral per aixecar z " "pot evitar l'aparició de fils" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Límit inferior de salt en Z" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "El salt en Z només s'aplicarà quan Z estigui per sobre d'aquest valor i " -"estigui per sota del paràmetre: \"Límit superior de salt en Z\"" +"estigui per sota del paràmetre: \"Límit superior de salt en Z\"." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Límit superior de salt en Z" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Si aquest valor és positiu, el salt en Z només s'aplicarà quan Z estigui per " "sobre del paràmetre: \"Límit inferior de salt en Z\" i estigui per sota " -"d'aquest valor" +"d'aquest valor." msgid "Z-hop type" msgstr "Tipus de salt en Z" -msgid "Z hop type" -msgstr "Tipus de salt en Z" - msgid "Slope" msgstr "Pendent" @@ -13788,11 +13795,11 @@ msgid "Traveling angle" msgstr "Angle de viatge" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Angle de viatge per al tipus Salt en Z de Pendent i Espiral. Si l'establiu a " -"90°, es produeix un Aixecament Normal" +"90°, es produeix un Aixecament Normal." msgid "Only lift Z above" msgstr "Només aixecar Z per sobre" @@ -13818,7 +13825,7 @@ msgid "On surfaces" msgstr "A les superfícies" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Forçar el comportament de salt en Z. Aquest ajustament es veu afectada per " @@ -13857,15 +13864,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Velocitat de retracció" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Velocitat de les retraccions" msgid "De-retraction Speed" msgstr "Velocitat de detracció" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Velocitat de recàrrega del filament a l'extrusora. Zero significa la mateixa " "velocitat amb la retracció" @@ -13888,15 +13895,15 @@ msgid "Disable set remaining print time" msgstr "Desactivar el temps d'impressió restant" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Desactivar la generació del M73: establir el temps d'impressió restant al " -"gcode final" +"Codi-G final." msgid "Seam position" msgstr "Posició de la costura" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "La posició inicial per imprimir cada capa del perímetre exterior" msgid "Nearest" @@ -13992,7 +13999,7 @@ msgstr "Velocitat d'Unió en Bisell" 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 " +"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 " @@ -14001,7 +14008,7 @@ msgid "" "outer or inner wall speed. The default value is set to 100%." msgstr "" "Aquesta opció estableix la velocitat d'impressió de les Unions en Bisell. Es " -"recomana imprimir Unions en Bisell a velocitat lenta (menys de 100 mm / s). " +"recomana imprimir Unions en Bisell a velocitat lenta (menys de 100 mm / s). " "També és recomanable habilitar el \"suavitzat de la velocitat d'extrusió\" " "si la velocitat establerta varia significativament de la velocitat dels " "perímetres exteriors o interiors. Si la velocitat especificada aquí és " @@ -14062,7 +14069,7 @@ msgid "Role base wipe speed" msgstr "Velocitat de neteja basada en l'acció" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14090,7 +14097,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14100,7 +14107,7 @@ msgstr "" "perímetre extern quan s'imprimeix amb l'ordre d'impressió de paret exterior/" "interior o interior/exterior/interior, la retirada es realitza lleugerament " "a l'interior des de l'inici del perímetre extern. D'aquesta manera, " -"qualsevol potencial sobre extrusió s'amaga de la superfície exterior. \n" +"qualsevol potencial sobre extrusió s'amaga de la superfície exterior.\n" "\n" "Això és útil quan s'imprimeix amb l'ordre d'impressió de paret exterior/" "interior o interior/exterior/interior, ja que en aquests modes és més " @@ -14112,9 +14119,9 @@ msgstr "Velocitat de neteja" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "La velocitat de neteja està determinada per l'ajustament de velocitat " "especificada en aquesta configuració. Si el valor s'expressa en percentatge " @@ -14142,7 +14149,7 @@ msgstr "" msgid "Skirt height" msgstr "Alçada de la faldilla" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Quantes capes de faldilla. Normalment només una capa" msgid "Single loop draft shield" @@ -14163,7 +14170,7 @@ msgstr "Escut contra corrents d'aire" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14200,7 +14207,7 @@ msgstr "Escalat per objecte" msgid "Skirt loops" msgstr "Voltes de la faldilla" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "Nombre de voltes per a la faldilla. Zero significa faldilla desactivada" @@ -14219,9 +14226,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Longitud mínima d'extrusió del filament en mm en imprimir la faldilla. Zero " @@ -14233,19 +14240,20 @@ msgstr "" "distància dels objectes. Augmenteu el nombre de bucle en aquest cas." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "La velocitat d'impressió en el Codi-G exportat s'alentirà, quan el temps " "estimat de capa sigui més curt que aquest valor, per obtenir un millor " -"refredament d'aquestes capes" +"refredament d'aquestes capes." msgid "Minimum sparse infill threshold" msgstr "Llindar mínim de farciment poc dens" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "L'àrea de farciment poc dens que sigui més petita que el valor del llindar " "serà substituït per un farciment sòlid intern" @@ -14263,14 +14271,14 @@ msgstr "" "Amplada de línia de farciment sòlid intern. Si s'expressa en %, es calcularà " "sobre el diàmetre del broquet." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Velocitat de farciment sòlid intern, no de la superfície superior i inferior" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "L'espiralització suavitza els moviments z del contorn exterior. I converteix " "un model sòlid en una sola impressió de perímetre amb capes inferiors " @@ -14281,7 +14289,7 @@ msgstr "Suavitzar l'Espiral" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "L'espiral suau suavitza també els moviments X i Y, donant lloc a cap costura " "visible, fins i tot en les direccions XY a les parets que no són verticals" @@ -14292,7 +14300,7 @@ msgstr "Suavitzat màxim XY" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Distància màxima per moure punts en XY per intentar aconseguir una espiral " "suau. Si s'expressa com a %, es calcularà sobre el diàmetre del broquet" @@ -14354,8 +14362,8 @@ msgstr "Variació de temperatura" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Diferència de temperatura a aplicar quan una extrusora no està activa. El " "valor no s'utilitza quan 'idle_temperature' a la configuració del filament " @@ -14379,7 +14387,7 @@ msgid "Preheat steps" msgstr "Passos de preescalfament" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Inseriu diverses ordres de preescalfament (p. ex., M104.1). Només útil per a " @@ -14388,16 +14396,16 @@ msgstr "" msgid "Start G-code" msgstr "Codi-G inicial" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Codi-G inicial quan comença tota la impressió" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Codi-G inicial quan comença la impressió d'aquest filament" msgid "Single Extruder Multi Material" msgstr "Extrusor únic multimaterial" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Utilitza un sol broquet per imprimir multifilament" msgid "Manual Filament Change" @@ -14419,18 +14427,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Purgar a la Torre de Purga" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Purga el filament restant a la Torre de Purga" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Habilitar Moldejat de punta( Ramming ) de filament" msgid "No sparse layers (beta)" msgstr "Sense capes poc denses( beta )" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14502,9 +14510,9 @@ msgid "Enable support generation." msgstr "Habilitar la generació de suports." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Normal (automàtic) i Arbre (automàtic) s'utilitzen per generar suport " "automàticament. Si se selecciona Normal (manual) o Arbre (manual), només es " @@ -14525,7 +14533,7 @@ msgstr "Arbre (manual)" msgid "Support/object xy distance" msgstr "Distància suport/objecte a xy" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Separació XY entre un objecte i el seu suport" msgid "Support/object first layer gap" @@ -14545,7 +14553,7 @@ msgstr "" msgid "On build plate only" msgstr "Només a la placa d'impressió" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "" "No crear suport a la superfície del model, només a la placa d'impressió" @@ -14567,13 +14575,13 @@ msgstr "Eliminar els voladissos petits que possiblement no necessiten suports." msgid "Top Z distance" msgstr "Distància Z superior" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "La distància z entre la interfície de suport superior i l'objecte" msgid "Bottom Z distance" msgstr "Distància Z inferior" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "La distància z entre la interfície de suport inferior i l'objecte" msgid "Support/raft base" @@ -14581,7 +14589,7 @@ msgstr "Base del Suport/Vora d'Adherència" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament per imprimir base del suport i Vora d'Adherència. \"Per defecte\" " "significa que no s'utilitza cap filament específic per al suport i s'usarà " @@ -14617,7 +14625,7 @@ msgstr "Interfície de Suport/Vora d'Adherència" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament per imprimir interfície de suport. \"Per defecte\" vol dir que no " "hi ha filament específic per a la interfície de suport i s'utilitza el " @@ -14626,13 +14634,13 @@ msgstr "" msgid "Top interface layers" msgstr "Capes de la interfície superior" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Nombre de capes d'interfície superior" msgid "Bottom interface layers" msgstr "Capes de la interfície inferior" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Nombre de capes de la interfície inferior" msgid "Same as top" @@ -14641,25 +14649,25 @@ msgstr "Igual que la part superior" msgid "Top interface spacing" msgstr "Espai entre línies de la interfície superior" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Espaiat de les línies de la interfície. Zero significa interfície sòlida" msgid "Bottom interface spacing" msgstr "Espai entre línies de la interfície inferior" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Espaiat de les línies inferiors de la interfície. Zero significa interfície " "sòlida" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Velocitat de la interfície de suport" msgid "Base pattern" msgstr "Patró de la base" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Patró lineal del suport" msgid "Rectilinear grid" @@ -14674,7 +14682,7 @@ msgstr "Patró de la interfície" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Patró de línia de la interfície de suport. El patró predeterminat per a la " "interfície de suport no soluble és Rectilini, mentre que el patró " @@ -14686,17 +14694,17 @@ msgstr "Entrellaçat Rectilini" msgid "Base pattern spacing" msgstr "Espaiat del patró base" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Espaiat entre línies de suport" msgid "Normal Support expansion" msgstr "Expansió de Suport Normal" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" "Augmentar ( + ) o disminuir ( - ) l'expansió horitzontal dels suports normals" -msgid "Speed of support" +msgid "Speed of support." msgstr "Velocitat del suport" msgid "" @@ -14740,7 +14748,7 @@ msgstr "Alçada de la capa de suport independent" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "La capa de suport utilitza una alçada de capa independent de la capa " @@ -14774,8 +14782,8 @@ msgid "Tree support branch angle" msgstr "Angle de branca de suport en arbre" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Aquest ajustament determina l'angle màxim de voladís que les branques del " @@ -14825,8 +14833,8 @@ msgid "Adaptive layer height" msgstr "Alçada de Capa Adaptativa" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Si activeu aquesta opció, l'alçada de la capa de suport en arbre, excepte la " "primera, es calcularà automàticament " @@ -14836,7 +14844,7 @@ msgstr "Amplada de la Vora d'Adherència automàtica" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Si activeu aquesta opció, es calcularà automàticament l'amplada de la Vora " "d'Adherència per al suport en arbre" @@ -14844,7 +14852,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Amplada de la Vora d'Adherència del suport en arbre" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" "Distància de la branca de l'arbre a la línia de la Vora d'Adherència més " "externa" @@ -14893,7 +14901,7 @@ msgstr "Suport en arbre amb farciment" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Aquest paràmetre especifica si s'ha d'afegir farciment dins de grans buits " "de suport en arbre" @@ -14907,7 +14915,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14918,7 +14926,7 @@ msgstr "" "\"machine_start_gcode\"\n" " que estableix la temperatura de la cambra i espera fins que s'assoleix. A " "més, emet una ordre M141 al final de la impressió per apagar l'escalfador de " -"la cambra, si n'hi ha. \n" +"la cambra, si n'hi ha.\n" "\n" "Aquesta opció es basa en el microprogramari que admet les ordres M191 i " "M141, ja sigui mitjançant macros o de manera nativa i s'utilitza normalment " @@ -14932,13 +14940,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -14950,7 +14958,7 @@ msgstr "" "temperatura de la cambra més alta pot ajudar a suprimir o reduir la " "deformació i, potencialment, conduir a una major força d'unió entre capes. " "Tanmateix, al mateix temps, una temperatura més alta de la cambra reduirà " -"l'eficiència de la filtració d'aire per a ABS i ASA. \n" +"l'eficiència de la filtració d'aire per a ABS i ASA.\n" "\n" "Per a PLA, PETG, TPU, PVA i altres materials de baixa temperatura, aquesta " "opció s'hauria de desactivar (establir a 0) ja que la temperatura de la " @@ -14966,7 +14974,7 @@ msgstr "" "calor a la macro d'inici d'impressió si no hi ha instal·lat un escalfador de " "cambra actiu." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Temperatura del broquet per les capes després de l'inicial" msgid "Detect thin wall" @@ -14974,21 +14982,21 @@ msgstr "Detectar perímetres prims" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Detecta un perímetre prim que no pugui contenir dues línies d'amplada. I " "utilitzar una sola línia per imprimir. Potser no s'imprimeix gaire bé, " "perquè no és de bucle tancat" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Aquest Codi-G s'insereix quan canvia el filament, inclosa la comanda T per " -"activar el canvi d'eina" +"activar el canvi d'eina." -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "Aquest Codi-G s'insereix quan es canvia el rol d'extrusió" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "Aquest Codi-G s'insereix quan es canvia el rol d'extrusió." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -14997,7 +15005,7 @@ msgstr "" "Amplada de línia per a les superfícies superiors. Si s'expressa en %, es " "calcularà sobre el diàmetre del broquet." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Velocitat del farciment de la superfície superior que és sòlida" msgid "Top shell layers" @@ -15006,7 +15014,7 @@ msgstr "Capes sòlides de la carcassa superior" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Aquest és el nombre de capes sòlides de la carcassa superior, inclosa la " "capa superficial superior. Quan el gruix calculat per aquest valor sigui més " @@ -15024,7 +15032,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "El nombre de capes sòlides superiors augmenta quan es tallen si el gruix " "calculat per les capes de closca superior és més prim que aquest valor. Això " @@ -15033,15 +15041,16 @@ msgstr "" "carcassa superior està absolutament determinat per les capes de la carcassa " "superior" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Velocitat de desplaçament més ràpida i sense extrusió" msgid "Wipe while retracting" msgstr "Netejar durant retracció" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Moure el broquet al llarg de l'última trajectòria d'extrusió en les " "retraccions per netejar el material que vessi del broquet. Això pot " @@ -15052,21 +15061,21 @@ msgstr "Distància de Neteja" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Descriu quant de temps es mourà el broquet per l'últim camí quan es " -"retrairà. \n" +"retrairà.\n" "\n" "Depenent de quant duri l'operació de neteja, de la rapidesa i de la durada " "de la configuració de retracció de l'extrusora/filament, pot ser que calgui " -"un moviment de retracció per retraure el filament restant. \n" +"un moviment de retracció per retraure el filament restant.\n" "\n" "L'establiment d'un valor en la quantitat de retractació abans de l'esborrat " "es realitzarà qualsevol retracció en excés abans de la neteja, sinó es " @@ -15101,7 +15110,7 @@ msgid "The volume of material to prime extruder on tower." msgstr "" "El volum de material que l'extrusora ha de descarregar a la Torre de Purga." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Amplada de la Torre de Purga" msgid "Wipe tower rotation angle" @@ -15123,6 +15132,7 @@ msgstr "" msgid "Maximum wipe tower print speed" msgstr "Velocitat màxima d'impressió de la torre de purga" +#, fuzzy msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " "tower sparse layers. When purging, if the sparse infill speed or calculated " @@ -15137,7 +15147,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15207,8 +15217,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Aquest objecte s'utilitzarà per purgar el broquet després d'un canvi de " "filament per estalviar filament i disminuir el temps d'impressió. Com a " @@ -15243,9 +15253,9 @@ msgid "Idle temperature" msgstr "Temperatura d'espera" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Temperatura del broquet quan l'eina no s'utilitza actualment en " "configuracions multieina. Només s'utilitza quan la \"Prevenció de " @@ -15255,10 +15265,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Compensació de forat( contorn intern ) X-Y" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Els forats( contorns interns ) de l'objecte creixeran o es reduiran en el " "pla XY segons el valor configurat. Un valor positiu fa que els forats siguin " @@ -15269,11 +15281,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Compensació del contorn X-Y" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "El contorn( exterior ) de l'objecte creixerà o es reduirà en el pla XY " "segons valor configurat. Un valor positiu fa que el contorn sigui més gran. " @@ -15333,7 +15346,7 @@ msgstr "Format de les miniatures del Codi-G" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Format de les miniatures del Codi-G: PNG per a la millor qualitat, JPG per a " "un menor tamany( pes ), QOI per a firmware de baixa memòria" @@ -15342,10 +15355,10 @@ msgid "Use relative E distances" msgstr "Utilitzar distàncies E relatives" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Es recomana l'extrusió relativa quan s'utilitza l'opció \"label_objects\". " "Algunes extrusores funcionen millor amb aquesta opció sense marcar (mode " @@ -15356,7 +15369,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "El generador de perímetres Clàssic produeix perímetres amb amplada " "d'extrusió constant i per a zones molt primes s'usa el farciment de buits. " @@ -15371,7 +15384,7 @@ msgstr "Longitud de transició de perímetre" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Quan es fa la transició entre diferents números de perímetres a mesura que " "la peça es fa més prima, s'assigna una certa quantitat d'espai per separar o " @@ -15388,7 +15401,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Evita la transició d'anada i tornada entre un perímetre addicional i un de " "menys. Aquest marge amplia el rang d'amplades d'extrusió que segueixen a " @@ -15407,7 +15420,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Quan crear transicions entre nombres parells i senars de perímetres. Una " "forma en falca amb un angle més gran que aquest ajustament no tindrà " @@ -15420,7 +15433,7 @@ msgstr "Recompte de distribució de perímetres" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "El nombre de perímetres, comptats des del centre, sobre els quals cal " "estendre la variació. Els valors més baixos signifiquen que els perímetres " @@ -15429,11 +15442,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Mida mínima de l'element" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Gruix mínim dels elements fins. Els elements del model que siguin més prims " "que aquest valor no s'imprimiran, mentre que les entitats més gruixudes que " @@ -15483,7 +15497,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Amplada del perímetre que substituirà als elements prims ( segons la mida " "mínima de l'element ) del model. Si l'amplada mínima del perímetre és més " @@ -15494,9 +15508,9 @@ msgid "Detect narrow internal solid infill" msgstr "Detectar de farciment sòlid intern estret" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Aquesta opció detectarà automàticament l'àrea d'ompliment sòlid intern " "estreta. Si està activat, s'utilitzarà un patró concèntric per a l'àrea per " @@ -15530,7 +15544,7 @@ msgstr "Exportar les dades de laminació a una carpeta." msgid "Load slicing data" msgstr "Carregar dades de laminació" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Carregar les dades de laminació a la memòria cau des del directori" msgid "Export STL" @@ -15542,7 +15556,7 @@ msgstr "Exportar tots els objectes com a un STL." msgid "Export multiple STLs" msgstr "Exportar diversos STL" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Exportar els objectes com a diversos STL al directori" msgid "Slice" @@ -15565,7 +15579,7 @@ msgstr "comprovació descendent de màquines" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" "comprovar si la màquina actual és compatible de manera descendent amb les " "màquines de la llista" @@ -15573,7 +15587,7 @@ msgstr "" msgid "Load default filaments" msgstr "Carregar filaments per defecte" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Carregar el primer filament per defecte per als que no estan carregats" msgid "Minimum save" @@ -15597,7 +15611,7 @@ msgstr "temps màxim de laminació per placa en segons." msgid "No check" msgstr "No comprovar" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "No executar cap comprovació de validesa, com ara la comprovació de " "conflictes de trajectòria al Codi-G." @@ -15632,17 +15646,17 @@ msgstr "Opcions d'arranjament" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Opcions d'arranjament 0-deshabilitar, 1-habilitar, altres-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Recompte de repeticions" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Recompte de repeticions de tot el model" msgid "Ensure on bed" msgstr "Assegurar a la placa" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Aixeca l'objecte per sobre del llit quan estigui parcialment a sota. " "Desactivat per defecte" @@ -15657,7 +15671,7 @@ msgstr "" msgid "Convert Unit" msgstr "Convertir unitat" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Converteix les unitats del model" msgid "Orient Options" @@ -15675,75 +15689,75 @@ msgstr "Rotar al voltant de l'eix Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Angle de rotació al voltant de l'eix Y en graus." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Escala el model amb un factor flotant" msgid "Load General Settings" msgstr "Carregar la configuració general" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "" "Carregar la configuració del procés/de la màquina des del fitxer especificat" msgid "Load Filament Settings" msgstr "Carregar la configuració del filament" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "" "Carregar la configuració del filament de la llista de fitxers especificada" msgid "Skip Objects" msgstr "Saltar objectes" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Omet alguns objectes en aquesta impressió" msgid "Clone Objects" msgstr "Clonar objectes" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "Clonar objectes a la llista de càrrega" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" "carregar la configuració del procés/la màquina d'actualització en usar " "l'actualització" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "carregar la configuració del procés/màquina d'actualització des del fitxer " "especificat en usar l'actualització" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" "carregar la configuració del filament Uptodate quan s'utilitza UptoDate" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" "carregar la configuració del filament actualitzada des del fitxer " "especificat quan utilitzeu l'actualització" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "si està activat, comproveu si la màquina actual és compatible de manera " "descendent amb les màquines de la llista" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "configuració descendent de les màquines" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" "la llista de paràmetres de la màquina ha de fer una comprovació descendent" msgid "Load assemble list" msgstr "Carregar la llista de muntatge" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" "Carregar la llista d'objectes de muntatge des del fitxer de configuració" @@ -15778,14 +15792,14 @@ msgstr "" msgid "Enable timelapse for print" msgstr "Activa el timelapse per a la impressió" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "Si està habilitat, aquest laminat es considerarà mitjançant timelapse" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Carregar Codi-G personalitzat" -msgid "Load custom gcode from json" -msgstr "Carregar el Codi-G personalitzat des de json" +msgid "Load custom G-code from json." +msgstr "Carregar el Codi-G personalitzat des de json." msgid "Load filament ids" msgstr "Carregar els identificadors del filament" @@ -15793,36 +15807,36 @@ msgstr "Carregar els identificadors del filament" msgid "Load filament ids for each object" msgstr "Carregar els identificadors del filament per a cada objecte" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Permetre diversos materials en una mateixa placa" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "Si està habilitat, l'arranjament permetrà diversos colors en una placa" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Permet girs en fer l'arranjament" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" "Si està habilitat, l'arranjament permetrà rotacions en col·locar l'objecte" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Evitar la regió de calibratge d'extrusió en fer l'arranjament" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Si està habilitat, l'arranjament evitarà la regió de calibratge d'extrusió " "quan col·loqueu l'objecte" -msgid "Skip modified gcodes in 3mf" -msgstr "Omet els gcodes modificats en 3mf" +msgid "Skip modified G-code in 3mf" +msgstr "Omet els codis-g modificats en 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" "Omet els codis-g modificats en 3mf des de la impressora o els presets de " -"filament" +"filament." msgid "MakerLab name" msgstr "Nom MakerLab" @@ -15848,13 +15862,13 @@ msgstr "llista de valors de metadades" msgid "metadata value list added into 3mf" msgstr "llista de valors de metadades afegida a 3MF" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Permet laminar 3mf amb la versió més recent" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Salt-z actual" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Conté el salt-z present al principi del bloc de codi-G personalitzat." msgid "" @@ -15958,10 +15972,10 @@ msgid "Total filament volume extruded per extruder during the entire print." msgstr "" "Volum total de filament extruït per extrusora durant tota la impressió." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Nombre Total de canvis d'eina" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Nombre de canvis d'eina durant la impressió." msgid "Total volume" @@ -16208,7 +16222,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "No s'utilitzarà la compensació de mida XY d'un objecte perquè també està " "pintat en colors.\n" @@ -16234,9 +16248,6 @@ msgstr "" "Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .3mf " "o .zip.amf." -msgid "Canceled" -msgstr "Cancel·lat" - msgid "load_obj: failed to parse" msgstr "load_obj: no s'ha pogut analitzar" @@ -16340,7 +16351,7 @@ msgid "The name cannot be empty." msgstr "El nom no pot estar buit." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "El perfil seleccionat: %s no es troba." msgid "The name cannot be the same as the system preset name." @@ -16373,13 +16384,13 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Aquest tipus de màquina només pot contenir 16 resultats històrics per " "broquet. Podeu suprimir els resultats de l'historial existents i, a " "continuació, iniciar el calibratge. O podeu continuar el calibratge, però no " -"podeu crear nous resultats històrics de calibratge. \n" +"podeu crear nous resultats històrics de calibratge.\n" "Encara vols continuar amb el calibratge?" msgid "Connecting to printer..." @@ -16388,7 +16399,7 @@ msgstr "Connectant amb la impressora..." msgid "The failed test result has been dropped." msgstr "El resultat de la prova fallida ha estat descartat." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "" "El resultat del Calibratge de les Dinàmiques de Flux s'ha desat a la " "impressora" @@ -16417,10 +16428,10 @@ msgstr "Error intern" msgid "Please select at least one filament for calibration" msgstr "Seleccioneu com a mínim un filament per al calibratge" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "El resultat del calibratge del Ratio de Flux s'ha desat al perfil" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "El resultat del calibratge de velocitat volumètrica màxima s'ha desat al " "perfil" @@ -16433,10 +16444,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Hem afegit el calibratge automàtic per a diferents filaments, el qual està " "totalment automatitzat i el resultat es guardarà a la impressora per al seu " @@ -16497,12 +16508,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Després d'utilitzar el Calibratge de Dinàmiques de Flux, és possible que " "encara hi hagi alguns problemes d'extrusió, com ara:\n" @@ -16621,7 +16632,7 @@ msgstr "El nom no pot superar els 40 caràcters." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Només es desarà un dels resultats amb el mateix nom. Estàs segur que vols " "anul·lar els altres resultats?" @@ -16677,9 +16688,6 @@ msgstr "Saltar calibratge2" msgid "flow ratio : %s " msgstr "ratio de flux : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Trieu un bloc amb la superfície superior més llisa" - msgid "Please choose a block with smoothest top surface." msgstr "Trieu un bloc amb la superfície superior més llisa." @@ -16723,7 +16731,7 @@ msgstr "Filament per al Calibratge" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Consells per al material de calibratge: \n" "- Materials que poden compartir la mateixa temperatura de llit\n" @@ -16990,7 +16998,7 @@ msgstr "Longitud de la retracció final: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Enviar el Codi-G al amfitrió( host ) d'impressió" msgid "Upload to Printer Host with the following filename:" @@ -17038,7 +17046,7 @@ msgstr "Cancel·lar selecció" msgid "Show error message" msgstr "Mostra missatge d'error" -msgid "Enqueued" +msgid "Queued" msgstr "A la cua" msgid "Uploading" @@ -17129,14 +17137,14 @@ msgstr "Versió del Sistema:" msgid "DNS Server:" msgstr "Servidor DNS:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "Prova OrcaSlicer (GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "Prova OrcaSlicer (GitHub):" -msgid "Test Bing.com" -msgstr "Prova Bing.com" +msgid "Test bing.com" +msgstr "Prova bing.com" msgid "Test bing.com:" msgstr "Prova bing.com:" @@ -17202,7 +17210,7 @@ msgstr "" "personalitzat." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" o \"Genèric\" no es poden utilitzar com a proveïdor de filaments " "personalitzats." @@ -17227,7 +17235,7 @@ msgstr "" "Totes les entrades de proveïdor personalitzat o de números de sèrie són " "espais. Si us plau, torneu a introduir-los." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "El proveïdor no pot ser un número. Si us plau, torneu a introduir-lo." msgid "" @@ -17238,11 +17246,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"El nom de Filament %s que heu creat ja existeix. \n" +"El nom de Filament %s que heu creat ja existeix.\n" "Si continueu creant-lo, el perfil creat es mostrarà amb el seu nom complet. " "Vols continuar?" @@ -17259,11 +17267,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus " -"Número_de_Sèrie @impressora\". \n" +"Número_de_Sèrie @impressora\".\n" "Per afegir perfils per a més impressores, aneu a la selecció d'impressora" msgid "Create Printer/Nozzle" @@ -17287,7 +17295,7 @@ msgstr "Importar Perfil" msgid "Create Type" msgstr "Crea un Tipus" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "No s'ha trobat el model, torneu a seleccionar el proveïdor." msgid "Select Model" @@ -17332,16 +17340,16 @@ msgstr "" "S'ha produït una excepció obtenint la mida del fitxer, si us plau, torneu a " "importar-lo." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "No es troba la ruta predeterminada, torneu a seleccionar el proveïdor." msgid "The printer model was not found, please reselect." msgstr "No s'ha trobat el model d'impressora, torneu a seleccionar." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "No es troba el diàmetre del broquet, torneu a seleccionar-lo." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "" "No s'ha trobat el valor predefinit de la impressora, torneu a seleccionar-lo." @@ -17411,7 +17419,7 @@ msgstr "" "següent:\n" "\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "El proveïdor no es troba, torneu a seleccionar-ne un." msgid "Current vendor has no models, please reselect." @@ -17446,10 +17454,10 @@ msgid "" msgstr "" "Encara no heu seleccionat la impressora per substituir el broquet, trieu-la." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Èxit Creant Impressora" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Èxit Crear Filament" msgid "Printer Created" @@ -17478,14 +17486,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" "L'Orca ha detectat que la funció de sincronització de perfils no està " "habilitada, cosa que pot provocar una configuració de filament incorrecta a " -"la pàgina Dispositiu. \n" +"la pàgina Dispositiu.\n" "Feu clic a \"Sincronitzar els perfils d'usuari\" per habilitar la funció de " "sincronització." @@ -17538,18 +17546,18 @@ msgstr "" "creació." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "La Impressora i tots els perfils de filament&processament que pertanyen a la " -"impressora. \n" +"impressora.\n" "Es pot compartir amb altres persones." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Conjunt predefinit de filaments de l'usuari. \n" +"Conjunt predefinit de filaments de l'usuari.\n" "Es pot compartir amb els altres." msgid "" @@ -17614,7 +17622,7 @@ msgstr "" "Nota: Si se suprimeix l'únic perfil sota aquest filament, el filament se " "suprimirà en sortir del diàleg." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "Els perfils heretats per altres perfils no es poden suprimir" msgid "The following presets inherits this preset." @@ -17638,12 +17646,12 @@ msgid "Delete Filament" msgstr "Suprimeix el Filament" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Se suprimirien tots els perfils de filament que pertanyen a aquest " -"filament. \n" +"filament.\n" "Si esteu utilitzant aquest filament a la impressora, restabliu la informació " "del filament per a aquesta ranura." @@ -17776,16 +17784,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Tipus d'amfitrió( host ) d'impressió no coincident: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "La connexió a Astrobox funciona correctament." msgid "Could not connect to AstroBox" msgstr "No s'ha pogut connectar a AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Nota: Es requereix com a mínim la versió d'AstroBox 1.1.0." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "La connexió amb Duet funciona correctament." msgid "Could not connect to Duet" @@ -17803,7 +17811,7 @@ msgstr "No s'han pogut obtenir recursos per crear una connexió nova" msgid "Upload not enabled on FlashAir card." msgstr "Pujada no activada a targeta FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" "La connexió a FlashAir funciona correctament i la pujada està habilitada." @@ -17817,28 +17825,28 @@ msgstr "" "Nota: Requereix FlashAir amb firmware 2.00.02 o posterior i la funció de " "pujada activada." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "La connexió amb MKS funciona correctament." msgid "Could not connect to MKS" msgstr "No s'ha pogut connectar amb MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "La connexió amb OctoPrint funciona correctament." msgid "Could not connect to OctoPrint" msgstr "No s'ha pogut connectar a OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Nota: Es requereix com a mínim la versió d'OctoPrint 1.1.0." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "La connexió a Prusa SL1 / SL1S funciona correctament." msgid "Could not connect to Prusa SLA" msgstr "No s'ha pogut connectar amb Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "La connexió amb PrusaLink funciona correctament." msgid "Could not connect to PrusaLink" @@ -17862,19 +17870,19 @@ msgstr "%1% : no hi ha espai lliure" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "La pujada ha fallat. No s'ha trobat cap emmagatzematge adequat a %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "La connexió a Prusa Connect funciona correctament." msgid "Could not connect to Prusa Connect" msgstr "No s'ha pogut connectar a Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "La connexió amb Repetier funciona correctament." msgid "Could not connect to Repetier" msgstr "No s'ha pogut connectar amb Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Nota: Cal la versió 0.90.0 de Repetier com a mínim." #, boost-format @@ -17906,8 +17914,8 @@ msgstr "" "Error: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Té una alçada de capa petita i produeix línies de capa gairebé " "insignificants i una alta qualitat d'impressió. És adequat per a la majoria " @@ -17915,8 +17923,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té " "velocitats i acceleracions més baixes, i el patró de farciment poc dens és " @@ -17925,8 +17933,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " "alçada de capa lleugerament més gran i resulta en línies de capa gairebé " @@ -17934,8 +17942,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " "alçada de capa més gran i resulta en línies de capa lleugerament visibles, " @@ -17943,8 +17950,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " "alçada de capa més petita i resulta en línies de capes gairebé invisibles i " @@ -17953,8 +17960,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té línies " "de capa més petites, velocitats i acceleracions més baixes, i el patró de " @@ -17963,9 +17970,9 @@ msgstr "" "d'impressió molt més llarg." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té una " "alçada de capa més petita i produeix línies de capa mínimes i una qualitat " @@ -17974,8 +17981,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,2 mm, té línies " "de capa més petites, velocitats i acceleracions més baixes, i el patró de " @@ -17984,8 +17991,8 @@ msgstr "" "llarg." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Té una alçada general de capa, i produeix línies de capa i qualitat " "d'impressió generals. És adequat per a la majoria dels casos d'impressió " @@ -17993,8 +18000,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té més " "bucles de paret i una densitat de farciment més gran. Això es tradueix en " @@ -18003,8 +18010,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més gran i produeix línies de capa més aparents i una " @@ -18013,8 +18020,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més gran i produeix línies de capa més aparents i una " @@ -18022,8 +18029,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més petita i produeix línies de capa menys aparents i una " @@ -18032,8 +18039,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més petita, velocitats i acceleració més baixes, i el patró " @@ -18043,8 +18050,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més petita i produeix línies de capa gairebé insignificants i " @@ -18053,8 +18060,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més petita, velocitats i acceleració més baixes, i el patró " @@ -18064,24 +18071,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,4 mm, té una " "alçada de capa més petita i produeix línies de capa gairebé insignificants i " "un temps d'impressió més llarg." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Té una gran alçada de capa i produeix línies de capa aparents i qualitat " "d'impressió i temps d'impressió ordinaris." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,6 mm, té més " "bucles de paret i una densitat de farciment més gran. Per tant, es tradueix " @@ -18090,8 +18096,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " "alçada de capa més gran i produeix línies de capa més aparents i una " @@ -18100,8 +18106,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " "alçada de capa més gran i produeix línies de capa molt més aparents i una " @@ -18110,8 +18116,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " "alçada de capa més petita i produeix línies de capa menys aparents i una " @@ -18119,24 +18125,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,6 mm, té una " "alçada de capa més petita i produeix línies de capa menys aparents i una " "qualitat d'impressió més alta, però un temps d'impressió més llarg." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Té una alçada de capa molt gran i produeix línies de capa molt aparents, " "baixa qualitat d'impressió i temps d'impressió general." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " "alçada de capa més gran i produeix línies de capa molt aparents i una " @@ -18145,8 +18151,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " "alçada de capa molt més gran, i produeix línies de capa extremadament " @@ -18155,9 +18161,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " "alçada de capa lleugerament més petita i produeix línies de capa " @@ -18167,8 +18172,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "En comparació amb el perfil predeterminat del broquet de 0,8 mm, té una " "alçada de capa més petita i produeix línies de capa menys però encara " @@ -18198,7 +18203,7 @@ msgstr "" "No s'ha enllaçat el compte de SimplyPrint. Aneu a Opcions de Connexió per " "configurar-lo." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "La connexió amb Flashforge funciona correctament." msgid "Could not connect to Flashforge" @@ -18215,7 +18220,7 @@ msgstr "" "Alguna cosa inesperada ha passat en intentar iniciar sessió, torneu-ho a " "provar." -msgid "User cancelled." +msgid "User canceled." msgstr "Usuari cancel·lat." msgid "Head diameter" @@ -18246,8 +18251,8 @@ msgid "Adjust section view" msgstr "Ajusta la vista en secció" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Advertència: el tipus de Vora d'Adherència no està configurat com a " "\"pintat\", les orelles de la Vora d'Adherència no tindran efecte!" @@ -18344,11 +18349,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Com utilitzar les Dreceres de Teclat\n" "Sabíeu que Orca Slicer ofereix una àmplia gamma de dreceres de teclat i " -"operacions en escenes 3D." +"operacions en escenes 3D?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -18391,7 +18396,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Ordenació Automàtica\n" "Sabies que pots ordenar automàticament tots els objectes del teu projecte?" @@ -18400,7 +18405,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Auto-Orientació\n" "Sabies que pots rotar objectes amb un simple clic a una orientació òptima " @@ -18581,7 +18586,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Vora d'Adherència per a una millor subjecció\n" @@ -18593,7 +18598,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Definir paràmetres per a múltiples objectes\n" "Sabíeu que podeu establir paràmetres de laminació per a tots els objectes " @@ -18610,7 +18615,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Neteja al suport/objectes/farciment\n" @@ -18627,18 +18632,19 @@ msgstr "" "Sabíeu que podeu utilitzar més bucles de perímetre i una densitat de " "farciment més alta per millorar la resistència del model?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Quan cal imprimir amb la porta de la impressora oberta\n" "Sabíeu que obrir la porta de la impressora pot reduir la probabilitat " "d'obstrucció de l'extrusora/broquet en imprimir filaments a baixa " -"temperatura amb una temperatura de cambra més alta. Més informació al " +"temperatura amb una temperatura de cambra més alta? Més informació al " "respecte a la Wiki." #: resources/data/hints.ini: [hint:Avoid warping] @@ -18646,12 +18652,12 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Evitar la deformació( warping )\n" "Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, " "augmentar adequadament la temperatura del llit pot reduir la probabilitat de " -"deformació." +"deformació?" #~ msgid "" #~ "We have added an experimental style \"Tree Slim\" that features smaller " @@ -18807,7 +18813,7 @@ msgstr "" #~ msgid "Lift Z Enforcement" #~ msgstr "Forçar elevació Z" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Salt en Z quan hi ha retracció" #~ msgid "" @@ -18870,13 +18876,13 @@ msgstr "" #~ msgid "Speed of bridge and completely overhang wall" #~ msgstr "Velocitat per a ponts i perímetres completament en voladís" -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Temps per carregar nou filament quan canvia de filament. Només per a " #~ "estadístiques" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Temps per descarregar filament vell en canviar de filament. Només per a " #~ "estadístiques" @@ -18916,8 +18922,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -18988,26 +18994,17 @@ msgstr "" #~ "La mida del fitxer supera el límit de pujada de 100 MB. Si us plau, " #~ "carregueu el vostre fitxer a través del panell." -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - -#~ msgid "V" -#~ msgstr "V" - #, fuzzy #~ msgid "Maximum print speed when purging" #~ msgstr "Màxima velocitat d'impressió en purgar" #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer es basa en BambuStudio de Bambulab, que és de PrusaSlicer de " -#~ "Prusa Research. PrusaSlicer és de Slic3r d'Alessandro Ranellucci i la " +#~ "Prusa Research. PrusaSlicer és de Slic3r d'Alessandro Ranellucci i la " #~ "comunitat RepRap" #~ msgid "Export &Configs" @@ -19040,21 +19037,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Descarregar Filament" -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Placa Base" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - #, fuzzy #~| msgid "Unsaved Changes" #~ msgid "Actions For Unsaved Changes" @@ -19066,7 +19051,7 @@ msgstr "" #~ msgstr "Valor predefinit esquerre" #, fuzzy -#~| msgid "Modified G-codes" +#~| msgid "Modified G-code" #~ msgid "Modified Value" #~ msgstr "Valor modificat" @@ -19090,7 +19075,7 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "You have changed some preset settings. \n" +#~| "You have changed some preset settings.\n" #~| "Would you like to keep these changed settings (new value) after " #~| "switching preset?" #~ msgid "" @@ -19098,7 +19083,7 @@ msgstr "" #~ "Would you like to keep these changed settings(modified value) after " #~ "switching preset?" #~ msgstr "" -#~ "Heu canviat algunes opcions de configuració del perfil. \n" +#~ "Heu canviat algunes opcions de configuració del perfil.\n" #~ "Voleu mantenir aquests paràmetres modificats després de canviar el perfil?" #, fuzzy @@ -19136,7 +19121,7 @@ msgstr "" #~ msgid "" #~ "Green means that AMS humidity is normal, orange represent humidity is " -#~ "high, red represent humidity is too high.(Hygrometer: lower the better.)" +#~ "high, red represent humidity is too high. (Hygrometer: lower the better.)" #~ msgstr "" #~ "El verd significa que la humitat AMS és normal, el taronja representa que " #~ "la humitat és alta, el vermell representa que la humitat és excessiva. " @@ -19144,7 +19129,7 @@ msgstr "" #~ msgid "" #~ "A desiccant status lower than two bars indicates that desiccant may be " -#~ "inactive. Please change the desiccant.(The bars: higher the better.)" +#~ "inactive. Please change the desiccant. (The bars: higher the better.)" #~ msgstr "" #~ "Un estat del dessecant inferior a dues barres indica que el dessecant pot " #~ "estar inactiu. Si us plau, canvieu el dessecant. ( Les barres: com més " @@ -19191,11 +19176,11 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Heu canviat alguns paràmetres del perfil \"%1%\". \n" +#~ "Heu canviat alguns paràmetres del perfil \"%1%\".\n" #~ "Voleu mantenir aquests paràmetres modificats després de canviar el perfil?" #~ msgid " ℃" @@ -19261,10 +19246,7 @@ msgstr "" #~ msgid "Resize" #~ msgstr "Redimensionar" -#~ msgid " " -#~ msgstr " " - -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "La Configuració no es pot carregar." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index 8e0332584f..684613bbda 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Malování podpěr" msgid "Alt + Mouse wheel" @@ -114,7 +114,7 @@ msgstr "Plochou na podložku" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Počet filamentů překračuje maximální počet, který nástroj pro malování " @@ -600,10 +600,10 @@ msgstr "Zobrazit drátěný model" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Nelze použít při náhledu procesu." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operace se ukončuje. Prosíme o chvíli strpení." msgid "Face recognition" @@ -794,7 +794,7 @@ msgid "Change Text Type" msgstr "Změnit typ operace s textem" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Přejmenování stylu(%1%) pro reliéfní text" msgid "Name can't be empty." @@ -1012,8 +1012,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Nelze načíst přesně stejné písmo(\"%1%\"). Aplikace vybrala podobné " "písmo(\"%2%\"). Musíte zadat písmo pro povolení editace textu." @@ -1141,7 +1141,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "Tvar je označen jako neviditelný (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Výplň tvaru (%1%) obsahuje nepodporované: %2%." @@ -1315,7 +1315,7 @@ msgid "Measure" msgstr "Měření" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" msgid "Please select at least one object." @@ -1367,13 +1367,13 @@ msgid "" "feature 2 has been feature 1" msgstr "" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "" -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "" -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "" msgid "Copy to clipboard" @@ -1397,7 +1397,7 @@ msgstr "" msgid "Center coincidence" msgstr "" -msgid "Featue 1" +msgid "Feature 1" msgstr "" msgid "Reverse rotation" @@ -1452,7 +1452,7 @@ msgstr "" "rozpoznány." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer se ukončí z důvodu nedostatku paměti. Může to být chyba. Uvítáme, " @@ -1528,7 +1528,7 @@ msgid "This is the newest version." msgstr "Toto je nejnovější verze." msgid "Info" -msgstr "Info" +msgstr "Informace" msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" @@ -1589,7 +1589,7 @@ msgstr "Otevřít projekt" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Verze Orca Slicer je příliš nízká a je třeba ji aktualizovat na nejnovější " "verze předtím, než ji lze normálně používat" @@ -1798,7 +1798,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1889,16 +1889,16 @@ msgstr "Čištění do podpěr objektů" msgid "Edit in Parameter Table" msgstr "Upravit v tabulce Parametrů" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Převést z palce" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Obnovit na palec" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Převést z mm" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Obnovit do mm" msgid "Assemble" @@ -2157,13 +2157,13 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." msgstr "" "Tato akce způsobí ztrátu informací o řezu.\n" -"Po této akci nelze zaručit konzistenci modelu. \n" +"Po této akci nelze zaručit konzistenci modelu.\n" "\n" "Chcete-li manipulovat s částmi modelu nebo negativními objemy, musíte " "nejprve zneplatnit informace o řezu modelu." @@ -2174,7 +2174,7 @@ msgstr "Smazat všechny spojky" msgid "Deleting the last solid part is not allowed." msgstr "Smazání poslední pevné části není povoleno." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "Cílový objekt obsahuje pouze jednu část a nelze jej rozdělit." msgid "Assembly" @@ -2217,12 +2217,12 @@ msgid "Selection conflicts" msgstr "Konflikty výběru" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "Pokud je první vybraná položka objekt, druhá by měla být také objekt." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Pokud je tato možnost povolena, zobrazí se při spuštění aplikace užitečné " "tipy." @@ -2288,7 +2288,7 @@ msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" "jednu buňku lze zkopírovat pouze do jedné nebo více buněk ve stejném sloupci" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "kopírování více buněk není podporováno" msgid "Outside" @@ -2546,8 +2546,8 @@ msgid "Edit" msgstr "Upravit" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Všechny vybrané objekty jsou na uzamčené desce,\n" "Tyto objekty nelze automaticky uspořádat." @@ -2556,8 +2556,8 @@ msgid "No arrangeable objects are selected." msgstr "Nejsou vybrány žádné aranžovatelné objekty." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Tato podložka je zamčená.\n" "Nemůžeme automaticky uspořádat tuto podložku." @@ -2597,15 +2597,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Všechny vybrané objekty jsou na uzamčené podložce,\n" "Nemůžeme automaticky orientovat tyto objekty." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Tato podložka je zamčená.\n" "Nemůžeme automaticky orientovat tuto podložku." @@ -2659,7 +2659,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Připojení ke cloudové službě se nezdařilo. Zkuste to prosím znovu." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Tiskový soubor nebyl nalezen. Prosím znovu slicovat." msgid "" @@ -2686,7 +2686,7 @@ msgstr "" "Velikost tiskového souboru je příliš velká. Upravte velikost souboru a " "zkuste to znovu." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Tiskový soubor nebyl nalezen. Prosím, slicujte jej znovu a pošlete k tisku." @@ -2726,10 +2726,10 @@ msgstr "Úspěšně odesláno. Automaticky přejde na další stránku za %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Před tiskem přes LAN je třeba vložit SD kartu." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Odesílání souboru gkód přes LAN" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Odesílání souboru gkód na sd kartu" #, c-format, boost-format @@ -2779,10 +2779,10 @@ msgstr "Stahování" msgid "Download failed" msgstr "Stahování se nezdařilo" -msgid "Cancelled" +msgid "Canceled" msgstr "Zrušeno" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Instalace proběhla úspěšně." msgid "Installing" @@ -2850,9 +2850,6 @@ msgstr "Potvrdit" msgid "Close" msgstr "Zavřít" -msgid "Colour" -msgstr "Barva" - msgid "" "Nozzle\n" "Temperature" @@ -3012,13 +3009,13 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Nastavit, který slot AMS by měl být použit pro filament použitý v tiskové " "úloze" @@ -3038,7 +3035,7 @@ msgstr "Nepovolovat AMS" msgid "Print using materials mounted on the back of the case" msgstr "Tisk s použitím materiálů namontovaných na zadní straně pouzdra" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Tisk s filamenty v ams" msgid "Print with filaments mounted on the back of the chassis" @@ -3065,12 +3062,12 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "Pokud v AMS existují dva identické filamenty, bude povolena záloha AMS " -"filamentu. \n" +"filamentu.\n" "(Aktuálně podporuje automatické doplňování spotřebního materiálu stejné " "značky, typu materiálu a barvy)" @@ -3094,7 +3091,7 @@ msgstr "" "Lab. To trvá asi 20 sekund." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" @@ -3110,8 +3107,8 @@ msgstr "Aktualizovat při spuštění" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "AMS automaticky přečte informace o vloženém filamentu při spuštění. Bude to " "trvat asi 1 minutu. Proces čtení bude navíjet cívku filamentu." @@ -3139,8 +3136,8 @@ msgid "AMS filament backup" msgstr "AMS záloha filamentů" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS bude pokračovat na další cívku se stejnými vlastnostmi filamentu " "automaticky, když dojde aktuální filament" @@ -3201,7 +3198,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Uložte projekt a restartujte program." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Zpracovává se G-kód z předchozího souboru..." msgid "Slicing complete" @@ -3285,12 +3282,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "G-code byl exportován do %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Neznámá chyba při exportu G-kódu." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3466,7 +3463,7 @@ msgstr "" msgid "Select Printers" msgstr "" -msgid "Ams Status" +msgid "AMS Status" msgstr "" msgid "Printing Options" @@ -3488,7 +3485,7 @@ msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" @@ -3496,7 +3493,7 @@ msgid "Wait" msgstr "Zaneprázdněn" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" msgid "Send" @@ -3595,8 +3592,8 @@ msgid "Bed Shape" msgstr "Tvar Podložky" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" msgid "" @@ -3618,8 +3615,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Doporučená teplota trysky pro tento typ filamentu je [%d, %d]stupňů Celsia" @@ -3632,9 +3629,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Aktuální teplota komory je vyšší než bezpečná teplota materiálu,může to " "způsobit změkčení materiálu a jeho ucpaní. Maximální bezpečná teplota pro " @@ -3698,7 +3695,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3756,11 +3753,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Ale stroje s I3 strukturou nevytvářejí časosběrná videa." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Změnit tato nastavení automaticky? \n" +"Změnit tato nastavení automaticky?\n" "Ano - Změňte tato nastavení a povolte režim spirála/váza automaticky\n" "Ne - zrušit povolení spirálového režimu" @@ -3771,7 +3768,7 @@ msgid "Heatbed preheating" msgstr "Předehřev vyhřívané podložky" msgid "Sweeping XY mech mode" -msgstr "Sweeping XY mech mode" +msgstr "" msgid "Changing filament" msgstr "Výměna filamentu" @@ -3815,7 +3812,7 @@ msgstr "Tisk byl pozastaven uživatelem" msgid "Pause of front cover falling" msgstr "Pozastavení při pádu předního krytu" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Kalibrace mikro lida" msgid "Calibrating extrusion flow" @@ -3851,7 +3848,7 @@ msgstr "Pozastaveno kvůli chybě v řízení teploty komory" msgid "Cooling chamber" msgstr "Chlazení komory" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Pozastaveno uživatelem vloženým G-kódem" msgid "Motor noise showoff" @@ -3895,7 +3892,7 @@ msgstr "Aktualizace se nezdařila." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "Aktuální teplota komory nebo cílová teplota komory přesahuje 45℃. Aby se " @@ -3903,8 +3900,8 @@ msgstr "" "(PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Do extruderu je načten nízkoteplotní filament (PLA/PETG/TPU). Aby se " @@ -3912,13 +3909,13 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Pokud nastavíte teplotu komory pod 40℃, řízení teploty komory se neaktivuje " "a cílová teplota komory bude automaticky nastavena na 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Nepodařilo se spustit tiskovou úlohu" msgid "" @@ -3932,7 +3929,7 @@ msgstr "Aktuální parametr kalibrace průtoku je neplatný" msgid "Selected diameter and machine diameter do not match" msgstr "Vybraný průměr se neshoduje s průměrem stroje" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Selhalo generování kalibračního G-kódu" msgid "Calibration error" @@ -3945,14 +3942,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "AMS nepodporuje Bambu PET-CF/PA6-CF." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Vlhké PVA se stane pružné a může se zaseknout uvnitř AMS, prosím, pečlivě je " "usušte před použitím." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "Filamenty CF/GF jsou tvrdé a křehké, snadno se mohou zlomit nebo zaseknout v " @@ -3968,7 +3965,7 @@ msgstr "Upravit Vlastní G-code (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "Vestavěné zástupné symboly (dvojklikem na položku přidáte do G-code)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -4027,7 +4024,7 @@ msgid "parameter name" msgstr "název parametru" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s nemůže být procento" #, c-format, boost-format @@ -4117,7 +4114,7 @@ msgstr "Ventilátor: " msgid "Temperature: " msgstr "Teplota: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Načítání G-kódů" msgid "Generating geometry vertex data" @@ -4214,7 +4211,7 @@ msgid "travel" msgstr "Cestování" msgid "Extruder" -msgstr "Extruder" +msgstr "" msgid "Filament change times" msgstr "Doby výměny Filamentu" @@ -4231,10 +4228,7 @@ msgstr "Tisk" msgid "Printer" msgstr "Tiskárna" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4360,8 +4354,11 @@ msgstr "Zarovnat podle osy Y" msgid "Add plate" msgstr "Přidat Podložku" -msgid "Auto orient" -msgstr "Automatická orientace" +msgid "Auto orient all/selected objects" +msgstr "Automatická orientace všechny/vybrané objekty" + +msgid "Auto orient all objects on current plate" +msgstr "Automatická orientace všechny objekty na aktuální desce" msgid "Arrange all objects" msgstr "Uspořádat všechny objekt" @@ -4384,7 +4381,7 @@ msgstr "Vybrat Podložku" msgid "Assembly Return" msgstr "Návrat k sestavení" -msgid "return" +msgid "Return" msgstr "Návrat" msgid "Paint Toolbar" @@ -4413,26 +4410,26 @@ msgstr "Velikost:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -"Byly zjištěny konflikty cest g-kódu na vrstvě %d, z = %.2lf mm. Prosím " +"Byly zjištěny konflikty cest G-kódu na vrstvě %d, z = %.2lf mm. Prosím " "oddělte konfliktní objekty dále od sebe (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Objekt je položen přes hranici podložky." msgid "A G-code path goes beyond the max print height." msgstr "Cesta G-kódu přesahuje maximální výšku tisku." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Cesta G-kódu přesahuje hranici podložky." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Viditelný je pouze objekt, který se právě upravuje." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4512,7 +4509,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Připojit tiskárnu (LAN)" msgid "Please input the printer access code:" @@ -4812,19 +4809,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4836,19 +4833,19 @@ msgstr "" msgid "Show &Labels" msgstr "Zobrazit &Popisky" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Zobrazit popisky objektů ve 3D scéně" msgid "Show &Overhang" msgstr "Zobrazit &Převis" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "Zobrazit zvýraznění převisů objektu ve 3D scéně" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" @@ -5023,13 +5020,13 @@ msgid "Filament Settings" msgstr "Nastavení Filamentu" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Chcete synchronizovat svá osobní data z Bambu Cloud? \n" +"Chcete synchronizovat svá osobní data z Bambu Cloud?\n" "Obsahuje následující informace:\n" "1. Předvolby procesu\n" "2. Předvolby filamentu\n" @@ -5058,7 +5055,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "" -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" msgid "" @@ -5075,7 +5072,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" @@ -5229,8 +5226,8 @@ msgid "Failed to parse model information." msgstr "" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Soubor .gcode.3mf neobsahuje žádná G-kód data. Prosím, slicujte ho pomocí " "Orca Sliceru a exportujte nový soubor .gcode.3mf." @@ -5421,8 +5418,7 @@ msgid "Layer: %d/%d" msgstr "Vrstva: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" msgid "Still unload" @@ -5431,7 +5427,7 @@ msgstr "Stále vysunovat" msgid "Still load" msgstr "Stále zavádět" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Před kalibrací vyberte slot AMS" msgid "" @@ -5480,9 +5476,6 @@ msgstr "Odeslat" msgid "Please click on the star first." msgstr "Prosím, nejprve klikněte na hvězdu." -msgid "InFo" -msgstr "Informace" - msgid "Get oss config failed." msgstr "Získání konfigurace OSS se nezdařilo." @@ -5501,7 +5494,7 @@ msgstr " nahrávání konfigurace se nepodařilo zpracovat\n" msgid " No corresponding storage bucket\n" msgstr " Žádný odpovídající úložný prostor\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " nelze otevřít\n" msgid "" @@ -5527,7 +5520,7 @@ msgid "obtaining instance_id failed\n" msgstr "získání instance_id selhalo\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5541,7 +5534,7 @@ msgstr "chybová zpráva: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5549,7 +5542,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Některé z vašich obrázků se nepodařilo nahrát. Chcete přesměrovat na webovou " "stránku pro hodnocení?" @@ -5559,7 +5552,7 @@ msgstr "Můžete vybrat až 16 obrázků." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Je vyžadován alespoň jeden úspěšný tiskový záznam tohoto tiskového profilu \n" "pro udělení pozitivního hodnocení (4 nebo 5 hvězdiček)." @@ -5604,7 +5597,7 @@ msgid "Newer 3mf version" msgstr "Novější verze 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5712,7 +5705,7 @@ msgstr[2] "%1$d Objektů má barevné malování." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d objekt byl načten jako součást rozříznutého objektu." msgstr[1] "%1$d objekty byly načteny jako součást rozříznutého objektu." msgstr[2] "%1$d objekty byly načteny jako součást rozříznutého objektu." @@ -5738,7 +5731,7 @@ msgstr "Chyba:" msgid "Warning:" msgstr "Varování:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Export úspěšně." msgid "Model file downloaded." @@ -5756,10 +5749,10 @@ msgstr " Klikněte zde pro instalaci." msgid "WARNING:" msgstr "VAROVÁNÍ:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Váš model potřebuje podpěry ! Povolte prosím podpůrný materiál." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Překrytí cesty G-kódu" msgid "Support painting" @@ -6003,7 +5996,7 @@ msgstr "Chcete uložit změny do \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Odpojení proběhlo úspěšné. Zařízení %s(%s) lze nyní bezpečně odebrat z " @@ -6064,8 +6057,8 @@ msgstr "Načíst 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "Verze 3mf %s je novější než verze %s %s, byly nalezeny následující klíče " "nerozpoznaný:" @@ -6087,23 +6080,24 @@ msgstr "V 3mf byly nalezeny neplatné hodnoty:" msgid "Please correct them in the param tabs" msgstr "Opravte je prosím na kartách parametrů" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "3mf má následující úpravy G-kódu v předvolbách filamentu nebo tiskárny:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Potvrďte prosím, že G-kód v těchto předvolbách je bezpečný, aby nedošlo k " @@ -6164,9 +6158,10 @@ msgstr "Byl detekován objekt s více částmi" msgid "The file does not contain any geometry data." msgstr "Soubor neobsahuje žádná geometrická data." +#, fuzzy msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Váš objekt se zdá být příliš velký, chcete jej zmenšit, aby se vešel na " "vyhřívanou podložku automaticky?" @@ -6273,7 +6268,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Režim pouze náhled:\n" "Načtený soubor obsahuje pouze gkód, nelze vstoupit na stránku Příprava" @@ -6308,7 +6303,7 @@ msgstr "připravte soubor 3mf..." msgid "Download failed, unknown file format." msgstr "" -msgid "downloading project ..." +msgid "downloading project..." msgstr "stahuji projekt ..." msgid "Download failed, File size exception." @@ -6346,7 +6341,7 @@ msgstr "Importovat SLA archiv" msgid "The selected file" msgstr "Vybraný soubor" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "neobsahuje platný G-kód." msgid "Error occurs while loading G-code file" @@ -6390,10 +6385,10 @@ msgstr "Najednou lze otevřít pouze jeden soubor s G-kódem." msgid "G-code loading" msgstr "Načítání G-kódu" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Soubory G-kódu a modely nelze načíst společně!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Nelze přidat modely v režimu náhledu!" msgid "All objects will be removed, continue?" @@ -6551,8 +6546,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Plate %d: %s se nedoporučuje používat k tisku filamentu %s(%s). Pokud Přesto " @@ -6703,17 +6698,23 @@ msgstr "" "Pokud je povoleno, použijte volnou kameru. Pokud není povoleno, použijte " "omezenou kameru." +msgid "Swap pan and rotate mouse buttons" +msgstr "Prohodit tlačítka pro posouvání a otáčení myši" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Pokud je tato možnost povolena, prohodí levé a pravé tlačítko myši pro funkce posouvání a otáčení." + msgid "Reverse mouse zoom" -msgstr "" +msgstr "Zvětšení/zmenšení myší v opačném směru" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" +msgstr "Pokud je povoleno, obrací směr přiblížení kolečkem myši." msgid "Show splash screen" msgstr "Zobrazovat úvodní obrazovku" msgid "Show the splash screen during startup." -msgstr "" +msgstr "Zobrazit úvodní obrazovku během spuštění." msgid "Show \"Tip of the day\" notification after start" msgstr "Zobrazovat \"Tip dne\" po spuštění" @@ -6742,7 +6743,7 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" msgid "" @@ -6759,7 +6760,7 @@ msgstr "" msgid "Network" msgstr "Síť" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Automatická synchronizace uživatelských předvoleb (Tiskárna/Filament/Proces)" @@ -6835,7 +6836,7 @@ msgstr "Maximální počet nedávných projektů" msgid "Clear my choice on the unsaved projects." msgstr "Vymazat moje volby pro neuložené projekty." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "" msgid "Auto-Backup" @@ -6951,10 +6952,10 @@ msgstr "tlačítko uložení ladění" msgid "save debug settings" msgstr "uložit nastavení ladění" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Nastavení LADĚNÍ byla úspěšně uložena!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Přepněte cloudové prostředí, přihlaste se prosím znovu!" msgid "System presets" @@ -6969,10 +6970,10 @@ msgstr "Nekompatibilní předvolby" msgid "AMS filaments" msgstr "AMS Filament" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Kliknutím vyberte barvu Filamentu" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Vyberte prosím barvu vlákna" msgid "Add/Remove presets" @@ -6990,7 +6991,7 @@ msgstr "Přidání/Odebrání filamentů" msgid "Add/Remove materials" msgstr "Přidání/Odebrání materiálů" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "" msgid "Create printer" @@ -7062,13 +7063,13 @@ msgstr "Nahrávání 3mf" msgid "Jump to model publish web page" msgstr "Přejít na webovou stránku pro publikování modelu" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "Poznámka: Příprava může trvat několik minut. Buďte prosím trpěliví." msgid "Publish" msgstr "Publikovat" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Publikování bylo zrušeno" msgid "Slicing Plate 1" @@ -7093,7 +7094,7 @@ msgstr "Projekt uvnitř přednastavení" msgid "Name is unavailable." msgstr "Jméno není k dispozici." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Přepsání systémového profilu není povoleno" #, boost-format @@ -7101,11 +7102,13 @@ msgid "Preset \"%1%\" already exists." msgstr "Předvolba \" %1% \" již existuje." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "Předvolba \"%1%\" již existuje a není kompatibilní s aktuální tiskárnou." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Upozorňujeme, že akce uložení nahradí toto přednastavení" msgid "The name cannot be the same as a preset alias name." @@ -7316,7 +7319,7 @@ msgid "Please check the following:" msgstr "Zkontrolujte prosím následující:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7348,7 +7351,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" @@ -7458,7 +7461,7 @@ msgstr "" msgid "Log in printer" msgstr "Přihlaste se k tiskárně" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Chcete se přihlásit k této tiskárně pomocí aktuálního účtu?" msgid "Check the reason" @@ -7471,10 +7474,10 @@ msgid "Terms and Conditions" msgstr "Obchodní podmínky" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Děkujeme za zakoupení zařízení Bambu Lab. Před použitím svého zařízení Bambu " @@ -7504,7 +7507,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7558,14 +7561,14 @@ msgid "Click to reset all settings to the last saved preset." msgstr "Kliknutím obnovíte všechna nastavení na poslední uloženou předvolbu." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Pro hladký průběh časové roviny je vyžadována čistící věž. Mohou být chyby " "na model bez čistící věže. Opravdu chcete hlavní věž deaktivovat?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "Pro hladký časosběr je vyžadována čistící věž. Na model bez hlavní věže. " @@ -7575,18 +7578,18 @@ msgid "Still print by object?" msgstr "" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Změnit tato nastavení automaticky? \n" +"Změnit tato nastavení automaticky?\n" "Ano – tato nastavení změnit automaticky\n" "Ne - tato nastavení za mě neměňte" @@ -7606,10 +7609,10 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "" msgid "Adjust" @@ -7620,16 +7623,16 @@ msgstr "Ignorovat" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" msgid "" @@ -7810,7 +7813,7 @@ msgid "G-code output" msgstr "Výstup G-kódu" msgid "Post-processing Scripts" -msgstr "Post-processing Scripts" +msgstr "" msgid "Notes" msgstr "Poznámky" @@ -7878,34 +7881,34 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" msgstr "Cool Podložka" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Toto je teplota podložky, když je Cool podložka. Hodnota 0 znamená, že " "filament nepodporuje tisk na Cool Podložku" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -msgid "Engineering plate" -msgstr "Engineering podložka" +msgid "Engineering Plate" +msgstr "Engineering Podložka" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Teplota podložky při instalaci Engineering podložky. Hodnota 0 znamená " "filament nepodporuje tisk na Engineering Podložku" @@ -7914,9 +7917,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Smooth PEI Podložka / High Temp Podložka" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Teplota podložky, když je nainstalována Smooth PEI Podložka/High temperature " "Podložka. Hodnota 0 znamená, že filament není podporován pro tisk na Smooth " @@ -7926,8 +7929,8 @@ msgid "Textured PEI Plate" msgstr "Textured PEI Podložka" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Teplota podložky při instalaci Textured PEI Podložky. Hodnota 0 znamená " "filament nepodporuje tisk na Textured PEI Podložku" @@ -7989,13 +7992,13 @@ msgstr "Filament Konec G-kód" msgid "Wipe tower parameters" msgstr "Parametry čistící věže" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Parametry při výměně (Multi Material s jedním extruderem)" msgid "Ramming settings" msgstr "Nastavení rapidní extruze" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Parametry při výměně (Multi Material s více extrudery)" msgid "Dependencies" @@ -8007,7 +8010,7 @@ msgstr "Profilové závislosti" msgid "Printable space" msgstr "Prostor pro tisk" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Neplatná hodnota zadaná pro parametr %1%: %2%" @@ -8030,7 +8033,7 @@ msgstr "" msgid "Accessory" msgstr "Příslušenství" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-kód stroje" msgid "Machine start G-code" @@ -8048,7 +8051,7 @@ msgstr "G-kód Před změnou vrstvy" msgid "Layer change G-code" msgstr "G-kód Změna vrstvy" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "Časosběrný G-kód" msgid "Change filament G-code" @@ -8139,7 +8142,7 @@ msgid "" "presets would be deleted if the printer is deleted." msgstr "" -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" msgid "The following presets inherit this preset." @@ -8160,7 +8163,7 @@ msgstr[1] "Následující předvolby budou také smazány." msgstr[2] "" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" @@ -8364,7 +8367,7 @@ msgstr "K dispozici je nová verze" msgid "Configuration update" msgstr "Aktualizace nastavení" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Je k dispozici nový konfigurační balíček. Chcete jej nainstalovat?" msgid "Description:" @@ -8373,13 +8376,13 @@ msgstr "Popis:" msgid "Configuration incompatible" msgstr "Konfigurace není kompatibilní" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "konfigurační balíček je nekompatibilní s aktuální aplikací." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Konfigurační balíček není kompatibilní s aktuální aplikací.\n" "%s aktualizuje konfigurační balíček, aby umožnil spuštění aplikace" @@ -8388,7 +8391,7 @@ msgstr "" msgid "Exit %s" msgstr "Ukončit %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "konfigurační balíček je nekompatibilní s aktuální aplikací." msgid "Configuration updates" @@ -8441,13 +8444,13 @@ msgid "Map Filament" msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" msgid "Ramming customization" @@ -8556,7 +8559,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" @@ -8624,13 +8627,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Toto automaticky orientuje vybrané objekty nebo všechny objekty. Pokud jsou " "vybrány objekty, pouze zorientuje vybrané. Jinak zorientuje všechny objekty " -"v aktuální desce." +"v aktuálním projektu." + +msgid "Auto orients all objects on the active plate." +msgstr "" msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8740,8 +8746,11 @@ msgstr "Gizmo rotace" msgid "Gizmo cut" msgstr "Gizmo řez" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Umístit plochou na podložku" +msgid "Gizmo place face on bed" +msgstr "Gizmo umístit plochou na podložku" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo booleovská síť" msgid "Gizmo SLA support points" msgstr "Gizmo SLA podpěrné body" @@ -8749,8 +8758,17 @@ msgstr "Gizmo SLA podpěrné body" msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM malování pozice švu" -msgid "Gizmo Text emboss / engrave" -msgstr "Gizmo Text emboss / gravírování" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo text emboss/gravírování" + +msgid "Gizmo measure" +msgstr "Gizmo měření" + +msgid "Gizmo assemble" +msgstr "Gizmo sestavit" + +msgid "Gizmo brim ears" +msgstr "Gizmo uši límce" msgid "Zoom in" msgstr "Přiblížit" @@ -8791,8 +8809,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Nastavit číslo extruderu pro objekty a díly" -msgid "Delete objects, parts, modifiers " -msgstr "Smazat objekty, díly, modifikátory " +msgid "Delete objects, parts, modifiers" +msgstr "Smazat objekty, díly, modifikátory" msgid "Select the object/part and press space to change the name" msgstr "Vyberte objekt/díl a stiskněte mezerník pro změnu názvu" @@ -8821,7 +8839,7 @@ msgstr "Horizontální posuvník - Pohyb aktivním ukazatelem vpravo" msgid "On/Off one layer mode of the vertical slider" msgstr "Zapnou/vypnout režim jedné vrstvy vertikálního posuvníku" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Zapnout/Vypnout okno g-kód" msgid "Move slider 5x faster" @@ -8840,7 +8858,7 @@ msgid "Release Note" msgstr "Poznámka k vydání" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "informace o aktualizaci verze %s:" msgid "Network plug-in update" @@ -8853,7 +8871,7 @@ msgstr "" "Sliceru." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Nový síťový plug-in (%s) k dispozici, chcete jej nainstalovat?" msgid "New version of Orca Slicer" @@ -8871,10 +8889,10 @@ msgstr "" msgid "Resume Printing" msgstr "" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "" msgid "Stop Printing" @@ -8989,10 +9007,10 @@ msgstr "Nejnovější verze" msgid "Updating" msgstr "Probíhá aktualizace" -msgid "Updating failed" +msgid "Update failed" msgstr "Aktualizace se nezdařila" -msgid "Updating successful" +msgid "Update successful" msgstr "Aktualizace úspěšná" msgid "" @@ -9119,7 +9137,7 @@ msgstr "" "Váš tisk je velmi blízko čistícím oblastem. Zajistěte, aby nedošlo ke kolizi." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Nepodařilo se vygenerovat G-kód pro neplatný vlastní G-kód.\n" @@ -9169,7 +9187,7 @@ msgid "Multiple" msgstr "Vícenásobné" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Nepodařilo se vypočítat šířku extruze %1%. Nelze získat hodnotu \"%2%\" " @@ -9304,9 +9322,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " je příliš blízko oblasti vyloučení a dojde ke kolizi.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Nelze tisknout více filamentů, které mají velké teplotní rozdíly společně. " "Jinak může dojít k zablokování nebo poškození extruderu a trysky během tisku" @@ -9399,24 +9417,25 @@ msgstr "" "Čistící Věž není podporována, když je zapnutá výška adaptivní vrstvy. " "Vyžaduje že všechny objekty mají stejnou výšku vrstvy." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Čistící věž vyžaduje, aby jakákoli \"podpěrná mezera\" byla násobkem výšky " "vrstvy" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "Čistící věž vyžaduje, aby všechny objekty měly stejnou výšku vrstvy" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Čistící věž vyžaduje, aby byly všechny objekty vytištěny přes stejné číslo z " "raftových vrstev" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9428,7 +9447,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "Čistící věž je podporována pouze v případě, že všechny objekty mají stejnou " "proměnnou výšku vrstvy" @@ -9480,7 +9499,7 @@ msgstr "" "Vynucené podpěry jsou použity, ale podpěry nejsou povoleny. Povolte prosím " "podpěry." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Výška vrstvy nemůže překročit průměr trysky" msgid "" @@ -9588,8 +9607,8 @@ msgid "Elephant foot compensation" msgstr "Kompenzace rozplácnutí první vrstvy" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "Snižte první vrstvu na podložce, abyste kompenzovali efekt sloní nohy" msgid "Elephant foot compensation layers" @@ -9610,7 +9629,7 @@ msgstr "vrstva(y)" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Toto je výška každé vrstvy. Menší výšky vrstvy dávají větší přesnost, ale " "delší doba tisku" @@ -9618,13 +9637,13 @@ msgstr "" msgid "Printable height" msgstr "Výška pro tisk" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "Maximální tisknutelná výška, která je omezena mechanismem tiskárny" msgid "Preferred orientation" msgstr "" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" @@ -9633,7 +9652,7 @@ msgstr "Názvy přednastavení tiskáren" msgid "Use 3rd-party print host" msgstr "" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" msgid "Hostname, IP or URL" @@ -9656,7 +9675,7 @@ msgid "Device UI" msgstr "Uživatelské rozhraní zařízení" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Uveďte URL uživatelského rozhraní vašeho zařízení, pokud není stejné jako " "print_host" @@ -9671,7 +9690,7 @@ msgstr "" "Orca Slicer může nahrát soubory do tiskového serveru. Toto pole by mělo " "obsahovat klíč API požadovaný pro ověření." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Název tiskárny" msgid "HTTPS CA File" @@ -9704,7 +9723,7 @@ msgstr "" "offline distribučních bodů. Tuto možnost lze povolit pro certifikáty " "podepsané vlastním podpisem v případě, že se připojení nezdaří." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Názvy přednastavení souvisejících s fyzickou tiskárnou" msgid "Authorization Type" @@ -9716,22 +9735,23 @@ msgstr "API klíč" msgid "HTTP digest" msgstr "HTTP digest" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Vyhněte se přejíždění stěn" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Objeďte a vyhněte se přejíždění přes stěny, což může způsobit skvrny na " "povrchu" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Vyhněte se přejíždění stěn - Maximální délka objížďky" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Maximální vzdálenost objížďky pro vyhnutí se přejezdu přes stěny. " "Neobjíždějte, pokud vzdálenost objížďky je větší než tato hodnota. Lze zadat " @@ -9745,8 +9765,8 @@ msgid "Other layers" msgstr "Ostatní vrstvy" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Toto je teplota podložky pro vrstvy kromě první. Hodnota 0 znamená, že " "filament nepodporuje tisk na Cool Podložku" @@ -9755,27 +9775,27 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Toto je teplota Podložky pro vrstvy kromě první. Hodnota 0 znamená, že " "Filament nepodporuje tisk na Engineering Podložku" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Toto je teplota Podložky pro vrstvy kromě první. Hodnota 0 znamená, že " "filament nepodporuje tisk na High Temp Podložku" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Toto je teplota Podložky pro vrstvy kromě první. Hodnota 0 znamená, že " "filament nepodporuje tisk na Textured PEI Podložku" @@ -9787,58 +9807,52 @@ msgid "Initial layer bed temperature" msgstr "Teplota podložky první vrstvy" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Toto je teplota podložky první vrstvy. Hodnota 0 znamená filament " "nepodporuje tisk na Cool Podložku" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Toto je teplota podložky první vrstvy. Hodnota 0 znamená filament " "nepodporuje tisk na Engineering Podložku" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Toto je teplota podložky první vrstvy. Hodnota 0 znamená filament " "nepodporuje tisk na High Temp Podložku" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Toto je teplota podložky první vrstvy. Hodnota 0 znamená filament " "nepodporuje tisk na Textured PEI Podložku" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Typy podložek podporované tiskárnou" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "Engineering Podložka" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" -msgstr "" - msgid "First layer print sequence" msgstr "Sekvence tisku první vrstvy" @@ -9851,7 +9865,7 @@ msgstr "" msgid "Other layers filament sequence" msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Tento G-kód se vkládá při každé změně vrstvy před zvednutím z" msgid "Bottom shell layers" @@ -9860,7 +9874,7 @@ msgstr "Spodní vrstvy skořepiny" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Toto je počet pevných vrstev spodní skořepiny, včetně spodní povrchové " "vrstvy. Když je tloušťka vypočítaná touto hodnotou tenčí než tloušťka spodní " @@ -9874,7 +9888,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Počet spodních pevných vrstev se při krájení zvýší, pokud je tloušťka " "vypočítaná podle spodních vrstev skořepiny tenčí než tato hodnota. Tím se " @@ -9895,22 +9909,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -10003,9 +10017,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10016,8 +10030,8 @@ msgid "Bridge flow ratio" msgstr "Průtok mostu" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10041,7 +10055,7 @@ msgstr "Poměr průtoku horní vrstvy" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10051,7 +10065,7 @@ msgid "Bottom surface flow ratio" msgstr "Poměr průtoku spodní vrstvy" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10071,8 +10085,8 @@ msgid "Only one wall on top surfaces" msgstr "Pouze jedna stěna na horních plochách" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Používejte pouze jednu stěnu na rovném horním povrchu, abyste získali více " "prostoru pro horní vzor výplně" @@ -10105,7 +10119,7 @@ msgstr "Pouze jedna stěna v první vrstvě" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Používejte pouze jednu stěnu na první vrstvě, abyste získali více prostoru " "pro spodní výplňový vzor" @@ -10139,7 +10153,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10159,9 +10173,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -10188,13 +10202,13 @@ msgstr "" msgid "Classic mode" msgstr "Klasický režim" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Povolte tuto možnost pro použití klasického režimu" msgid "Slow down for overhang" msgstr "Zpomalení u převisů" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "Povolte tuto volbu pro zpomalení tisku pro různé stupně převisů" msgid "Slow down for curled perimeters" @@ -10203,11 +10217,11 @@ msgstr "Zpomalení pro zakroucené obvody" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10228,7 +10242,7 @@ msgid "External" msgstr "Vnější" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10247,7 +10261,7 @@ msgstr "" msgid "Brim width" msgstr "Šířka límce" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Vzdálenost od modelu k nejvzdálenějšímu okraji límce" msgid "Brim type" @@ -10268,7 +10282,7 @@ msgstr "Mezera mezi Límcem a Objektem" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Mezera mezi nejvnitřnějším límcem a předmětem může usnadnit odstranění límce" @@ -10282,8 +10296,8 @@ msgid "Brim ear max angle" msgstr "Maximální úhel uší límce" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Maximální úhel, při kterém se můžou objevit uši límce.\n" @@ -10296,7 +10310,7 @@ msgstr "Poloměr detekce uší límce" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "Geometrie bude zredukována před detekcí ostrých úhlů. Tento parametr udává " "minimální délku odchylky pro redukci.\n" @@ -10335,7 +10349,7 @@ msgstr "" "Pokud je tento logický výraz pravdivý, potom je tento profil považován za " "kompatibilní s aktivním profilem tiskárny." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Tisková sekvence, vrstva po vrstvě nebo objekt po objektu" msgid "By layer" @@ -10347,7 +10361,7 @@ msgstr "Podle objektu" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" @@ -10360,7 +10374,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Povolením této možnosti zpomalíte rychlost tisku, aby se zkrátila doba " "poslední vrstvy ne kratší než časová hranice vrstvy v \"Hranice max " @@ -10372,19 +10386,19 @@ msgstr "Normální tisk" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "Výchozí zrychlení normálního tisku i pohybu kromě počáteční vrstvy" msgid "Default filament profile" msgstr "Výchozí profil filamentu" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Výchozí profil filamentu při přepnutí na tento profil stroje" msgid "Default process profile" msgstr "Výchozí profil procesu" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Výchozí profil procesu při přepnutí na tento profil stroje" msgid "Activate air filtration" @@ -10397,21 +10411,21 @@ msgid "Fan speed" msgstr "Rychlost ventilátoru" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Rychlost odsávacího ventilátoru během tisku. Tato rychlost přepíše rychlost " "v g-kódu pro filament" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Rychlost odsávacího ventilátoru po dokončení tisku" msgid "No cooling for the first" msgstr "První bez chlazení" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Zavřete všechny chladicí ventilátory pro první určité vrstvy. Chladicí " "ventilátor první vrstvy býval uzavřen, aby se dosáhlo lepší přilnavosti " @@ -10421,8 +10435,8 @@ msgid "Don't support bridges" msgstr "Nevytvářet podpěry pod mosty" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Nepodpírejte celou oblast mostu, díky čemuž je podpěra velmi velká. Most " "obvykle může tisknout přímo bez podpěry, pokud není příliš dlouhý" @@ -10468,20 +10482,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10504,31 +10518,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10555,18 +10563,18 @@ msgstr "" msgid "End G-code" msgstr "Konec G-kódu" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Konec G-kód po dokončení celého tisku" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Konec G-kód po dokončení tisku tohoto filamentu" msgid "Ensure vertical shell thickness" @@ -10592,7 +10600,7 @@ msgstr "" msgid "Top surface pattern" msgstr "Vzor horního povrchu" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Čárový vzor výplně horní plochy" msgid "Concentric" @@ -10622,7 +10630,7 @@ msgstr "Oktagramová spirála" msgid "Bottom surface pattern" msgstr "Vzor spodního povrchu" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Čárový vzor výplně spodní plochy, nikoli výplně mostů" msgid "Internal solid infill pattern" @@ -10667,7 +10675,7 @@ msgid "Small perimeters threshold" msgstr "Hranice malého perimetru" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Toto nastavuje hraniční hodnotu pro malou délku obvodu. Výchozí hranice je 0 " "mm" @@ -10676,7 +10684,7 @@ msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10690,7 +10698,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10823,7 +10831,7 @@ msgstr "" msgid "Extruder Color" msgstr "Barva extruderu" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Používá se pouze jako vizuální nápověda v uživatelském rozhraní" msgid "Extruder offset" @@ -10833,11 +10841,11 @@ msgid "Flow ratio" msgstr "Poměr průtoku" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Materiál může mít objemovou změnu po přepnutí mezi roztaveným a krystalickým " "stavem. Toto nastavení proporcionálně změní veškerý vytlačovací tok tohoto " @@ -10846,11 +10854,11 @@ msgstr "" "k mírnému přetečení nebo podtečení" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -10866,7 +10874,7 @@ msgstr "" "Povolte předstih tlaku, po povolení bude výsledek automatické kalibrace " "přepsán." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "Předstih tlaku (Klipper) AKA Lineární faktor předstihu (Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -10913,19 +10921,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10942,9 +10949,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10961,8 +10968,9 @@ msgid "Keep fan always on" msgstr "Ventilátor vždy zapnutý" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Pokud povolíte toto nastavení, ventilátor chlazení součástí se nikdy " "nezastaví a poběží alespoň na minimální rychlost, aby se snížila frekvence " @@ -10975,13 +10983,11 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" @@ -10990,7 +10996,7 @@ msgstr "Čas vrstvy" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Ventilátor chlazení části bude povolen pro vrstvy, jejichž odhadovaná doba " "je kratší než tato hodnota. Rychlost ventilátoru je interpolována mezi " @@ -11021,7 +11027,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Toto nastavení znamená, kolik objemu filamentu lze roztavit a extrudováno za " "sekundu. Rychlost tisku je omezena maximální objemovou rychlostí, v případ " @@ -11036,7 +11042,7 @@ msgstr "Doba zavádění filamentu" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -11045,7 +11051,7 @@ msgstr "Doba vysouvání filamentu" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -11054,12 +11060,12 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Průměr filamentu se používá k výpočtu extruze v gkódu, takže je důležitý a " "měl by být přesný" @@ -11120,7 +11126,7 @@ msgid "Unloading speed" msgstr "Rychlost vysunutí" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Rychlost vysouvání filamentu při výměně na čistící věži (úvodní část " @@ -11139,8 +11145,8 @@ msgid "Delay after unloading" msgstr "Zpoždění po vyjmutí" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Doba čekání po vysunutí filamentu. Může pomoci ke spolehlivé změně extruderu " @@ -11167,7 +11173,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Vzdálenost vtlačení měřená od středu chladicí trubičky" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11220,7 +11226,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Provedení rapidní extruze při použití tiskárny s více nástroji (tj. když " "není v nastavení tiskárny zaškrtnuto políčko Single Extruder Multimaterial). " @@ -11231,32 +11237,32 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Objem rapidní extruze pro tiskárnu s více nástroji" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Objem, který se má před výměnou nástroje extrudovat." msgid "Multi-tool ramming flow" msgstr "Průtok při rapidní extruzi pro více nástrojů" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Průtok pro rapidní extruzi před výměnou nástroje." msgid "Density" msgstr "Hustota" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Hustota Filamentu. Pouze pro statistiku" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Typ materiálu filamentu" msgid "Soluble material" msgstr "Rozpustný materiál" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Rozpustný materiál se běžně používá k tisku podpěr a kontaktní vrstvy podpěr" @@ -11264,7 +11270,7 @@ msgid "Support material" msgstr "Podpěry" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Materiál podpěr se běžně používá k tisku podpěr a kontaktní vrstvy podpěr" @@ -11273,8 +11279,8 @@ msgstr "Teplota měknutí" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Materiál při této teplotě měkne, takže když je teplota podložky rovna nebo " "vyšší než tato hodnota, vřele doporučujeme otevřít přední dvířka a/nebo " @@ -11283,7 +11289,7 @@ msgstr "" msgid "Price" msgstr "Cena" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Cena Filamentu. Pouze pro statistiku" msgid "money/kg" @@ -11292,7 +11298,7 @@ msgstr "Kč/kg" msgid "Vendor" msgstr "Výrobce" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Výrobce filamentu. Pouze pro zobrazení" msgid "(Undefined)" @@ -11303,7 +11309,7 @@ msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Úhel pro vzor vnitřní výplně, který řídí začátek nebo hlavní směr linky" @@ -11312,7 +11318,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -11327,13 +11333,13 @@ msgstr "Hustota vnitřní výplně" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "Vzor vnitřní výplně" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Vzor linek pro vnitřní výplň" msgid "Grid" @@ -11402,7 +11408,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -11412,7 +11418,7 @@ msgstr "" "krátkým obvodovým perimetrem. Pokud není nalezen žádný takový obvodový " "perimetr kratší než infill_anchor_max, je výplňová čára spojena s obvodovým " "perimetrem pouze na jedné straně a délka odebraného obvodového perimetru je " -"omezena na tento parametr, ale ne dále než anchor_length_max. \n" +"omezena na tento parametr, ale ne dále než anchor_length_max.\n" "Nastavením tohoto parametru na nulu deaktivujete kotvící perimetry připojené " "k jedné výplňové čáře." @@ -11433,7 +11439,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11443,30 +11449,30 @@ msgstr "" "krátkým obvodovým perimetrem. Pokud není nalezen žádný takový obvodový " "perimetr kratší než tento parametr, je výplňová čára spojena s obvodovým " "perimetrem pouze na jedné straně a délka odebraného obvodového perimetru je " -"omezena na infill_anchor, ale ne delší než tento parametr. \n" +"omezena na infill_anchor, ale ne delší než tento parametr.\n" " Pokud je nastaveno na 0, použije se starý algoritmus pro výplň připojení, " "měl by vytvořit stejný výsledek jako s 1000 & 0." msgid "0 (Simple connect)" msgstr "0 (Jednoduché spojení)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Zrychlení vnějších stěny" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Zrychlení vnitřních stěn" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Zrychlení cestovních pohybů" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Zrychlení výplně horního povrchu. Použití nižší hodnoty může zlepšit kvalitu " "povrchu" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "Zrychlení vnější stěny. Použití nižší hodnoty může zlepšit kvalitu" msgid "" @@ -11496,7 +11502,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Zrychlení počáteční vrstvy. Použití nižší hodnoty může zlepšit lepidlo na " "vytvoření desky" @@ -11504,7 +11510,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Povolit accel_to_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Klipper max_accel_to_decel bude upraven automaticky" msgid "accel_to_decel" @@ -11512,25 +11518,25 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "Klipper max_accel_to_decel bude upraven na toto %% o zrychlení" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk-Ryv na vnější stěny" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk-Ryv na vnitřní stěny" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Jerk-Ryv pro horní plochy" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Jerk-Ryv pro výplně" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Jerk-Ryv pro první vrstvu" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Jerk-Ryv pro cestování" msgid "" @@ -11545,24 +11551,24 @@ msgstr "Výška první vrstvy" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Výška první vrstvy. Mírně tlustá první vrstva může zlepšit přilnavost k " "podložce" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Rychlost první vrstvy kromě plné výplně" msgid "Initial layer infill" msgstr "Výplň první vrstvy" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Rychlost plné výplně v první vrstvě" msgid "Initial layer travel speed" msgstr "Rychlost pohybu první vrstvy" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Cestovní rychlost počáteční vrstvy" msgid "Number of slow layers" @@ -11578,7 +11584,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Teplota trysky první vrstvy" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "Teplota trysky pro tisk první vrstvy při použití tohoto filamentu" msgid "Full fan speed at layer" @@ -11605,7 +11611,7 @@ msgstr "Rychlost ventilátoru kontaktních vrstev podpěr" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11626,7 +11632,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Náhodné chvění při tisku na stěnu, takže povrch má hrubý vzhled. Toto " "nastavení řídí neostrou polohu" @@ -11645,7 +11651,7 @@ msgstr "Tloušťka členitého povrchu" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Šířka, ve které se má chvět. Je nepřípustné, aby byla pod šířkou extruze " "vnější stěny" @@ -11655,21 +11661,21 @@ msgstr "Vzdálenosti bodů členitého povrchu" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Průměrná vzdálenost mezi náhodnými body zavedenými na každém segmentu linky" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11732,7 +11738,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Rychlost vyplňování mezery. Mezera má obvykle nepravidelnou šířku extruze a " "měla by být vytištěna pomaleji" @@ -11751,7 +11757,7 @@ msgstr "Přizpůsobení oblouku" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11763,7 +11769,8 @@ msgstr "" msgid "Add line number" msgstr "Přidat číslo řádku" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Povolte toto, chcete-li přidat číslo řádku (Nx) na začátek každého řádku G-" "kódu" @@ -11773,7 +11780,7 @@ msgstr "Skenovat první vrstvu" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Povolením této možnosti umožníte Kameře na tiskárně kontrolovat kvalitu " "první vrstvy" @@ -11783,7 +11790,7 @@ msgstr "Typ trysky" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Kovový materiál trysky. To určuje odolnost trysky proti otěru a jaký druh " "filamentu lze tisknout" @@ -11815,7 +11822,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Struktura tiskárny" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Fyzické uspořádání a komponenty tiskového zařízení" msgid "CoreXY" @@ -11850,10 +11857,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Spustit ventilátor po tuto dobu v sekundách před cílovým časem spuštění " @@ -11892,7 +11899,7 @@ msgstr "" msgid "Time cost" msgstr "Náklady na čas" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Náklady tiskárny za hodinu" msgid "money/h" @@ -11921,7 +11928,7 @@ msgstr "" msgid "G-code flavor" msgstr "Druh G-kódu" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "S jakým typem gkódu je tiskárna kompatibilní" msgid "Klipper" @@ -11930,20 +11937,20 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "Označování objektů" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11956,7 +11963,7 @@ msgstr "" msgid "Exclude objects" msgstr "Vynechat objekty" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "Povolit tuto možnost pro přidání příkazu VYNECHAT OBJEKT do g-kódu" msgid "Verbose G-code" @@ -11985,7 +11992,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12027,16 +12034,16 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Rychlost vnitřní výplně" msgid "Inherits profile" msgstr "Zdědí profil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" @@ -12045,7 +12052,7 @@ msgstr "Mezilehlé stěny" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Vynucení vytváření pevných skořepin mezi sousedními materiály/objemy. " "Užitečné pro tisk s více extrudery s průsvitnými materiály nebo ručně " @@ -12063,7 +12070,7 @@ msgstr "Hloubka propojení segmentované oblasti" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Hloubka propojení segmentované oblasti. Bude ignorována, pokud je " @@ -12151,7 +12158,7 @@ msgstr "Všechny pevné vrstvy" msgid "Ironing Pattern" msgstr "Vzor Žehlení" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Vzor, který bude použit při žehlení" msgid "Ironing flow" @@ -12159,7 +12166,7 @@ msgstr "Průtok žehlení" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Množství materiálu, které se má vytlačit během žehlení. V poměru k průtoku " "normální výšky vrstvy. Příliš vysoká hodnota vede k nadměrné extruzi na " @@ -12168,7 +12175,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Řádkování žehlení" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Vzdálenost mezi žehlicími linkami" msgid "Ironing inset" @@ -12176,13 +12183,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "Rychlost žehlení" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Rychlost tisku žehlících linek" msgid "Ironing angle" @@ -12195,7 +12202,7 @@ msgstr "" "Úhel, pod kterým se provádí žehlení. Záporné číslo tuto funkci zakáže a " "použije výchozí metodu." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "Tato část gkódu je vložena při každé změně vrstvy po zvednutí z" msgid "Supports silent mode" @@ -12203,7 +12210,7 @@ msgstr "Podporuje tichý režim" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Zda stroj podporuje tichý režim, ve kterém stroj používá k tisku nižší " "zrychlení" @@ -12216,23 +12223,23 @@ msgstr "Limity stroje" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Tento G-kód bude použit jako kód pro pozastavený tisk. Uživatel může vložit " "pauzu G-kód do prohlížeče gkódu" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Tento G-kód bude použit jako vlastní kód" msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -12344,12 +12351,12 @@ msgstr "Maximální zrychlení pro retrakci (M204 R)" msgid "Maximum acceleration for travel" msgstr "Maximální zrychlení pro cestování" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "Maximální zrychlení pro cestování (M204 T), platí pouze pro Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Rychlost ventilátoru chlazení součásti může být zvýšena, když je povoleno " "automatické chlazení. Toto je omezení maximální rychlosti ventilátoru " @@ -12359,8 +12366,8 @@ msgid "Max" msgstr "Max" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Největší výška tisknutelné vrstvy pro extruder. Používá se k omezení " "maximální výšky vrstvy při povolení adaptivní výšky vrstvy" @@ -12374,23 +12381,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12404,19 +12411,19 @@ msgstr "" "materiálu v mm3/s měnit v čase. Vyšší hodnoty znamenají, že jsou povoleny " "větší změny extruzní rychlosti, což vede k rychlejším přechodům rychlosti.\n" "\n" -"Hodnota 0 funkci zakáže. \n" +"Hodnota 0 funkci zakáže.\n" "\n" "Pro tiskárny s přímým pohonem a vysokou rychlostí a průtokem (např. Bambu " "lab nebo Voron) tato hodnota obvykle není potřebná. Nicméně v některých " "případech, kde se rychlosti funkcí výrazně liší, může poskytnout marginální " "přínos. Například při agresivních zpomaleních způsobených přesahy. V těchto " -"případech se doporučuje vysoká hodnota kolem 300-350 mm3/s2, protože to " +"případech se doporučuje vysoká hodnota kolem 300-350 mm³/s², protože to " "umožňuje dostatečné vyhlazení pro pomoc při dosažení plynulejšího přechodu " "tlaku při extruzi.\n" "\n" "Pro pomalejší tiskárny bez tlakového předstihu by měla být hodnota nastavena " -"mnohem nižší. Pro přímé pohony je hodnota 10-15 mm3/s2 dobrým výchozím " -"bodem, a pro styl Bowden 5-10 mm3/s2. \n" +"mnohem nižší. Pro přímé pohony je hodnota 10-15 mm³/s² dobrým výchozím " +"bodem, a pro styl Bowden 5-10 mm³/s².\n" "\n" "Tato funkce je známa jako Pressure Equalizer v programu Prusa Slicer.\n" "\n" @@ -12430,11 +12437,11 @@ msgstr "Délka úseku pro vyhlazení" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12449,7 +12456,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Minimální rychlost ventilátoru chlazení dílů" msgid "" @@ -12469,8 +12476,8 @@ msgid "Min" msgstr "Min" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Nejnižší výška tisknutelné vrstvy pro extruder. Používá se k omezení " "minimální výšky vrstvy při povolení adaptivní výšky vrstvy" @@ -12510,7 +12517,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Objem trysky" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Objem trysky mezi frézou a koncem trysky" msgid "Cooling tube position" @@ -12555,7 +12562,7 @@ msgstr "Extra délka při zavádění" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Když je hodnota nastavena na nulu, vzdálenost o kterou se filament posune " @@ -12575,7 +12582,7 @@ msgstr "Omezení retrakcí ve výplni" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Omezte retrakce, když je pohyb v oblasti výplně absolutně. To znamená, že " "vytékání není vidět. To může zkrátit dobu retrakcí u složitého modelu a " @@ -12591,7 +12598,7 @@ msgstr "" msgid "Filename format" msgstr "Formát názvu souboru" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "Uživatel může sám definovat název souboru projektu při exportu" msgid "Make overhangs printable" @@ -12617,7 +12624,7 @@ msgstr "Oblast otvoru pro tisk převisu bez podpěr" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Maximální plocha otvoru v základně modelu před tím, než bude vyplněna " "kuželovým materiálem. Hodnota 0 vyplní všechny díry v základně modelu." @@ -12646,10 +12653,10 @@ msgstr "" "Šířka extruze vnitřní stěny. Pokud je vyjádřena jako %, vypočítá se vzhledem " "k průměru trysky." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Rychlost vnitřní stěny" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Počet perimetrů/stěn každé vrstvy" msgid "Alternate extra wall" @@ -12657,10 +12664,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12696,25 +12703,25 @@ msgstr "Varianta tiskárny" msgid "Raft contact Z distance" msgstr "Mezera mezi objektem a raftem v ose Z" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "Mezera Z mezi objektem a raftem. Ignorováno pro rozpustné rozhraní" msgid "Raft expansion" msgstr "Rozšíření raftu" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Rozšířit všechny vrstvy raftu v rovině XY" msgid "Initial layer density" msgstr "Počáteční hustota vrstvy" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Hustota prvního vrstvy raftu nebo podpůrné vrstvy" msgid "Initial layer expansion" msgstr "Rozšíření první vrstvy" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Rozšiřte první raft nebo podpůrnou vrstvu pro zlepšení přilnavosti k podložce" @@ -12723,15 +12730,15 @@ msgstr "Vrstev raftu" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Objekt bude zvednut o tento počet podpůrných vrstev. Tuto funkci použijte, " "abyste se vyhnuli obtékání při tisku ABS" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Cesta G-kódu se generuje po zjednodušení obrysu modelu, aby se předešlo " "příliš velkému počtu bodů a Linek gkódu v souboru gkód. Menší hodnota " @@ -12742,7 +12749,7 @@ msgstr "Hranice cestovní vzdálenosti" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Spusťte retrakci pouze tehdy, když je dráha jízdy delší než tato hraniční " "hodnota" @@ -12751,13 +12758,13 @@ msgid "Retract amount before wipe" msgstr "Délka retrakce před očištěním" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "Délka rychlé retrakce před očištěním, vzhledem k délce retrakce" msgid "Retract when change layer" msgstr "Retrakce při změně vrstvy" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Vynutit retrakci při změně vrstvy" msgid "Retract on top layer" @@ -12765,7 +12772,7 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -12778,12 +12785,12 @@ msgstr "" "Některé množství materiálu v extruderu je staženo zpět, aby se zabránilo " "slizu při dlouhém pohybu. Nastavte nulu, abyste zablokovali retrakce" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -12792,8 +12799,8 @@ msgid "Retraction distance when cut" msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" msgid "Z-hop height" @@ -12802,37 +12809,34 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Kdykoli je retrakce provedena, tryska se trochu zvedne, aby se vytvořila " "mezera mezi tryskou a tiskem. Zabraňuje tomu, aby tryska zasáhla tisk při " "pohybu. Použití spirálové linky ke zvednutí z může zabránit stringování" -msgid "Z hop lower boundary" -msgstr "Dolní mez Z hop" +msgid "Z-hop lower boundary" +msgstr "Dolní mez Z-hop" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"Zvýšení Z bude mít vliv na Z hop pouze tehdy, pokud je hodnota Z nad touto " -"mezí a zároveň podle parametru: \"Horní mez Z hop\"" +"Zvýšení Z bude mít vliv na Z-hop pouze tehdy, pokud je hodnota Z nad touto " +"mezí a zároveň podle parametru: \"Horní mez Z-hop\"" -msgid "Z hop upper boundary" -msgstr "Horní mez Z hop" +msgid "Z-hop upper boundary" +msgstr "Horní mez Z-hop" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"Pokud je tato hodnota kladná, Z hop bude mít vliv pouze tehdy, pokud je " -"hodnota Z nad dolní mezí Z hop a zároveň pod touto hodnotou" +"Pokud je tato hodnota kladná, Z-hop bude mít vliv pouze tehdy, pokud je " +"hodnota Z nad dolní mezí Z-hop a zároveň pod touto hodnotou" msgid "Z-hop type" -msgstr "" - -msgid "Z hop type" -msgstr "Typ Z hop" +msgstr "Typ Z-hop" msgid "Slope" msgstr "Sklon" @@ -12844,8 +12848,8 @@ msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12872,10 +12876,10 @@ msgid "On surfaces" msgstr "Na površích" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" -"Povolit chování Z Hop. Tato volba je ovlivněna výše uvedenými nastaveními " +"Povolit chování Z-Hop. Tato volba je ovlivněna výše uvedenými nastaveními " "(Pouze zvednout Z nad/pod)." msgid "All Surfaces" @@ -12910,15 +12914,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Rychlost Retrakce" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Rychlost Retrakce" msgid "De-retraction Speed" msgstr "Rychlost Deretrakce" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Rychlost pro opětovné vkládání filamentu do extruderu. Nula znamená stejnou " "rychlost jako pro retrakce" @@ -12941,13 +12945,13 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" msgstr "Pozice švu" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Počáteční pozice pro tisk každé části vnější stěny" msgid "Nearest" @@ -13028,7 +13032,7 @@ 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 " +"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 " @@ -13082,7 +13086,7 @@ msgid "Role base wipe speed" msgstr "Rychlost čištění podle role" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -13108,7 +13112,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -13120,9 +13124,9 @@ msgstr "Rychlost čištění" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Rychlost čištění je určena nastavením rychlosti specifikovaným v této " "konfiguraci. Pokud je hodnota vyjádřena v procentech (např. 80%), bude " @@ -13146,7 +13150,7 @@ msgstr "" msgid "Skirt height" msgstr "Výška obrysu" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Kolik vrstev Obrysu. Obvykle pouze jedna vrstva" msgid "Single loop draft shield" @@ -13164,7 +13168,7 @@ msgstr "Ochranný štít" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -13195,7 +13199,7 @@ msgstr "Individuální " msgid "Skirt loops" msgstr "Obrysové smyčky" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Počet smyček pro obrys. Nula znamená deaktivaci obrysu" msgid "Skirt speed" @@ -13212,15 +13216,16 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Rychlost tisku v exportovaném kódu gkód se zpomalí, když je odhadovaná doba " "vrstvy kratší než tato hodnota, aby se dosáhlo lepšího chlazení pro tyto " @@ -13231,7 +13236,7 @@ msgstr "Minimální hranice vnitřní výplně" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Řídká oblast výplně, která je menší než hraniční hodnota, je nahrazena " "vnitřní plnou výplní" @@ -13249,13 +13254,13 @@ msgstr "" "Šířka extruze pro vnitřní výplň. Pokud je vyjádřena jako %, bude vypočtena " "vzhledem k průměru trysky." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "Rychlost vnitřní plné výplně, nikoli horní a spodní plochy" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Spiralize vyhlazuje pohyby z vnějšího obrysu. A přemění pevný model na " "jednostěnný tisk s pevnými spodními vrstvami. Konečný vygenerovaný model " @@ -13266,7 +13271,7 @@ msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" msgid "Max XY Smoothing" @@ -13275,7 +13280,7 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" msgid "Spiral starting flow ratio" @@ -13326,8 +13331,8 @@ msgstr "Kolísání teploty" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -13344,23 +13349,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "Začátek G-kódu" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Start G-kód při spuštění celého tisku" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Start G-kód při zahájení tisku tohoto filamentu" msgid "Single Extruder Multi Material" msgstr "MultiMaterial tisk s jedním extruderem" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Použít jednu trysku pro tisk s více filamenty" msgid "Manual Filament Change" @@ -13381,18 +13386,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Očistit do čistící věže" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Očistěte zbývající filament do čistící věže" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Povolit rapidní extruzi filamentu" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -13462,11 +13467,15 @@ msgstr "Povolit podpěry" msgid "Enable support generation." msgstr "Povolit generování podpěr." +#, fuzzy msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" +"Normální (auto) a Strom (auto) se používají k automatickému generování " +"podpěr. Pokud je vybrána možnost Normální (manual) nebo Strom (manual), " +"budou generovány pouze vynucené podpěry." msgid "Normal (auto)" msgstr "Normální (auto)" @@ -13483,7 +13492,7 @@ msgstr "Strom (manuální)" msgid "Support/object xy distance" msgstr "Podpěry/Objekt xy vzdálenost" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "XY vzdálenost mezi objektem a podpěrami" msgid "Support/object first layer gap" @@ -13501,7 +13510,7 @@ msgstr "Použijte toto nastavení k otočení vzoru podpěr ve vodorovné rovin msgid "On build plate only" msgstr "Pouze na podložce" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Nevytvářejte podpěry na povrchu modelu, pouze na podložce" msgid "Support critical regions only" @@ -13523,13 +13532,13 @@ msgstr "Odstranit malé převisy, které pravděpodobně nepotřebují podpěry. msgid "Top Z distance" msgstr "Vzdálenost horní Z" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "Z Mezera mezi horním kontaktní vrstvou podpěr a objektem" msgid "Bottom Z distance" msgstr "Vzdálenost dolní Z" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "Z Mezera mezi spodní kontaktní vrstvou podpěr a objektem" msgid "Support/raft base" @@ -13537,7 +13546,7 @@ msgstr "Podpěry/raft základna" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament pro tiskové podpěry základen a raftu. \"Výchozí\" znamená, že pro " "podpěry není použit žádný konkrétní filament a je použit aktuální filament" @@ -13570,7 +13579,7 @@ msgstr "Podpěry/raft kontaktní vrstva" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament k tisku kontaktních vrstev podpěr. \"Výchozí\" znamená, že pro " "kontaktní vrstvy podpěr není použit žádný konkrétní filament a je použit " @@ -13579,13 +13588,13 @@ msgstr "" msgid "Top interface layers" msgstr "Vrchní kontaktní vrstvy" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Počet nejvyšších vrstev" msgid "Bottom interface layers" msgstr "Spodní kontaktní vrstvy" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "" msgid "Same as top" @@ -13594,22 +13603,22 @@ msgstr "Stejné jako vrchní" msgid "Top interface spacing" msgstr "Horní rozestup" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "Rozestup linek. Nula znamená pevné rozhraní" msgid "Bottom interface spacing" msgstr "Spodní rozestup" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "Rozestup linek spodního. Nula znamená plné rozhraní" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Rychlost pro kontaktní vrstvy podpěr" msgid "Base pattern" msgstr "Základní vzor" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Čárový vzor podpěry" msgid "Rectilinear grid" @@ -13624,7 +13633,7 @@ msgstr "Vzor kontaktní vrstvy" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Vzor čáry pro kontaktní vrstvy podpěr. Výchozí vzor pro rozhraní nerozpustné " "podpěry je přímočarý, zatímco výchozí vzor pro rozhraní rozpustné podpěry je " @@ -13636,16 +13645,16 @@ msgstr "Přímočarý Prokládaný" msgid "Base pattern spacing" msgstr "Rozestup základního vzoru" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Mezery mezi podpůrnými linkami" msgid "Normal Support expansion" msgstr "Rozšíření normální podpěry" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Rozšířit (+) nebo zmenšit (-) vodorovné rozpětí normální podpěry" -msgid "Speed of support" +msgid "Speed of support." msgstr "Rychlost podpěr" msgid "" @@ -13687,7 +13696,7 @@ msgstr "Výška nezávislé podpůrné vrstvy" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Vrstva podpěry používá nezávislou výšku vrstvy vzhledem k vrstvě objektu. " @@ -13717,8 +13726,8 @@ msgid "Tree support branch angle" msgstr "Úhel větve podpěr stromu" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Toto nastavení určuje maximální úhel převisů, který mohou větve podpěry " @@ -13764,8 +13773,8 @@ msgid "Adaptive layer height" msgstr "Adaptivní výška vrstvy" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Povolení této možnosti znamená, že výška stromové podpůrné vrstvy kromě " "první bude automaticky vypočtena " @@ -13775,7 +13784,7 @@ msgstr "Automatická šířka límce" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Povolení této možnosti znamená, že šířka límce pro podpěry stromu budou " "automaticky vypočítány" @@ -13783,7 +13792,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Šířka Límce podpěr stromů" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "Vzdálenost od větve stromu k nejvzdálenější linii Límce" msgid "Tip Diameter" @@ -13827,7 +13836,7 @@ msgstr "Podpěry stromu s výplní" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Toto nastavení určuje, zda se má přidat výplň do velkých dutin podpěr stromů" @@ -13840,7 +13849,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13855,13 +13864,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13870,7 +13879,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Teplota trysky pro vrstvy po počáteční" msgid "Detect thin wall" @@ -13878,20 +13887,20 @@ msgstr "Detekce tenkých stěn" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Detekujte tenkou stěnu, která nemůže obsahovat dvě šířky extruze. A k tisku " "použijte jednu linku. Možná se to nevytiskne moc dobře, protože to není " "uzavřená smyčka" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Tento gkód se vloží při výměně filamentu, včetně příkazu T ke spuštění " "výměny nástroje" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "Tento G-kód je vložen při změně role extruze" msgid "" @@ -13901,7 +13910,7 @@ msgstr "" "Šířka extruze pro horní plochy. Pokud je vyjádřena jako %, bude vypočtena " "vzhledem k průměru trysky." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Rychlost výplně horních ploch, která je plná" msgid "Top shell layers" @@ -13910,7 +13919,7 @@ msgstr "Vrchní vrstvy skořepiny" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Toto je počet pevných vrstev vrchní skořepiny, včetně vrchní povrchové " "vrstvy. Když je tloušťka vypočtená touto hodnotou tenčí než tloušťka vrchní " @@ -13927,7 +13936,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Počet vrchních pevných vrstev se při krájení zvýší, pokud je tloušťka " "vypočítaná horními vrstvami skořepiny tenčí než tato hodnota. Tím se lze " @@ -13935,15 +13944,16 @@ msgstr "" "toto nastavení je zakázáno a tloušťka vrchní skořepiny je absolutně určován " "vrchními vrstvami pláště" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Rychlost pohybu, která je rychlejší a bez extruze" msgid "Wipe while retracting" msgstr "Očistit při retrakci" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Při retrakci přesuňte trysku podél poslední dráhy extruze, abyste vyčistili " "uniklý materiál na trysce. To může minimalizovat skvrny při tisku nového " @@ -13954,11 +13964,11 @@ msgstr "Vzdálenost čištění" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13991,7 +14001,7 @@ msgstr "Základní objem" msgid "The volume of material to prime extruder on tower." msgstr "Objem materiálu k naplnění extruderu na věži." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Šířka pro čistící věž" msgid "Wipe tower rotation angle" @@ -14027,7 +14037,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -14077,8 +14087,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Tento objekt bude použit k očištění trysky po výměně filamentu, aby se " "ušetřil filament a zkrátila se doba tisku. V důsledku toho budou barvy " @@ -14112,18 +14122,20 @@ msgid "Idle temperature" msgstr "Teplota při nečinnosti" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "X-Y Kompenzace otvoru" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Díry objektu se zvětší nebo zmenší v rovině XY o nakonfigurovanou hodnotu. " "Kladná hodnota zvětší díry. Záporná hodnota díry zmenšuje. Tato funkce se " @@ -14132,11 +14144,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y Kompenzace obrysu" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Kontura objektu se zvětší nebo zmenší v rovině XY o nakonfigurovanou " "hodnotu. Kladná hodnota zvětší obrys. Záporná hodnota zmenší obrys. Tato " @@ -14195,7 +14208,7 @@ msgstr "Formát náhledových obrázků G-kódu" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Formát náhledových obrázků G-kódu: Pro nejlepší kvalitu PNG, pro nejmenší " "velikost JPG, pro firmware s malou pamětí QOI" @@ -14204,16 +14217,16 @@ msgid "Use relative E distances" msgstr "Použít relativní E vzdálenosti" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Klasický generátor stěn produkuje stěny s konstantní extruzní šířkou a pro " "velmi tenké oblasti se používá gap-fill. Arachne engine produkuje stěny s " @@ -14228,7 +14241,7 @@ msgstr "Délka přechodu stěny" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Při přechodu mezi různými počty stěn, jak se díl ztenčuje, je vyhrazeno " "určité množství prostoru pro rozdělení nebo spojení segmentů stěny. " @@ -14244,7 +14257,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Zabránit přechodu mezi jednou dodatečnou stěnou a jednou méně. Tato mez " "rozšiřuje rozsah šířek extruze na [Minimální šířka stěny - mezera, 2 * " @@ -14261,7 +14274,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Kdy vytvořit přechody mezi sudým a lichým počtem stěn. Klínový tvar s úhlem " "větším, než je toto nastavení, nebude mít přechody a do středu se " @@ -14274,7 +14287,7 @@ msgstr "Počet ovlivněných stěn" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Počet stěn, počítáno od středu, přes které je třeba rozložit variaci. Nižší " "hodnoty znamenají, že vnější stěny se nemění na šířku" @@ -14282,11 +14295,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minimální velikost prvku" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Minimální tloušťka tenkých prvků. Prvky modelu, které jsou tenčí než tato " "hodnota, nebudou vytištěny, zatímco prvky tlustší než minimální velikost " @@ -14326,7 +14340,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Šířka stěny, která nahradí tenké prvky (podle Minimální velikosti prvku) " "modelu. Pokud je minimální šířka stěny tenčí než tloušťka prvku, zeď bude " @@ -14337,9 +14351,9 @@ msgid "Detect narrow internal solid infill" msgstr "Detekovat úzkou vnitřní plnou výplň" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Tato možnost automaticky rozpozná úzkou vnitřní plnou výplňovou oblast. Je-" "li povolena, bude pro oblast použit soustředný vzor, aby se urychlil tisk. V " @@ -14372,7 +14386,7 @@ msgstr "Exportovat data Slicování do složky." msgid "Load slicing data" msgstr "Načíst data Slicování" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Načíst data dělení z mezipaměti z adresáře" msgid "Export STL" @@ -14384,7 +14398,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -14407,13 +14421,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "Načíst výchozí filamenty" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Načíst první filament jako výchozí pro ty, které nebyly načteny" msgid "Minimum save" @@ -14437,9 +14451,9 @@ msgstr "max čas slicování na podložku v sekundách." msgid "No check" msgstr "Žádná kontrola" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" -"Neprovádět žádné kontrolní testy, například kontrolu konfliktů cesty g-kódu." +"Neprovádět žádné kontrolní testy, například kontrolu konfliktů cesty G-kódu." msgid "Normative check" msgstr "Normativní kontrola" @@ -14471,17 +14485,17 @@ msgstr "Volby uspořádání" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Volby uspořádání: 0-zakázat, 1-povolit, ostatní-automaticky" -msgid "Repetions count" +msgid "Repetition count" msgstr "Počet opakování" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Počet opakování celého modelu" msgid "Ensure on bed" msgstr "Zajistit na podložce" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Zvedněte objekt nad podložku, když je částečně pod ní. Výchozí stav je " "vypnutý" @@ -14496,7 +14510,7 @@ msgstr "" msgid "Convert Unit" msgstr "Převést jednotku" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Převést jednotky modelu" msgid "Orient Options" @@ -14514,65 +14528,65 @@ msgstr "Rotace kolem osy Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Úhel rotace kolem osy Y v stupních." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Měřítko modelu pomocí plovoucího faktoru" msgid "Load General Settings" msgstr "Načíst obecná nastavení" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Načíst nastavení procesu/stroje ze zadaného souboru" msgid "Load Filament Settings" msgstr "Načíst nastavení filamentu" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Načíst nastavení filamentu ze zadaného seznamu souborů" msgid "Skip Objects" msgstr "Přeskočit objekty" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Přeskočit některé objekty při tisku" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "Načítat aktuální nastavení procesu/stroje při použití aktuálního" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "Načítat aktuální nastavení procesu/stroje ze zadaného souboru při použití " "aktuálního" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14605,13 +14619,13 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Načíst vlastní G-kód" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "Načíst vlastní G-kód z JSON" msgid "Load filament ids" @@ -14620,30 +14634,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14670,13 +14684,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Aktuální z-hop" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Obsahuje z-hop na začátku vlastního bloku G-code." msgid "" @@ -14775,10 +14789,10 @@ msgid "Total filament volume extruded per extruder during the entire print." msgstr "" "Celkový objem filamentu vytlačeného daným extruderem během celého tisku." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Počet výměn nástrojů během tisku." msgid "Total volume" @@ -15006,7 +15020,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Kompenzace velikosti XY objektu nebude použita, protože je také barevně " "natřený.\n" @@ -15031,9 +15045,6 @@ msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" "Neznámý formát souboru. Vstupní soubor musí mít příponu .3mf nebo .zip.amf." -msgid "Canceled" -msgstr "Zrušeno" - msgid "load_obj: failed to parse" msgstr "load_obj: nepodařilo se zpracovat" @@ -15135,7 +15146,7 @@ msgid "The name cannot be empty." msgstr "Název nemůže být prázdný." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "" msgid "The name cannot be the same as the system preset name." @@ -15169,7 +15180,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" @@ -15179,7 +15190,7 @@ msgstr "Připojování k tiskárně..." msgid "The failed test result has been dropped." msgstr "Výsledek neúspěšného testu byl zahozen." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Výsledek kalibrace dynamiky průtoku byl uložen do tiskárny" #, c-format, boost-format @@ -15201,10 +15212,10 @@ msgstr "Interní chyba" msgid "Please select at least one filament for calibration" msgstr "Vyberte prosím alespoň jeden filament pro kalibraci" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "Výsledek kalibrace průtoku byl uložen do předvolby" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Výsledek kalibrace maximální objemové rychlosti byl uložen do předvolby" @@ -15216,10 +15227,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Nyní jsme přidali automatickou kalibraci pro různé filamenty, která je plně " "automatizovaná a výsledek bude uložen do tiskárny pro budoucí použití. " @@ -15259,12 +15270,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Použitím kalibrace průtoku dynamiky se mohou stále objevit některé problémy " "s extruzí, jako například:\n" @@ -15379,7 +15390,7 @@ msgstr "Název nemůže překročit 40 znaků." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" msgid "Please find the best line on your plate" @@ -15431,9 +15442,6 @@ msgstr "Přeskočit kalibraci 2" msgid "flow ratio : %s " msgstr "poměr průtoku: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Vyberte blok s nejhladším horním povrchem" - msgid "Please choose a block with smoothest top surface." msgstr "Vyberte blok s nejhladším horním povrchem." @@ -15477,7 +15485,7 @@ msgstr "Filament pro kalibraci" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Tipy na kalibrační materiál: \n" "- Materiály, které mohou sdílet stejnou teplotu podložky\n" @@ -15739,7 +15747,7 @@ msgstr "Délka retrakce na konci: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Odeslat G-Kód do tiskového serveru" msgid "Upload to Printer Host with the following filename:" @@ -15786,7 +15794,7 @@ msgstr "Zrušit vybrané" msgid "Show error message" msgstr "Zobrazit chybové hlášení" -msgid "Enqueued" +msgid "Queued" msgstr "Ve frontě" msgid "Uploading" @@ -15875,13 +15883,13 @@ msgstr "" msgid "DNS Server:" msgstr "" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "" msgid "Test bing.com:" @@ -15945,7 +15953,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "" msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" msgid "Filament type is not selected, please reselect type." @@ -15962,7 +15970,7 @@ msgstr "" msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "" -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "" msgid "" @@ -15971,7 +15979,7 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -15986,8 +15994,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" @@ -16011,7 +16019,7 @@ msgstr "" msgid "Create Type" msgstr "" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "" msgid "Select Model" @@ -16054,16 +16062,16 @@ msgstr "" msgid "Exception in obtaining file size, please import again." msgstr "" -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" msgid "The printer model was not found, please reselect." msgstr "" -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "" -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "" msgid "Printer Preset" @@ -16116,7 +16124,7 @@ msgstr "" msgid "Create process presets failed. As follows:\n" msgstr "" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "" msgid "Current vendor has no models, please reselect." @@ -16143,10 +16151,10 @@ msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "" msgid "Printer Created" @@ -16170,7 +16178,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" @@ -16219,12 +16227,12 @@ msgid "" msgstr "" msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" @@ -16273,7 +16281,7 @@ msgid "" "be deleted after exiting the dialog." msgstr "" -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" msgid "The following presets inherits this preset." @@ -16298,7 +16306,7 @@ msgid "Delete Filament" msgstr "" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" @@ -16426,16 +16434,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Nesprávný typ tiskového serveru: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "Připojení k AstroBoxu funguje správně." msgid "Could not connect to AstroBox" msgstr "Nelze se připojit k AstroBoxu" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Poznámka: Je vyžadována verze AstroBoxu nejméně 1.1.0." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "Připojení k Duet funguje správně." msgid "Could not connect to Duet" @@ -16453,7 +16461,7 @@ msgstr "Nelze získat prostředky pro vytvoření nového spojení" msgid "Upload not enabled on FlashAir card." msgstr "Na kartě FlashAir není nahrávání povoleno." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "Připojení k FlashAir funguje správně a nahrávání je povoleno." msgid "Could not connect to FlashAir" @@ -16466,28 +16474,28 @@ msgstr "" "Poznámka: Vyžaduje se FlashAir s firmwarem 2.00.02 nebo novějším a " "aktivovanou funkcí nahrávání." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "Připojení k MKS funguje správně." msgid "Could not connect to MKS" msgstr "Nelze se připojit k MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "Připojení k OctoPrint pracuje správně." msgid "Could not connect to OctoPrint" msgstr "Nelze se spojit s OctoPrintem" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Připojení k tiskárně Prusa SL1 /SL1S funguje správně." msgid "Could not connect to Prusa SLA" msgstr "Nelze se připojit k Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "Připojení k PrusaLinku funguje správně." msgid "Could not connect to PrusaLink" @@ -16512,19 +16520,19 @@ msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" "Nahrání se nezdařilo. Na adrese %1% nebylo nalezeno žádné vhodné úložiště." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Připojení k Prusa Connectu funguje správně." msgid "Could not connect to Prusa Connect" msgstr "Nelze se připojit k Prusa Connectu" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Připojení k Repetieru funguje správně." msgid "Could not connect to Repetier" msgstr "Nelze se připojit k Repetieru" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Poznámka: Je vyžadována verze Repetier alespoň 0.90.0." #, boost-format @@ -16556,172 +16564,169 @@ msgstr "" "Chyba: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" msgid "Connected to Obico successfully!" @@ -16745,7 +16750,7 @@ msgstr "" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -16760,7 +16765,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -msgid "User cancelled." +msgid "User canceled." msgstr "" msgid "Head diameter" @@ -16791,18 +16796,18 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" msgstr "" msgid " invalid brim ears" -msgstr "" +msgstr " neplatný uši Límce" msgid "Brim Ears" -msgstr "" +msgstr "Uši Límce" msgid "Please select single object." msgstr "" @@ -16864,7 +16869,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" #: resources/data/hints.ini: [hint:Reverse on odd] @@ -16902,7 +16907,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Automatické uspořádání\n" "Věděli jste, že můžete automaticky uspořádat všechny objekty ve vašem " @@ -16912,7 +16917,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Automatická Orientace\n" "Věděli jste, že můžete pomocí jednoho kliknutí otočit objekty do optimálního " @@ -17082,7 +17087,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Límec pro lepší přilnavost\n" @@ -17093,7 +17098,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Nastavte parametry pro více objektů\n" "Věděli jste, že můžete najednou nastavit parametry pro všechny vybrané " @@ -17110,7 +17115,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Čištit do podpěr/objektů/výplně\n" @@ -17127,21 +17132,26 @@ msgstr "" "Věděli jste, že můžete použít více opakování stěn a vyšší hustotu řídké " "výplně pro zvýšení pevnosti modelu?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" +"Kdy potřebujete tisknout s otevřenými dveřmi tiskárny\n" +"Otevření dveří tiskárny může snížit pravděpodobnost ucpaní extruderu/" +"hotendu při tisku filamentu s nižší teplotou a vyšší teplotě uzavřeného " +"prostoru. Další informace naleznete ve Wiki." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" #~ msgid "" @@ -17164,7 +17174,7 @@ msgstr "" #~ "nebo používání podpůrných materiálů na rozhraní." #~ msgid "" -#~ "When using support material for the support interface, We recommend the " +#~ "When using support material for the support interface, we recommend the " #~ "following settings:\n" #~ "0 top z distance, 0 interface spacing, concentric pattern and disable " #~ "independent support layer height" @@ -17308,31 +17318,22 @@ msgstr "" #~ msgid "" #~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" +#~ "this results in a significantly larger G-code file and more instructions " +#~ "for the printer to process.\n" #~ "\n" #~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" +#~ "stuttering, increase this value to reduce the number of adjustments made.\n" #~ "\n" #~ "Allowed values: 1-5" #~ msgstr "" #~ "Nižší hodnota způsobí hladší přechody rychlosti extruze. To však má za " -#~ "následek výrazně větší soubor G-kódu a více instrukcí pro tiskárnu. \n" +#~ "následek výrazně větší soubor G-kódu a více instrukcí pro tiskárnu.\n" #~ "\n" #~ "Výchozí hodnota 3 dobře funguje ve většině případů. Pokud vaše tiskárna " #~ "má problémy, zkuste zvýšit tuto hodnotu, abyste snížili počet úprav\n" #~ "\n" #~ "Povolené hodnoty: 1-5" -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "Normální(auto) a Strom(auto) se používají k automatickému generování " -#~ "podpěr. Pokud je vybrána možnost Normální(manual) nebo Strom(manual), " -#~ "budou generovány pouze vynucené podpěry" - #~ msgid "Unselect" #~ msgstr "Zrušení výběru" @@ -17340,17 +17341,11 @@ msgstr "" #~ msgid "Scale" #~ msgstr "Měřítko" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "Cool podložka" - #~ msgid "Lift Z Enforcement" #~ msgstr "Vynutit Zvednout Z" -#~ msgid "Z hop when retract" -#~ msgstr "Z hop při retrakci" +#~ msgid "Z-hop when retract" +#~ msgstr "Z-hop při retrakci" #~ msgid "Reverse on odd" #~ msgstr "Obrátit na lichých" @@ -17373,37 +17368,6 @@ msgstr "" #~ "Během tisku podle objektu může extruder narazit na obrys.\n" #~ "Takže resetujte vrstvu obrysu na 1, abyste tomu zabránili." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "Geometrie bude zredukována před detekcí ostrých úhlů. Tento parametr " -#~ "udává minimální délku odchylky pro redukci.\n" -#~ "0 pro deaktivaci" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Spustit ventilátor po tuto dobu v sekundách před cílovým časem spuštění " -#~ "(můžete použít desetinná čísla). Předpokládá se nekonečné zrychlení pro " -#~ "odhad této doby a budou brány v úvahu pouze pohyby G1 a G0 (křivkové " -#~ "tvary nejsou podporovány).\n" -#~ "Nepřesouvá příkazy ventilátoru z vlastních G-kódů (působí jako druh " -#~ "'bariéry').\n" -#~ "Nepřesouvá příkazy ventilátoru do startovacího G-kódu, pokud je " -#~ "aktivována volba 'pouze vlastní startovací G-kódy'.\n" -#~ "Pro deaktivaci použijte hodnotu 0." - #~ msgid "Limited" #~ msgstr "Omezeno" @@ -17411,7 +17375,7 @@ msgstr "" #~ msgstr "Smrštění" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Snižte tuto hodnotu mírně (například 0,9), abyste snížili množství " @@ -17444,13 +17408,13 @@ msgstr "" #~ "Rychlost vnitřního mostu. Pokud je hodnota vyjádřena jako procento, bude " #~ "vypočítána na základě most_speed. Výchozí hodnota je 150 %." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Čas na zavedení nového filamentu při výměně filamentu. Pouze pro " #~ "statistiku" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Čas vytažení starého filamentu při výměně filamentu. Pouze pro statistiku" @@ -17487,8 +17451,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -17567,12 +17531,9 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Prosím, najděte roh s dokonalým stupněm extruze" -#~ msgid "V" -#~ msgstr "V" - #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer je založen na BambuStudio od Bambulab, které je od " @@ -17602,37 +17563,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Vysunout Filament" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Vyberte slot AMS a poté stiskněte \" Načíst \" nebo \" Uvolnit \" pro " -#~ "automatické načtení nebo vyjměte vlákno." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Základní deska" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- ℃" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "active" #~ msgstr "aktivní" @@ -17671,7 +17604,7 @@ msgstr "" #~ "proces. Během této doby indikátor nemusí představovat komoru přesně." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Poznámka: Pokud se během tisku vloží nový filament, AMS nebude " @@ -17688,7 +17621,7 @@ msgstr "" #~ msgstr "Inicializace se nezdařila (žádné kamerové zařízení)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Tiskárna je zaneprázdněna stahováním, počkejte prosím na dokončení " #~ "stahování." @@ -17727,20 +17660,20 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Změnili jste některá nastavení předvolby \"%1%\" . \n" +#~ "Změnili jste některá nastavení předvolby \"%1%\" .\n" #~ "Přejete si po přepnutí zachovat tato změněná nastavení (nová " #~ "hodnota)přednastavení?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Změnili jste některá přednastavená nastavení. \n" +#~ "Změnili jste některá přednastavená nastavení.\n" #~ "Přejete si po přepnutí zachovat tato změněná nastavení (nová " #~ "hodnota)přednastavení?" @@ -17754,9 +17687,6 @@ 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 " " - #~ msgid "Configuration package updated to " #~ msgstr "Konfigurační balíček aktualizován na " @@ -17769,7 +17699,7 @@ msgstr "" #~ "lepší chlazení vrstev, při tisku převisů a pokud rychlosti prvků nejsou " #~ "explicitně určeny." -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "Nelze načíst konfiguraci." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -17777,10 +17707,10 @@ msgstr "" #~ "3mf je generován starým Orca Slicerem, načtěte pouze geometrická data." #~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" +#~ "Relative extrusion is recommended when using \"label_objects\" option. " +#~ "Some extruders work better with this option unchecked (absolute extrusion " +#~ "mode). Wipe tower is only compatible with relative mode. It is always " +#~ "enabled on BambuLab printers. Default is checked." #~ msgstr "" #~ "Při použití volby \"label_objects\" se doporučuje relativní extruzi. " #~ "Některé extrudery fungují lépe, když je tato možnost odškrtnuta (režim " @@ -17815,10 +17745,10 @@ msgstr "" #~ msgstr "spojky jsou mimo objekt" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Neplatný stav. \n" +#~ "Neplatný stav.\n" #~ "Není vybrána žádná část pro zachování po řezu" #~ msgid "Edit Text" @@ -17833,9 +17763,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "Vyberte SLA archiv:" -#~ msgid "Import file" -#~ msgstr "Importovat soubor" - #~ msgid "Import model and profile" #~ msgstr "Importovat model a profil" @@ -17899,13 +17826,13 @@ msgstr "" #~ "Ano - přepnout na přímočarý vzor automaticky\n" #~ "Ne - automaticky resetovat hustotu na výchozí ne 100% hodnotu" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "Před vložením filamentu zahřejte trysku na více než 170 stupňů." -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "Zobrazit okno s G-kódem" -#~ msgid "If enabled, g-code window will be displayed." +#~ msgid "If enabled, G-code window will be displayed." #~ msgstr "Pokud je povoleno, zobrazí se okno s G-kódem." #, fuzzy, c-format @@ -17922,9 +17849,6 @@ msgstr "" #~ msgid " doesn't work at 100%% density " #~ msgstr " nefunguje při 100%% hustotě " -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "Nástroj-Plochou na podložku" @@ -18011,7 +17935,7 @@ msgstr "" #~ msgstr "Úhel rotace kolem osy X v stupních." #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "Vybraná předvolba: %1% nebyla nalezena." #~ msgid "" @@ -18032,26 +17956,15 @@ msgstr "" #~ "Věděli jste, že můžete opravit poškozený 3D model a vyhnout se tak mnoha " #~ "problémům při slicování?" -#~ msgid "" -#~ "When need to print with the printer door opened\n" -#~ "Opening the printer door can reduce the probability of extruder/hotend " -#~ "clogging when printing lower temperature filament with a higher enclosure " -#~ "temperature. More info about this in the Wiki." -#~ msgstr "" -#~ "Kdy potřebujete tisknout s otevřenými dveřmi tiskárny\n" -#~ "Otevření dveří tiskárny může snížit pravděpodobnost ucpaní extruderu/" -#~ "hotendu při tisku filamentu s nižší teplotou a vyšší teplotě uzavřeného " -#~ "prostoru. Další informace naleznete ve Wiki." - #~ msgid "Embedded" #~ msgstr "Vloženo" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "Konfigurační soubor OrcaSlicer může být poškozen a nelze jej " -#~ "analyzovat.Smažte soubor a zkuste to znovu." +#~ "analyzovat. Smažte soubor a zkuste to znovu." #~ msgid "Online Models" #~ msgstr "Online modely" @@ -18064,12 +17977,12 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" #~ "Aktuálně nejsou k dispozici žádné shodné náhradní spotřební materiály a " -#~ "automatické doplnění momentálně není možné. \n" +#~ "automatické doplnění momentálně není možné.\n" #~ "(Aktuálně podporuje automatické dodávky spotřebních materiálů se stejnou " #~ "značkou, typem materiálu a barvou)" @@ -18133,14 +18046,11 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "Kalibrace extruze" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Zasuňte nový filament do extruderu" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "Teplota podložky ostatních vrstev je nižší než teplota podložky první " #~ "vrstvy o více než %d stupňů Celsia.\n" @@ -18186,8 +18096,8 @@ msgstr "" #~ msgstr "High Temp Podložka" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Toto je teplota podložky, když je instalována konstrukční podložka. " #~ "Hodnota 0 znamená, že filament nepodporuje tisk na High Temp Podložku" @@ -18197,9 +18107,9 @@ msgstr "" #~ msgid "" #~ "If enabled, support loops will be generated under the contours of " -#~ "internal bridges.These support loops could prevent internal bridges from " +#~ "internal bridges. These support loops could prevent internal bridges from " #~ "extruding over the air and improve the top surface quality, especially " -#~ "when the sparse infill density is low.This value determines the thickness " +#~ "when the sparse infill density is low. This value determines the thickness " #~ "of the support loops. 0 means disable this feature" #~ msgstr "" #~ "Pokud je povoleno, podpůrné smyčky budou generovány pod obrysy interních " @@ -18208,11 +18118,6 @@ msgstr "" #~ "Tato hodnota určuje tloušťku podpůrných smyček. Hodnota 0 znamená, že " #~ "tato funkce je zakázána." -#, fuzzy, c-format, boost-format -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "Klipper max_accel_to_decel bude upraven na toto % zrychlení" - #~ msgid "" #~ "Style and shape of the support. For normal support, projecting the " #~ "supports into a regular grid will create more stable supports (default), " diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 8b882ca4cb..e9cbfdaab1 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" "X-Generator: Poedit 3.4.2\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Stützen aufmalen" msgid "Alt + Mouse wheel" @@ -104,14 +104,14 @@ msgid "Support Generated" msgstr "Support generiert" msgid "Gizmo-Place on Face" -msgstr "Gizmo auf Fläche platzieren" +msgstr "Gizmo-auf Fläche platzieren" msgid "Lay on face" msgstr "Auf Fläche legen" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Die Anzahl der Filamente übersteigt die maximale Anzahl, die das Malwerkzeug " @@ -209,6 +209,7 @@ msgstr "Gizmo-Skalieren" msgid "Error: Please close all toolbar menus first" msgstr "Fehler: Bitte schließen sie zuerst alle Werkzeugleistenmenüs" +#. inches msgid "in" msgstr "in" @@ -601,10 +602,10 @@ msgstr "Gittermodell anzeigen" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Kann nicht angewendet werden, wenn die Vorschau angezeigt wird." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operation wird bereits abgebrochen. Bitte warten Sie einige Sekunden." msgid "Face recognition" @@ -796,7 +797,7 @@ msgid "Change Text Type" msgstr "Ändere Texttyp" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Umbenennen des Stils (%1%) für geprägten Text" msgid "Name can't be empty." @@ -975,7 +976,7 @@ msgid "Undo boldness" msgstr "Dicke rückgängig machen" msgid "Tiny / Wide glyphs" -msgstr "Tiny / Wide glyphs" +msgstr "Winzige / breite Glyphen" msgid "Undo letter's skew" msgstr "Rückgängig machen der Schriftneigung" @@ -1021,8 +1022,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Kann genau dieselbe Schriftart (\"%1%\") nicht laden. Die Anwendung hat eine " "ähnliche (\"%2%\") ausgewählt. Sie müssen eine Schriftart angeben, um die " @@ -1154,7 +1155,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "Shape ist als unsichtbar markiert (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Füllung der Form (%1%) enthält nicht unterstützte: %2%." @@ -1329,7 +1330,7 @@ msgid "Measure" msgstr "Messen" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Bitte bestätigen Sie das Explosionsverhältnis = 1, und wählen Sie mindestens " "ein Objekt aus" @@ -1389,13 +1390,13 @@ msgstr "" "Feature 1 wurde zurückgesetzt, \n" "Feature 2 wurde zu Feature 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Warnung: Bitte wählen Sie die Funktion der Ebene." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Warnung: Bitte wählen Sie die Funktion des Punktes oder Kreises." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Warnung: Bitte wählen Sie zwei verschiedene Mesh-Netze." msgid "Copy to clipboard" @@ -1414,12 +1415,12 @@ msgid "Distance XYZ" msgstr "Entfernung XYZ" msgid "Parallel" -msgstr "Parallel" +msgstr "Parallele" msgid "Center coincidence" msgstr "Zentrumsgleichheit" -msgid "Featue 1" +msgid "Feature 1" msgstr "Funktion 1" msgid "Reverse rotation" @@ -1476,7 +1477,7 @@ msgstr "" "erkannt." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer wird wegen Arbeitsspeichermangels beendet, was ein Bug sein kann. " @@ -1590,6 +1591,7 @@ msgstr "Wählen sie eine oder mehrere Dateien (3mf/step/stl/svg/obj/amf):" msgid "Choose ZIP file" msgstr "ZIP Datei wählen" +#, fuzzy msgid "Choose one file (gcode/3mf):" msgstr "Wählen sie eine Datei (3mf):" @@ -1616,7 +1618,7 @@ msgstr "Projekt öffnen" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version " "aktualisiert werden, bevor sie normal verwendet werden kann" @@ -1828,7 +1830,7 @@ msgstr "Orca String Hell" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1926,16 +1928,16 @@ msgstr "Düse in der Stützstruktur des Objekts reinigen" msgid "Edit in Parameter Table" msgstr "Bearbeiten in der Parametertabelle" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Von Inch umrechnen" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Zu Inch zurücksetzen" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Von Metern umrechnen" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Auf Meter zurücksetzen" msgid "Assemble" @@ -2205,7 +2207,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2222,7 +2224,7 @@ msgstr "Lösche alle Verbinder" msgid "Deleting the last solid part is not allowed." msgstr "Das Löschen des letzten festen Teils ist nicht erlaubt." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "Das Zielobjekt enthält nur einen Teil und kann nicht geteilt werden." msgid "Assembly" @@ -2265,14 +2267,14 @@ msgid "Selection conflicts" msgstr "Auswahlkonflikte" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Wenn das erste ausgewählte Element ein Objekt ist, sollte das zweite " "ebenfalls ein Objekt sein." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Wenn das erste ausgewählte Element ein Teil ist, sollte das zweite ein Teil " "desselben Objekts sein." @@ -2337,7 +2339,7 @@ msgstr "" "eine Zelle kann nur in eine oder mehrere Zellen in derselben Spalte kopiert " "werden" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "Das Kopieren mehrerer Zellen wird nicht unterstützt" msgid "Outside" @@ -2605,8 +2607,8 @@ msgid "Edit" msgstr "Bearbeiten" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Alle ausgewählten Objekte befinden sich auf einer gesperrten Druckplatte.\n" "Die Objekte können nicht automatisch angeordnet werden." @@ -2615,8 +2617,8 @@ msgid "No arrangeable objects are selected." msgstr "Es sind keine anordnungsfähigen Objekte ausgewählt." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Diese Druckplatte ist gesperrt.\n" "Wir können diese Druckplatte nicht automatisch anordnen." @@ -2656,15 +2658,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Alle ausgewählten Objekte befinden sich auf einer gesperrten Druckplatte.\n" "Die Objekte können nicht automatisch ausgerichtet werden." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Diese Druckplatte ist gesperrt.\n" "Wir können diese Druckplatte nicht automatisch ausrichten." @@ -2720,7 +2722,7 @@ msgid "Cloud service connection failed. Please try again." msgstr "" "Die Verbindung zum Cloud-Dienst ist fehlgeschlagen. Bitte versuche es erneut." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Druckdatei nicht gefunden. Bitte erneut slicen" msgid "" @@ -2751,7 +2753,7 @@ msgstr "" "Die Größe der Druckdatei ist zu groß. Bitte passen Sie die Dateigröße an und " "versuchen Sie es erneut." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "Druckdatei nicht gefunden. Bitte erneut slicen und zum Drucken senden." msgid "" @@ -2790,10 +2792,10 @@ msgstr "Erfolgreich gesendet. Springt automatisch auf die nächste Seite in %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Vor dem Drucken über LAN muss eine MicroSD-Karte eingelegt werden." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Sende Gcode-Datei über LAN" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Sende Gcode-Datei an SDKarte" #, c-format, boost-format @@ -2845,10 +2847,10 @@ msgstr "Herunterladen" msgid "Download failed" msgstr "Download fehlgeschlagen" -msgid "Cancelled" +msgid "Canceled" msgstr "Abgebrochen" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Erfolgreich installiert" msgid "Installing" @@ -2917,9 +2919,6 @@ msgstr "Bestätigen" msgid "Close" msgstr "Schließen" -msgid "Colour" -msgstr "Farbe" - msgid "" "Nozzle\n" "Temperature" @@ -3086,8 +3085,8 @@ msgstr "Aktuelle AMS-Feuchtigkeit" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Wechseln Sie das Trockenmittel, wenn es zu feucht ist. Der Indikator kann " @@ -3096,7 +3095,7 @@ msgstr "" "Feuchtigkeit aufzunehmen, niedrige Temperaturen verlangsamen den Prozess." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Legen Sie fest, welcher AMS-Slot für das im Druckauftrag genutzte Filament " "verwendet werden soll." @@ -3117,7 +3116,7 @@ msgid "Print using materials mounted on the back of the case" msgstr "" "Drucken mit Materialien, die an der Rückseite des Gehäuses montiert sind" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Drucken mit Materialien im AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3144,12 +3143,12 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "Wenn sich zwei identische Filamente im AMS befinden, wird das AMS-Filament-" -"Backup aktiviert. \n" +"Backup aktiviert.\n" "(Derzeit wird die automatische Versorgung mit Verbrauchsmaterialien mit " "derselben Marke, demselben Materialtyp und derselben Farbe unterstützt)" @@ -3173,7 +3172,7 @@ msgstr "" "Lab Filament eingesetzt wird. Dies dauert etwa 20 Sekunden." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Hinweis: Wenn während des Drucks neues Filament eingelegt wird, liest das " @@ -3193,8 +3192,8 @@ msgstr "Update beim Einschalten" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "Das AMS liest beim Einschalten automatisch die Informationen über das " "eingelegte Filament. Der Lesevorgang dauert ca. 1 Minute und lässt die " @@ -3225,8 +3224,8 @@ msgid "AMS filament backup" msgstr "AMS Filament Backup" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS wechselt automatisch zu einer anderen Spule mit denselben " "Filamenteigenschaften, wenn das aktuelle Filament leer ist." @@ -3292,7 +3291,7 @@ msgstr "Ein schwerwiegender Fehler ist aufgetreten: \"%1%\"" msgid "Please save project and restart the program." msgstr "Bitte speichern Sie das Projekt und starten Sie das Programm neu." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Verarbeite G-Code der vorherigen Datei..." msgid "Slicing complete" @@ -3381,12 +3380,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "G-Code-Datei exportiert nach %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Unbekannter Fehler beim exportieren des G-Code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3565,7 +3564,7 @@ msgstr "AMS verwenden" msgid "Select Printers" msgstr "Drucker auswählen" -msgid "Ams Status" +msgid "AMS Status" msgstr "AMS-Status" msgid "Printing Options" @@ -3587,7 +3586,7 @@ msgid "Send to" msgstr "Senden an" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "Drucker gleichzeitig drucken.(Es hängt davon ab, wie viele Geräte " @@ -3597,7 +3596,7 @@ msgid "Wait" msgstr "Warten" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "Minute pro Charge.(Es hängt davon ab, wie lange es dauert, die Erhitzung " "abzuschließen.)" @@ -3703,11 +3702,11 @@ msgid "Bed Shape" msgstr "Druckbettform" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"Die empfohlene Mindesttemperatur liegt unter 190 Grad oder die empfohlene " -"Maximaltemperatur liegt über 300 Grad.\n" +"Die empfohlene Mindesttemperatur liegt unter 190°C oder die empfohlene " +"Maximaltemperatur liegt über 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3732,10 +3731,10 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" -"Die empfohlene Düsentemperatur für diesen Filamenttyp beträgt [%d, %d] °C" +"Die empfohlene Düsentemperatur für diesen Filamenttyp beträgt [%d, %d] °C." msgid "" "Too small max volumetric speed.\n" @@ -3746,9 +3745,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Die aktuelle Kammer-Temperatur ist höher als die sichere Temperatur des " "Materials, dies kann zu Materialerweichung und Verstopfung führen. Die " @@ -3815,12 +3814,12 @@ msgstr "" "vertikale Wanddicke auf Alle eingestellt ist." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" msgstr "" -"Diese Einstellungen automatisch ändern? \n" +"Diese Einstellungen automatisch ändern?\n" "Ja - Ändern Sie die vertikale Wanddicke auf Moderate und aktivieren Sie " "alternative zusätzliche Wand\n" "Nein - Verwenden Sie keine alternative zusätzliche Wand" @@ -3885,11 +3884,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Maschinen mit I3-Struktur erzeugen jedoch keine Zeitraffer-Videos." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Diese Einstellungen automatisch ändern? \n" +"Diese Einstellungen automatisch ändern?\n" "Ja - Diese Einstellungen ändern und den Spiralmodus automatisch aktivieren\n" "Nein - Spiralmodus nicht aktivieren" @@ -3944,7 +3943,7 @@ msgstr "Der Druckvorgang wurde vom Benutzer angehalten" msgid "Pause of front cover falling" msgstr "Pause, da die Abdeckung des Werkzeugkopfes abgefallen ist" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Kalibrierung des Mikro-Lidars" msgid "Calibrating extrusion flow" @@ -3981,7 +3980,7 @@ msgstr "Pausiert aufgrund eines Fehlers bei der Kammer-Temperaturregelung" msgid "Cooling chamber" msgstr "Kühlung der Kammer" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Pausiert durch den vom Benutzer eingefügten G-Code" msgid "Motor noise showoff" @@ -4025,7 +4024,7 @@ msgstr "Update fehlgeschlagen." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "Die aktuelle Kammer-Temperatur oder die Ziel-Kammer-Temperatur überschreitet " @@ -4033,8 +4032,8 @@ msgstr "" "Filament mit niedriger Temperatur (PLA/PETG/TPU) zu laden." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Filament mit niedriger Temperatur (PLA/PETG/TPU) ist im Extruder geladen. Um " @@ -4043,14 +4042,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Wenn Sie die Kammertemperatur unter 40℃ einstellen, wird die " "Kammertemperaturregelung nicht aktiviert. Die Ziel-Kammertemperatur wird " "automatisch auf 0℃ eingestellt." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Druckauftrag konnte nicht gestartet werden" msgid "" @@ -4065,7 +4064,7 @@ msgid "Selected diameter and machine diameter do not match" msgstr "" "Ausgewählter Durchmesser und Maschinendurchmesser stimmen nicht überein" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Fehler beim Generieren des Kalibrierungs-G-Codes" msgid "Calibration error" @@ -4078,14 +4077,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF wird von AMS nicht unterstützt." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Feuchtes PVA wird flexibel und bleibt im AMS stecken, bitte trocknen Sie es " "vor dem Gebrauch." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "CF/GF-Filamente sind hart und spröde. Sie brechen leicht oder bleiben im AMS " @@ -4103,7 +4102,7 @@ msgstr "" "Eingebaute Platzhalter (Doppelklicken Sie auf ein Element, um es zum G-Code " "hinzuzufügen)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "G-Code-Platzhalter suchen" msgid "Add selected placeholder to G-code" @@ -4162,7 +4161,7 @@ msgid "parameter name" msgstr "Parametername" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s kann nicht Prozent sein" #, c-format, boost-format @@ -4254,7 +4253,7 @@ msgstr "Lüftergeschwindigkeit: " msgid "Temperature: " msgstr "Temperatur: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Laden von G-Codes" msgid "Generating geometry vertex data" @@ -4368,10 +4367,7 @@ msgstr "aktuelle Platte drucken" msgid "Printer" msgstr "Drucker" -msgid "Custom g-code" -msgstr "Benutzerdefinierter G-Code" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Werkzeugwechsel" msgid "Time Estimation" @@ -4497,8 +4493,11 @@ msgstr "An Y-Achse ausrichten" msgid "Add plate" msgstr "Druckplatte hinzufügen" -msgid "Auto orient" -msgstr "Automatische Ausrichtung" +msgid "Auto orient all/selected objects" +msgstr "Alle/ausgewählte Objekte automatische Ausrichtung" + +msgid "Auto orient all objects on current plate" +msgstr "Alle Objekte auf der aktuellen Druckplatte automatische Ausrichtung" msgid "Arrange all objects" msgstr "Alle Objekte anordnen" @@ -4521,7 +4520,7 @@ msgstr "Druckplatte wählen" msgid "Assembly Return" msgstr "Zurücksetzen der Montage" -msgid "return" +msgid "Return" msgstr "Zurück" msgid "Paint Toolbar" @@ -4550,26 +4549,26 @@ msgstr "Größe:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Konflikte von G-Code-Pfaden wurden bei Layer %d, z = %.2lf mm gefunden.Bitte " "trennen Sie die konfliktbehafteten Objekte weiter voneinander (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Ein Objekt ragt über die Begrenzung der Druckplatte." msgid "A G-code path goes beyond the max print height." msgstr "Ein G-Code-Pfad überschreitet die maximale Druckhöhe." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Ein G-Code-Pfad geht über die Begrenzung der Druckplatte hinaus." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Nur das bearbeitete Modell ist sichtbar." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4650,7 +4649,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Drucker anschließen (LAN)" msgid "Please input the printer access code:" @@ -4953,22 +4952,22 @@ msgstr "Automatische Perspektive" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Wechselt automatisch zwischen orthografischer und perspektivischer Ansicht, " -"wenn von der Top-/Bottom-/Seitenansicht gewechselt wird" +"wenn von der Top-/Bottom-/Seitenansicht gewechselt wird." msgid "Show &G-code Window" msgstr "&G-Code-Fenster anzeigen" -msgid "Show g-code window in Preview scene" -msgstr "G-Code-Fenster in der Vorschau anzeigen" +msgid "Show G-code window in Preview scene." +msgstr "G-Code-Fenster in der Vorschau anzeigen." msgid "Show 3D Navigator" msgstr "3D-Navigator anzeigen" -msgid "Show 3D navigator in Prepare and Preview scene" -msgstr "3D-Navigator in Vorbereitungs- und Vorschauansicht anzeigen" +msgid "Show 3D navigator in Prepare and Preview scene." +msgstr "3D-Navigator in Vorbereitungs- und Vorschauansicht anzeigen." msgid "Reset Window Layout" msgstr "Window-Layout zurücksetzen" @@ -4979,20 +4978,20 @@ msgstr "Reset auf Standard-Layout" msgid "Show &Labels" msgstr "&Bezeichnung anzeigen" -msgid "Show object labels in 3D scene" -msgstr "Objektbeschriftungen in 3D-Szene anzeigen" +msgid "Show object labels in 3D scene." +msgstr "Objektbeschriftungen in 3D-Szene anzeigen." msgid "Show &Overhang" msgstr "Zeige Überhang" -msgid "Show object overhang highlight in 3D scene" -msgstr "Hervorhebung des Objektüberhangs in einer 3D-Szene anzeigen" +msgid "Show object overhang highlight in 3D scene." +msgstr "Hervorhebung des Objektüberhangs in einer 3D-Szene anzeigen." msgid "Show Selected Outline (beta)" msgstr "Ausgewählte Kontur anzeigen (Experimentell)" -msgid "Show outline around selected object in 3D scene" -msgstr "Kontur um das ausgewählte Objekt in der 3D-Szene anzeigen" +msgid "Show outline around selected object in 3D scene." +msgstr "Kontur um das ausgewählte Objekt in der 3D-Szene anzeigen." msgid "Preferences" msgstr "Einstellungen" @@ -5031,7 +5030,7 @@ msgid "Flow rate" msgstr "Durchflussrate" msgid "Pressure advance" -msgstr "Pressure advance" +msgstr "" msgid "Retraction test" msgstr "Rückzugslängen Test" @@ -5172,7 +5171,7 @@ msgid "Filament Settings" msgstr "Filamenteinstellungen" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -5215,7 +5214,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "Die Druckerkamera funktioniert nicht richtig." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Problem aufgetreten. Bitte aktualisieren Sie die Drucker-Firmware und " "versuchen Sie es erneut." @@ -5239,7 +5238,7 @@ msgstr "" "Sie es erneut" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Bitte überprüfen Sie das Netzwerk und versuchen Sie es erneut. Sie können " @@ -5400,8 +5399,8 @@ msgid "Failed to parse model information." msgstr "Analysieren von Modellinformationen fehlgeschlagen." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Die .gcode.3mf-Datei enthält keine G-Code-Daten. Bitte slicen Sie sie mit " "Orca Slicer und exportieren Sie eine neue .gcode.3mf-Datei." @@ -5600,11 +5599,9 @@ msgid "Layer: %d/%d" msgstr "Schicht: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Heizen Sie die Düse vor dem Laden oder Entladen des Filaments auf über 170 " -"Grad." +"Heizen Sie die Düse vor dem Laden oder Entladen des Filaments auf über 170°C." msgid "Still unload" msgstr "Entlade immer noch" @@ -5612,7 +5609,7 @@ msgstr "Entlade immer noch" msgid "Still load" msgstr "Lade immer noch" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Bitte wählen Sie einen AMS-Slot vor der Kalibrierung aus" msgid "" @@ -5662,9 +5659,6 @@ msgstr "Übermitteln" msgid "Please click on the star first." msgstr "Bitte klicken Sie zuerst auf den Stern." -msgid "InFo" -msgstr "InFo" - msgid "Get oss config failed." msgstr "Fehler beim Abrufen der OSS-Konfiguration." @@ -5683,7 +5677,7 @@ msgstr " Hochladen der Konfiguration fehlgeschlagen\n" msgid " No corresponding storage bucket\n" msgstr " Kein entsprechender Speicher\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " Kann nicht geöffnet werden\n" msgid "" @@ -5709,8 +5703,9 @@ msgstr "Hochladen fehlgeschlagen\n" msgid "obtaining instance_id failed\n" msgstr "Abrufen der Instanz-ID fehlgeschlagen\n" +#, fuzzy msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5725,7 +5720,7 @@ msgstr "Fehlermeldung: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5733,7 +5728,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Einige Ihrer Bilder konnten nicht hochgeladen werden. Möchten Sie zur " "Webseite für die Bewertung weitergeleitet werden?" @@ -5743,7 +5738,7 @@ msgstr "Sie können bis zu 16 Bilder auswählen." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Um eine positive Bewertung (4 oder 5 Sterne) abzugeben, ist mindestens ein " "erfolgreicher Druck dieses Druckprofils erforderlich." @@ -5788,7 +5783,7 @@ msgid "Newer 3mf version" msgstr "Neuere 3mf-Version" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "Die 3mf-Dateiversion ist in der Beta und neuer als die aktuelle OrcaSlicer- " @@ -5903,7 +5898,7 @@ msgstr[1] "%1$d Objekte haben gemalte Farben." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d Objekt wurde als Teil des geschnittenen Objekts geladen." msgstr[1] "%1$d Objekte wurden als Teile des geschnittenen Objekts geladen." @@ -5928,7 +5923,7 @@ msgstr "Fehler:" msgid "Warning:" msgstr "Warnung:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Export erfolgreich." msgid "Model file downloaded." @@ -5946,11 +5941,11 @@ msgstr " Klicken Sie hier, um es zu installieren." msgid "WARNING:" msgstr "WARNUNG:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "Ihr Modell braucht Stützstrukturen! Bitte aktivieren Sie das Stützmaterial." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "G-Code Pfadüberlappung" msgid "Support painting" @@ -6199,7 +6194,7 @@ msgstr "Möchten Sie die Änderungen unter \" %1% \" speichern?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Erfolgreich ausgeworfen. Das Gerät %s(%s) kann jetzt sicher vom Computer " @@ -6261,8 +6256,8 @@ msgstr "Lade 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "Die Version %s von 3mf ist neuer als die Version %s von %s, folgende " "Schlüssel wurden nicht erkannt:" @@ -6284,25 +6279,28 @@ msgstr "Ungültige Werte in der 3MF-Datei gefunden:" msgid "Please correct them in the param tabs" msgstr "Bitte korrigieren Sie sie in den Parameter-Einstellungen." -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "Die 3mf hat folgende modifizierte G-Codes in Filament- oder Druckerprofilen:" +#, fuzzy msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Bitte bestätigen Sie, dass diese modifizierten G-Codes sicher sind, um " "Schäden an der Maschine zu vermeiden!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "Modifizierte G-Codes" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "Die 3mf hat folgende benutzerdefinierte Filament- oder Druckerprofile:" +#, fuzzy msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Bitte bestätigen Sie, dass die G-Codes innerhalb dieser Profile sicher sind, " @@ -6369,8 +6367,8 @@ msgid "The file does not contain any geometry data." msgstr "Die Datei enthält keine Geometriedaten." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Ihr Objekt scheint zu groß zu sein. Möchten Sie es verkleinern, um es " "automatisch an das Druckbett anzupassen?" @@ -6480,7 +6478,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Vorschaumodus:\n" "Die geladene Datei enthält nur G-Code Befehle. Die Seite \"Vorbereiten\" " @@ -6518,7 +6516,7 @@ msgstr "3mf-Datei vorbereiten…" msgid "Download failed, unknown file format." msgstr "Download fehlgeschlagen, unbekanntes Dateiformat." -msgid "downloading project ..." +msgid "downloading project..." msgstr "Projekt wird heruntergeladen..." msgid "Download failed, File size exception." @@ -6563,7 +6561,7 @@ msgstr "SLA-Archiv importieren" msgid "The selected file" msgstr "Die ausgewählte Datei" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "enthält keinen gültigen G-Code." msgid "Error occurs while loading G-code file" @@ -6609,10 +6607,10 @@ msgstr "Es kann immer nur eine G-Code-Datei gleichzeitig geöffnet werden." msgid "G-code loading" msgstr "G-Code wird geladen" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-Code-Dateien und Modelle können nicht zusammen geladen werden!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Modelle können im Vorschaumodus nicht hinzugefügt werden" msgid "All objects will be removed, continue?" @@ -6779,8 +6777,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Plate %d: %s wird nicht empfohlen, um Filament %s (%s) zu drucken. Wenn Sie " @@ -6941,6 +6939,12 @@ msgstr "Freie Kamera verwenden" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Wenn aktiviert, wird die freie Kamera verwendet." +msgid "Swap pan and rotate mouse buttons" +msgstr "Schwenk- und Dreh-Maustasten vertauschen" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Wenn aktiviert, werden die Schwenk- und Drehfunktionen der linken und rechten Maustaste vertauscht." + msgid "Reverse mouse zoom" msgstr "Maus-Zoom umkehren" @@ -6982,7 +6986,7 @@ msgstr "" "Wenn aktiviert, merkt sich Orca die Filament-/Prozesskonfiguration für jeden " "Drucker und wechselt automatisch." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Multi-Geräte-Verwaltung (nach Neustart von Studio wirksam)." msgid "" @@ -7001,7 +7005,7 @@ msgstr "Druckplatte nach dem Klonen von Objekten automatisch anordnen" msgid "Network" msgstr "Netzwerk" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)" msgid "User Sync" @@ -7078,7 +7082,7 @@ msgstr "Maximale Anzahl an zuletzt geöffneten Projekten" msgid "Clear my choice on the unsaved projects." msgstr "Meine Auswahl für nicht gespeicherte Projekte löschen." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Keine Warnungen beim Laden von 3MF mit modifizierten G-Codes" msgid "Auto-Backup" @@ -7195,10 +7199,10 @@ msgstr "Debug Speicher-Taste" msgid "save debug settings" msgstr "Debug-Einstellungen speichern" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "DEBUG-Einstellungen wurden erfolgreich gespeichert!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Cloud-Umgebung gewechselt; Bitte erneut anmelden!" msgid "System presets" @@ -7213,10 +7217,10 @@ msgstr "Inkompatible Profile" msgid "AMS filaments" msgstr "AMS Filament" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Klicken Sie hier, um die Filamentfarbe auszuwählen" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Bitte wählen Sie die Filamentfarbe aus." msgid "Add/Remove presets" @@ -7234,7 +7238,7 @@ msgstr "Filament hinzufügen/entfernen" msgid "Add/Remove materials" msgstr "Materialien hinzufügen/entfernen" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Systemdrucker auswählen/entfernen" msgid "Create printer" @@ -7307,14 +7311,14 @@ msgstr "Hochladen der 3mf" msgid "Jump to model publish web page" msgstr "Zur Modellveröffentlichungs-Webseite springen" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Hinweis: Die Vorbereitung kann einige Minuten dauern. Bitte haben Sie Geduld." msgid "Publish" msgstr "Veröffentlichen" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Veröffentlichung wurde abgebrochen" msgid "Slicing Plate 1" @@ -7339,7 +7343,7 @@ msgstr "Projektbasiertes Profil" msgid "Name is unavailable." msgstr "Der Name ist nicht verfügbar." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Überschreiben eines Systemprofils ist nicht erlaubt" #, boost-format @@ -7347,12 +7351,13 @@ msgid "Preset \"%1%\" already exists." msgstr "Profil \"%1%\" existiert bereits." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "Profil \"%1%\" existiert bereits und ist mit dem aktuellen Drucker nicht " "kompatibel." -msgid "Please note that saving action will replace this preset" +msgid "Please note that saving will overwrite this preset." msgstr "Bitte beachten Sie, dass das Speichern dieses Profil überschreibt." msgid "The name cannot be the same as a preset alias name." @@ -7578,7 +7583,7 @@ msgid "Please check the following:" msgstr "Bitte überprüfen Sie Folgendes:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7614,7 +7619,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Das Drucken von Hochtemperaturmaterial (%s Material) mit %s kann zu einer " @@ -7678,7 +7683,7 @@ msgstr "" "Der Drucker unterstützt nicht das Senden an die MicroSD-Karte des Druckers." msgid "Slice ok." -msgstr "Slice ok." +msgstr "Slicing erfolgreich." msgid "View all Daily tips" msgstr "Zeige alle täglichen Tipps" @@ -7735,7 +7740,7 @@ msgstr "Anmeldung fehlgeschlagen. Bitte überprüfen Sie den Pin-Code." msgid "Log in printer" msgstr "Drucker anmelden" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "" "Möchten Sie sich bei diesem Drucker mit Ihrem aktuellen Konto anmelden?" @@ -7749,10 +7754,10 @@ msgid "Terms and Conditions" msgstr "Allgemeine Geschäftsbedingungen" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Vielen Dank für den Kauf eines Bambu Lab Geräts. Bevor Sie Ihr Bambu Lab " @@ -7783,7 +7788,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7843,7 +7848,7 @@ msgstr "" "Parameter zurückzusetzen." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Ein Reinigungsturm ist für den gewählten Zeitraffer-Modus erforderlich. Ohne " @@ -7851,7 +7856,7 @@ msgstr "" "Sie den Reinigungsturm deaktivieren möchten?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "Für den gewählten Zeitraffermodus ist ein Reinigungsturm erforderlich. Ohne " @@ -7862,18 +7867,19 @@ msgid "Still print by object?" msgstr "Trotzdem nach Objekt drucken?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" +"Wenn Sie Stützmaterial für die Stützschnittstelle verwenden, empfehlen wir " +"die folgenden Einstellungen:\n" +"0 obere Z-Abstand, 0 Schnittstellenabstand, " +"verflochtenes rechteckiges Muster und " +"unabhängige Stützschichthöhe deaktivieren" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7903,13 +7909,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder " "-> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen." -msgid "Adjust to the set range automatically? \n" -msgstr "Automatisch an den eingestellten Bereich anpassen? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Automatisch an den eingestellten Bereich anpassen?\n" msgid "Adjust" msgstr "Anpassen" @@ -7919,8 +7925,8 @@ msgstr "Ignorieren" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Experimentelle Funktion: Filament beim Filamentwechsel weiter zurückziehen " @@ -7930,9 +7936,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Experimentelle Funktion: Filament beim Filamentwechsel weiter zurückziehen " "und abschneiden, um den Flush zu minimieren. Obwohl dies den Flush deutlich " @@ -8120,7 +8126,7 @@ msgid "G-code output" msgstr "G-Code-Ausgabe" msgid "Post-processing Scripts" -msgstr "Post-Processing Scripts" +msgstr "Nachbearbeitungsskripte" msgid "Notes" msgstr "Notizen" @@ -8185,8 +8191,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Kalte Druckplatte (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Dies ist die Betttemperatur, wenn die kalte Druckplatte installiert ist. Ein " "Wert von 0 bedeutet, dass das Filament auf der kalten Druckplatte SuperTack " @@ -8195,30 +8201,30 @@ msgid "Cool Plate" msgstr "Kalte Druckplatte" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Dies ist die Betttemperatur, wenn die kalte Druckplatte installiert ist. Ein " "Wert von 0 bedeutet, dass das Filament auf der kalten Druckplatte nicht " "unterstützt." -msgid "Textured Cool plate" -msgstr "Texturierte kalte Druckplatte" +msgid "Textured Cool Plate" +msgstr "Strukturierte kalte Druckplatte" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Dies ist die Betttemperatur, wenn die kalte Druckplatte installiert ist. Ein " "Wert von 0 bedeutet, dass das Filament auf der texturierten kalten " "Druckplatte nicht unterstützt wird." -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "Technische Druckplatte" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Dies ist die Betttemperatur, wenn die technische Druckplatte installiert " "wird. Ein Wert von 0 bedeutet, dass das Filament auf der technischen " @@ -8228,9 +8234,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Glatte PEI-Platte / Hochtemperaturplatte" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Dies ist die Betttemperatur, wenn die glatte PEI-Platte installiert ist. Ein " "Wert von 0 bedeutet, dass das Filament auf der glatten PEI-/Hochtemperatur " @@ -8240,8 +8246,8 @@ msgid "Textured PEI Plate" msgstr "Texturierte PEI-Platte" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Betttemperatur, wenn die texturierte PEI-Platte installiert ist. 0 bedeutet, " "dass das Filament nicht auf der texturierten PEI-Platte unterstützt wird." @@ -8304,13 +8310,13 @@ msgstr "Filament End G-Code" msgid "Wipe tower parameters" msgstr "Reinigungsturm-Parameter" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Toolchange-Parameter bei Single-Extruder-MM-Druckern" msgid "Ramming settings" msgstr "Ramming-Einstellungen" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Toolchange-Parameter bei Multi-Extruder-MM-Druckern" msgid "Dependencies" @@ -8322,7 +8328,7 @@ msgstr "Profilabhängigkeiten" msgid "Printable space" msgstr "Druckbarer Raum" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Ungültiger Wert für Parameter %1%: %2% angegeben" @@ -8345,7 +8351,7 @@ msgstr "Adaptives Bett Gitter" msgid "Accessory" msgstr "Zubehör" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "Maschinen G-Code" msgid "Machine start G-code" @@ -8363,7 +8369,7 @@ msgstr "G-Code vor dem Schichtwechsel" msgid "Layer change G-code" msgstr "Schichtwechsel G-Code" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "Zeitraffer G-Code" msgid "Change filament G-code" @@ -8458,7 +8464,7 @@ msgstr "" "%d Filament Profil und %d Prozess Profil sind diesem Drucker zugeordnet. " "Diese Profile werden gelöscht, wenn der Drucker gelöscht wird." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" "Voreinstellungen, die von anderen Voreinstellungen geerbt wurden, können " "nicht gelöscht werden!" @@ -8479,11 +8485,11 @@ msgstr[0] "Das folgende Profil wird ebenfalls gelöscht." msgstr[1] "Die folgenden Profile werden ebenfalls gelöscht." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Sind Sie sicher, dass Sie das ausgewählte Profil löschen möchten? \n" +"Sind Sie sicher, dass Sie das ausgewählte Profil löschen möchten?\n" "Wenn das Profil einem Filament entspricht, das derzeit auf Ihrem Drucker " "verwendet wird, setzen Sie bitte die Filamentinformationen für diesen Slot " "zurück." @@ -8704,7 +8710,7 @@ msgstr "Eine neue Version ist verfügbar" msgid "Configuration update" msgstr "Konfigurationsupdate" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "" "Ein neues Konfigurationspaket ist verfügbar. Möchten Sie es installieren?" @@ -8714,14 +8720,14 @@ msgstr "Beschreibung:" msgid "Configuration incompatible" msgstr "Konfiguration nicht kompatibel" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "" "das Konfigurationspaket ist mit der aktuellen Anwendung nicht kompatibel." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Das Konfigurationspaket ist mit der aktuellen Anwendung nicht kompatibel.\n" "%s wird das Konfigurationspaket aktualisieren, andernfalls wird es nicht " @@ -8731,7 +8737,7 @@ msgstr "" msgid "Exit %s" msgstr "%s beenden" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "Das Konfigurationspaket ist mit der aktuellen APP nicht kompatibel." msgid "Configuration updates" @@ -8744,58 +8750,58 @@ msgid "The configuration is up to date." msgstr "Die Konfiguration ist auf dem neuesten Stand." msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "Obj-Datei Importfarbe" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "Die Anzahl der Farben sollte im Bereich [%d, %d] liegen." msgid "Recommended " -msgstr "Recommended " +msgstr "Empfohlen " msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "Aktuelle Filamentfarben:" msgid "Quick set:" -msgstr "Quick set:" +msgstr "Schnelleinstellung:" msgid "Color match" -msgstr "Color match" +msgstr "Farbabgleich" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "Ungefähre Farbabstimmung." msgid "Append" -msgstr "Append" +msgstr "Anhängen" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "Fügen Sie einen Verbrauchsmaterial-Extruder nach den vorhandenen Extrudern hinzu." msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "Zurücksetzen der zugeordneten Extruder." msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "Clusterfarben" msgid "Map Filament" -msgstr "Map Filament" +msgstr "Filament zuordnen" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Hinweis: Die Farbe wurde ausgewählt, Sie können OK wählen \n" +"um fortzufahren oder sie manuell anzupassen." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" +"Warnung: Die Anzahl der neu hinzugefügten und \n" +"aktuellen Extruder übersteigt 16." msgid "Ramming customization" msgstr "Ramming-Anpassung" @@ -8912,7 +8918,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Ihr System fehlt H.264-Codecs für GStreamer, die zum Abspielen von Videos " @@ -8984,15 +8990,18 @@ msgid "Shift+R" msgstr "Umschalt+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Diese Funktion richtet ausgewählte Objekte oder alle Objekte automatisch " "aus. Wenn es ausgewählte Objekte gibt, werden nur die ausgewählten Objekte " -"ausgerichtet. Andernfalls werden alle Objekte auf der aktuellen Druckplatte " +"ausgerichtet. Andernfalls werden alle Objekte auf das aktuelle Projekt " "ausgerichtet." +msgid "Auto orients all objects on the active plate." +msgstr "Diese Funktion richtet alle Objekte auf der aktuellen Druckplatte ausgerichtet." + msgid "Shift+Tab" msgstr "Umschalt+Tab" @@ -9101,8 +9110,11 @@ msgstr "Rotieren" msgid "Gizmo cut" msgstr "Trennen" -msgid "Gizmo Place face on bed" -msgstr "Fläche auf Druckbett platzieren" +msgid "Gizmo place face on bed" +msgstr "Fläche auf druckbett platzieren" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo mesh-boolesche" msgid "Gizmo SLA support points" msgstr "SLA Stützpunkte" @@ -9110,8 +9122,17 @@ msgstr "SLA Stützpunkte" msgid "Gizmo FDM paint-on seam" msgstr "FDM Naht aufmalen" -msgid "Gizmo Text emboss / engrave" -msgstr "Text prägen / gravieren" +msgid "Gizmo text emboss/engrave" +msgstr "Text prägen/gravieren" + +msgid "Gizmo measure" +msgstr "Gizmo messen" + +msgid "Gizmo assemble" +msgstr "Gizmo Zusammenbauen" + +msgid "Gizmo brim ears" +msgstr "Gizmo mausohren" msgid "Zoom in" msgstr "Vergrößern" @@ -9152,8 +9173,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Extrudernummer für die Objekte und Teile einstellen" -msgid "Delete objects, parts, modifiers " -msgstr "Objekte, Teile, Modifikatoren löschen " +msgid "Delete objects, parts, modifiers" +msgstr "Objekte, Teile, Modifikatoren löschen" msgid "Select the object/part and press space to change the name" msgstr "" @@ -9184,7 +9205,7 @@ msgstr "Horizontaler Schieberegler - Aktiven Schieber nach rechts bewegen" msgid "On/Off one layer mode of the vertical slider" msgstr "Ein/Aus Einschichtmodus des vertikalen Schiebereglers" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Ein-/Ausblenden des G-Code-Fensters" msgid "Move slider 5x faster" @@ -9203,7 +9224,7 @@ msgid "Release Note" msgstr "Hinweis zur Veröffentlichung" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "Version %s Update-Informationen:" msgid "Network plug-in update" @@ -9216,7 +9237,7 @@ msgstr "" "Slicer zu aktualisieren." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "" "Ein neues Netzwerk-Plug-in (%s) verfügbar, möchten Sie es installieren?" @@ -9235,10 +9256,10 @@ msgstr "Fortsetzen" msgid "Resume Printing" msgstr "Druck fortsetzen" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Druck fortsetzen (Fehler akzeptabel)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Druck fortsetzen (Problem gelöst)" msgid "Stop Printing" @@ -9363,10 +9384,10 @@ msgstr "Neueste Version" msgid "Updating" msgstr "Aktualiseren" -msgid "Updating failed" +msgid "Update failed" msgstr "Aktualisierung fehlgeschlagen" -msgid "Updating successful" +msgid "Update successful" msgstr "Erfolgreich aktualisiert" msgid "" @@ -9501,7 +9522,7 @@ msgstr "" "keine Kollision gibt." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "G-Code für ungültigen benutzerdefinierten G-Code konnte nicht erzeugt " @@ -9554,7 +9575,7 @@ msgid "Multiple" msgstr "Mehrere" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Berechnung der Linienbreite von %1% fehlgeschlagen. Kann den Wert von \"%2%" "\" nicht abrufen" @@ -9692,9 +9713,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " ist zu nahe am Sperrbereich und es werden Kollisionen verursacht.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Es können nicht mehrere Filamente mit einem großen Temperaturunterschied " "zusammen gedruckt werden. Andernfalls können der Extruder und die Düse " @@ -9795,26 +9816,27 @@ msgstr "" "Der Reinigungsturm wird nicht unterstützt, wenn die adaptive Schichthöhe " "aktiviert ist. Er erfordert, dass alle Objekte die gleiche Schichthöhe haben." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Der Reinigungsturm erfordert einen \"Stützabstand\", der ein Vielfaches der " "Schichthöhe sein muss." -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "Der Reinigungsturm setzt voraus, dass alle Objekte die gleiche Schichthöhe " "haben." msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Der Reinigungsturm erfordert, dass alle Objekte über der gleichen Anzahl von " "Floßschichten gedruckt werden." msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "Der Reinigungsturm wird nur für mehrere Objekte unterstützt, wenn sie mit " "dem gleichen support_top_z_distance gedruckt werden." @@ -9828,7 +9850,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "Der Reinigungsturm wird nur unterstützt, wenn alle Objekte die gleiche " "variable Schichthöhe haben" @@ -9889,7 +9911,7 @@ msgstr "" "Stützerzwinger werden verwendet, aber die Stützstrukturen sind nicht " "aktiviert. Bitte aktivieren Sie die Stützstruktur-Funktion." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Schichthöhe darf den Düsendurchmesser nicht überschreiten." msgid "" @@ -10020,8 +10042,8 @@ msgid "Elephant foot compensation" msgstr "Elefantenfußkompensation" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Schrumpft die erste Schicht auf der Druckplatte, um den Elefantenfuß-Effekt " "auszugleichen." @@ -10045,7 +10067,7 @@ msgstr "Schichten" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Definiert die Höhe der einzelnen Schichten. Eine geringe Schichthöhe " "steigert die Genauigkeit und verringert die Sichtbarkeit der einzelnen " @@ -10054,14 +10076,14 @@ msgstr "" msgid "Printable height" msgstr "Druckbare Höhe" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "Maximale bedruckbare Höhe, die durch den Bauraum des Druckers begrenzt ist." msgid "Preferred orientation" msgstr "Bevorzugte Ausrichtung" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "Automatische Ausrichtung von STLs auf der Z-Achse beim Import" msgid "Printer preset names" @@ -10070,7 +10092,7 @@ msgstr "Drucker Profilname" msgid "Use 3rd-party print host" msgstr "Benutze Drittanbieter-Druck-Hosts" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Erlauben Sie die Steuerung von BambuLab-Druckern durch Drittanbieter-Druck-" "Hosts" @@ -10096,7 +10118,7 @@ msgid "Device UI" msgstr "Gerät" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Bitte geben Sie die URL der Benutzeroberfläche Ihres Geräts an, falls sie " "nicht mit print_host identisch ist." @@ -10112,7 +10134,7 @@ msgstr "" "Feld sollte den API-Schlüssel oder das für die Authentifizierung " "erforderliche Passwort enthalten." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Name des Druckers" msgid "HTTPS CA File" @@ -10145,7 +10167,7 @@ msgstr "" "offline Verteilungspunkten. Sie können diese Option für selbst signierte " "Zertifikate aktivieren, wenn die Verbindung fehlschlägt." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Namen der Profile, die sich auf den physischen Drucker beziehen" msgid "Authorization Type" @@ -10157,22 +10179,23 @@ msgstr "API-Schlüssel" msgid "HTTP digest" msgstr "HTTP-Digest" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Vermeiden von Wandüberquerungen" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Fahren Sie einen Umweg und vermeiden Sie es, über die Wand zu fahren, was zu " "Tropfenbildung auf der Oberfläche führen kann" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Vermeide das Überqueren der Wand - Maximale Umleitungslänge" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Maximale Umleitstrecke zur Vermeidung einer Wandüberquerung: Der Drucker " "fährt keinen Umweg, wenn die Umleitstrecke größer als dieser Wert ist. Die " @@ -10181,14 +10204,14 @@ msgstr "" "diese Funktion." msgid "mm or %" -msgstr "mm or %" +msgstr "mm o. %" msgid "Other layers" msgstr "Andere Schichten" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Dies ist die Betttemperatur für Schichten mit Ausnahme der Ersten. Ein Wert " "von 0 bedeutet, dass das Filament auf der kalten Druckplatte nicht " @@ -10198,32 +10221,32 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Dies ist die Betttemperatur für Schichten mit Ausnahme der Ersten. Ein Wert " "von 0 bedeutet, dass das Filament auf der strukturierten kalten Druckplatte " "nicht unterstützt wird." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Dies ist die Betttemperatur für Schichten mit Ausnahme der Ersten. Ein Wert " "von 0 bedeutet, dass das Filament auf der technischen Druckplatte nicht " "unterstützt wird." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Dies ist die Betttemperatur für Schichten mit Ausnahme der Ersten. Ein Wert " "von 0 bedeutet, dass das Filament auf der Hochtemperaturdruckplatte nicht " "unterstützt wird." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Druckbetttemperatur nach der ersten Schicht. 0 bedeutet, dass das Filament " "nicht auf der texturierten PEI-Platte unterstützt wird." @@ -10235,63 +10258,57 @@ msgid "Initial layer bed temperature" msgstr "Druckbettemperatur für die erste Schicht" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Dies ist die Betttemperatur der ersten Schicht. Ein Wert von 0 bedeutet, " "dass das Filament auf der kalten Druckplatte SuperTack nicht unterstützt " msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Dies ist die Betttemperatur der ersten Schicht. Ein Wert von 0 bedeutet, " "dass das Filament auf der kalten Druckplatte nicht unterstützt wird." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Dies ist die Betttemperatur der ersten Schicht. Ein Wert von 0 bedeutet, " "dass das Filament auf der strukturierten kalten Druckplatte nicht " "unterstützt wird." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Dies ist die Betttemperatur der ersten Schicht. Ein Wert von 0 bedeutet, " "dass das Filament auf der technischen Druckplatte nicht unterstützt wird." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Dies ist die Betttemperatur der ersten Schicht. Ein Wert von 0 bedeutet, " "dass das Filament auf der Hochtemperatur-Druckplatte nicht unterstützt wird." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Druckbetttemperatur der ersten Schicht. 0 bedeutet, dass das Filament nicht " "auf der texturierten PEI-Platte unterstützt wird." -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Vom Drucker unterstützte Druckbettypen" msgid "Smooth Cool Plate" msgstr "Glatte kalte Druckplatte" -msgid "Engineering Plate" -msgstr "Technische Druckplatte" - msgid "Smooth High Temp Plate" msgstr "Glatte Hochtemperatur-Druckplatte" -msgid "Textured Cool Plate" -msgstr "Strukturierte kalte Druckplatte" - msgid "First layer print sequence" msgstr "Erste Schicht Druckreihenfolge" @@ -10304,7 +10321,7 @@ msgstr "Die Anzahl der anderen Schichten Druckreihenfolge" msgid "Other layers filament sequence" msgstr "Andere Schichten Filamentreihenfolge" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" "Dieser G-Code wird bei jedem Schichtwechsel vor dem anheben von Z eingefügt." @@ -10314,7 +10331,7 @@ msgstr "Untere Schalenschichten" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Dies ist die Anzahl der massiven Schichten der Unterschale, einschließlich " "der ersten Schicht. Wenn die mit diesem Wert berechnete Dicke dünner ist als " @@ -10328,7 +10345,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Die Anzahl der unteren festen Schichten wird beim Slicen erhöht, wenn die " "untere Schalenstärke dünner als dieser Wert ist. Dies kann verhindern, dass " @@ -10349,22 +10366,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Schaltet die Lückenfüllung für die ausgewählten massiven Oberflächen ein. " "Die minimale Lückenlänge, die gefüllt wird, kann von der Option zum Filtern " @@ -10520,9 +10537,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10534,7 +10551,7 @@ msgstr "" "Niedrigere Dichte interne Brücken können das Pillowing der oberen Oberfläche " "reduzieren und die Zuverlässigkeit interner Brücken verbessern, da mehr " "Platz für die Luftzirkulation um die extrudierte Brücke vorhanden ist, was " -"die Kühlgeschwindigkeit verbessert. \n" +"die Kühlgeschwindigkeit verbessert.\n" "\n" "Diese Option funktioniert besonders gut in Kombination mit der Option für " "die zweite interne Brücke über Füllung, die die interne Brückenstruktur " @@ -10544,8 +10561,8 @@ msgid "Bridge flow ratio" msgstr "Brücken Flussrate" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10583,7 +10600,7 @@ msgstr "Durchflussverhältnis obere Fläche" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10600,7 +10617,7 @@ msgid "Bottom surface flow ratio" msgstr "Durchflussverhältnis untere Fläche" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10626,8 +10643,8 @@ msgid "Only one wall on top surfaces" msgstr "Nur eine Wand auf den oberen Flächen" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Verwenden Sie nur eine Wand auf der Oberfläche, um mehr Platz für das obere " "Füllungsmuster zu schaffen" @@ -10661,7 +10678,7 @@ msgstr "Nur eine Wand in der ersten Schicht" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Verwenden Sie nur eine Wand in der ersten Schicht, um dem Muster der unteren " "Füllung mehr Platz zu geben" @@ -10701,7 +10718,7 @@ msgid "Reverse only internal perimeters" msgstr "Nur interne Umfänge umkehren" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10735,9 +10752,9 @@ msgstr "Brücken für Senkungen" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Diese Option erstellt Brücken für Senkungen, die es ermöglichen, sie ohne " "Unterstützung zu drucken. Die verfügbaren Modi sind:\n" @@ -10778,13 +10795,13 @@ msgstr "" msgid "Classic mode" msgstr "Klassicher Modus" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Diese Option aktivieren, um den klassischen Modus zu verwenden" msgid "Slow down for overhang" msgstr "Verlangsamen bei Überhängen" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Aktivieren Sie diese Option, um den Druck für verschiedene Überhangsgrade zu " "verlangsamen" @@ -10795,11 +10812,11 @@ msgstr "Langsamer Druck für gekrümmte Umfänge" #, fuzzy, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10839,7 +10856,7 @@ msgid "External" msgstr "Extern" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10867,7 +10884,7 @@ msgstr "" msgid "Brim width" msgstr "Randbreite" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Abstand vom Modell zur äußersten Randlinie" msgid "Brim type" @@ -10889,7 +10906,7 @@ msgstr "Lücke zwischen Rand und Objekt" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Eine Lücke zwischen der innersten Randlinie und dem Objekt kann das Abnehmen " "des Randes erleichtern" @@ -10904,8 +10921,8 @@ msgid "Brim ear max angle" msgstr "Maximaler Winkel für Brim-Ohren" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Höchster Winkel, bei dem ein Brim-Ohr erscheinen soll.\n" @@ -10919,7 +10936,7 @@ msgstr "Radius für die Erkennung von Brim-Ohren" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "Die Geometrie wird vor der Erkennung von scharfen Winkeln reduziert. " "DieserParameter gibt die minimale Länge der Abweichung für die Reduzierung " @@ -10959,7 +10976,7 @@ msgstr "" "Druckerprofils verwendet. Wenn dieser Ausdruck wahr ist, wird dieses Profil " "als kompatibel mit dem aktiven Druckerprofil betrachtet." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Druckreihenfolge, Schicht für Schicht oder Objekt für Objekt" msgid "By layer" @@ -10971,7 +10988,7 @@ msgstr "Nach Objekt" msgid "Intra-layer order" msgstr "Intra-Schicht-Reihenfolge" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Druckreihenfolge innerhalb einer einzelnen Schicht" msgid "As object list" @@ -10984,7 +11001,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Aktivieren Sie diese Option, um die Druckgeschwindigkeit zu verlangsamen, so " "dass die endgültige Schichtzeit nicht kürzer als die Mindestschichtzeit in " @@ -10997,7 +11014,7 @@ msgstr "Normales Drucken" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Die Standardbeschleunigung für den normalen Druck und den Eilgang nach der " "ersten Schicht." @@ -11005,13 +11022,13 @@ msgstr "" msgid "Default filament profile" msgstr "Standard-Filamentprofil" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Standard-Filamentprofil beim Wechsel zu diesem Maschinenprofil" msgid "Default process profile" msgstr "Standard-Prozessprofil" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Standard-Prozessprofil beim Wechsel zu diesem Maschinenprofil" msgid "Activate air filtration" @@ -11025,21 +11042,21 @@ msgid "Fan speed" msgstr "Lüftergeschwindigkeit" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Geschwindigkeit des Abluftventilators während des Drucks. Diese Geschwindig-" -"keit überschreibt die Geschwindigkeit im Filament-Benutzerdefinierten G-Code" +"keit überschreibt die Geschwindigkeit im Filament-Benutzerdefinierten G-Code." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Geschwindigkeit des Abluftventilators nach Abschluss des Drucks" msgid "No cooling for the first" msgstr "Keine Kühlung für die erste" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Schalte alle Lüfter für die ersten Schichten aus. Dies kann genutzt werden, " "um die Betthaftung zu verbessern." @@ -11048,8 +11065,8 @@ msgid "Don't support bridges" msgstr "Brücken nicht unterstützen" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Stützt den Brückenbereich nicht ab, was die die Menge der benötigten Stützen " "reduziert. Brücken können in der Regel direkt ohne Stützen gedruckt werden, " @@ -11099,20 +11116,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11168,58 +11185,46 @@ msgstr "Kleine interne Brücken filtern" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Diese Option kann dazu beitragen, das Pillowing auf den oberen Oberflächen " "in stark geneigten oder gekrümmten Modellen zu reduzieren.\n" -"\n" "Standardmäßig werden kleine interne Brücken herausgefiltert und das interne " "feste Infill wird direkt über dem dünnen Infill gedruckt. Dies funktioniert " "in den meisten Fällen gut und beschleunigt den Druck, ohne die Qualität der " "oberen Oberfläche zu sehr zu beeinträchtigen.\n" -"\n" "In stark geneigten oder gekrümmten Modellen, insbesondere wenn eine zu " "geringe Dichte des dünnen Infill verwendet wird, kann dies jedoch dazu " "führen, dass das nicht unterstützte feste Infill kräuselt und Pillowing " "verursacht.\n" -"\n" "Das Aktivieren der begrenzten Filterung oder der Filterung deaktiviert die " "Filterung und druckt die interne Brückenschicht über dem leicht nicht " "unterstützten internen festen Infill. Die folgenden Optionen steuern die " "Empfindlichkeit der Filterung, d. h. sie steuern, wo interne Brücken " "erstellt werden.\n" -"\n" "1. Filter - aktiviert diese Option. Dies ist das Standardverhalten und " "funktioniert in den meisten Fällen gut.\n" -"\n" "2. Begrenzte Filterung - erstellt interne Brücken auf stark geneigten " "Oberflächen und vermeidet unnötige Brücken. Dies funktioniert für die " "meisten schwierigen Modelle gut.\n" -"\n" "3. Keine Filterung - erstellt interne Brücken an jedem potenziellen internen " "Überhang. Diese Option ist für stark geneigte obere Oberflächenmodelle " "nützlich; in den meisten Fällen erstellt sie jedoch zu viele unnötige " @@ -11249,20 +11254,20 @@ msgstr "" msgid "End G-code" msgstr "End G-Code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "End G-Code nach dem fertigstellen des Drucks hinzufügen." -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "Zwischen Objekt G-Code" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Füge G-Code zwischen den Objekten ein. Dieser Parameter wird nur wirksam, " "wenn Sie Ihre Modelle Objekt für Objekt drucken." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "End-G-Code hinzufügen, wenn der Druck dieses Filaments beenden ist." msgid "Ensure vertical shell thickness" @@ -11297,7 +11302,7 @@ msgstr "Moderat" msgid "Top surface pattern" msgstr "Muster der Oberfläche" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Füllmuster der obersten Fläche" msgid "Concentric" @@ -11327,7 +11332,7 @@ msgstr "Oktagramm Spirale" msgid "Bottom surface pattern" msgstr "Muster der unteren Fläche" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Linienmuster der Bodenfüllung. Brückenfüllung nicht eingeschlossen" msgid "Internal solid infill pattern" @@ -11375,7 +11380,7 @@ msgid "Small perimeters threshold" msgstr "Schwelle für kleine Strukturen" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Dies legt die Schwelle für eine kleine Umfangslänge fest. Der Standardwert " "für die Schwelle beträgt 0 mm." @@ -11384,7 +11389,7 @@ msgid "Walls printing order" msgstr "Anordnung der Wände" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11398,7 +11403,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11594,7 +11599,7 @@ msgstr "" msgid "Extruder Color" msgstr "Extruder Farbe" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Nur als visuelle Hilfe auf der UI verwendet" msgid "Extruder offset" @@ -11604,11 +11609,11 @@ msgid "Flow ratio" msgstr "Flussverhältnis" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Das Material kann sich nach dem Wechsel zwischen geschmolzenem und " "kristallinem Zustand volumetrisch verändern. Mit dieser Einstellung werden " @@ -11618,11 +11623,11 @@ msgstr "" "Über- oder Unterextrusion gibt." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11632,7 +11637,7 @@ msgstr "" "alle Extrusionsströme dieses Filaments im G-Code proportional geändert. Der " "empfohlene Wertebereich liegt zwischen 0,95 und 1,05. Sie können diesen Wert " "anpassen, um eine schöne flache Oberfläche zu erhalten, wenn es eine leichte " -"Über- oder Unterextrusion gibt. \n" +"Über- oder Unterextrusion gibt.\n" "\n" "Das endgültige Objekt-Flussverhältnis ist das Produkt aus diesem Wert und " "dem Filament-Flussverhältnis." @@ -11647,7 +11652,7 @@ msgstr "" "Wenn Pressure Advance aktiviert ist,werden Auto-Kalibrierungsergebnisse " "überschrieben." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "Pressure advance(Klipper)AKA Linear advance Faktor(Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -11715,19 +11720,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Fügen Sie Sätze von Druckvorschub (PA)-Werten, den Volumenfließgeschwindig-" "keiten und Beschleunigungen, bei denen sie gemessen wurden, durch ein Komma " @@ -11755,9 +11759,9 @@ msgstr "" "Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger " "Beschleunigung Sie drucken, desto größer ist der Bereich der akzeptablen PA-" "Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem " -"schnelleren Test.3. Geben Sie die Triplets von PA-Werten, Fluss und " -"Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil\n" -"\n" +"schnelleren Test.\n" +"3. Geben Sie die Triplets von PA-Werten, Fluss und Beschleunigungen im " +"Textfeld hier ein und speichern Sie Ihr Filamentprofil." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Adaptives PA für Überhänge aktivieren (experimentell)" @@ -11777,9 +11781,9 @@ msgid "Pressure advance for bridges" msgstr "Pressure Advance für Brücken" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -11803,8 +11807,9 @@ msgid "Keep fan always on" msgstr "Lüfter ständig laufen lassen" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Wenn diese Einstellung aktiviert ist, wird der Teillüfter nie abgeschaltet " "und läuft zumindest mit minimaler Geschwindigkeit, um die Häufigkeit des " @@ -11817,25 +11822,21 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Wenn diese Einstellung aktiviert ist, wird sichergestellt, dass die externen " "Umfänge nicht verlangsamt werden, um die Mindestschichtzeit zu erreichen. " "Dies ist besonders hilfreich in den folgenden Szenarien:\n" -"\n" -" 1. Um Änderungen im Glanz beim Drucken von glänzenden Filamenten zu " +"1. Um Änderungen im Glanz beim Drucken von glänzenden Filamenten zu " "vermeiden\n" "2. Um Änderungen in der Geschwindigkeit der äußeren Wand zu vermeiden, die " "leichte Wandartefakte erzeugen können, die wie Z-Banding aussehen\n" "3. Um das Drucken mit Geschwindigkeiten zu vermeiden, die VFAs (feine " -"Artefakte) an den äußeren Wänden verursachen\n" -"\n" +"Artefakte) an den äußeren Wänden verursachen" msgid "Layer time" msgstr "Schichtdauer" @@ -11843,7 +11844,7 @@ msgstr "Schichtdauer" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Der Bauteillüfter wird für Schichten aktiviert, deren geschätzte Zeit kürzer " "als dieser Wert ist. Die Lüftergeschwindigkeit wird zwischen der minimalen " @@ -11875,7 +11876,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Diese Einstellung ist das Volumen des Filaments, das pro Sekunde geschmolzen " "und extrudiert werden kann. Die Druckgeschwindigkeit wird durch die maximale " @@ -11891,7 +11892,7 @@ msgstr "Ladedauer des Filaments" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Zeit zum Laden des neuen Filaments beim Wechsel des Filaments. Es ist in der " "Regel für Einzel-Extruder-Multi-Material-Maschinen anwendbar. Für " @@ -11904,7 +11905,7 @@ msgstr "Entladezeit des Filaments" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Zeit zum Entladen des alten Filaments beim Wechsel des Filaments. Es ist in " "der Regel für Einzel-Extruder-Multi-Material-Maschinen anwendbar. Für " @@ -11917,18 +11918,18 @@ msgstr "Werkzeugwechselzeit" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Zeit, die zum Wechseln der Werkzeuge benötigt wird. Es ist in der Regel für " "Werkzeugwechsler oder Multi-Tool-Maschinen anwendbar. Für Einzel-Extruder-" "Multi-Material-Maschinen beträgt es in der Regel 0. Nur für Statistiken" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Der Filamentdurchmesser wird für die Berechnung der Extrusion im G-Code " -"verwendet, er ist also wichtig und sollte genau sein" +"verwendet, er ist also wichtig und sollte genau sein." msgid "Pellet flow coefficient" msgstr "Pellet-Flusskoeffizient" @@ -11997,7 +11998,7 @@ msgid "Unloading speed" msgstr "Entlade-Geschwindigkeit" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Geschwindigkeit, die zum Entladen des Filaments im Wischturm verwendet wird " @@ -12016,8 +12017,8 @@ msgid "Delay after unloading" msgstr "Verzögerung nach dem Entladen" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Wartezeit nach dem Entladen des Filaments. Kann helfen, zuverlässige " @@ -12044,7 +12045,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Stamping-Abstand, gemessen vom Zentrum des Kühlrohrs" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -12100,7 +12101,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Rammen beim Einsatz eines Multitool-Druckers (d.h. wenn die Option 'Single " "Extruder Multimaterial' in den Druckereinstellungen nicht aktiviert ist). " @@ -12111,33 +12112,33 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Multitool-Ramming-Volumen" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Das Volumen, das vor dem Werkzeugwechsel gerammt werden soll." msgid "Multi-tool ramming flow" msgstr "Multitool-Ramming-Fluss" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" "Fluss, der zum Rammen des Filaments vor dem Werkzeugwechsel verwendet wird." msgid "Density" msgstr "Dichte" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Filamentdichte. Nur für statistische Zwecke." msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Filament-Materialtyp" msgid "Soluble material" msgstr "Lösliches Material" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Lösliches Material wird in der Regel für den Druck von Stützen und Stütz-" "Schnittstellen verwendet" @@ -12146,7 +12147,7 @@ msgid "Support material" msgstr "Stützmaterial" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Stützmaterial wird üblicherweise zum Drucken von Stützen und Stütz-" "Schnittstellen verwendet." @@ -12156,8 +12157,8 @@ msgstr "Erweichungstemperatur" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Das Material wird bei dieser Temperatur weich, daher wird dringend " "empfohlen, die vordere Tür zu öffnen und/oder das obere Glas zu entfernen, " @@ -12167,7 +12168,7 @@ msgstr "" msgid "Price" msgstr "Preis" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Filamentpreis. Nur für statistische Zwecke." msgid "money/kg" @@ -12176,7 +12177,7 @@ msgstr "Kosten/kg" msgid "Vendor" msgstr "Hersteller" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Hersteller des Filaments. Nur zur Anzeige." msgid "(Undefined)" @@ -12187,7 +12188,7 @@ msgstr "Richtung des einfachereren Fülling" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "Winkel des Füllmusters, das die Richtung der Linien bestimmt." msgid "Solid infill direction" @@ -12195,7 +12196,7 @@ msgstr "Richtung des massiven Füllmusters" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie " "steuert." @@ -12212,7 +12213,7 @@ msgstr "Fülldichte" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Dichte der internen Füllung, 100% verwandelt alle interne Füllung in massive " "Füllung und das interne massive Füllmuster wird verwendet." @@ -12220,7 +12221,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Füllmuster" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Linienmuster für innere Füllung." msgid "Grid" @@ -12293,7 +12294,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12326,7 +12327,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12344,24 +12345,24 @@ msgstr "" msgid "0 (Simple connect)" msgstr "0 (Einfache Verbindung)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Beschleunigung Außenwände" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Beschleunigung Innenwände" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Beschleunigung Bewegung" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Dies ist die Beschleunigung der Füllung von der obersten Schicht. Die " "Verwendung eines niedrigeren Werts kann die Qualität der Oberfläche " "verbessern." -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Beschleunigung der Außenwand: Die Verwendung eines niedrigeren Wertes kann " "die Qualität verbessern." @@ -12375,7 +12376,7 @@ msgstr "" "berechnet." msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "mm/s² o. %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " @@ -12396,7 +12397,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Beschleunigung der ersten Schicht. Die Verwendung eines niedrigeren Wertes " "kann die Druckbetthaftung verbessern" @@ -12404,7 +12405,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Beschleunigung zu Verzögerung einschalten" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "" "Die maximale Beschleunigung und Verzögerung von Klipper wird automatisch " "angepasst" @@ -12414,26 +12415,26 @@ msgstr "Beschleunigung zu Verzögerung" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" "Klipper's max_accel_to_decel wird auf diesen %% der Beschleunigung verändert" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Ruckwert Außenwand" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Ruckwert Innenwand" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Ruckwert Oberseiten" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Ruckwert Füllung" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Ruckwert erste Schicht" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Jerk for Bewegung" msgid "" @@ -12448,24 +12449,24 @@ msgstr "Höhe der ersten Schicht" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Höhe der ersten Schicht. Eine etwas dickere erste Schicht kann die Haftung " "der Druckplatte verbessern" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Geschwindigkeit der ersten Schicht mit Ausnahme der massiven Füllung." msgid "Initial layer infill" msgstr "Füllung" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Geschwindigkeit des massiven Füllung der ersten Schicht." msgid "Initial layer travel speed" msgstr "Bewegung" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Bewegungsgeschwindigkeit der ersten Schicht" msgid "Number of slow layers" @@ -12482,7 +12483,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Düsentemperatur für die erste Schicht" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Düsentemperatur zum Drucken der ersten Schicht bei Verwendung dieses " "Filaments" @@ -12512,7 +12513,7 @@ msgstr "Stützstruktur-Schnittstelle" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12547,7 +12548,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Diese Einstellung bewirkt, dass der Werkzeugkopf beim Drucken von Wänden " "zufällig zittert, so dass die Oberfläche ein raues, strukturiertes Aussehen " @@ -12567,7 +12568,7 @@ msgstr "Fuzzy Skin Stärke" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Die Breite, innerhalb der gezittert werden soll. Sie sollte unter der Breite " "der Außenwandlinie liegen." @@ -12577,7 +12578,7 @@ msgstr "Fuzzy Skin Punktabstand" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Der durchschnittliche Abstand zwischen den auf jedem Linienabschnitt " "eingeführten Zufallspunkten" @@ -12585,14 +12586,14 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "Fuzzy Skin auf die erste Schicht anwenden" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Ob Fuzzy Skin auf die erste Schicht angewendet werden soll" msgid "Fuzzy skin noise type" msgstr "Fuzzy Skin Rauschtyp" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12674,7 +12675,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Geschwindigkeit für die Lückenfüllung. Lücken haben normalerweise eine " "unregelmäßige Linienbreite und sollten deshalb langsamer gedruckt werden." @@ -12697,7 +12698,7 @@ msgstr "Als Bogen drucken" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12706,7 +12707,7 @@ msgid "" "to line segments by the firmware." msgstr "" "Aktivieren Sie diese Option, um eine G-Code-Datei zu erhalten, die G2- und " -"G3-Bewegungen enthält. Die Passungstoleranz entspricht der Auflösung. \n" +"G3-Bewegungen enthält. Die Passungstoleranz entspricht der Auflösung.\n" "\n" "Hinweis: Für Klipper-Maschinen wird empfohlen, diese Option zu deaktivieren. " "Klipper profitiert nicht von Bogenbefehlen, da diese von der Firmware wieder " @@ -12717,17 +12718,18 @@ msgstr "" msgid "Add line number" msgstr "Liniennummer hinzufügen" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Aktivieren Sie diese Option, um die Zeilennummer (Nx) am Anfang jeder G-Code-" -"Zeile einzufügen" +"Zeile einzufügen." msgid "Scan first layer" msgstr "Erste Schicht scannen" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Aktivieren Sie diese Option, damit die Kamera des Druckers die Qualität der " "ersten Schicht überprüft." @@ -12737,7 +12739,7 @@ msgstr "Düsentyp" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Das metallische Material der Düse. Dies bestimmt die Abriebfestigkeit der " "Düse und welche Art von Filamenten gedruckt werden kann." @@ -12770,7 +12772,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Druckerstruktur" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Die physische Anordnung und Komponenten eines Druckers" msgid "CoreXY" @@ -12804,10 +12806,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Starte den Lüfter diese Anzahl an Sekunden früher. (du kannst auch Milli-" @@ -12844,7 +12846,7 @@ msgstr "" msgid "Time cost" msgstr "Druckzeit Kosten" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Die Druckkosten pro Stunde" msgid "money/h" @@ -12874,8 +12876,8 @@ msgstr "" msgid "G-code flavor" msgstr "G-Code Typ" -msgid "What kind of gcode the printer is compatible with" -msgstr "Mit welcher Art von G-Code ist der Drucker kompatibel" +msgid "What kind of G-code the printer is compatible with." +msgstr "Mit welcher Art von G-Code ist der Drucker kompatibel." msgid "Klipper" msgstr "Klipper" @@ -12883,7 +12885,7 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Pellet-Modifizierter Drucker" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "aktivieren Sie diese Option, wenn Ihr Drucker Pellets anstelle von " "Filamenten verwendet" @@ -12891,7 +12893,7 @@ msgstr "" msgid "Support multi bed types" msgstr "Unterstützung mehrerer Betttypen" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" "Aktivieren Sie diese Option, wenn Sie mehrere Betttypen verwenden möchten" @@ -12899,7 +12901,7 @@ msgid "Label objects" msgstr "Objekte beschriften" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12913,7 +12915,7 @@ msgstr "" msgid "Exclude objects" msgstr "Objekte ausschließen" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" "Aktivieren Sie diese Option, um den Befehl EXCLUDE OBJECT im G-Code " "hinzuzufügen." @@ -12946,7 +12948,7 @@ msgid "Infill combination - Max layer height" msgstr "Kombinieren der Füllung - Maximale Schichthöhe" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12957,7 +12959,7 @@ msgid "" "Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " "(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Maximale Schichthöhe für die kombinierte spärliche Füllung. \n" +"Maximale Schichthöhe für die kombinierte spärliche Füllung.\n" "\n" "Setzen Sie sie auf 0 oder 100%, um den Düsendurchmesser zu verwenden (für " "eine maximale Reduzierung der Druckzeit) oder einen Wert von ~80%, um die " @@ -13006,7 +13008,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "Der obere massive Füllbereich wird leicht vergrößert, um mit der Wand zu " "überlappen und eine bessere Haftung zu gewährleisten und das Auftreten von " @@ -13015,13 +13017,13 @@ msgstr "" "minimieren. Der Prozentwert bezieht sich auf die Linienbreite der spärlichen " "Füllung." -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Geschwindigkeit der inneren Füllung" msgid "Inherits profile" msgstr "Übernimmt Profil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Name des übergeordneten Profils" msgid "Interface shells" @@ -13030,7 +13032,7 @@ msgstr "Support-Verbindung" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Erzwingen der Erstellung von festen Hüllen zwischen benachbarten Materialien/" "Volumina“ ist eine Funktion, die bei Drucken mit mehreren Extrudern " @@ -13051,7 +13053,7 @@ msgstr "Interlock-Struktur-Tiefe eines segmentierten Bereichs" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Interlock-Tiefe eines segmentierten Bereichs. Es wird ignoriert, wenn " @@ -13141,7 +13143,7 @@ msgstr "Alle soliden Schichten" msgid "Ironing Pattern" msgstr "Bügelmuster" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Das Muster, das beim Glätten verwendet wird" msgid "Ironing flow" @@ -13149,7 +13151,7 @@ msgstr "Materialmenge" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Die Materialmenge, die während des Glättens extrudiert wird. Dies ist " "relativ zum Fluss der normalen Schichthöhe. Ein zu hoher Wert führt zu einer " @@ -13158,7 +13160,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Abstand der Glättlinien" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Der Abstand zwischen den Linien beim Glätten" msgid "Ironing inset" @@ -13166,7 +13168,7 @@ msgstr "Glättabstand" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "Der Abstand zu den Kanten. Ein Wert von 0 setzt dies auf die Hälfte des " "Düsen Durchmessers" @@ -13174,8 +13176,8 @@ msgstr "" msgid "Ironing speed" msgstr "Geschwindigkeit beim Glätten" -msgid "Print speed of ironing lines" -msgstr "Druckgeschwindigkeit der Glättlinien" +msgid "Print speed of ironing lines." +msgstr "Druckgeschwindigkeit der Glättlinien." msgid "Ironing angle" msgstr "Glättwinkel" @@ -13187,7 +13189,7 @@ msgstr "" "Der Winkel, in dem das Glätten durchgeführt wird. Eine negative Zahl " "deaktiviert diese Funktion und verwendet die Standardmethode." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Dieser G-Code wird bei jedem Schichtwechsel nach dem anheben von Z eingefügt." @@ -13196,7 +13198,7 @@ msgstr "Unterstützt den Leise-Modus" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Ob das Gerät den Leisen-Modus unterstützt, bei dem das Gerät eine geringere " "Beschleunigung zum Drucken verwendet" @@ -13209,26 +13211,26 @@ msgstr "Maschinengrenzen" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Wenn diese Option aktiviert ist, werden die Maschinengrenzen in die G-Code-" "Datei ausgegeben.\n" "Diese Option wird ignoriert, wenn der G-Code-Typ auf Klipper eingestellt ist." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Dieser G-Code wird für die Druckpause verwendet. Benutzer können den Pausen-" "G-Code in dem G-Code-Viewer einfügen." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Dieser G-Code wird als benutzerdefinierter Code verwendet" msgid "Small area flow compensation (beta)" msgstr "Kleine Flächen-Flusskompensation (Beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Flusskompensation für kleine Füllbereiche aktivieren" msgid "Flow Compensation Model" @@ -13344,12 +13346,12 @@ msgstr "Maximale Beschleunigung beim Rückziehen (M204 R)" msgid "Maximum acceleration for travel" msgstr "Maximale Fahrgeschwindigkeit" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "Maximale Fahrgeschwindigkeit (M204 T), gilt nur für Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Die Drehzahl des Bauteillüfters kann sich erhöhen, wenn die automatische " "Kühlung aktiviert ist. Dies ist die maximale Drehzahlbegrenzung des " @@ -13359,8 +13361,8 @@ msgid "Max" msgstr "Maximal" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Die größte druckbare Schichthöhe für den Extruder. Wird verwendet, um die " "maximale Schichthöhe zu begrenzen, wenn die adaptive Schichthöhe aktiviert " @@ -13369,29 +13371,30 @@ msgstr "" msgid "Extrusion rate smoothing" msgstr "Glättung der Extrusionsrate" +#, fuzzy msgid "" "This parameter smooths out sudden extrusion rate changes that happen when " "the printer transitions from printing a high flow (high speed/larger width) " "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13407,38 +13410,38 @@ msgstr "" "Extrusionsratenänderungen zulässig sind, was zu schnelleren " "Geschwindigkeitsübergängen führt.\n" "\n" -"Ein Wert von 0 deaktiviert die Funktion. \n" +"Ein Wert von 0 deaktiviert die Funktion.\n" "\n" "Für einen Hochgeschwindigkeits-, Hochfluss-Direktantriebsdrucker (wie den " "Bambu-Labor- oder Voron-Drucker) ist dieser Wert normalerweise nicht " "erforderlich. Er kann jedoch in bestimmten Fällen einen geringfügigen " "Vorteil bieten, in denen sich die Funktionen stark unterscheiden. Zum " "Beispiel, wenn es aggressive Verlangsamungen aufgrund von Überhängen gibt. " -"In diesen Fällen wird ein hoher Wert von ca. 300-350mm3/s2 empfohlen, da " +"In diesen Fällen wird ein hoher Wert von ca. 300-350 mm³/s² empfohlen, da " msgid "mm³/s²" -msgstr "m" +msgstr "" msgid "Smoothing segment length" msgstr "Segmentlänge für die Glättung" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" "Ein niedrigerer Wert führt zu glatteren Extrusionsratenübergängen. Dies " "führt jedoch zu einer deutlich größeren G-Code-Datei und mehr Anweisungen " -"für den Drucker, um zu verarbeiten. \n" +"für den Drucker, um zu verarbeiten.\n" "\n" "Der Standardwert von 3 funktioniert in den meisten Fällen gut. Wenn Ihr " "Drucker stottert, erhöhen Sie diesen Wert, um die Anzahl der Anpassungen zu " -"reduzieren\n" +"reduzieren.\n" "\n" "Zulässige Werte: 0,5-5" @@ -13457,7 +13460,7 @@ msgstr "" "geschwindigkeit von Funktionen zu beeinträchtigen, die für den Benutzer " "nicht sichtbar sind." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Mindestdrehzahl der Bauteilkühlung" msgid "" @@ -13477,8 +13480,8 @@ msgid "Min" msgstr "Min" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Die niedrigste druckbare Schichthöhe für den Extruder. Wird verwendet, um " "die minimale Schichthöhe zu begrenzen, wenn die adaptive Schichthöhe " @@ -13522,7 +13525,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Volumen der Düse" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Volumen der Düse zwischen dem Messer und dem Ende der Düse" msgid "Cooling tube position" @@ -13568,7 +13571,7 @@ msgstr "Zusätzliche Länge beim Laden" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Wenn der Wert auf Null gesetzt ist, ist die Entfernung, die das Filament " @@ -13589,7 +13592,7 @@ msgstr "Rückzug bei der Füllung verringern" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Kein Rückzug, wenn sich die Bewegung des Druckkopfes vollständig in einem " "Füllbereich befindet. Das bedeutet, dass das herauslaufen des Filaments " @@ -13607,7 +13610,7 @@ msgstr "" msgid "Filename format" msgstr "Format des Dateinamens" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "Der Benutzer kann den Projektdateinamen beim Export selbst bestimmen" msgid "Make overhangs printable" @@ -13634,7 +13637,7 @@ msgstr "Flächenbereich für druckbare Überhänge von Löchern" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Maximaler Flächenbereich eines Lochs in der Basis des Modells, bevor es mit " "konischem Material gefüllt wird. Ein Wert von 0 füllt alle Löcher in der " @@ -13665,10 +13668,10 @@ msgstr "" "Linienbreite der inneren Wand. Wenn als Prozentsatz angegeben, wird sie in " "Bezug auf den Düsendurchmesser berechnet." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Druckgeschwindigkeit der Innenwand" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Anzahl der Wände jeder Schicht" msgid "Alternate extra wall" @@ -13676,20 +13679,20 @@ msgstr "Abwechselnde zusätzliche Wand" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" "Diese Einstellung fügt jeder zweiten Schicht eine zusätzliche Wand hinzu. " "Damit wird die Füllung vertikal zwischen den Wänden eingeklemmt, was zu " -"stärkeren Drucken führt. \n" +"stärkeren Drucken führt.\n" "\n" "Wenn diese Option aktiviert ist, muss die Option zur Sicherstellung der " -"vertikalen Schalendicke deaktiviert werden. \n" +"vertikalen Schalendicke deaktiviert werden.\n" "\n" "Die Verwendung von Lightning Infill zusammen mit dieser Option wird nicht " "empfohlen, da die Füllung begrenzt ist, um die zusätzlichen Umfänge zu " @@ -13726,26 +13729,26 @@ msgstr "Druckervariante" msgid "Raft contact Z distance" msgstr "Z Abstand Objekt Druckbasis " -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Z-Abstand zwischen Objekt und Druckbasis. Bei löslicher Oberfläche ignoriert" msgid "Raft expansion" msgstr "Druckbasis Erweiterung" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Druckbasis in der XY-Ebene erweitern" msgid "Initial layer density" msgstr "Dichte der ersten Schicht" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Dichte der ersten Schicht der Druckbasis oder Support" msgid "Initial layer expansion" msgstr "Ausdehnung der ersten Schicht" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Ausdehnung der ersten Druckbasis oder Support-Schicht um die " "Druckplattenhaftung zu verbessern" @@ -13755,34 +13758,34 @@ msgstr "Druckbasisschichten" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Das Objekt wird um diese Anzahl von Stützschichten erhöht. Verwenden Sie " "diese Funktion, um ein verziehen bei ABS zu vermeiden." msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Der G-Code-Pfad wird nach der Vereinfachung der Kontur des Modells " "generiert, um zu viele Punkte und G-Code Befehle in der G-Code-Datei zu " "vermeiden. Ein kleinerer Wert bedeutet eine höhere Auflösung und mehr Zeit " -"zum Slicen" +"zum Slicen." msgid "Travel distance threshold" msgstr "Schwellenwert für die Fahrstrecke" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "Rückzug nur auslösen, wenn der Fahrweg länger als diese Schwelle ist" msgid "Retract amount before wipe" msgstr "Rückzugsmenge vor der Reinigung" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Die Länge des schnellen Rückzugs vor dem Abwischen, relativ zur " "Rückzugslänge." @@ -13790,7 +13793,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Zurückziehen beim Schichtwechsel" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Erzwingen eines Rückzugs beim Schichtwechsel" msgid "Retract on top layer" @@ -13798,7 +13801,7 @@ msgstr "Rückzug auf der obersten Schicht" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Forciert einen Rückzug auf der obersten Schicht. Das Deaktivieren könnte " "eine Verstopfung bei sehr langsamen Mustern mit kleinen Bewegungen wie der " @@ -13815,16 +13818,16 @@ msgstr "" "Filaments bei langen Verfahrwegen zu vermeiden. Null deaktiviert dein " "Rückzug." -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Langer Rückzug beim Schneiden (experimentell)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Experimentelle Funktion. Rückzug und Abschneiden des Filaments bei einem " +"Experimentelle Funktion: Rückzug und Abschneiden des Filaments bei einem " "längeren Abstand während des Wechsels, um den Reinigungsvorgang zu " "minimieren. Obwohl dies den Reinigungsvorgang erheblich reduziert, kann es " "auch das Risiko von Düsenverstopfungen oder anderen Druckproblemen erhöhen." @@ -13833,10 +13836,10 @@ msgid "Retraction distance when cut" msgstr "Rückzugslänge beim Schneiden" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Experimentelle Funktion. Rückzugslänge vor dem Abschneiden beim Filament-" +"Experimentelle Funktion: Rückzugslänge vor dem Abschneiden beim Filament-" "Wechsel" msgid "Z-hop height" @@ -13845,39 +13848,36 @@ msgstr "Z-Hub-Höhe" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Bei jedem Rückzug wird die Düse ein wenig angehoben, um einen Abstand " "zwischen Düse und Druck zu schaffen. Dadurch wird verhindert, dass die Düse " "bei der Verfahrbewegung gegen den Druck stößt. Die Verwendung einer " "Spirallinie zum Anheben von z kann Fadenbildung verhindern." -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Z-Hub untere Grenze" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Z-Hub wird nur wirksam, wenn Z über diesem Wert liegt und unter dem " -"Parameter: \"Z-Hub obere Grenze\" liegt" +"Parameter: \"Z-Hub obere Grenze\" liegt." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Z-Hub obere Grenze" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Wenn dieser Wert positiv ist, wird der Z-Hub nur wirksam, wenn Z über dem " -"Parameter: \"Z-Hub untere Grenze\" liegt und unter diesem Wert liegt" +"Parameter: \"Z-Hub untere Grenze\" liegt und unter diesem Wert liegt." msgid "Z-hop type" msgstr "Z-Hub Typ" -msgid "Z hop type" -msgstr "Z-Hub Typ" - msgid "Slope" msgstr "Steigung" @@ -13888,11 +13888,11 @@ msgid "Traveling angle" msgstr "Bewegungswinkel" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Bewegungswinkel für den Z-Hub-Typ \"Steigung\" und \"Spirale\". Wenn Sie es " -"auf 90° einstellen, erhalten Sie eine normale Anhebung" +"auf 90° einstellen, erhalten Sie eine normale Anhebung." msgid "Only lift Z above" msgstr "Nur Z anheben über" @@ -13918,7 +13918,7 @@ msgid "On surfaces" msgstr "Auf Oberflächen" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Verhalten des Z-Hops erzwingen. Diese Einstellung wird von den oben " @@ -13957,15 +13957,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Rückzugsgeschwindigkeit" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Geschwindigkeit für den Rückzug" msgid "De-retraction Speed" msgstr "Wiedereinzugsgeschwindigkeit" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Geschwindigkeit für das Einziehen von Filament in den Extruder nach einem " "Rückzug. Null bedeutet die gleiche Geschwindigkeit wie der Rückzug." @@ -13988,15 +13988,15 @@ msgid "Disable set remaining print time" msgstr "Deaktiviere die verbleibende Druckzeit" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Deaktiviert das Generieren von M73: Setze die verbleibende Druckzeit im " -"endgültigen G-Code" +"endgültigen G-Code." msgid "Seam position" msgstr "Nahtposition" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Die Startposition für den Druck jedes Teils der Außenwand" msgid "Nearest" @@ -14094,7 +14094,7 @@ msgstr "Schrägnaht Geschwindigkeit" 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 " +"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 " @@ -14165,7 +14165,7 @@ msgid "Role base wipe speed" msgstr "Rollenbasierte Wipe Geschwindigkeit" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14194,7 +14194,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14204,7 +14204,7 @@ msgstr "" "Umfangs zu minimieren, wenn mit der Druckreihenfolge \"Außen/Innen\" oder " "\"Innen/Außen/Innen\" gedruckt wird, wird der Rückzug etwas nach innen vom " "Anfang des äußeren Umfangs ausgeführt. Auf diese Weise wird eine mögliche " -"Überextrusion von der Außenfläche verdeckt. \n" +"Überextrusion von der Außenfläche verdeckt.\n" "\n" "Dies ist nützlich, wenn mit der Druckreihenfolge \"Außen/Innen\" oder " "\"Innen/Außen/Innen\" gedruckt wird, da in diesen Modi ein äußerer Umfang " @@ -14215,9 +14215,9 @@ msgstr "Wipe Geschwindigkeit" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Die Wischengeschwindigkeit wird durch die im Konfigurationsmenü angegebene " "Geschwindigkeit bestimmt.Wenn der Wert als Prozentsatz (z.B. 80%) angegeben " @@ -14243,7 +14243,7 @@ msgstr "" msgid "Skirt height" msgstr "Höhe der Umrandungsringe" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Wie viele Schichten des Skirts. Normalerweise nur eine Schicht." msgid "Single loop draft shield" @@ -14264,7 +14264,7 @@ msgstr "Luftzug-Schutz" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14274,7 +14274,7 @@ msgid "" msgstr "" "Ein Luftzug-Schutz ist nützlich, um einen ABS- oder ASA-Druck vor Verzug und " "dem Ablösen vom Druckbett aufgrund von Windzug zu schützen. Er wird " -"normalerweise nur bei offenen Druckern benötigt, d.h. ohne Gehäuse. \n" +"normalerweise nur bei offenen Druckern benötigt, d.h. ohne Gehäuse.\n" "\n" "Aktiviert = Umrandung ist so hoch wie das höchste gedruckte Objekt. " "Andernfalls wird 'Höhe der Umrandung' verwendet.\n" @@ -14305,7 +14305,7 @@ msgstr "Pro Objekt" msgid "Skirt loops" msgstr "Anzahl Umrandungsringe" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "Anzahl der Ringe für die Umrandung. Null bedeutet Deaktivierung der Umrandung" @@ -14324,9 +14324,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Minimale Filamentextrusionslänge in mm beim Drucken der Umrandung. Null " @@ -14339,19 +14339,20 @@ msgstr "" "Schleifen in einem solchen Fall." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Die Druckgeschwindigkeit im exportierten G-Code wird verlangsamt, wenn die " "geschätzte Schichtzeit kürzer als dieser Wert ist, um eine bessere Kühlung " -"für diese Schichten zu erreichen" +"für diese Schichten zu erreichen." msgid "Minimum sparse infill threshold" msgstr "Mindestschwelle für Füllung" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Innere Füllbereiche, die kleiner als dieser Wert sind, werden durch massive " "Füllungen ersetzt." @@ -14369,7 +14370,7 @@ msgstr "" "Linienbreite des internen massiven Infill. Wenn als Prozentsatz angegeben, " "wird sie in Bezug auf den Düsendurchmesser berechnet." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Geschwindigkeit der inneren massiven Füllungen, ohne die obere oder untere " "Oberfläche." @@ -14377,7 +14378,7 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Aktiviert die Spiralisierung, welche die Z-Bewegungen der Außenkontur " "glättet und verwandelt ein Volumenmodell in einen einwandigen Druck mit " @@ -14389,7 +14390,7 @@ msgstr "Gleichmäßig Spirale" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Die gleichmäßige Spirale glättet auch die X- und Y-Bewegungen, so dass keine " "Naht sichtbar ist, auch nicht in den XY-Richtungen an Wänden, die nicht " @@ -14401,7 +14402,7 @@ msgstr "Maximale XY-Glättung" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Maximaler Abstand, um Punkte in XY zu verschieben, um eine glatte Spirale zu " "erreichen. Wenn als Prozentsatz angegeben, wird er in Bezug auf den " @@ -14465,8 +14466,8 @@ msgstr "Temperaturvariation" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Temperaturunterschied, der angewendet wird, wenn ein Extruder nicht aktiv " "ist. Der Wert wird nicht verwendet, wenn 'idle_temperature' in den Filament-" @@ -14491,7 +14492,7 @@ msgid "Preheat steps" msgstr "Vorheizschritte" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Fügen Sie mehrere Vorheizbefehle ein (z.B. M104.1). Nur nützlich für Prusa " @@ -14500,16 +14501,16 @@ msgstr "" msgid "Start G-code" msgstr "Start G-Code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "G-Code hinzufügen, wenn der Druckvorgang beginnt" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "G-Code hinzufügen, wenn der Druck dieses Filaments beginnt" msgid "Single Extruder Multi Material" msgstr "Einzelner Extruder, mehrere Materialien" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Benutze eine einzelne Düse zum Drucken mit mehreren Filamenten" msgid "Manual Filament Change" @@ -14530,18 +14531,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Reinige im Reinigungsturm" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Reinige das restliche Filament im Reinigungsturm" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Filamentrammen aktivieren" msgid "No sparse layers (beta)" msgstr "Keine dünnen Schichten (Beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14614,9 +14615,9 @@ msgid "Enable support generation." msgstr "Erzeugung von Stützstrukturen aktivieren." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Normal (auto) und Tree (auto) werden verwendet, um Stützstrukturen " "automatisch zu generieren. Wenn Normal (manual) oder Tree (manual) " @@ -14637,14 +14638,14 @@ msgstr "Baum (manuell)" msgid "Support/object xy distance" msgstr "Stützen/Objekt XY-Abstand" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "XY-Abstand zwischen einem Objekt und seinen Stützstrukturen." msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "Stützen/Objekt Abstand der ersten Schicht" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "XY-Abstand zwischen einem Objekt und seinen Stützstrukturen in der ersten Schicht." msgid "Pattern angle" msgstr "Winkel des Musters" @@ -14657,7 +14658,7 @@ msgstr "" msgid "On build plate only" msgstr "Nur auf Druckplatte" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "" "Stützen nicht auf der Modelloberfläche, sondern nur auf der Druckplatte " "erzeugen" @@ -14683,13 +14684,13 @@ msgstr "" msgid "Top Z distance" msgstr "Oberer Z-Abstand" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "Der Z-Abstand zwischen der oberen Stütz-Schnittstelle und dem Objekt" msgid "Bottom Z distance" msgstr "Unterer Z-Abstand" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "Der Z-Abstand zwischen der unteren Stütz-Schnittstelle und dem Objekt" msgid "Support/raft base" @@ -14697,7 +14698,7 @@ msgstr "Stütz-/Basis-Objekt" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament zum Drucken von Stützbasen und Flöße. \"Standard\" bedeutet, dass " "kein spezielles Filament für die Stützen verwendet wird, sondern das " @@ -14732,7 +14733,7 @@ msgstr "Stütz-/Raft-Schnittstelle" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament zum Drucken von Stütz-Schnittstellen. \"Standard\" bedeutet, dass " "kein spezielles Filament für die Stütz-Schnittstellen vorhanden ist und das " @@ -14741,13 +14742,13 @@ msgstr "" msgid "Top interface layers" msgstr "Obere Schnittstellenschichten" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Anzahl der oberen Schnittstellenschichten" msgid "Bottom interface layers" msgstr "Untere Schnittstellenschichten" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Anzahl der unteren Schnittstellenschichten" msgid "Same as top" @@ -14756,24 +14757,24 @@ msgstr "Gleich wie oben" msgid "Top interface spacing" msgstr "Oberer Schnittstellenabstand" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "Abstand der Schnittstellenlinien. Null bedeutet feste Schnittstelle" msgid "Bottom interface spacing" msgstr "Abstand der unteren Schnittstelle" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Abstand der unteren Trennschichtlinien der Stützstrukturen. Null bedeutet " "eine solide Schnittstelle." -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Geschwindigkeit der Stützstruktur-Schnittstellen." msgid "Base pattern" msgstr "Basismuster" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Linienmuster der Stützstrukturen" msgid "Rectilinear grid" @@ -14788,7 +14789,7 @@ msgstr "Schnittstellenmuster" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Linienmuster der Stützstruktur-Schnittstelle. Das Standardmuster für nicht " "lösliche Schnittstellen ist Geradlinig, während das Standardmuster für " @@ -14800,18 +14801,18 @@ msgstr "Rechteckiges Wechselmuster" msgid "Base pattern spacing" msgstr "Abstand des Grundmusters" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Abstände zwischen den Stützlinien" msgid "Normal Support expansion" msgstr "Normale Stützerweiterung" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" "Vergrößern (+) oder Verkleinern (-) der horizontalen Spannweite der normalen " "Stützen" -msgid "Speed of support" +msgid "Speed of support." msgstr "Druckgeschwindigkeit für Stützstrukturen." msgid "" @@ -14855,7 +14856,7 @@ msgstr "Unabhängige Stützstruktur-Schichthöhe" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Die Stützschicht verwendet eine unabhängige Schichthöhe im Vergleich zur " @@ -14889,8 +14890,8 @@ msgid "Tree support branch angle" msgstr "Baumstütze Astwinkel" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Diese Einstellung legt den maximalen Überhangwinkel fest, den die Äste der " @@ -14941,8 +14942,8 @@ msgid "Adaptive layer height" msgstr "Adaptive Schichthöhe" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Wenn Sie diese Option aktivieren, wird die Höhe der Baumstützschicht außer " "der ersten automatisch berechnet." @@ -14952,7 +14953,7 @@ msgstr "Automatische Randbreite" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Das Aktivieren dieser Option bedeutet, dass die Breite des Brims für " "Baumstützstrukturen automatisch durch die 3D-Drucksoftware berechnet wird." @@ -14960,7 +14961,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Baumsupport mit Füllung" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "Abstand vom Modell zur äußersten Randlinie" msgid "Tip Diameter" @@ -15007,7 +15008,7 @@ msgstr "Baumsupport mit Füllung" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "Diese Einstellung gibt die Anzahl der Wände um den Baumsupport an" msgid "Activate temperature control" @@ -15019,7 +15020,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -15029,7 +15030,7 @@ msgstr "" "Option aktiviert das Aussenden eines M191-Befehls vor dem " "\"machine_start_gcode\", der die Druckraumtemperatur einstellt und wartet, " "bis sie erreicht ist. Darüber hinaus wird am Ende des Drucks ein M141-Befehl " -"ausgegeben, um den Druckraumheizer auszuschalten, falls vorhanden. \n" +"ausgegeben, um den Druckraumheizer auszuschalten, falls vorhanden.\n" "\n" "Diese Option basiert auf der Firmware, die die M191- und M141-Befehle " "entweder über Makros oder nativ unterstützt und wird normalerweise " @@ -15043,13 +15044,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -15061,12 +15062,12 @@ msgstr "" "Druckraumtemperatur helfen, das Verziehen zu unterdrücken oder zu reduzieren " "und möglicherweise zu einer höheren Festigkeit der Zwischenschichtbindung " "führen. Gleichzeitig verringert eine höhere Druckraumtemperatur jedoch die " -"Effizienz der Luftfiltration für ABS und ASA. \n" +"Effizienz der Luftfiltration für ABS und ASA.\n" "\n" "Für PLA, PETG, TPU, PVA und andere Niedrigtemperaturmaterialien sollte diese " "Option deaktiviert sein (auf 0 gesetzt werden), da die Druckraumtemperatur " "niedrig sein sollte, um ein Verstopfen des Extruders durch Erweichung des " -"Materials am Heizblock zu vermeiden. \n" +"Materials am Heizblock zu vermeiden.\n" "\n" "Wenn diese Option aktiviert ist, wird auch eine G-Code-Variable namens " "chamber_temperature gesetzt, die verwendet werden kann, um die gewünschte " @@ -15077,7 +15078,7 @@ msgstr "" "Wärmespeichern im Druckstart-Makro behandeln möchten, wenn kein aktiver " "Druckraumheizer installiert ist." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Düsentemperatur nach der ersten Schicht" msgid "Detect thin wall" @@ -15085,21 +15086,21 @@ msgstr "Dünne Wand erkennen" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Erkennt dünne Wände, die keine zwei Linienbreiten enthalten können. Und " "verwendet eine einzelne Linie zum Drucken. Diese wird vielleicht nicht sehr " "gut gedruckt, weil es keine geschlossene Schleife ist." msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Dieser G-Code wird beim Filamentwechsel eingefügt, einschließlich des T-" -"Befehls zum Auslösen des Werkzeugwechsels" +"Befehls zum Auslösen des Werkzeugwechsels." -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "Dieser G-Code wird beim Wechsel der Extrusionsart eingefügt" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "Dieser G-Code wird beim Wechsel der Extrusionsart eingefügt." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -15108,7 +15109,7 @@ msgstr "" "Linienbreite für obere Oberflächen. Wenn als Prozentsatz angegeben, wird sie " "in Bezug auf den Düsendurchmesser berechnet." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Geschwindigkeit der massiven Füllung der Oberseite." msgid "Top shell layers" @@ -15117,7 +15118,7 @@ msgstr "Obere Schalenschichten" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Dies ist die Anzahl der massiven Schichten der oberen Schale, einschließlich " "der Oberflächenschicht. Wenn die mit diesem Wert berechnete Dicke dünner ist " @@ -15135,7 +15136,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Die Anzahl der oberen festen Schichten wird beim Slicen erhöht, wenn die " "obere Schalenstärke dünner als dieser Wert ist. Dies kann verhindern, dass " @@ -15143,15 +15144,16 @@ msgstr "" "bedeutet, dass diese Einstellung deaktiviert ist und die Dicke der oberen " "Schale absolut durch die oberen Schalenschichten bestimmt wird." -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Eilgeschwindigkeit, wenn nicht extrudiert wird." msgid "Wipe while retracting" msgstr "Während des Rückzugs wischen" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Bewegen Sie die Düse beim Zurückziehen entlang des letzten Extrusionsweges, " "um ausgetretenes Material an der Düse zu reinigen. Dies kann die Bildung von " @@ -15162,22 +15164,22 @@ msgstr "Wischabstand" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Beschreibt, wie lange die Düse entlang des letzten Pfades bewegt wird, wenn " -"zurückgezogen wird. \n" +"zurückgezogen wird.\n" "\n" "Je nachdem, wie lange die Wischoperation dauert, wie schnell und wie lange " "die Einstellungen für den Extruder-/Filamentrückzug sind, kann ein " "Rückzugsbefehl erforderlich sein, um das verbleibende Filament " -"zurückzuziehen. \n" +"zurückzuziehen.\n" "\n" "Wenn ein Wert in der Einstellung \"Rückzugsmenge vor dem Wischen\" unten " "angegeben ist, wird ein überschüssiger Rückzug vor dem Wischen ausgeführt, " @@ -15212,7 +15214,7 @@ msgstr "Reinigungsvolumen" msgid "The volume of material to prime extruder on tower." msgstr "Das Volumen des Materials, das der Extruder am Turm entladen soll." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Breite des Reinigungsturms." msgid "Wipe tower rotation angle" @@ -15248,7 +15250,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15323,8 +15325,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Dieses Objekt wird verwendet, um die Düse nach einem Filamentwechsel zu " "reinigen, Filament zu sparen und die Druckzeit zu verkürzen. Die Farben der " @@ -15359,9 +15361,9 @@ msgid "Idle temperature" msgstr "Leerlauftemperatur" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Düsentemperatur, wenn das Werkzeug in Mehrwerkzeug-Setups derzeit nicht " "verwendet wird. Dies wird nur verwendet, wenn die „Ausflussverhinderung“ in " @@ -15370,10 +15372,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "X-Y-Loch-Kompensation" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Die Löcher des Objekts werden in der XY-Ebene um den eingestellten Wert " "vergrößert oder verkleinert. Ein positiver Wert macht die Löcher größer, ein " @@ -15383,11 +15387,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y-Konturkompensation" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Die Kontur von Objekten wird in der XY-Ebene um den eingestellten Wert " "vergrößert oder verkleinert. Positive Werte vergrößern Konturen, negative " @@ -15447,7 +15452,7 @@ msgstr "Format der G-Code-Vorschaubilder" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Format der G-Code-Vorschaubilder: PNG für beste Qualität, JPG für kleinste " "Größe, QOI für Firmware mit geringem Speicherbedarf" @@ -15456,10 +15461,10 @@ msgid "Use relative E distances" msgstr "Relative Extrusion" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Relative Extrusion wird empfohlen, wenn die Option \"label_objects\" " "verwendet wird. Einige Extruder arbeiten besser mit dieser Option " @@ -15470,7 +15475,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Der klassische Wandgenerator erzeugt Wände mit konstanter Extrusionsbreite, " "wobei für sehr dünne Bereiche die Lückenfüllung verwendet wird. Die Arachne-" @@ -15485,7 +15490,7 @@ msgstr "Länge des Wandübergangs" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Beim Übergang zwischen verschiedenen Wandstärken, wenn das Teil dünner wird, " "wird eine bestimmte Menge an Platz zum Trennen oder Verbinden der " @@ -15502,7 +15507,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Verhindern Sie das Hin- und Herwechseln zwischen einer zusätzlichen Wand und " "einer weniger. Diese Spanne erweitert den Bereich der Extrusionsbreiten auf " @@ -15521,7 +15526,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Wenn Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden " "erstellt werden sollen. Eine Keilform mit einem größeren Winkel als dieser " @@ -15535,7 +15540,7 @@ msgstr "Anzahl der Wände" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Die Anzahl der Wände, von der Mitte aus gezählt, über die die Veränderung " "verteilt werden muss. Niedrigere Werte bedeuten, dass sich die Außenwände " @@ -15544,11 +15549,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minimale Merkmalgröße" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Mindestdicke für dünne Features. Modellfeatures, die dünner als dieser Wert " "sind, werden nicht gedruckt, während Features, die dicker als die " @@ -15599,7 +15605,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Breite der Wand, die dünne Features (entsprechend der Mindest-Featuregröße) " "des Modells ersetzen wird. Wenn die minimale Wandbreite dünner ist als die " @@ -15610,9 +15616,9 @@ msgid "Detect narrow internal solid infill" msgstr "Erkennen einer schmalen internen soliden Füllung" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Mit dieser Option wird ein schmaler innerer Füllbereich automatisch erkannt. " "Wenn diese Option aktiviert ist, wird ein konzentrisches Muster für den " @@ -15646,11 +15652,11 @@ msgstr "Exportieren von Slicing-Daten in einen Ordner" msgid "Load slicing data" msgstr "Slicing-Daten laden" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Zwischengespeicherte Slicing-Daten aus dem Verzeichnis laden" msgid "Export STL" -msgstr "Export STL" +msgstr "Exportiere STL" msgid "Export the objects as single STL." msgstr "Exportieren Sie die Objekte als einzelne STL." @@ -15658,7 +15664,7 @@ msgstr "Exportieren Sie die Objekte als einzelne STL." msgid "Export multiple STLs" msgstr "Mehrere STLs exportieren" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Exportieren Sie die Objekte als mehrere STLs in ein Verzeichnis" msgid "Slice" @@ -15683,7 +15689,7 @@ msgstr "abwärts Kompatibilitätsprüfung" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" "Überprüfen, ob die aktuelle Maschine abwärtskompatibel mit den Maschinen in " "der Liste ist" @@ -15691,7 +15697,7 @@ msgstr "" msgid "Load default filaments" msgstr "Standard-Filamente laden" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Das erste Filament als Standard für nicht geladene übernehmen" msgid "Minimum save" @@ -15715,7 +15721,7 @@ msgstr "Das maximale Slicing-Zeitlimit pro Plate in Sekunden." msgid "No check" msgstr "Keine Überprüfung" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Führe keine Gültigkeitsprüfungen durch, wie beispielsweise die Überprüfung " "von G-Code-Pfadkonflikten." @@ -15750,17 +15756,17 @@ msgstr "Anordnungsoptionen" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Anordnungsoptionen: 0-deaktiviert; 1-aktiviert; andere-automatisch" -msgid "Repetions count" +msgid "Repetition count" msgstr "Anzahl der Wiederholungen" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Anzahl der Wiederholungen des gesamten Modells" msgid "Ensure on bed" msgstr "Auf dem Bett stellen" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Heben Sie das Objekt über das Bett, wenn es teilweise darunter liegt. " "Standardmäßig deaktiviert" @@ -15775,7 +15781,7 @@ msgstr "" msgid "Convert Unit" msgstr "Einheit umrechnen" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Einheiten des Modells umrechnen" msgid "Orient Options" @@ -15793,70 +15799,70 @@ msgstr "Rotieren um Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Rotationswinkel um die Y-Achse in Grad." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Skalierung des Modells um einen Faktor" msgid "Load General Settings" msgstr "Allgemeine Einstellungen laden" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Laden von Prozess-/Maschineneinstellungen aus der angegebenen Datei" msgid "Load Filament Settings" msgstr "Filamenteinstellungen laden" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Filamenteinstellungen aus der angegebenen Dateiliste laden" msgid "Skip Objects" msgstr "Objekte überspringen" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Einige Objekte in diesem Druck überspringen" msgid "Clone Objects" msgstr "Objekte klonen" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "Objekte in der Ladeliste klonen" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" "Aktuelle Prozess-/Maschineneinstellungen laden, wenn 'Aktuell' verwendet wird" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "Aktuelle Prozess-/Maschineneinstellungen aus der angegebenen Datei laden, " "wenn Aktuell verwendet wird" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "Aktuelle Filamenteinstellungen laden, wenn Aktuell verwendet wird" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" "Aktuelle Filamenteinstellungen aus der angegebenen Datei laden, wenn Aktuell " "verwendet wird" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "Wenn aktiviert, wird überprüft, ob die aktuelle Maschine abwärtskompatibel " "mit den Maschinen in der Liste ist" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "Einstellungen für abwärtskompatible Maschinen" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "Die Liste der Maschineneinstellungen muss abwärts überprüft werden" msgid "Load assemble list" msgstr "Lade die Liste der zusammenzufügenden Objekte" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" "Laden Sie die Liste der zusammenzufügenden Objekte aus der " "Konfigurationsdatei" @@ -15892,14 +15898,14 @@ msgstr "" msgid "Enable timelapse for print" msgstr "Zeitraffer für Druck aktivieren" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "Wenn aktiviert, wird dieses Slicing als Zeitraffer betrachtet" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Lade benutzerdefinierten G-Code" -msgid "Load custom gcode from json" -msgstr "Lade benutzerdefinierten G-Code aus json" +msgid "Load custom G-code from json." +msgstr "Lade benutzerdefinierten G-Code aus json." msgid "Load filament ids" msgstr "Lade Filament-IDs" @@ -15907,38 +15913,38 @@ msgstr "Lade Filament-IDs" msgid "Load filament ids for each object" msgstr "Lade Filament-IDs für jedes Objekt" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Erlaube mehrere Farben auf einer Platte" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" "Wenn aktiviert, wird die Anordnung mehrere Farben auf einer Platte zulassen" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Erlaube Drehungen beim Anordnen" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" "Wenn aktiviert, wird die Anordnung Drehungen zulassen, wenn Objekte " "platziert werden" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Vermeiden Sie den Extrusionskalibrierungsbereich beim Anordnen" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Wenn aktiviert, wird die Anordnung den Extrusionskalibrierungsbereich beim " "Platzieren von Objekten vermeiden." -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "Überspringe geänderte G-Codes in 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" "Überspringe die geänderten G-Codes in der 3mf für Drucker- oder " -"Filamentvorgaben" +"Filamentvorgaben." msgid "MakerLab name" msgstr "MakerLab-Name" @@ -15964,13 +15970,13 @@ msgstr "Metadatenwertliste" msgid "metadata value list added into 3mf" msgstr "Metadatenwertliste, wird in die 3mf hinzugefügt" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Erlauben Sie das Slicen von 3mf mit neuerer Version" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Aktuelles Z-Hop" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Enthält den Z-Hop am Anfang des benutzerdefinierten G-Codes." msgid "" @@ -16076,10 +16082,10 @@ msgstr "" "Gesamtes Filamentvolumen, das pro Extruder während des gesamten Drucks " "extrudiert wird." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Gesamte Anzahl der Werkzeugwechsel" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Anzahl der Werkzeugwechsel während des Drucks." msgid "Total volume" @@ -16248,7 +16254,7 @@ msgstr "" "1)." msgid "Layer z" -msgstr "Layer z" +msgstr "Layer Z" msgid "" "Height of the current layer above the print bed, measured to the top of the " @@ -16324,7 +16330,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Die XY-Größenkompensation eines Objekts wird nicht verwendet, da es auch " "farblich lackiert wurde.\n" @@ -16350,9 +16356,6 @@ msgstr "" "Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .3mf oder .zip.amf " "haben." -msgid "Canceled" -msgstr "Abgebrochen" - msgid "load_obj: failed to parse" msgstr "load_obj: konnte nicht analysiert werden" @@ -16455,7 +16458,7 @@ msgid "The name cannot be empty." msgstr "Der Name darf nicht leer sein." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Die ausgewählte Voreinstellung: %s wurde nicht gefunden." msgid "The name cannot be the same as the system preset name." @@ -16490,13 +16493,13 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Dieser Maschinentyp kann nur 16 historische Ergebnisse pro Düse speichern. " "Sie können die vorhandenen historischen Ergebnisse löschen und dann die " "Kalibrierung starten. Oder Sie können die Kalibrierung fortsetzen, aber Sie " -"können keine neuen Kalibrierungshistorien erstellen. \n" +"können keine neuen Kalibrierungshistorien erstellen.\n" "Möchten Sie die Kalibrierung dennoch fortsetzen?" msgid "Connecting to printer..." @@ -16505,7 +16508,7 @@ msgstr "Verbindung zum Drucker wird hergestellt..." msgid "The failed test result has been dropped." msgstr "Das fehlgeschlagene Testergebnis wurde verworfen." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Flussdynamik-Kalibrierungsergebnis wurde auf dem Drucker gespeichert" #, c-format, boost-format @@ -16532,11 +16535,11 @@ msgstr "Interner Fehler" msgid "Please select at least one filament for calibration" msgstr "Bitte wählen Sie mindestens ein Filament zur Kalibrierung aus" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" "Flussraten-Kalibrierungsergebnis wurde in einer Voreinstellung gespeichert" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Maximale volumetrische Geschwindigkeitskalibrierungsergebnis wurde in einer " "Voreinstellung gespeichert" @@ -16549,10 +16552,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Wir haben jetzt die automatische Kalibrierung für verschiedene Filamente " "hinzugefügt, die vollautomatisch ist und das Ergebnis wird in den Drucker " @@ -16614,12 +16617,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Nach der Verwendung der Flussdynamik-Kalibrierung kann es immer noch zu " "einigen Extrusionsproblemen kommen, wie z.B.:\n" @@ -16739,7 +16742,7 @@ msgstr "Der Name darf 40 Zeichen nicht überschreiten." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Es wird nur eines der Ergebnisse mit demselben Namen gespeichert. Sind Sie " "sicher, dass Sie die anderen Ergebnisse überschreiben möchten?" @@ -16794,9 +16797,6 @@ msgstr "Überspringen Sie die Kalibrierung2" msgid "flow ratio : %s " msgstr "Flussverhältnis: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Bitte wählen Sie einen Block mit glattester Oberfläche" - msgid "Please choose a block with smoothest top surface." msgstr "Bitte wählen Sie einen Block mit glattester Oberfläche." @@ -16842,7 +16842,7 @@ msgstr "Filament zur Kalibrierung" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Tipps für Kalibrierungsmaterial:\n" "- Materialien, die dieselbe Heizbetttemperatur haben können\n" @@ -16850,7 +16850,7 @@ msgstr "" "Matte)" msgid "Pattern" -msgstr "Pattern" +msgstr "Muster" msgid "Method" msgstr "Methode" @@ -17106,7 +17106,7 @@ msgstr "Ende Rückzugslänge" msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Senden Sie G-Code an den Drucker-Host" msgid "Upload to Printer Host with the following filename:" @@ -17156,7 +17156,7 @@ msgstr "Ausgewählten abbrechen" msgid "Show error message" msgstr "Fehlermeldung Anzeigen" -msgid "Enqueued" +msgid "Queued" msgstr "In Warteschlange" msgid "Uploading" @@ -17249,14 +17249,14 @@ msgstr "System Version:" msgid "DNS Server:" msgstr "DNS Server:" -msgid "Test OrcaSlicer(GitHub)" -msgstr "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" +msgstr "Test OrcaSlicer (GitHub)" -msgid "Test OrcaSlicer(GitHub):" -msgstr "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" +msgstr "Test OrcaSlicer (GitHub):" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test bing.com" +msgstr "Test bing.com" msgid "Test bing.com:" msgstr "Test bing.com:" @@ -17323,7 +17323,7 @@ msgstr "" "benutzerdefinierten Hersteller eingeben." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" oder \"Generic\" kann nicht als Hersteller für benutzerdefinierte " "Filamente verwendet werden." @@ -17347,7 +17347,7 @@ msgstr "" "Alle Eingaben im benutzerdefinierten Hersteller oder in der Seriennummer " "bestehen aus Leerzeichen. Bitte erneut eingeben." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "Der Hersteller kann keine Zahl sein. Bitte erneut eingeben." msgid "" @@ -17358,11 +17358,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Der Filamentname %s, den Sie erstellt haben, existiert bereits. \n" +"Der Filamentname %s, den Sie erstellt haben, existiert bereits.\n" "Wenn Sie mit der Erstellung fortfahren, wird die erstellte Voreinstellung " "mit ihrem vollständigen Namen angezeigt. Möchten Sie fortfahren?" @@ -17380,11 +17380,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Wir würden die Voreinstellungen als \"Hersteller Typ Seriennummer @Drucker, " -"den Sie ausgewählt haben\" umbenennen. \n" +"den Sie ausgewählt haben\" umbenennen.\n" "Um weitere Voreinstellungen für weitere Drucker hinzuzufügen, gehen Sie " "bitte zur Druckerauswahl" @@ -17409,7 +17409,7 @@ msgstr "Voreinstellung importieren" msgid "Create Type" msgstr "Typ erstellen" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "Das Modell ist nicht gefunden, bitte Hersteller erneut auswählen." msgid "Select Model" @@ -17431,13 +17431,13 @@ msgid "Printable Space" msgstr "Druckbarer Raum" msgid "Hot Bed STL" -msgstr "Hot Bed STL" +msgstr "Heiz Bett STL" msgid "Load stl" msgstr "STL laden" msgid "Hot Bed SVG" -msgstr "Hot Bed SVG" +msgstr "Heiz Bett SVG" msgid "Load svg" msgstr "SVG laden" @@ -17452,16 +17452,16 @@ msgstr "Die Datei überschreitet %d MB, bitte erneut importieren." msgid "Exception in obtaining file size, please import again." msgstr "Ausnahme beim Abrufen der Dateigröße, bitte erneut importieren." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Voreinstellungspfad nicht gefunden, bitte Hersteller erneut auswählen." msgid "The printer model was not found, please reselect." msgstr "Das Druckermodell wurde nicht gefunden, bitte erneut auswählen." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Der Düsendurchmesser ist nicht gefunden, bitte erneut auswählen." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "Die Druckervoreinstellung ist nicht gefunden, bitte erneut auswählen." msgid "Printer Preset" @@ -17529,7 +17529,7 @@ msgstr "Erstellen von Filament-Voreinstellungen fehlgeschlagen. Wie folgt:\n" msgid "Create process presets failed. As follows:\n" msgstr "Erstellen von Prozess-Voreinstellungen fehlgeschlagen. Wie folgt:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Hersteller nicht gefunden, bitte erneut auswählen." msgid "Current vendor has no models, please reselect." @@ -17565,10 +17565,10 @@ msgstr "" "Sie haben den Drucker, der die Düse ersetzen soll, noch nicht ausgewählt, " "bitte wählen Sie." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Drucker erfolgreich erstellt" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Filament erfolgreich erstellt" msgid "Printer Created" @@ -17599,14 +17599,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" "Studio hat festgestellt, dass Ihre Benutzervoreinstellungen-" "Synchronisierungs-Funktion nicht aktiviert ist, was zu fehlerhaften Filament-" -"Einstellungen auf der Geräteseite führen kann. \n" +"Einstellungen auf der Geräteseite führen kann.\n" "Klicken Sie auf \"Benutzervoreinstellungen synchronisieren\", um die " "Synchronisierungsfunktion zu aktivieren." @@ -17659,18 +17659,18 @@ msgstr "" "der Erstellung ändern." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Drucker und alle Filament- und Prozessvoreinstellungen, die zum Drucker " -"gehören. \n" +"gehören.\n" "Kann mit anderen geteilt werden." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Benutzerfüllung Voreinstellung eingestellt. \n" +"Benutzerfüllung Voreinstellung eingestellt.\n" "Kann mit anderen geteilt werden." msgid "" @@ -17733,7 +17733,7 @@ msgstr "" "Hinweis: Wenn die einzige Voreinstellung unter diesem Filament gelöscht " "wird, wird das Filament nach dem Verlassen des Dialogfelds gelöscht." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" "Voreinstellungen, die von anderen Voreinstellungen geerbt wurden, können " "nicht gelöscht werden" @@ -17759,12 +17759,12 @@ msgid "Delete Filament" msgstr "Filament löschen" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Alle Filamentvoreinstellungen, die zu diesem Filament gehören, werden " -"gelöscht. \n" +"gelöscht.\n" "Wenn Sie dieses Filament auf Ihrem Drucker verwenden, setzen Sie bitte die " "Filamentinformationen für diesen Schacht zurück." @@ -17895,16 +17895,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Typ des Druck-Hosts: %s ist falsch" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "Verbindung zum AstroBox funktioniert korrekt." msgid "Could not connect to AstroBox" msgstr "Konnte keine Verbindung zum AstroBox herstellen" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Hinweis: AstroBox Version mindestens 1.1.0 ist erforderlich." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "Verbindung zu Duet funktioniert korrekt." msgid "Could not connect to Duet" @@ -17922,7 +17922,7 @@ msgstr "Konnte keine Ressourcen zum Erstellen einer neuen Verbindung erzeugen" msgid "Upload not enabled on FlashAir card." msgstr "Upload auf FlashAir-Karte nicht aktiviert." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "Verbindung zu FlashAir funktioniert korrekt und Upload ist aktiviert." msgid "Could not connect to FlashAir" @@ -17935,28 +17935,28 @@ msgstr "" "Hinweis: FlashAir mit Firmware 2.00.02 oder neuer und aktivierter Upload-" "Funktion ist erforderlich." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "Verbindung zu MKS funktioniert korrekt." msgid "Could not connect to MKS" msgstr "Konnte keine Verbindung zu MKS herstellen" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "Verbindung zu OctoPrint funktioniert korrekt." msgid "Could not connect to OctoPrint" msgstr "Konnte keine Verbindung zu OctoPrint herstellen" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Hinweis: OctoPrint Version mindestens 1.1.0 ist erforderlich." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Verbindung zu Prusa SL1 / SL1S funktioniert korrekt." msgid "Could not connect to Prusa SLA" msgstr "Konnte keine Verbindung zu Prusa SLA herstellen" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "Verbindung zu PrusaLink funktioniert korrekt." msgid "Could not connect to PrusaLink" @@ -17982,19 +17982,19 @@ msgstr "" "Der Upload ist fehlgeschlagen. Es wurde kein geeigneter Speicherplatz unter " "%1% gefunden." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Verbindung zu Prusa Connect funktioniert korrekt." msgid "Could not connect to Prusa Connect" msgstr "Konnte keine Verbindung zu Prusa Connect herstellen" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Verbindung zu Repetier funktioniert korrekt." msgid "Could not connect to Repetier" msgstr "Konnte keine Verbindung zu Repetier herstellen" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Hinweis: Repetier Version mindestens 0.90.0 ist erforderlich." #, boost-format @@ -18026,8 +18026,8 @@ msgstr "" "Fehler: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Es hat eine kleine Schichthöhe und führt zu fast vernachlässigbaren " "Schichtlinien und hoher Druckqualität. Es ist für die meisten allgemeinen " @@ -18035,8 +18035,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es niedrigere " "Geschwindigkeiten und Beschleunigungen, und das spärliche Füllmuster ist " @@ -18045,8 +18045,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es eine etwas größere " "Schichthöhe und führt zu fast vernachlässigbaren Schichtlinien und einer " @@ -18054,8 +18054,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es eine größere " "Schichthöhe und führt zu leicht sichtbaren Schichtlinien, aber einer " @@ -18063,8 +18062,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es eine kleinere " "Schichthöhe und führt zu fast unsichtbaren Schichtlinien und einer höheren " @@ -18073,8 +18072,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es kleinere Schicht-" "linien, niedrigere Geschwindigkeiten und Beschleunigungen, und das spärliche " @@ -18082,9 +18081,9 @@ msgstr "" "eine wesentlich höhere Druckqualität, aber eine wesentlich längere Druckzeit." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es eine kleinere " "Schichthöhe und führt zu minimalen Schichtlinien und einer höheren " @@ -18093,8 +18092,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,2 mm Düse hat es kleinere Schicht-" "linien, niedrigere Geschwindigkeiten und Beschleunigungen, und das spärliche " @@ -18102,16 +18101,16 @@ msgstr "" "wesentlich höhere Druckqualität, aber eine wesentlich längere Druckzeit." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Es hat eine allgemeine Schichthöhe und führt zu allgemeinen Schichtlinien " "und Druckqualität. Es ist für die meisten allgemeinen Druckfälle geeignet." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es mehr Wand-Schleifen " "und eine höhere spärliche Fülldichte. Daher ergibt sich eine höhere " @@ -18120,8 +18119,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine größere " "Schichthöhe und führt zu deutlicheren Schichtlinien und einer niedrigeren " @@ -18129,8 +18128,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine größere " "Schichthöhe und führt zu deutlicheren Schichtlinien und einer niedrigeren " @@ -18138,8 +18137,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine kleinere " "Schichthöhe und führt zu weniger deutlichen Schichtlinien und einer höheren " @@ -18148,8 +18147,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine kleinere " "Schichthöhe, niedrigere Geschwindigkeiten und Beschleunigungen, und das " @@ -18159,8 +18158,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine kleinere " "Schichthöhe und führt zu fast vernachlässigbaren Schichtlinien und einer " @@ -18169,8 +18168,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine kleinere " "Schichthöhe, niedrigere Geschwindigkeiten und Beschleunigungen, und das " @@ -18180,24 +18179,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,4 mm Düse hat es eine kleinere " "Schichthöhe und führt zu fast vernachlässigbaren Schichtlinien und einer " "längeren Druckzeit." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Es hat eine große Schichthöhe und führt zu deutlichen Schichtlinien und " "normaler Druckqualität und Druckzeit." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,6 mm Düse hat es mehr Wand-Schleifen " "und eine höhere spärliche Fülldichte. Daher ergibt sich eine höhere " @@ -18206,8 +18204,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "Im Vergleich zum Standardprofil einer 0,6 mm Düse hat es eine größere " "Schichthöhe und führt zu deutlicheren Schichtlinien und einer niedrigeren " @@ -18215,8 +18213,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "Im Vergleich zum Standardprofil einer 0,6 mm Düse hat es eine größere " "Schichthöhe und führt zu wesentlich deutlicheren Schichtlinien und einer " @@ -18225,8 +18223,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,6 mm Düse hat es eine kleinere " "Schichthöhe und führt zu weniger deutlichen Schichtlinien und einer leicht " @@ -18234,24 +18232,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Im Vergleich zum Standardprofil einer 0,6 mm Düse hat es eine kleinere " "Schichthöhe und führt zu weniger deutlichen Schichtlinien und einer höheren " "Druckqualität, aber einer längeren Druckzeit." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Es hat eine sehr große Schichthöhe und führt zu sehr deutlichen " "Schichtlinien, niedriger Druckqualität und allgemeiner Druckzeit." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "Im Vergleich zum Standardprofil einer 0,8 mm Düse hat es eine größere " "Schichthöhe und führt zu sehr deutlichen Schichtlinien und einer viel " @@ -18260,8 +18258,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "Im Vergleich zum Standardprofil einer 0,8 mm Düse hat es eine viel größere " "Schichthöhe und führt zu extrem deutlichen Schichtlinien und einer viel " @@ -18270,9 +18268,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "Im Vergleich zum Standardprofil einer 0,8 mm Düse hat es eine etwas kleinere " "Schichthöhe und führt zu etwas weniger, aber immer noch deutlichen " @@ -18281,8 +18278,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "Im Vergleich zum Standardprofil einer 0,8 mm Düse hat es eine kleinere " "Schichthöhe und führt zu weniger, aber immer noch deutlichen Schichtlinien " @@ -18312,7 +18309,7 @@ msgstr "" "SimplyPrint-Konto nicht verknüpft. Gehen Sie zu den Verbindungsoptionen, um " "es einzurichten." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "Verbindung zu Flashforge funktioniert korrekt." msgid "Could not connect to Flashforge" @@ -18331,7 +18328,7 @@ msgstr "" "Es ist etwas Unerwartetes passiert, als Sie versucht haben, sich anzumelden. " "Bitte versuchen Sie es erneut." -msgid "User cancelled." +msgid "User canceled." msgstr "Benutzer abgebrochen." msgid "Head diameter" @@ -18362,8 +18359,8 @@ msgid "Adjust section view" msgstr "Justieren Sie die Schnittansicht" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Achtung: Der Brim-Typ ist nicht auf \"bemalt\" eingestellt, auf die " "Mausohren wirken sich das nicht aus!" @@ -18378,7 +18375,7 @@ msgid "Brim Ears" msgstr "Mausohren" msgid "Please select single object." -msgstr "Please select single object." +msgstr "" #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -18460,11 +18457,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Tastenkombinationen verwenden\n" "Wussten Sie, dass Orca Slicer eine Vielzahl von Tastenkombinationen und 3D-" -"Szenenoperationen bietet." +"Szenenoperationen bietet?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -18508,7 +18505,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Automatisch anordnen\n" "Wussten Sie, dass Sie alle Objekte in Ihrem Projekt automatisch anordnen " @@ -18518,7 +18515,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Automatisch ausrichten\n" "Wussten Sie, dass Sie Objekte durch einen einfachen Klick in eine optimale " @@ -18701,7 +18698,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Rand für bessere Haftung\n" @@ -18712,7 +18709,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Parameter für mehrere Objekte festlegen\n" "Wussten Sie schon, dass Sie die Slicingparameter für alle ausgewählten " @@ -18729,7 +18726,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Reinigen in Stützstrukturen/Objekten/Füllungen\n" @@ -18747,18 +18744,19 @@ msgstr "" "Wussten Sie, dass Sie die Festigkeit des Modells durch mehr Wandschleifen " "und eine höhere Dichte der Füllung verbessern können?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Wenn mit geöffneter Druckertür gedruckt werden muss\n" "Wussten Sie, dass das Öffnen der Druckertür die Wahrscheinlichkeit eines " "Verstopfens des Extruders/Hotends beim Drucken von Filamenten mit niedriger " -"Temperatur und höherer Gehäusetemperatur verringern kann. Weitere " +"Temperatur und höherer Gehäusetemperatur verringern kann? Weitere " "Informationen dazu finden Sie im Wiki." #: resources/data/hints.ini: [hint:Avoid warping] @@ -18766,12 +18764,12 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Verwerfungen vermeiden\n" "Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, " "wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die " -"Wahrscheinlichkeit von Verwerfungen verringert werden kann." +"Wahrscheinlichkeit von Verwerfungen verringert werden kann?" #~ msgid "" #~ "We have added an experimental style \"Tree Slim\" that features smaller " @@ -18795,7 +18793,7 @@ msgstr "" #~ "Stützmaterialien bei der Schnittstelle." #~ msgid "" -#~ "When using support material for the support interface, We recommend the " +#~ "When using support material for the support interface, we recommend the " #~ "following settings:\n" #~ "0 top z distance, 0 interface spacing, concentric pattern and disable " #~ "independent support layer height" @@ -18982,7 +18980,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19043,26 +19041,6 @@ msgstr "" #~ "Setzen Sie es auf -1, um dies zu deaktivieren.\n" #~ "Kann nur durch disable_fan_first_layers außer Kraft gesetzt werden." -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "Ein niedrigerer Wert führt zu glatteren Extrusionsratenübergängen. Dies " -#~ "führt jedoch zu einer deutlich größeren G-Code-Datei und mehr Anweisungen " -#~ "für den Drucker, die verarbeitet werden müssen. \n" -#~ "\n" -#~ "Der Standardwert von 3 funktioniert für die meisten Fälle gut. Wenn Ihr " -#~ "Drucker stottert, erhöhen Sie diesen Wert, um die Anzahl der Anpassungen " -#~ "zu reduzieren\n" -#~ "\n" -#~ "Zulässige Werte: 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -19072,18 +19050,6 @@ msgstr "" #~ "versuchen, die minimale Schichtzeit einzuhalten, wenn die Verlangsamung " #~ "für eine bessere Schichtkühlung aktiviert ist." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "Normal (auto) und Baum (auto) werden verwendet, um automatisch " -#~ "Stützstrukturen zu generieren. Wenn Normal (manuell) oder Baum (manuell) " -#~ "ausgewählt ist, werden nur Stützerzwinger erzeugt." - -#~ msgid ", ver: " -#~ msgstr ", Ver: " - #~ msgid "ShiftLeft mouse button" #~ msgstr "Umschalttaste + Linksklick" @@ -19094,16 +19060,10 @@ msgstr "" #~ msgid "Scale" #~ msgstr "Skalieren" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "Kalte Druckplatte" - #~ msgid "Lift Z Enforcement" #~ msgstr "Z-Höhe einhalten" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Z-Hop beim Rückzug" #, no-c-format, no-boost-format @@ -19136,7 +19096,7 @@ msgstr "" #~ "verringern, da die Spannungen in den Teilwänden reduziert werden." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -19199,40 +19159,10 @@ msgstr "" #~ "stoßen.\n" #~ "Daher sollten die Skirt-Ebenen zurückgesetzt werden." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "Die Geometrie wird vor der Erkennung von scharfen Winkeln reduziert. " -#~ "DieserParameter gibt die minimale Länge der Abweichung für die " -#~ "Reduzierung an.\n" -#~ "0, um die Reduzierung zu deaktivieren." - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Starte den Lüfter diese Anzahl an Sekunden früher. (du kannst auch Milli-" -#~ "Sekunden verwenden). Dabei wird eine unendliche Beschleunigung " -#~ "angenommenund nur G1- und G0-Bewegungen berücksichtigt (Kurvenanpassung " -#~ "wird nicht unterstützt).Fan-Befehle in benutzerdefinierten G-Codes werden " -#~ "nicht verschoben (sie wirken wie eine Art 'Barriere').Fan-Befehle werden " -#~ "nicht in den Start-G-Code verschoben, wenn nur benutzerdefinierterStart-G-" -#~ "Code aktiviert ist. Verwende 0, um den Lüfter zu deaktivieren." - #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " #~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "with open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -19244,7 +19174,7 @@ msgstr "" #~ msgstr "" #~ "Ein Luftzugs-Schutz ist nützlich, um einen ABS- oder ASA-Druck vor Verzug " #~ "und Ablösen vom Druckbett aufgrund von Luftzug zu schützen. Er wird " -#~ "normalerweise nur bei offenen Druckern benötigt, d.h. ohne Gehäuse. \n" +#~ "normalerweise nur bei offenen Druckern benötigt, d.h. ohne Gehäuse.\n" #~ "\n" #~ "Optionen:\n" #~ "Aktiviert = Umrandung ist so hoch wie das höchste gedruckte Objekt.\n" @@ -19254,24 +19184,11 @@ msgstr "" #~ "Hinweis: Mit dem aktiven Luftzug-Schutz wird die Umrandung in der " #~ "Umrandungsdistanz vom Objekt gedruckt. Daher kann es bei aktiven Rändern " #~ "zu Überschneidungen kommen. Um dies zu vermeiden, erhöhen Sie den Wert " -#~ "derUmrandungsdistanz. \n" +#~ "derUmrandungsdistanz.\n" #~ msgid "Limited" #~ msgstr "Begrenzt" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "Minimale Filamentextrusionslänge in mm beim Drucken der Umrandung. Null " -#~ "bedeutet, dass diese Funktion deaktiviert ist.\n" -#~ "\n" -#~ "Die Verwendung eines Werts ungleich Null ist nützlich, wenn der Drucker " -#~ "so eingestellt ist, dass er ohne eine Primelinie druckt." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -19306,7 +19223,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19396,7 +19313,7 @@ msgstr "" #~ "3. Nirgendwo: Deaktiviert die Lückenfüllung\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Verringern Sie diesen Wert geringfügig (z. B. 0,9), um die Materialmenge " @@ -19442,13 +19359,13 @@ msgstr "" #~ "angegeben ist, wird er basierend auf der Brückengeschwindigkeit " #~ "berechnet. Standardwert ist 150%." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Zeit zum Laden des neuen Filaments, beim Wechseln des Filaments. Nur für " #~ "statistische Zwecke." #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Zeit zum Entladen des alten Filaments, beim Wechseln des Filaments. Nur " #~ "für statistische Zwecke." @@ -19489,8 +19406,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19652,12 +19569,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Bitte finden Sie die Ecke mit perfektem Extrusionsgrad" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " #~ "PrusaSlicer links from Printable.com" @@ -19686,9 +19597,6 @@ msgstr "" #~ "kann auch dazu führen, dass die Füllung durch die äußeren Oberflächen des " #~ "Teils schimmert." -#~ msgid "V" -#~ msgstr "V" - #~ msgid "Maximum print speed when purging" #~ msgstr "Maximale Druckgeschwindigkeit beim Reinigen" @@ -19698,7 +19606,7 @@ msgstr "" #~ "is lower, the lowest speed will be used instead.\n" #~ "Increasing this speed may affect the tower's stability, as purging can be " #~ "performed over sparse layers. Before increasing this parameter beyond the " -#~ "default of 90mm/sec, make sure your printer can reliably bridge at the " +#~ "default of 90 mm/s, make sure your printer can reliably bridge at the " #~ "increased speeds." #~ msgstr "" #~ "Die maximale Druckgeschwindigkeit beim Reinigen im Reinigungsturm. Wenn " @@ -19713,7 +19621,7 @@ msgstr "" #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer basiert auf BambuStudio von Bambulab, welches von PrusaSlicer " @@ -19811,47 +19719,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Entladen" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Wählen Sie einen AMS-Slot und drücken Sie dann \"Laden\" oder " -#~ "\"Entladen\", um automatisch Filament zu laden oder zu entladen." - -#~ msgid "MC" -#~ msgstr "MC" - -#~ msgid "MainBoard" -#~ msgstr "Mainboard" - -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- ℃" - -#~ msgid "0.5" -#~ msgstr "0,5" - -#~ msgid "0.005" -#~ msgstr "0,005" - #~ msgid "New Flow Dynamics Calibration" #~ msgstr "Neue Flussdynamik-Kalibrierung" -#~ msgid "" -#~ "The 3mf file version is in Beta and it is newer than the current " -#~ "OrcaSlicer version." -#~ msgstr "" -#~ "Die 3mf-Dateiversion ist in Beta und neuer als die aktuelle Bambu Studio-" -#~ "Version." - #~ msgid "active" #~ msgstr "Aktiv" @@ -19893,7 +19763,7 @@ msgstr "" #~ "Kammer möglicherweise nicht genau dar." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Hinweis: Wenn während des Drucks neues Filament eingelegt wird, liest das " @@ -19911,7 +19781,7 @@ msgstr "" #~ msgstr "Initialisierung fehlgeschlagen (keine Kamera)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Der Drucker ist mit dem Herunterladen beschäftigt; Bitte warten Sie, bis " #~ "der Download beendet ist." @@ -19946,9 +19816,6 @@ msgstr "" #~ msgid "Failed to fetching model information from printer." #~ msgstr "Die Modellinformationen konnten nicht vom Drucker abgerufen werden." -#~ msgid "Failed to parse model informations." -#~ msgstr "Modellinformationen konnten nicht analysiert werden" - #~ msgid "Connection lost. Please retry." #~ msgstr "Verbindung verloren. Bitte versuchen Sie es erneut." @@ -19957,7 +19824,7 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -19966,7 +19833,7 @@ msgstr "" #~ "Wechsel der Profile beibehalten?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -20058,12 +19925,12 @@ msgstr "" #~ "Schalendicke deaktiviert ist." #~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " #~ "wall\n" #~ "No - Don't use alternate extra wall" #~ msgstr "" -#~ "Diese Einstellungen automatisch ändern? \n" +#~ "Diese Einstellungen automatisch ändern?\n" #~ "Ja - Vertikale Schalendicke deaktivieren und alternative zusätzliche Wand " #~ "aktivieren\n" #~ "Nein - Keine alternative zusätzliche Wand verwenden" @@ -20097,9 +19964,6 @@ msgstr "" #~ msgid "Scale per instance" #~ msgstr "Skalierung pro Instanz" -#~ msgid " " -#~ msgstr " " - #~ msgid "Text-Rotate" #~ msgstr "Text-Drehen" @@ -20121,17 +19985,7 @@ msgstr "" #~ "Verlangsamung für eine bessere Schichtkühlung aktiviert ist, beim Drucken " #~ "von Überhängen und wenn die Funktionen nicht explizit angegeben sind." -#~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "To add preset for more prinetrs, Please go to printer selection" -#~ msgstr "" -#~ "Wir würden die Voreinstellungen als \"Hersteller Typ Seriennummer " -#~ "@Drucker den Sie ausgewählt haben\" umbenennen. \n" -#~ "Um Voreinstellungen für mehr Drucker hinzuzufügen, gehen Sie bitte zur " -#~ "Druckerauswahl" - -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "Die Konfiguration kann nicht geladen werden." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -20142,17 +19996,6 @@ msgstr "" #~ msgid "wiki" #~ msgstr "wiki" -#~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" -#~ msgstr "" -#~ "Die relative Extrusion wird empfohlen, wenn die Option „label_objects“ " -#~ "verwendet wird. Einige Extruder funktionieren besser, wenn diese Option " -#~ "deaktiviert ist (Absolute Extrusion). Der Wipe-Turm ist nur im relativen " -#~ "Modus kompatibel. Er ist immer auf BambuLab-Druckern aktiviert" - #~ msgid "Movement:" #~ msgstr "Bewegung:" @@ -20181,10 +20024,10 @@ msgstr "" #~ msgstr "Verbinder sind außerhalb des Objekts" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Ungültiger Zustand. \n" +#~ "Ungültiger Zustand.\n" #~ "Kein Teil ist ausgewählt, was nach dem Schneiden behalten wird." #~ msgid "Recalculate" @@ -20206,7 +20049,7 @@ msgstr "" #~ "Zeitüberschreitung erhalten. Bitte überprüfen Sie, ob das Netzwerk " #~ "ordnungsgemäß funktioniert, und senden Sie den Druck erneut." -#~ msgid "The beginning of the vendor can not be a number. Please re-enter." +#~ msgid "The beginning of the vendor cannot be a number. Please re-enter." #~ msgstr "" #~ "Der Anfang des Herstellers darf keine Zahl sein. Bitte erneut eingeben." @@ -20222,9 +20065,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "SLA-Archiv auswählen:" -#~ msgid "Import file" -#~ msgstr "Datei importieren" - #~ msgid "Import model and profile" #~ msgstr "Modell und Profil importieren" @@ -20300,10 +20140,6 @@ msgstr "" #~ "Ja - Automatisches auf das geradlinige Muster wechseln\n" #~ "Nein - Dichte automatisch auf den Standardwert unter 100% zurücksetzen" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." -#~ msgstr "" -#~ "Bitte heizen Sie die Düse auf über 170 Grad auf, bevor Sie Filament laden." - #, c-format, boost-format #~ msgid "This slicer file version %s is newer than %s's version:" #~ msgstr "Diese Slicer-Dateiversion %s ist neuer als die Version von %s:" @@ -20327,13 +20163,9 @@ msgstr "" #~ "Möchten Sie Ihre Software aktualisieren, um alle Funktionen in dieser " #~ "Slicer-Datei zu aktivieren?" -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "Zeige G-Code Fenster" -#, fuzzy -#~ msgid "If enabled, g-code window will be displayed." -#~ msgstr "Wenn aktiviert, werden beim Start nützliche Hinweise angezeigt." - #~ msgid "" #~ "Layer height cannot exceed the limit in Printer Settings -> Extruder -> " #~ "Layer height limits" @@ -20457,7 +20289,7 @@ msgstr "" #~ msgstr "Rotationswinkel um die X-Achse in Grad." #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "Die ausgewählte Voreinstellung: %1% wurde nicht gefunden." #~ msgid "" @@ -20469,33 +20301,12 @@ msgstr "" #~ "Wissen Sie, wie Sie die Ansicht und die Auswahl von Objekten/Teilen in " #~ "der 3D-Szene mit der Maus und dem Touchpad steuern können?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Modell reparieren\n" -#~ "Wussten Sie, dass Sie ein beschädigtes 3D-Modell reparieren können, um " -#~ "viele Probleme beim Slicen zu vermeiden?" - -#~ msgid "" -#~ "When need to print with the printer door opened\n" -#~ "Opening the printer door can reduce the probability of extruder/hotend " -#~ "clogging when printing lower temperature filament with a higher enclosure " -#~ "temperature. More info about this in the Wiki." -#~ msgstr "" -#~ "Wenn mit geöffneter Druckertür gedruckt werden muss\n" -#~ "Das Öffnen der Druckertür kann die Wahrscheinlichkeit einer Verstopfung " -#~ "des Extruders/Hotends beim Drucken von Filamenten mit niedrigerer " -#~ "Temperatur bei höherer Gehäusetemperatur verringern. Weitere " -#~ "Informationen dazu finden Sie in der Wiki." - #~ msgid "Embedded" #~ msgstr "Eingebettet" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "Die OrcaSlicer-Konfigurationsdatei ist möglicherweise beschädigt und kann " #~ "nicht geladen werden. Bitte löschen Sie die Datei und versuchen Sie es " @@ -20515,12 +20326,12 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" #~ "Derzeit sind keine identischen Ersatzverbrauchsmaterialien verfügbar, und " -#~ "eine automatische Auffüllung ist derzeit nicht möglich. \n" +#~ "eine automatische Auffüllung ist derzeit nicht möglich.\n" #~ "(Derzeit wird die automatische Versorgung mit Verbrauchsmaterialien " #~ "desselben Herstellers, Materialtyps und Farbe unterstützt)" @@ -20594,19 +20405,16 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "Kalibrierung der Extrusion" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Neues Filament in den Extruder schieben" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "Die Betttemperatur der anderen Schicht ist um mehr als %d Grad Celsius " #~ "niedriger als die Betttemperatur der ersten Schicht.\n" #~ "Dies kann dazu führen, dass sich das Modell während des Drucks von der " -#~ "Druckplatte löst" +#~ "Druckplatte löst." #~ msgid "" #~ "Bed temperature is higher than vitrification temperature of this " @@ -20652,8 +20460,8 @@ msgstr "" #~ msgstr "Hochtemperaturdruckplatte" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Dies ist die Betttemperatur, wenn die Hochtemperatur-Druckplatte " #~ "installiert ist. Ein Wert von 0 bedeutet, dass das Filament auf der " @@ -20664,9 +20472,9 @@ msgstr "" #~ msgid "" #~ "If enabled, support loops will be generated under the contours of " -#~ "internal bridges.These support loops could prevent internal bridges from " +#~ "internal bridges. These support loops could prevent internal bridges from " #~ "extruding over the air and improve the top surface quality, especially " -#~ "when the sparse infill density is low.This value determines the thickness " +#~ "when the sparse infill density is low. This value determines the thickness " #~ "of the support loops. 0 means disable this feature" #~ msgstr "" #~ "Wenn aktiviert, werden Stützschleifen unter den Konturen interner Brücken " @@ -20676,13 +20484,6 @@ msgstr "" #~ "bestimmt die Dicke der Stützschleifen. 0 bedeutet, diese Funktion zu " #~ "deaktivieren." -#, fuzzy, c-format, boost-format -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "" -#~ "Klipper’s max_accel_to_decel wird auf % of Prozentsatz der " -#~ "Beschleunigung eingestellt" - #~ msgid "Target chamber temperature" #~ msgstr "Druckraum Temperatur" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 61d29f5d8e..fadcdf48ff 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -4,100 +4,100 @@ msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-16 22:32+0800\n" -"PO-Revision-Date: \n" -"Last-Translator: \n" +"PO-Revision-Date: 2025-05-18 09:32-0300\n" +"Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: \n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" -"X-Generator: Poedit 3.4.1\n" +"X-Generator: Poedit 3.6\n" -msgid "Supports Painting" -msgstr "Support Painting" +msgid "Support Painting" +msgstr "" msgid "Alt + Mouse wheel" -msgstr "Alt + Mouse wheel" +msgstr "" msgid "Section view" -msgstr "Section view" +msgstr "" msgid "Reset direction" -msgstr "Reset direction" +msgstr "" msgid "Ctrl + Mouse wheel" -msgstr "Ctrl + Mouse wheel" +msgstr "" msgid "Pen size" -msgstr "Pen size" +msgstr "" msgid "Left mouse button" -msgstr "Left mouse button" +msgstr "" msgid "Enforce supports" -msgstr "Enforce supports" +msgstr "" msgid "Right mouse button" -msgstr "Right mouse button" +msgstr "" msgid "Block supports" -msgstr "Block supports" +msgstr "" msgid "Shift + Left mouse button" -msgstr "Shift + Left mouse button" +msgstr "" msgid "Erase" -msgstr "Erase" +msgstr "" msgid "Erase all painting" -msgstr "Erase all painting" +msgstr "" msgid "Highlight overhang areas" msgstr "Highlight overhangs" msgid "Gap fill" -msgstr "Gap fill" +msgstr "" msgid "Perform" msgstr "Apply" msgid "Gap area" -msgstr "Gap area" +msgstr "" msgid "Tool type" -msgstr "Tool type" +msgstr "" msgid "Smart fill angle" -msgstr "Smart fill angle" +msgstr "" msgid "On overhangs only" -msgstr "On overhangs only" +msgstr "" msgid "Auto support threshold angle: " -msgstr "Auto support threshold angle: " +msgstr "" msgid "Circle" -msgstr "Circle" +msgstr "" msgid "Sphere" -msgstr "Sphere" +msgstr "" msgid "Fill" -msgstr "Fill" +msgstr "" msgid "Gap Fill" -msgstr "Gap Fill" +msgstr "" #, boost-format msgid "Allows painting only on facets selected by: \"%1%\"" -msgstr "Allows painting only on facets selected by: \"%1%\"" +msgstr "" msgid "Highlight faces according to overhang angle." -msgstr "Highlight faces according to overhang angle." +msgstr "" msgid "No auto support" -msgstr "No auto support" +msgstr "" msgid "Support Generated" msgstr "Support generated" @@ -110,120 +110,118 @@ msgstr "Lay on Face" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " -"the first %1% filaments will be available in painting tool." -msgstr "" "Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." +msgstr "" msgid "Color Painting" msgstr "Color painting" msgid "Pen shape" -msgstr "Pen shape" +msgstr "" msgid "Paint" -msgstr "Paint" +msgstr "" msgid "Key 1~9" -msgstr "Key 1~9" +msgstr "" msgid "Choose filament" -msgstr "Choose filament" +msgstr "" msgid "Edge detection" -msgstr "Edge detection" +msgstr "" msgid "Triangles" -msgstr "Triangles" +msgstr "" msgid "Filaments" -msgstr "Filaments" +msgstr "" msgid "Brush" -msgstr "Brush" +msgstr "" msgid "Smart fill" -msgstr "Smart fill" +msgstr "" msgid "Bucket fill" -msgstr "Bucket fill" +msgstr "" msgid "Height range" -msgstr "Height range" +msgstr "" msgid "Alt + Shift + Enter" -msgstr "Alt + Shift + Enter" +msgstr "" msgid "Toggle Wireframe" -msgstr "Toggle Wireframe" +msgstr "" msgid "Shortcut Key " -msgstr "Shortcut Key " +msgstr "" msgid "Triangle" -msgstr "Triangle" +msgstr "" msgid "Height Range" -msgstr "Height Range" +msgstr "" msgid "Vertical" -msgstr "Vertical" +msgstr "" msgid "Horizontal" -msgstr "Horizontal" +msgstr "" msgid "Remove painted color" -msgstr "Remove painted color" +msgstr "" #, boost-format msgid "Painted using: Filament %1%" -msgstr "Painted using: Filament %1%" +msgstr "" msgid "Move" -msgstr "Move" +msgstr "" msgid "Gizmo-Move" msgstr "" msgid "Rotate" -msgstr "Rotate" +msgstr "" msgid "Gizmo-Rotate" msgstr "" msgid "Optimize orientation" -msgstr "Optimize orientation" +msgstr "" msgid "Apply" -msgstr "Apply" +msgstr "" msgid "Scale" -msgstr "Scale" +msgstr "" msgid "Gizmo-Scale" msgstr "" msgid "Error: Please close all toolbar menus first" -msgstr "Error: Please close all toolbar menus first" +msgstr "" msgid "in" -msgstr "in" +msgstr "" msgid "mm" -msgstr "mm" +msgstr "" msgid "Position" -msgstr "Position" +msgstr "" #. TRN - Input label. Be short as possible #. Angle between Y axis and text line direction. #. TRN - Input label. Be short as possible msgid "Rotation" -msgstr "Rotation" +msgstr "" msgid "Scale ratios" -msgstr "Scale ratios" +msgstr "" msgid "Object Operations" msgstr "Object operations" @@ -232,7 +230,7 @@ msgid "Volume Operations" msgstr "Volume operations" msgid "Translate" -msgstr "Translate" +msgstr "" msgid "Group Operations" msgstr "Group operations" @@ -253,101 +251,101 @@ msgid "Reset Rotation" msgstr "Reset rotation" msgid "World coordinates" -msgstr "World coordinates" +msgstr "" msgid "Object coordinates" msgstr "" msgid "°" -msgstr "°" +msgstr "" #. TRN - Input label. Be short as possible msgid "Size" -msgstr "Size" +msgstr "" msgid "%" -msgstr "%" +msgstr "" msgid "uniform scale" msgstr "Uniform scale" msgid "Planar" -msgstr "Planar" +msgstr "" msgid "Dovetail" -msgstr "Dovetail" +msgstr "" msgid "Auto" -msgstr "Auto" +msgstr "" msgid "Manual" -msgstr "Manual" +msgstr "" msgid "Plug" -msgstr "Plug" +msgstr "" msgid "Dowel" -msgstr "Dowel" +msgstr "" msgid "Snap" -msgstr "Snap" +msgstr "" msgid "Prism" msgstr "" msgid "Frustum" -msgstr "Frustum" +msgstr "" msgid "Square" -msgstr "Square" +msgstr "" msgid "Hexagon" -msgstr "Hexagon" +msgstr "" msgid "Keep orientation" -msgstr "Keep orientation" +msgstr "" msgid "Place on cut" -msgstr "Place on cut" +msgstr "" msgid "Flip upside down" msgstr "" msgid "Connectors" -msgstr "Connectors" +msgstr "" msgid "Type" -msgstr "Type" +msgstr "" msgid "Style" -msgstr "Style" +msgstr "" msgid "Shape" -msgstr "Shape" +msgstr "" #. TRN - Input label. Be short as possible #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "Depth" +msgstr "" msgid "Groove" -msgstr "Groove" +msgstr "" msgid "Width" -msgstr "Width" +msgstr "" msgid "Flap Angle" -msgstr "Flap Angle" +msgstr "" msgid "Groove Angle" -msgstr "Groove Angle" +msgstr "" msgid "Part" -msgstr "Part" +msgstr "" msgid "Object" -msgstr "Object" +msgstr "" msgid "" "Click to flip the cut plane\n" @@ -364,70 +362,70 @@ msgid "Move cut plane" msgstr "" msgid "Mode" -msgstr "Mode" +msgstr "" msgid "Change cut mode" msgstr "" msgid "Tolerance" -msgstr "Tolerance" +msgstr "" msgid "Drag" -msgstr "Drag" +msgstr "" msgid "Draw cut line" msgstr "" msgid "Left click" -msgstr "Left click" +msgstr "" msgid "Add connector" -msgstr "Add connector" +msgstr "" msgid "Right click" -msgstr "Right click" +msgstr "" msgid "Remove connector" -msgstr "Remove connector" +msgstr "" msgid "Move connector" -msgstr "Move connector" +msgstr "" msgid "Add connector to selection" -msgstr "Add connector to selection" +msgstr "" msgid "Remove connector from selection" -msgstr "Remove connector from selection" +msgstr "" msgid "Select all connectors" -msgstr "Select all connectors" +msgstr "" msgid "Cut" -msgstr "Cut" +msgstr "" msgid "Rotate cut plane" msgstr "" msgid "Remove connectors" -msgstr "Remove connectors" +msgstr "" msgid "Bulge" -msgstr "Bulge" +msgstr "" msgid "Bulge proportion related to radius" msgstr "" msgid "Space" -msgstr "Space" +msgstr "" msgid "Space proportion related to radius" msgstr "" msgid "Confirm connectors" -msgstr "Confirm connectors" +msgstr "" msgid "Cancel" -msgstr "Cancel" +msgstr "" msgid "Build Volume" msgstr "" @@ -439,7 +437,7 @@ msgid "Groove change" msgstr "" msgid "Reset" -msgstr "Reset" +msgstr "" #. TRN: This is an entry in the Undo/Redo stack. The whole line will be 'Edited: (name of whatever was edited)'. msgid "Edited" @@ -452,10 +450,10 @@ msgid "Reset cutting plane" msgstr "" msgid "Edit connectors" -msgstr "Edit connectors" +msgstr "" msgid "Add connectors" -msgstr "Add connectors" +msgstr "" msgid "Reset cut" msgstr "" @@ -464,31 +462,31 @@ msgid "Reset cutting plane and remove connectors" msgstr "" msgid "Upper part" -msgstr "Upper part" +msgstr "" msgid "Lower part" -msgstr "Lower part" +msgstr "" msgid "Keep" -msgstr "Keep" +msgstr "" msgid "Flip" -msgstr "Flip" +msgstr "" msgid "After cut" -msgstr "After cut" +msgstr "" msgid "Cut to parts" -msgstr "Cut to parts" +msgstr "" msgid "Perform cut" -msgstr "Perform cut" +msgstr "" msgid "Warning" -msgstr "Warning" +msgstr "" msgid "Invalid connectors detected" -msgstr "Invalid connectors detected" +msgstr "" #, c-format, boost-format msgid "%1$d connector is out of cut contour" @@ -503,7 +501,7 @@ msgstr[0] "" msgstr[1] "" msgid "Some connectors are overlapped" -msgstr "Some connectors are overlapped" +msgstr "" msgid "Select at least one object to keep after cutting." msgstr "" @@ -515,7 +513,7 @@ msgid "Cut plane with groove is invalid" msgstr "" msgid "Connector" -msgstr "Connector" +msgstr "" msgid "Cut by Plane" msgstr "" @@ -524,7 +522,7 @@ msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" msgstr "Non-manifold edges be caused by cut tool: do you want to fix now?" msgid "Repairing model object" -msgstr "Repairing model object" +msgstr "" msgid "Cut by line" msgstr "" @@ -533,90 +531,87 @@ msgid "Delete connector" msgstr "" msgid "Mesh name" -msgstr "Mesh name" +msgstr "" msgid "Detail level" -msgstr "Detail level" +msgstr "" msgid "Decimate ratio" -msgstr "Decimate ratio" +msgstr "" #, boost-format msgid "" "Processing model '%1%' with more than 1M triangles could be slow. It is " "highly recommended to simplify the model." msgstr "" -"Processing model '%1%' with more than 1M triangles could be slow. It is " -"highly recommended to simplify the model." msgid "Simplify model" -msgstr "Simplify model" +msgstr "" msgid "Simplify" -msgstr "Simplify" +msgstr "" msgid "Simplification is currently only allowed when a single part is selected" msgstr "" -"Simplification is currently only allowed when a single part is selected" msgid "Error" -msgstr "Error" +msgstr "" msgid "Extra high" -msgstr "Extra high" +msgstr "" msgid "High" -msgstr "High" +msgstr "" msgid "Medium" -msgstr "Medium" +msgstr "" msgid "Low" -msgstr "Low" +msgstr "" msgid "Extra low" -msgstr "Extra low" +msgstr "" #, c-format, boost-format msgid "%d triangles" -msgstr "%d triangles" +msgstr "" msgid "Show wireframe" -msgstr "Show wireframe" +msgstr "" #, boost-format msgid "%1%" -msgstr "%1%" +msgstr "" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Unable to apply when processing preview" -msgid "Operation already cancelling. Please wait few seconds." -msgstr "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." +msgstr "" msgid "Face recognition" -msgstr "Face recognition" +msgstr "" msgid "Perform Recognition" -msgstr "Perform Recognition" +msgstr "" msgid "Brush size" -msgstr "Brush size" +msgstr "" msgid "Brush shape" -msgstr "Brush shape" +msgstr "" msgid "Enforce seam" -msgstr "Enforce seam" +msgstr "" msgid "Block seam" -msgstr "Block seam" +msgstr "" msgid "Seam painting" -msgstr "Seam painting" +msgstr "" msgid "Remove selection" -msgstr "Remove selection" +msgstr "" msgid "Entering Seam painting" msgstr "Entering seam painting" @@ -625,21 +620,21 @@ msgid "Leaving Seam painting" msgstr "Leaving Seam Painting" msgid "Paint-on seam editing" -msgstr "Paint-on seam editing" +msgstr "" #. TRN - Input label. Be short as possible #. Select look of letter shape msgid "Font" -msgstr "Font" +msgstr "" msgid "Thickness" -msgstr "Thickness" +msgstr "" msgid "Text Gap" -msgstr "Text Gap" +msgstr "" msgid "Angle" -msgstr "Angle" +msgstr "" msgid "" "Embedded\n" @@ -647,22 +642,22 @@ msgid "" msgstr "Embedded depth" msgid "Input text" -msgstr "Input text" +msgstr "" msgid "Surface" -msgstr "Surface" +msgstr "" msgid "Horizontal text" -msgstr "Horizontal text" +msgstr "" msgid "Shift + Mouse move up or down" -msgstr "Shift + Mouse move up or down" +msgstr "" msgid "Rotate text" -msgstr "Rotate text" +msgstr "" msgid "Text shape" -msgstr "Text shape" +msgstr "" #. TRN - Title in Undo/Redo stack after rotate with text around emboss axe msgid "Text rotate" @@ -712,7 +707,7 @@ msgid "Default font" msgstr "" msgid "Advanced" -msgstr "Advanced" +msgstr "" msgid "" "The text cannot be written using the selected font. Please try choosing a " @@ -764,13 +759,13 @@ msgstr "" msgctxt "EmbossOperation" msgid "Cut" -msgstr "Cut" +msgstr "" msgid "Click to change part type into negative volume." msgstr "" msgid "Modifier" -msgstr "Modifier" +msgstr "" msgid "Click to change part type into modifier." msgstr "" @@ -779,7 +774,7 @@ msgid "Change Text Type" msgstr "" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "" msgid "Name can't be empty." @@ -789,7 +784,7 @@ msgid "Name has to be unique." msgstr "" msgid "OK" -msgstr "OK" +msgstr "" msgid "Rename style" msgstr "" @@ -906,19 +901,19 @@ msgstr "" msgctxt "Alignment" msgid "Left" -msgstr "Left" +msgstr "" msgctxt "Alignment" msgid "Center" -msgstr "Center" +msgstr "" msgctxt "Alignment" msgid "Right" -msgstr "Right" +msgstr "" msgctxt "Alignment" msgid "Top" -msgstr "Top" +msgstr "" msgctxt "Alignment" msgid "Middle" @@ -926,7 +921,7 @@ msgstr "" msgctxt "Alignment" msgid "Bottom" -msgstr "Bottom" +msgstr "" msgid "Revert alignment." msgstr "" @@ -992,15 +987,15 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" msgid "No symbol" msgstr "" msgid "Loading" -msgstr "Loading" +msgstr "" msgid "In queue" msgstr "" @@ -1008,7 +1003,7 @@ msgstr "" #. TRN - Input label. Be short as possible #. Height of one text line - Font Ascent msgid "Height" -msgstr "Height" +msgstr "" #. TRN - Input label. Be short as possible #. Copy surface of model on surface of the embossed text @@ -1118,7 +1113,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1220,7 +1215,7 @@ msgstr "" #. TRN - Input label. Be short as possible msgid "Mirror" -msgstr "Mirror" +msgstr "" msgid "Choose SVG file for emboss:" msgstr "" @@ -1245,182 +1240,175 @@ msgid "No feature" msgstr "" msgid "Vertex" -msgstr "Vertex" +msgstr "" msgid "Edge" -msgstr "Edge" +msgstr "" msgid "Plane" -msgstr "Plane" +msgstr "" msgid "Point on edge" -msgstr "Point on edge" +msgstr "" msgid "Point on circle" -msgstr "Point on circle" +msgstr "" msgid "Point on plane" -msgstr "Point on plane" +msgstr "" msgid "Center of edge" -msgstr "Center of edge" +msgstr "" msgid "Center of circle" -msgstr "Center of circle" +msgstr "" msgid "Select feature" -msgstr "Select feature" +msgstr "" msgid "Select point" -msgstr "Select point" +msgstr "" msgid "Delete" -msgstr "Delete" +msgstr "" msgid "Restart selection" -msgstr "Restart selection" +msgstr "" msgid "Esc" -msgstr "Esc" +msgstr "" msgid "Cancel a feature until exit" -msgstr "Cancel a feature until exit" +msgstr "" msgid "Measure" -msgstr "Measure" +msgstr "" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" -"Please confirm explosion ratio = 1, and please select at least one object" msgid "Please select at least one object." -msgstr "Please select at least one object." +msgstr "" msgid "Edit to scale" -msgstr "Edit to scale" +msgstr "" msgctxt "Verb" msgid "Scale all" -msgstr "Scale all" +msgstr "" msgid "None" -msgstr "None" +msgstr "" msgid "Diameter" -msgstr "Diameter" +msgstr "" msgid "Length" -msgstr "Length" +msgstr "" msgid "Selection" -msgstr "Selection" +msgstr "" msgid " (Moving)" -msgstr " (Moving)" +msgstr "" msgid "" "Select 2 faces on objects and \n" " make objects assemble together." msgstr "" -"Select 2 faces on objects and \n" -" make objects assemble together." msgid "" "Select 2 points or circles on objects and \n" " specify distance between them." msgstr "" -"Select 2 points or circles on objects and \n" -" specify distance between them." msgid "Face" -msgstr "Face" +msgstr "" msgid " (Fixed)" -msgstr " (Fixed)" +msgstr "" msgid "Point" -msgstr "Point" +msgstr "" msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"Feature 1 has been reset, \n" -"feature 2 has been feature 1" -msgid "Warning:please select Plane's feature." -msgstr "Warning: please select Plane's feature." +msgid "Warning: please select Plane's feature." +msgstr "" -msgid "Warning:please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." +msgstr "" -msgid "Warning:please select two different mesh." -msgstr "Warning: please select two different meshes." +msgid "Warning: please select two different meshes." +msgstr "" msgid "Copy to clipboard" -msgstr "Copy to clipboard" +msgstr "" msgid "Perpendicular distance" -msgstr "Perpendicular distance" +msgstr "" msgid "Distance" -msgstr "Distance" +msgstr "" msgid "Direct distance" -msgstr "Direct distance" +msgstr "" msgid "Distance XYZ" -msgstr "Distance XYZ" +msgstr "" msgid "Parallel" -msgstr "Parallel" +msgstr "" msgid "Center coincidence" -msgstr "Center coincidence" +msgstr "" -msgid "Featue 1" -msgstr "Feature 1" +msgid "Feature 1" +msgstr "" msgid "Reverse rotation" -msgstr "Reverse rotation" +msgstr "" msgid "Rotate around center:" -msgstr "Rotate around center:" +msgstr "" msgid "Parallel distance:" msgstr "" msgid "Flip by Face 2" -msgstr "Flip by Face 2" +msgstr "" msgid "Ctrl+" -msgstr "Ctrl+" +msgstr "" msgid "Notice" -msgstr "Notice" +msgstr "" msgid "Undefined" -msgstr "Undefined" +msgstr "" #, boost-format msgid "%1% was replaced with %2%" -msgstr "%1% was replaced with %2%" +msgstr "" msgid "The configuration may be generated by a newer version of OrcaSlicer." msgstr "" msgid "Some values have been replaced. Please check them:" -msgstr "Some values have been replaced. Please check them:" +msgstr "" msgid "Process" -msgstr "Process" +msgstr "" msgid "Filament" -msgstr "Filament" +msgstr "" msgid "Machine" -msgstr "Machine" +msgstr "" msgid "Configuration package was loaded, but some values were not recognized." msgstr "" @@ -1433,12 +1421,12 @@ msgstr "" "The configuration file “%1%” was loaded, but some values were not recognized." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" msgid "Fatal error" -msgstr "Fatal error" +msgstr "" msgid "" "OrcaSlicer will terminate because of a localization error. It will be " @@ -1446,27 +1434,27 @@ msgid "" msgstr "" msgid "Critical error" -msgstr "Critical error" +msgstr "" #, boost-format msgid "OrcaSlicer got an unhandled exception: %1%" msgstr "" msgid "Untitled" -msgstr "Untitled" +msgstr "" msgid "Downloading Bambu Network Plug-in" -msgstr "Downloading Bambu Network Plug-in" +msgstr "" msgid "Login information expired. Please login again." -msgstr "Login information expired. Please login again." +msgstr "" msgid "Incorrect password" -msgstr "Incorrect password" +msgstr "" #, c-format, boost-format msgid "Connect %s failed! [SN:%s, code=%s]" -msgstr "Connect %s failed! [SN:%s, code=%s]" +msgstr "" msgid "" "Orca Slicer requires the Microsoft WebView2 Runtime to operate certain " @@ -1482,27 +1470,25 @@ msgid "" "%s\n" "Do you want to continue?" msgstr "" -"%s\n" -"Do you want to continue?" msgid "Remember my choice" -msgstr "Remember my choice" +msgstr "" msgid "Loading configuration" -msgstr "Loading configuration" +msgstr "" #, c-format, boost-format msgid "Click to download new version in default browser: %s" -msgstr "Click to download new version in default browser: %s" +msgstr "" msgid "The Orca Slicer needs an upgrade" msgstr "Orca Slicer needs an update" msgid "This is the newest version." -msgstr "This is the newest version." +msgstr "" msgid "Info" -msgstr "Info" +msgstr "" msgid "" "The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" @@ -1512,22 +1498,22 @@ msgid "" msgstr "" msgid "Rebuild" -msgstr "Rebuild" +msgstr "" msgid "Loading current presets" -msgstr "Loading current presets" +msgstr "" msgid "Loading a mode view" -msgstr "Loading a mode view" +msgstr "" msgid "Choose one file (3mf):" -msgstr "Choose one file (3mf):" +msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" -msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" +msgstr "" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" -msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf):" +msgstr "" msgid "Choose ZIP file" msgstr "" @@ -1536,7 +1522,7 @@ msgid "Choose one file (gcode/3mf):" msgstr "" msgid "Some presets are modified." -msgstr "Some presets are modified." +msgstr "" msgid "" "You can keep the modified presets to the new project, discard or save " @@ -1546,60 +1532,56 @@ msgstr "" "changes as new presets." msgid "User logged out" -msgstr "User logged out" +msgstr "" msgid "new or open project file is not allowed during the slicing process!" -msgstr "new or open project file is not allowed during the slicing process!" +msgstr "" msgid "Open Project" -msgstr "Open Project" +msgstr "" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" -"The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" msgid "Privacy Policy Update" -msgstr "Privacy Policy Update" +msgstr "" msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" -"The number of user presets cached in the cloud has exceeded the upper limit, " -"newly created user presets can only be used locally." msgid "Sync user presets" -msgstr "Sync user presets" +msgstr "" msgid "Loading user preset" -msgstr "Loading user preset" +msgstr "" msgid "Switching application language" -msgstr "Switching application language" +msgstr "" msgid "Select the language" -msgstr "Select the language" +msgstr "" msgid "Language" -msgstr "Language" +msgstr "" msgid "*" -msgstr "*" +msgstr "" msgid "The uploads are still ongoing" -msgstr "The uploads are still ongoing" +msgstr "" msgid "Stop them and continue anyway?" -msgstr "Stop them and continue anyway?" +msgstr "" msgid "Ongoing uploads" -msgstr "Ongoing uploads" +msgstr "" msgid "Select a G-code file:" -msgstr "Select a G-code file:" +msgstr "" msgid "" "Could not start URL download. Destination folder is not set. Please choose " @@ -1607,47 +1589,47 @@ msgid "" msgstr "" msgid "Import File" -msgstr "Import File" +msgstr "" msgid "Choose files" -msgstr "Choose files" +msgstr "" msgid "New Folder" -msgstr "New Folder" +msgstr "" msgid "Open" -msgstr "Open" +msgstr "" msgid "Rename" -msgstr "Rename" +msgstr "" msgid "Orca Slicer GUI initialization failed" -msgstr "Orca Slicer GUI initialization failed" +msgstr "" #, boost-format msgid "Fatal error, exception caught: %1%" msgstr "Fatal error, exception: %1%" msgid "Quality" -msgstr "Quality" +msgstr "" msgid "Shell" -msgstr "Shell" +msgstr "" msgid "Infill" -msgstr "Infill" +msgstr "" msgid "Support" -msgstr "Support" +msgstr "" msgid "Flush options" -msgstr "Flush options" +msgstr "" msgid "Speed" -msgstr "Speed" +msgstr "" msgid "Strength" -msgstr "Strength" +msgstr "" msgid "Top Solid Layers" msgstr "Top solid layers" @@ -1662,22 +1644,22 @@ msgid "Bottom Minimum Shell Thickness" msgstr "Bottom minimum shell thickness" msgid "Ironing" -msgstr "Ironing" +msgstr "" msgid "Fuzzy Skin" msgstr "Fuzzy skin" msgid "Extruders" -msgstr "Extruders" +msgstr "" msgid "Extrusion Width" msgstr "Extrusion width" msgid "Wipe options" -msgstr "Wipe options" +msgstr "" msgid "Bed adhesion" -msgstr "Bed adhesion" +msgstr "" msgid "Add part" msgstr "Add Part" @@ -1713,43 +1695,43 @@ msgid "Add SVG modifier" msgstr "" msgid "Select settings" -msgstr "Select settings" +msgstr "" msgid "Hide" -msgstr "Hide" +msgstr "" msgid "Show" -msgstr "Show" +msgstr "" msgid "Del" -msgstr "Del" +msgstr "" msgid "Delete the selected object" -msgstr "Delete the selected object" +msgstr "" msgid "Load..." -msgstr "Load..." +msgstr "" msgid "Cube" -msgstr "Cube" +msgstr "" msgid "Cylinder" -msgstr "Cylinder" +msgstr "" msgid "Cone" -msgstr "Cone" +msgstr "" msgid "Disc" -msgstr "Disc" +msgstr "" msgid "Torus" -msgstr "Torus" +msgstr "" msgid "Orca Cube" msgstr "" msgid "3DBenchy" -msgstr "3DBenchy" +msgstr "" msgid "Autodesk FDM Test" msgstr "" @@ -1765,7 +1747,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1790,86 +1772,86 @@ msgid "Set as individual objects" msgstr "Set as Individual Objects" msgid "Fill bed with copies" -msgstr "Fill bed with copies" +msgstr "" msgid "Fill the remaining area of bed with copies of the selected object" -msgstr "Fill the remaining area of bed with copies of the selected object" +msgstr "" msgid "Printable" -msgstr "Printable" +msgstr "" msgid "Fix model" msgstr "Fix Model" msgid "Export as one STL" -msgstr "Export as one STL" +msgstr "" msgid "Export as STLs" -msgstr "Export as STLs" +msgstr "" msgid "Reload from disk" -msgstr "Reload from disk" +msgstr "" msgid "Reload the selected parts from disk" -msgstr "Reload the selected parts from disk" +msgstr "" msgid "Replace with STL" -msgstr "Replace with STL" +msgstr "" msgid "Replace the selected part with new STL" -msgstr "Replace the selected part with new STL" +msgstr "" msgid "Change filament" -msgstr "Change filament" +msgstr "" msgid "Set filament for selected items" -msgstr "Set filament for selected items" +msgstr "" msgid "Default" -msgstr "Default" +msgstr "" #, c-format, boost-format msgid "Filament %d" -msgstr "Filament %d" +msgstr "" msgid "current" -msgstr "current" +msgstr "" msgid "Scale to build volume" -msgstr "Scale to build volume" +msgstr "" msgid "Scale an object to fit the build volume" -msgstr "Scale an object to fit the build volume" +msgstr "" msgid "Flush Options" -msgstr "Flush Options" +msgstr "" msgid "Flush into objects' infill" -msgstr "Flush into objects' infill" +msgstr "" msgid "Flush into this object" -msgstr "Flush into this object" +msgstr "" msgid "Flush into objects' support" -msgstr "Flush into objects' support" +msgstr "" msgid "Edit in Parameter Table" -msgstr "Edit in Parameter Table" +msgstr "" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Convert from Inches" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Restore to Inch" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Convert from Meters" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Restore to Meter" msgid "Assemble" -msgstr "Assemble" +msgstr "" msgid "Assemble the selected objects to an object with multiple parts" msgstr "Assemble the selected objects into an object with multiple parts" @@ -1878,10 +1860,10 @@ msgid "Assemble the selected objects to an object with single part" msgstr "Assemble the selected objects into an object with single part" msgid "Mesh boolean" -msgstr "Mesh boolean" +msgstr "" msgid "Mesh boolean operations including union and subtraction" -msgstr "Mesh boolean operations including union and subtraction" +msgstr "" msgid "Along X axis" msgstr "Along X Axis" @@ -1902,7 +1884,7 @@ msgid "Mirror along the Z axis" msgstr "Mirror along the Z Axis" msgid "Mirror object" -msgstr "Mirror object" +msgstr "" msgid "Edit text" msgstr "" @@ -1917,58 +1899,58 @@ msgid "Change SVG source file, projection, size, ..." msgstr "" msgid "Invalidate cut info" -msgstr "Invalidate cut info" +msgstr "" msgid "Add Primitive" -msgstr "Add Primitive" +msgstr "" msgid "Add Handy models" msgstr "" msgid "Add Models" -msgstr "Add Models" +msgstr "" msgid "Show Labels" -msgstr "Show Labels" +msgstr "" msgid "To objects" msgstr "To Objects" msgid "Split the selected object into multiple objects" -msgstr "Split the selected object into multiple objects" +msgstr "" msgid "To parts" msgstr "To Parts" msgid "Split the selected object into multiple parts" -msgstr "Split the selected object into multiple parts" +msgstr "" msgid "Split" -msgstr "Split" +msgstr "" msgid "Split the selected object" -msgstr "Split the selected object" +msgstr "" msgid "Auto orientation" -msgstr "Auto orientation" +msgstr "" msgid "Auto orient the object to improve print quality." -msgstr "Auto orient the object to improve print quality." +msgstr "" msgid "Select All" -msgstr "Select All" +msgstr "" msgid "select all objects on current plate" msgstr "Select all objects on the current plate" msgid "Delete All" -msgstr "Delete All" +msgstr "" msgid "delete all objects on current plate" msgstr "Delete all objects on the current plate" msgid "Arrange" -msgstr "Arrange" +msgstr "" msgid "arrange current plate" msgstr "Arrange current plate" @@ -1980,85 +1962,85 @@ msgid "reload all from disk" msgstr "" msgid "Auto Rotate" -msgstr "Auto Rotate" +msgstr "" msgid "auto rotate current plate" msgstr "Auto rotate current plate" msgid "Delete Plate" -msgstr "Delete Plate" +msgstr "" msgid "Remove the selected plate" -msgstr "Remove the selected plate" +msgstr "" msgid "Clone" -msgstr "Clone" +msgstr "" msgid "Simplify Model" -msgstr "Simplify Model" +msgstr "" msgid "Center" -msgstr "Center" +msgstr "" msgid "Drop" msgstr "" msgid "Edit Process Settings" -msgstr "Edit Process Settings" +msgstr "" msgid "Edit print parameters for a single object" -msgstr "Edit print parameters for a single object" +msgstr "" msgid "Change Filament" -msgstr "Change Filament" +msgstr "" msgid "Set Filament for selected items" -msgstr "Set Filament for selected items" +msgstr "" msgid "Unlock" -msgstr "Unlock" +msgstr "" msgid "Lock" -msgstr "Lock" +msgstr "" msgid "Edit Plate Name" -msgstr "Edit Plate Name" +msgstr "" msgid "Name" -msgstr "Name" +msgstr "" msgid "Fila." -msgstr "Fila." +msgstr "" #, c-format, boost-format msgid "%1$d error repaired" msgid_plural "%1$d errors repaired" -msgstr[0] "%1$d error repaired" -msgstr[1] "%1$d errors repaired" +msgstr[0] "" +msgstr[1] "" #, c-format, boost-format msgid "Error: %1$d non-manifold edge." msgid_plural "Error: %1$d non-manifold edges." -msgstr[0] "Error: %1$d non-manifold edge." -msgstr[1] "Error: %1$d non-manifold edges." +msgstr[0] "" +msgstr[1] "" msgid "Remaining errors" -msgstr "Remaining errors" +msgstr "" #, c-format, boost-format msgid "%1$d non-manifold edge" msgid_plural "%1$d non-manifold edges" -msgstr[0] "%1$d non-manifold edge" -msgstr[1] "%1$d non-manifold edges" +msgstr[0] "" +msgstr[1] "" msgid "Right click the icon to fix model object" -msgstr "Right click the icon to fix model object" +msgstr "" msgid "Right button click the icon to drop the object settings" msgstr "Right click the icon to drop the object settings" msgid "Click the icon to reset all settings of the object" -msgstr "Click the icon to reset all settings of the object" +msgstr "" msgid "Right button click the icon to drop the object printable property" msgstr "Right click the icon to drop the object printable property" @@ -2067,88 +2049,84 @@ msgid "Click the icon to toggle printable property of the object" msgstr "Click the icon to toggle printable properties of the object" msgid "Click the icon to edit support painting of the object" -msgstr "Click the icon to edit support painting of the object" +msgstr "" msgid "Click the icon to edit color painting of the object" msgstr "Click the icon to edit color painting for the object" msgid "Click the icon to shift this object to the bed" -msgstr "Click the icon to shift this object to the bed" +msgstr "" msgid "Loading file" -msgstr "Loading file" +msgstr "" msgid "Error!" -msgstr "Error!" +msgstr "" msgid "Failed to get the model data in the current file." -msgstr "Failed to get the model data in the current file." +msgstr "" msgid "Generic" -msgstr "Generic" +msgstr "" msgid "Add Modifier" -msgstr "Add Modifier" +msgstr "" msgid "Switch to per-object setting mode to edit modifier settings." -msgstr "Switch to per-object setting mode to edit modifier settings." +msgstr "" msgid "" "Switch to per-object setting mode to edit process settings of selected " "objects." msgstr "" -"Switch to per-object setting mode to edit process settings of selected " -"objects." msgid "Delete connector from object which is a part of cut" -msgstr "Delete connector from object which is a part of cut" +msgstr "" msgid "Delete solid part from object which is a part of cut" -msgstr "Delete solid part from object which is a part of cut" +msgstr "" msgid "Delete negative volume from object which is a part of cut" -msgstr "Delete negative volume from object which is a part of cut" +msgstr "" msgid "" "To save cut correspondence you can delete all connectors from all related " "objects." msgstr "" -"To save cut correspondence you can delete all connectors from all related " -"objects." msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." msgstr "" "This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed .\n" +"After that, model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." msgid "Delete all connectors" -msgstr "Delete all connectors" +msgstr "" msgid "Deleting the last solid part is not allowed." -msgstr "Deleting the last solid part is not allowed." +msgstr "" -msgid "The target object contains only one part and can not be split." -msgstr "The target object contains only one part and cannot be split." +msgid "The target object contains only one part and cannot be split." +msgstr "" msgid "Assembly" -msgstr "Assembly" +msgstr "" msgid "Cut Connectors information" -msgstr "Cut Connectors information" +msgstr "" msgid "Object manipulation" -msgstr "Object manipulation" +msgstr "" msgid "Group manipulation" -msgstr "Group manipulation" +msgstr "" msgid "Object Settings to modify" msgstr "Object Settings to Modify" @@ -2160,59 +2138,55 @@ msgid "Layer range Settings to modify" msgstr "Layer Range Settings to Modify" msgid "Part manipulation" -msgstr "Part manipulation" +msgstr "" msgid "Instance manipulation" -msgstr "Instance manipulation" +msgstr "" msgid "Height ranges" -msgstr "Height ranges" +msgstr "" msgid "Settings for height range" -msgstr "Settings for height range" +msgstr "" msgid "Layer" -msgstr "Layer" +msgstr "" msgid "Selection conflicts" -msgstr "Selection conflicts" +msgstr "" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" -"If the first selected item is an object, the second one should also be an " -"object." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." -msgstr "" -"If the first selected item is a part, the second one should be a part in the " +"If the first selected item is a part, the second should be a part in the " "same object." +msgstr "" msgid "The type of the last solid object part is not to be changed." msgstr "The type of the last solid object part cannot be changed." msgid "Negative Part" -msgstr "Negative Part" +msgstr "" msgid "Support Blocker" -msgstr "Support Blocker" +msgstr "" msgid "Support Enforcer" -msgstr "Support Enforcer" +msgstr "" msgid "Type:" -msgstr "Type:" +msgstr "" msgid "Choose part type" -msgstr "Choose part type" +msgstr "" msgid "Enter new name" -msgstr "Enter new name" +msgstr "" msgid "Renaming" -msgstr "Renaming" +msgstr "" msgid "Following model object has been repaired" msgid_plural "Following model objects have been repaired" @@ -2225,85 +2199,85 @@ msgstr[0] "Failed to repair the following model object" msgstr[1] "Failed to repair the following model objects" msgid "Repairing was canceled" -msgstr "Repairing was canceled" +msgstr "" msgid "Additional process preset" -msgstr "Additional process preset" +msgstr "" msgid "Remove parameter" -msgstr "Remove parameter" +msgstr "" msgid "to" -msgstr "to" +msgstr "" msgid "Remove height range" -msgstr "Remove height range" +msgstr "" msgid "Add height range" -msgstr "Add height range" +msgstr "" msgid "Invalid numeric." -msgstr "Invalid numeric." +msgstr "" msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "One cell can only be copied to one or more cells in the same column." -msgid "multiple cells copy is not supported" -msgstr "Copying multiple cells is not supported." +msgid "Copying multiple cells is not supported." +msgstr "" msgid "Outside" -msgstr "Outside" +msgstr "" msgid "Layer height" -msgstr "Layer height" +msgstr "" msgid "Wall loops" -msgstr "Wall loops" +msgstr "" msgid "Infill density(%)" -msgstr "Infill density(%)" +msgstr "" msgid "Auto Brim" -msgstr "Auto Brim" +msgstr "" msgid "Mouse ear" msgstr "" msgid "Outer brim only" -msgstr "Outer brim only" +msgstr "" msgid "Inner brim only" -msgstr "Inner brim only" +msgstr "" msgid "Outer and inner brim" -msgstr "Outer and inner brim" +msgstr "" msgid "No-brim" -msgstr "No-brim" +msgstr "" msgid "Outer wall speed" -msgstr "Outer wall speed" +msgstr "" msgid "Plate" -msgstr "Plate" +msgstr "" msgid "Brim" -msgstr "Brim" +msgstr "" msgid "Object/Part Setting" msgstr "Object/part setting" msgid "Reset parameter" -msgstr "Reset parameter" +msgstr "" msgid "Multicolor Print" -msgstr "Multicolor Print" +msgstr "" msgid "Line Type" -msgstr "Line Type" +msgstr "" msgid "More" -msgstr "More" +msgstr "" msgid "Open Preferences." msgstr "Open Preferences" @@ -2315,31 +2289,31 @@ msgid "Open Documentation in web browser." msgstr "Open documentation in web browser" msgid "Color" -msgstr "Color" +msgstr "" msgid "Pause" -msgstr "Pause" +msgstr "" msgid "Template" -msgstr "Template" +msgstr "" msgid "Custom" -msgstr "Custom" +msgstr "" msgid "Pause:" -msgstr "Pause:" +msgstr "" msgid "Custom Template:" -msgstr "Custom Template:" +msgstr "" msgid "Custom G-code:" -msgstr "Custom G-code:" +msgstr "" msgid "Custom G-code" -msgstr "Custom G-code" +msgstr "" msgid "Enter Custom G-code used on current layer:" -msgstr "Enter Custom G-code used on current layer:" +msgstr "" msgid "Jump to Layer" msgstr "Jump to layer" @@ -2348,154 +2322,154 @@ msgid "Please enter the layer number" msgstr "Please enter the layer number." msgid "Add Pause" -msgstr "Add Pause" +msgstr "" msgid "Insert a pause command at the beginning of this layer." -msgstr "Insert a pause command at the beginning of this layer." +msgstr "" msgid "Add Custom G-code" -msgstr "Add Custom G-code" +msgstr "" msgid "Insert custom G-code at the beginning of this layer." -msgstr "Insert custom G-code at the beginning of this layer." +msgstr "" msgid "Add Custom Template" -msgstr "Add Custom Template" +msgstr "" msgid "Insert template custom G-code at the beginning of this layer." -msgstr "Insert template custom G-code at the beginning of this layer." +msgstr "" msgid "Filament " -msgstr "Filament " +msgstr "" msgid "Change filament at the beginning of this layer." -msgstr "Change filament at the beginning of this layer." +msgstr "" msgid "Delete Pause" -msgstr "Delete Pause" +msgstr "" msgid "Delete Custom Template" -msgstr "Delete Custom Template" +msgstr "" msgid "Edit Custom G-code" -msgstr "Edit Custom G-code" +msgstr "" msgid "Delete Custom G-code" -msgstr "Delete Custom G-code" +msgstr "" msgid "Delete Filament Change" -msgstr "Delete Filament Change" +msgstr "" msgid "No printer" -msgstr "No printer" +msgstr "" msgid "..." -msgstr "..." +msgstr "" msgid "Failed to connect to the server" -msgstr "Failed to connect to the server" +msgstr "" msgid "Check the status of current system services" -msgstr "Check the status of current system services" +msgstr "" msgid "code" -msgstr "code" +msgstr "" msgid "Failed to connect to cloud service" -msgstr "Failed to connect to cloud service" +msgstr "" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "Please click on the hyperlink above to view the cloud service status" +msgstr "" msgid "Failed to connect to the printer" -msgstr "Failed to connect to the printer" +msgstr "" msgid "Connection to printer failed" -msgstr "Connection to printer failed" +msgstr "" msgid "Please check the network connection of the printer and Orca." -msgstr "Please check the network connection of the printer and Orca." +msgstr "" msgid "Connecting..." -msgstr "Connecting..." +msgstr "" msgid "?" -msgstr "?" +msgstr "" msgid "/" -msgstr "/" +msgstr "" msgid "Empty" -msgstr "Empty" +msgstr "" msgid "AMS" -msgstr "AMS" +msgstr "" msgid "Auto Refill" -msgstr "Auto Refill" +msgstr "" msgid "AMS not connected" -msgstr "AMS not connected" +msgstr "" msgid "Load" -msgstr "Load" +msgstr "" msgid "Unload" -msgstr "Unload" +msgstr "" msgid "Ext Spool" -msgstr "Ext Spool" +msgstr "" msgid "Tips" -msgstr "Tips" +msgstr "" msgid "Guide" -msgstr "Guide" +msgstr "" msgid "Retry" -msgstr "Retry" +msgstr "" msgid "Calibrating AMS..." -msgstr "Calibrating AMS..." +msgstr "" msgid "A problem occurred during calibration. Click to view the solution." -msgstr "A problem occurred during calibration. Click to view the solution." +msgstr "" msgid "Calibrate again" -msgstr "Calibrate again" +msgstr "" msgid "Cancel calibration" -msgstr "Cancel calibration" +msgstr "" msgid "Idling..." -msgstr "Idling..." +msgstr "" msgid "Heat the nozzle" -msgstr "Heat the nozzle" +msgstr "" msgid "Cut filament" -msgstr "Cut filament" +msgstr "" msgid "Pull back current filament" msgstr "Pull back the current filament" msgid "Push new filament into extruder" -msgstr "Push new filament into extruder" +msgstr "" msgid "Purge old filament" -msgstr "Purge old filament" +msgstr "" msgid "Feed Filament" -msgstr "Feed Filament" +msgstr "" msgid "Confirm extruded" -msgstr "Confirm extruded" +msgstr "" msgid "Check filament location" -msgstr "Check filament location" +msgstr "" msgid "Grab new filament" -msgstr "Grab new filament" +msgstr "" msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " @@ -2505,33 +2479,29 @@ msgstr "" "load or unload filament." msgid "Edit" -msgstr "Edit" +msgstr "" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." -msgstr "" "All the selected objects are on a locked plate.\n" "Cannot auto-arrange these objects." +msgstr "" msgid "No arrangeable objects are selected." -msgstr "No arrangeable objects are selected." +msgstr "" msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." -msgstr "" "This plate is locked.\n" -"We cannot auto-arrange this plate." +"Cannot auto-arrange on this plate." +msgstr "" msgid "Arranging..." -msgstr "Arranging..." +msgstr "" msgid "Arranging" -msgstr "Arranging" +msgstr "" msgid "Arranging canceled." -msgstr "Arranging canceled." +msgstr "" msgid "" "Arranging is done but there are unpacked items. Reduce spacing and try again." @@ -2540,12 +2510,11 @@ msgstr "" "spacing and try again." msgid "Arranging done." -msgstr "Arranging done." +msgstr "" msgid "" "Arrange failed. Found some exceptions when processing object geometries." msgstr "" -"Arrange failed. Found some exceptions when processing object geometries." #, c-format, boost-format msgid "" @@ -2553,41 +2522,34 @@ msgid "" "bed:\n" "%s" msgstr "" -"Arrangement ignored the following objects which can't fit into a single " -"bed:\n" -"%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" -"All the selected objects are on a locked plate,\n" -"We cannot auto-orient these objects." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." -msgstr "" "This plate is locked.\n" -"We cannot auto-orient this plate." +"Cannot auto-orient on this plate." +msgstr "" msgid "Orienting..." -msgstr "Orienting..." +msgstr "" msgid "Orienting" -msgstr "Orienting" +msgstr "" msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "Filling" +msgstr "" msgid "Bed filling canceled." -msgstr "Bed filling canceled." +msgstr "" msgid "Bed filling done." -msgstr "Bed filling done." +msgstr "" msgid "Searching for optimal orientation" msgstr "" @@ -2599,41 +2561,39 @@ msgid "Orientation found." msgstr "" msgid "Logging in" -msgstr "Logging in" +msgstr "" msgid "Login failed" -msgstr "Login failed" +msgstr "" msgid "Please check the printer network connection." -msgstr "Please check the printer network connection." +msgstr "" msgid "Abnormal print file data. Please slice again." msgstr "Abnormal print file data: please slice again." msgid "Task canceled." -msgstr "Task canceled." +msgstr "" msgid "Upload task timed out. Please check the network status and try again." -msgstr "Upload task timed out. Please check the network status and try again." +msgstr "" msgid "Cloud service connection failed. Please try again." -msgstr "Cloud service connection failed. Please try again." +msgstr "" -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Print file not found; please slice again." msgid "" "The print file exceeds the maximum allowable size (1GB). Please simplify the " "model and slice again." msgstr "" -"The print file exceeds the maximum allowable size (1GB). Please simplify the " -"model and slice again." msgid "Failed to send the print job. Please try again." -msgstr "Failed to send the print job. Please try again." +msgstr "" msgid "Failed to upload file to ftp. Please try again." -msgstr "Failed to upload file to ftp. Please try again." +msgstr "" msgid "" "Check the current status of the bambu server by clicking on the link above." @@ -2645,10 +2605,8 @@ msgid "" "The size of the print file is too large. Please adjust the file size and try " "again." msgstr "" -"The size of the print file is too large. Please adjust the file size and try " -"again." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "Print file not found; please slice it again and send it for printing." msgid "" @@ -2659,49 +2617,49 @@ msgstr "" "again." msgid "Sending print job over LAN" -msgstr "Sending print job over LAN" +msgstr "" msgid "Sending print job through cloud service" -msgstr "Sending print job through cloud service" +msgstr "" msgid "Print task sending times out." -msgstr "Print task sending times out." +msgstr "" msgid "Service Unavailable" -msgstr "Service Unavailable" +msgstr "" msgid "Unknown Error." -msgstr "Unknown Error." +msgstr "" msgid "Sending print configuration" -msgstr "Sending print configuration" +msgstr "" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the device page in %ss" -msgstr "Successfully sent. Will automatically jump to the device page in %ss" +msgstr "" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "Successfully sent. Will automatically jump to the next page in %ss" +msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "A MicroSD card needs to be inserted before printing via LAN." -msgid "Sending gcode file over LAN" -msgstr "Sending G-code file over LAN" +msgid "Sending G-code file over LAN" +msgstr "" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Sending G-code file to MicroSD card" #, c-format, boost-format msgid "Successfully sent. Close current page in %s s" -msgstr "Successfully sent. Close current page in %s s" +msgstr "" msgid "An SD card needs to be inserted before sending to printer." msgstr "A MicroSD card needs to be inserted before sending to printer." msgid "Importing SLA archive" -msgstr "Importing SLA archive" +msgstr "" msgid "" "The SLA archive doesn't contain any presets. Please activate some SLA " @@ -2711,76 +2669,72 @@ msgstr "" "printer presets first before importing that SLA archive." msgid "Importing canceled." -msgstr "Importing canceled." +msgstr "" msgid "Importing done." -msgstr "Importing done." +msgstr "" msgid "" "The imported SLA archive did not contain any presets. The current SLA " "presets were used as fallback." msgstr "" -"The imported SLA archive did not contain any presets. The current SLA " -"presets were used as fallback." msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "You cannot load an SLA project with a multi-part object on the bed" msgid "Please check your object list before preset changing." -msgstr "Please check your object list before preset changing." +msgstr "" msgid "Attention!" -msgstr "Attention!" +msgstr "" msgid "Downloading" -msgstr "Downloading" +msgstr "" msgid "Download failed" -msgstr "Download failed" +msgstr "" -msgid "Cancelled" -msgstr "Canceled" +msgid "Canceled" +msgstr "" -msgid "Install successfully." -msgstr "Installed successfully" +msgid "Installed successfully" +msgstr "" msgid "Installing" -msgstr "Installing" +msgstr "" msgid "Install failed" -msgstr "Install failed" +msgstr "" msgid "Portions copyright" msgstr "License Info" msgid "Copyright" -msgstr "Copyright" +msgstr "" msgid "License" -msgstr "License" +msgstr "" msgid "Orca Slicer is licensed under " -msgstr "Orca Slicer is licensed under " +msgstr "" msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, version 3" +msgstr "" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" msgid "Libraries" -msgstr "Libraries" +msgstr "" msgid "" "This software uses open source components whose copyright and other " "proprietary rights belong to their respective owners" msgstr "" -"This software uses open source components whose copyright and other " -"proprietary rights belong to their respective owners" #, c-format, boost-format msgid "About %s" -msgstr "About %s" +msgstr "" msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer." msgstr "" @@ -2789,73 +2743,66 @@ msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." msgstr "" msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." -msgstr "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." +msgstr "" msgid "" "Slic3r was created by Alessandro Ranellucci with the help of many other " "contributors." msgstr "" -"Slic3r was created by Alessandro Ranellucci with the help of many other " -"contributors." msgid "Version" -msgstr "Version" +msgstr "" msgid "AMS Materials Setting" -msgstr "AMS Materials Setting" +msgstr "" msgid "Confirm" -msgstr "Confirm" +msgstr "" msgid "Close" -msgstr "Close" - -msgid "Colour" -msgstr "Color" +msgstr "" msgid "" "Nozzle\n" "Temperature" msgstr "" -"Nozzle\n" -"Temperature" msgid "max" -msgstr "max" +msgstr "" msgid "min" -msgstr "min" +msgstr "" #, boost-format msgid "The input value should be greater than %1% and less than %2%" -msgstr "The input value should be greater than %1% and less than %2%" +msgstr "" msgid "SN" -msgstr "SN" +msgstr "" msgid "Factors of Flow Dynamics Calibration" -msgstr "Factors of Flow Dynamics Calibration" +msgstr "" msgid "PA Profile" -msgstr "PA Profile" +msgstr "" msgid "Factor K" -msgstr "Factor K" +msgstr "" msgid "Factor N" -msgstr "Factor N" +msgstr "" msgid "Setting AMS slot information while printing is not supported" -msgstr "Setting AMS slot information while printing is not supported" +msgstr "" msgid "Setting Virtual slot information while printing is not supported" -msgstr "Setting Virtual slot information while printing is not supported" +msgstr "" msgid "Are you sure you want to clear the filament information?" -msgstr "Are you sure you want to clear the filament information?" +msgstr "" msgid "You need to select the material type and color first." -msgstr "You need to select the material type and color first." +msgstr "" #, c-format, boost-format msgid "Please input a valid value (K in %.1f~%.1f)" @@ -2866,104 +2813,97 @@ msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)" msgstr "" msgid "Other Color" -msgstr "Other Color" +msgstr "" msgid "Custom Color" -msgstr "Custom Color" +msgstr "" msgid "Dynamic flow calibration" -msgstr "Dynamic flow calibration" +msgstr "" msgid "" "The nozzle temp and max volumetric speed will affect the calibration " "results. Please fill in the same values as the actual printing. They can be " "auto-filled by selecting a filament preset." msgstr "" -"The nozzle temp and max volumetric speed will affect the calibration " -"results. Please fill in the same values as the actual printing. They can be " -"auto-filled by selecting a filament preset." msgid "Nozzle Diameter" -msgstr "Nozzle Diameter" +msgstr "" msgid "Bed Type" msgstr "Plate Type" msgid "Nozzle temperature" -msgstr "Nozzle temperature" +msgstr "" msgid "Bed Temperature" -msgstr "Bed Temperature" +msgstr "" msgid "Max volumetric speed" -msgstr "Max volumetric speed" +msgstr "" msgid "℃" msgstr "" msgid "Bed temperature" -msgstr "Bed temperature" +msgstr "" msgid "mm³" -msgstr "mm³" +msgstr "" msgid "Start calibration" msgstr "Start" msgid "Next" -msgstr "Next" +msgstr "" msgid "" "Calibration completed. Please find the most uniform extrusion line on your " "hot bed like the picture below, and fill the value on its left side into the " "factor K input box." msgstr "" -"Calibration completed. Please find the most uniform extrusion line on your " -"hot bed like the picture below, and fill the value on its left side into the " -"factor K input box." msgid "Save" -msgstr "Save" +msgstr "" msgid "Last Step" msgstr "Back" msgid "Example" -msgstr "Example" +msgstr "" #, c-format, boost-format msgid "Calibrating... %d%%" -msgstr "Calibrating... %d%%" +msgstr "" msgid "Calibration completed" -msgstr "Calibration completed" +msgstr "" #, c-format, boost-format msgid "%s does not support %s" -msgstr "%s does not support %s" +msgstr "" msgid "Dynamic flow Calibration" msgstr "Dynamic flow calibration" msgid "Step" -msgstr "Step" +msgstr "" msgid "AMS Slots" -msgstr "AMS Slots" +msgstr "" msgid "" "Note: Only the AMS slots loaded with the same material type can be selected." msgstr "" -"Note: Only the AMS slots loaded with the same material type can be selected." msgid "Enable AMS" -msgstr "Enable AMS" +msgstr "" msgid "Print with filaments in the AMS" msgstr "Print with filament in the AMS" msgid "Disable AMS" -msgstr "Disable AMS" +msgstr "" msgid "Print with the filament mounted on the back of chassis" msgstr "Print with filament on external spool" @@ -2973,8 +2913,8 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Please change the desiccant when it is too wet. The indicator may not " @@ -2983,26 +2923,25 @@ msgstr "" "low temperatures also slow down the process." msgid "" -"Config which AMS slot should be used for a filament used in the print job" -msgstr "" "Configure which AMS slot should be used for a filament used in the print job." +msgstr "" msgid "Filament used in this print job" -msgstr "Filament used in this print job" +msgstr "" msgid "AMS slot used for this filament" -msgstr "AMS slot used for this filament" +msgstr "" msgid "Click to select AMS slot manually" -msgstr "Click to select AMS slot manually" +msgstr "" msgid "Do not Enable AMS" -msgstr "Do not Enable AMS" +msgstr "" msgid "Print using materials mounted on the back of the case" msgstr "Print using filament on external spool." -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Print with filament in AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3012,14 +2951,12 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" -"When the current material run out, the printer will continue to print in the " -"following order." msgid "Group" -msgstr "Group" +msgstr "" msgid "The printer does not currently support auto refill." -msgstr "The printer does not currently support auto refill." +msgstr "" msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." @@ -3028,26 +2965,26 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "If there are two identical filaments in an AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(This currently supports automatic supply of consumables with the same " "brand, material type, and color)" msgid "DRY" -msgstr "DRY" +msgstr "" msgid "WET" -msgstr "WET" +msgstr "" msgid "AMS Settings" -msgstr "AMS Settings" +msgstr "" msgid "Insertion update" -msgstr "Insertion update" +msgstr "" msgid "" "The AMS will automatically read the filament information when inserting a " @@ -3057,29 +2994,25 @@ msgstr "" "new Bambu Lab filament spool. This takes about 20 seconds." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" -"Note: if a new filament is inserted during printing, the AMS will not " -"automatically read any information until printing is completed." msgid "" "When inserting a new filament, the AMS will not automatically read its " "information, leaving it blank for you to enter manually." msgstr "" -"When inserting a new filament, the AMS will not automatically read its " -"information, leaving it blank for you to enter manually." msgid "Power on update" msgstr "Update on startup" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will rotate the " +"start-up. It will take about 1 minute. The reading process will rotate the " "filament spools." msgid "" @@ -3087,47 +3020,37 @@ msgid "" "during startup and will continue to use the information recorded before the " "last shutdown." msgstr "" -"The AMS will not automatically read information from inserted filament " -"during startup and will continue to use the information recorded before the " -"last shutdown." msgid "Update remaining capacity" -msgstr "Update remaining capacity" +msgstr "" msgid "" "The AMS will estimate Bambu filament's remaining capacity after the filament " "info is updated. During printing, remaining capacity will be updated " "automatically." msgstr "" -"The AMS will estimate Bambu filament's remaining capacity after the filament " -"info is updated. During printing, remaining capacity will be updated " -"automatically." msgid "AMS filament backup" -msgstr "AMS filament backup" +msgstr "" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" -msgstr "" -"AMS will continue to another spool with the same filament properties " +"AMS will continue to another spool with matching filament properties " "automatically when current filament runs out." +msgstr "" msgid "Air Printing Detection" -msgstr "Air Printing Detection" +msgstr "" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" -"Detects clogging and filament grinding, halting printing immediately to " -"conserve time and filament." msgid "File" -msgstr "File" +msgstr "" msgid "Calibration" -msgstr "Calibration" +msgstr "" msgid "" "Failed to download the plug-in. Please check your firewall settings and vpn " @@ -3144,20 +3067,18 @@ msgstr "" "been deleted by anti-virus software." msgid "click here to see more info" -msgstr "click here to see more info" +msgstr "" msgid "Please home all axes (click " -msgstr "Please home all axes (click " +msgstr "" msgid "" ") to locate the toolhead's position. This prevents device moving beyond the " "printable boundary and causing equipment wear." msgstr "" -") to locate the toolhead's position. This prevents device moving beyond the " -"printable boundary and causing equipment wear." msgid "Go Home" -msgstr "Go Home" +msgstr "" msgid "" "A error occurred. Maybe memory of system is not enough or it's a bug of the " @@ -3173,38 +3094,38 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Please save your project and restart the application." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Processing G-Code from previous file…" msgid "Slicing complete" -msgstr "Slicing complete" +msgstr "" msgid "Access violation" -msgstr "Access violation" +msgstr "" msgid "Illegal instruction" -msgstr "Illegal instruction" +msgstr "" msgid "Divide by zero" -msgstr "Divide by zero" +msgstr "" msgid "Overflow" -msgstr "Overflow" +msgstr "" msgid "Underflow" -msgstr "Underflow" +msgstr "" msgid "Floating reserved operand" -msgstr "Floating reserved operand" +msgstr "" msgid "Stack overflow" -msgstr "Stack overflow" +msgstr "" msgid "Running post-processing scripts" -msgstr "Running post-processing scripts" +msgstr "" msgid "Successfully executed post-processing script" -msgstr "Successfully executed post-processing script" +msgstr "" msgid "Unknown error occurred during exporting G-code." msgstr "" @@ -3245,34 +3166,31 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Unknown error with G-code export" #, boost-format msgid "" -"Failed to save gcode file.\n" -"Error message: %1%.\n" -"Source file %2%." -msgstr "" "Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." +msgstr "" msgid "Copying of the temporary G-code to the output G-code failed" msgstr "Copying of the temporary G-code to the output G-code failed." #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" -msgstr "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" +msgstr "" msgid "Device" -msgstr "Device" +msgstr "" msgid "Task Sending" -msgstr "Task Sending" +msgstr "" msgid "Task Sent" -msgstr "Task Sent" +msgstr "" msgid "Edit multiple printers" msgstr "" @@ -3289,50 +3207,50 @@ msgid "The maximum number of printers that can be selected is %d" msgstr "" msgid "Offline" -msgstr "Offline" +msgstr "" msgid "No task" -msgstr "No task" +msgstr "" msgid "View" -msgstr "View" +msgstr "" msgid "N/A" -msgstr "N/A" +msgstr "" msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "Device Name" +msgstr "" msgid "Task Name" -msgstr "Task Name" +msgstr "" msgid "Device Status" -msgstr "Device Status" +msgstr "" msgid "Actions" -msgstr "Actions" +msgstr "" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" msgstr "" msgid "Add" -msgstr "Add" +msgstr "" msgid "Idle" -msgstr "Idle" +msgstr "" msgid "Printing" -msgstr "Printing" +msgstr "" msgid "Upgrading" msgstr "" msgid "Incompatible" -msgstr "Incompatible" +msgstr "" msgid "syncing" msgstr "" @@ -3347,16 +3265,16 @@ msgid "Printing Pause" msgstr "" msgid "Prepare" -msgstr "Prepare" +msgstr "" msgid "Slicing" -msgstr "Slicing" +msgstr "" msgid "Pending" msgstr "" msgid "Sending" -msgstr "Sending" +msgstr "" msgid "Sending Finish" msgstr "" @@ -3377,37 +3295,37 @@ msgid "Removed" msgstr "" msgid "Resume" -msgstr "Resume" +msgstr "" msgid "Stop" -msgstr "Stop" +msgstr "" msgid "Task Status" -msgstr "Task Status" +msgstr "" msgid "Sent Time" -msgstr "Sent Time" +msgstr "" msgid "There are no tasks to be sent!" -msgstr "There are no tasks to be sent!" +msgstr "" msgid "No historical tasks!" -msgstr "No historical tasks!" +msgstr "" msgid "Loading..." -msgstr "Loading..." +msgstr "" msgid "No AMS" -msgstr "No AMS" +msgstr "" msgid "Send to Multi-device" -msgstr "Send to Multi-device" +msgstr "" msgid "Preparing print job" -msgstr "Preparing print job" +msgstr "" msgid "Abnormal print file data. Please slice again" -msgstr "Abnormal print file data. Please slice again" +msgstr "" msgid "There is no device available to send printing." msgstr "" @@ -3416,55 +3334,53 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "Use External Spool" +msgstr "" msgid "Use AMS" -msgstr "Use AMS" +msgstr "" msgid "Select Printers" -msgstr "Select Printers" +msgstr "" -msgid "Ams Status" -msgstr "AMS Status" +msgid "AMS Status" +msgstr "" msgid "Printing Options" -msgstr "Printing Options" +msgstr "" msgid "Bed Leveling" msgstr "Bed leveling" msgid "Timelapse" -msgstr "Timelapse" +msgstr "" msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "Send Options" +msgstr "" msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" "printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" +msgstr "" msgid "Wait" -msgstr "Wait" +msgstr "" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "minute each batch. (It depends on how long it takes to complete heating.)" msgid "Send" -msgstr "Send" +msgstr "" msgid "Name is invalid;" -msgstr "Name is invalid;" +msgstr "" msgid "illegal characters:" msgstr "Illegal characters:" @@ -3482,63 +3398,59 @@ msgid "The name is not allowed to end with space character." msgstr "The name is not allowed to end with a space." msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." +msgstr "" msgid "Origin" -msgstr "Origin" +msgstr "" msgid "Size in X and Y of the rectangular plate." -msgstr "Size in X and Y of the rectangular plate." +msgstr "" msgid "" "Distance of the 0,0 G-code coordinate from the front left corner of the " "rectangle." msgstr "" -"Distance of the 0,0 G-code coordinate from the front left corner of the " -"rectangle." msgid "" "Diameter of the print bed. It is assumed that origin (0,0) is located in the " "center." msgstr "" -"Diameter of the print bed. It is assumed that origin (0,0) is located in the " -"center." msgid "Rectangular" -msgstr "Rectangular" +msgstr "" msgid "Circular" -msgstr "Circular" +msgstr "" msgid "Load shape from STL..." -msgstr "Load shape from STL..." +msgstr "" msgid "Settings" -msgstr "Settings" +msgstr "" msgid "Texture" -msgstr "Texture" +msgstr "" msgid "Remove" -msgstr "Remove" +msgstr "" msgid "Not found:" -msgstr "Not found:" +msgstr "" msgid "Model" -msgstr "Model" +msgstr "" msgid "Choose an STL file to import bed shape from:" -msgstr "Choose an STL file to import bed shape from:" +msgstr "" msgid "Invalid file format." -msgstr "Invalid file format." +msgstr "" msgid "Error! Invalid model" msgstr "Error: invalid model" msgid "The selected file contains no geometry." -msgstr "The selected file contains no geometry." +msgstr "" msgid "" "The selected file contains several disjoint areas. This is not supported." @@ -3546,30 +3458,26 @@ msgstr "" "The selected file contains several disjointed areas. This is not supported." msgid "Choose a file to import bed texture from (PNG/SVG):" -msgstr "Choose a file to import bed texture from (PNG/SVG):" +msgstr "" msgid "Choose an STL file to import bed model from:" -msgstr "Choose an STL file to import bed model from:" +msgstr "" msgid "Bed Shape" -msgstr "Bed Shape" +msgstr "" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" -"The recommended minimum temperature cannot be higher than the recommended " -"maximum temperature.\n" msgid "Please check.\n" -msgstr "Please check.\n" +msgstr "" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3583,11 +3491,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" -msgstr "" "The recommended nozzle temperature for this filament type is [%d, %d] " -"degrees centigrade" +"degrees Celsius." +msgstr "" msgid "" "Too small max volumetric speed.\n" @@ -3598,12 +3504,12 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Current chamber temperature is higher than the material's safe temperature; " -"this may result in material softening and nozzle clogs.The maximum safe " +"this may result in material softening and nozzle clogs. The maximum safe " "temperature for the material is %d" msgid "" @@ -3662,7 +3568,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3675,11 +3581,6 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgstr "" -"Prime tower does not work when Adaptive Layer Height or Independent Support " -"Layer Height is on.\n" -"Which do you want to keep?\n" -"YES - Keep Prime Tower\n" -"NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgid "" "Prime tower does not work when Adaptive Layer Height is on.\n" @@ -3687,10 +3588,6 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height" msgstr "" -"Prime tower does not work when Adaptive Layer Height is on.\n" -"Which do you want to keep?\n" -"YES - Keep Prime Tower\n" -"NO - Keep Adaptive Layer Height" msgid "" "Prime tower does not work when Independent Support Layer Height is on.\n" @@ -3698,10 +3595,6 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Independent Support Layer Height" msgstr "" -"Prime tower does not work when Independent Support Layer Height is on.\n" -"Which do you want to keep?\n" -"YES - Keep Prime Tower\n" -"NO - Keep Independent Support Layer Height" msgid "" "seam_slope_start_height need to be smaller than layer_height.\n" @@ -3712,219 +3605,203 @@ msgid "" "Spiral mode only works when wall loops is 1, support is disabled, top shell " "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgstr "" -"Spiral mode only works when wall loops is 1, support is disabled, top shell " -"layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr " But machines with I3 structure will not generate timelapse videos." +msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral/vase mode automatically\n" "No - Cancel enabling spiral mode" msgid "Auto bed leveling" -msgstr "Auto bed leveling" +msgstr "" msgid "Heatbed preheating" -msgstr "Heatbed preheating" +msgstr "" msgid "Sweeping XY mech mode" -msgstr "Sweeping XY mech mode" +msgstr "" msgid "Changing filament" -msgstr "Changing filament" +msgstr "" msgid "M400 pause" -msgstr "M400 pause" +msgstr "" msgid "Paused due to filament runout" -msgstr "Paused due to filament runout" +msgstr "" msgid "Heating hotend" -msgstr "Heating hotend" +msgstr "" msgid "Calibrating extrusion" -msgstr "Calibrating extrusion" +msgstr "" msgid "Scanning bed surface" -msgstr "Scanning bed surface" +msgstr "" msgid "Inspecting first layer" -msgstr "Inspecting first layer" +msgstr "" msgid "Identifying build plate type" -msgstr "Identifying build plate type" +msgstr "" msgid "Calibrating Micro Lidar" -msgstr "Calibrating Micro Lidar" +msgstr "" msgid "Homing toolhead" -msgstr "Homing toolhead" +msgstr "" msgid "Cleaning nozzle tip" -msgstr "Cleaning nozzle tip" +msgstr "" msgid "Checking extruder temperature" -msgstr "Checking extruder temperature" +msgstr "" msgid "Printing was paused by the user" -msgstr "Printing was paused by the user" +msgstr "" msgid "Pause of front cover falling" -msgstr "Pause of front cover falling" +msgstr "" -msgid "Calibrating the micro lida" -msgstr "Calibrating the micro lidar" +msgid "Calibrating the micro lidar" +msgstr "" msgid "Calibrating extrusion flow" -msgstr "Calibrating extrusion flow" +msgstr "" msgid "Paused due to nozzle temperature malfunction" -msgstr "Paused due to nozzle temperature malfunction" +msgstr "" msgid "Paused due to heat bed temperature malfunction" -msgstr "Paused due to heat bed temperature malfunction" +msgstr "" msgid "Filament unloading" -msgstr "Filament unloading" +msgstr "" msgid "Skip step pause" -msgstr "Skip step pause" +msgstr "" msgid "Filament loading" -msgstr "Filament loading" +msgstr "" msgid "Motor noise calibration" -msgstr "Motor noise calibration" +msgstr "" msgid "Paused due to AMS lost" -msgstr "Paused due to AMS lost" +msgstr "" msgid "Paused due to low speed of the heat break fan" -msgstr "Paused due to low speed of the heat break fan" +msgstr "" msgid "Paused due to chamber temperature control error" -msgstr "Paused due to chamber temperature control error" +msgstr "" msgid "Cooling chamber" -msgstr "Cooling chamber" +msgstr "" -msgid "Paused by the Gcode inserted by user" -msgstr "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" +msgstr "" msgid "Motor noise showoff" -msgstr "Motor noise showoff" +msgstr "" msgid "Nozzle filament covered detected pause" -msgstr "Nozzle filament covered detected pause" +msgstr "" msgid "Cutter error pause" -msgstr "Cutter error pause" +msgstr "" msgid "First layer error pause" -msgstr "First layer error pause" +msgstr "" msgid "Nozzle clog pause" -msgstr "Nozzle clog pause" +msgstr "" msgid "Unknown" -msgstr "Unknown" +msgstr "" msgid "Fatal" -msgstr "Fatal" +msgstr "" msgid "Serious" -msgstr "Serious" +msgstr "" msgid "Common" -msgstr "Common" +msgstr "" msgid "Update successful." -msgstr "Update successful." +msgstr "" msgid "Downloading failed." -msgstr "Downloading failed." +msgstr "" msgid "Verification failed." -msgstr "Verification failed." +msgstr "" msgid "Update failed." -msgstr "Update failed." +msgstr "" msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." -msgstr "" -"The current chamber temperature or the target chamber temperature exceeds " "45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." +msgstr "" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " -"above 45℃." -msgstr "" "Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " "to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." +msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " -"automatically be set to 0℃." -msgstr "" -"When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." +msgstr "" -msgid "Failed to start printing job" -msgstr "Failed to start print job" +msgid "Failed to start print job" +msgstr "" msgid "" "This calibration does not support the currently selected nozzle diameter" msgstr "" -"This calibration does not support the currently selected nozzle diameter" msgid "Current flowrate cali param is invalid" -msgstr "Current flowrate cali param is invalid" +msgstr "" msgid "Selected diameter and machine diameter do not match" -msgstr "Selected diameter and machine diameter do not match" +msgstr "" -msgid "Failed to generate cali gcode" -msgstr "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" +msgstr "" msgid "Calibration error" -msgstr "Calibration error" +msgstr "" msgid "TPU is not supported by AMS." -msgstr "TPU is not supported by AMS." +msgstr "" msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "Bambu PET-CF/PA6-CF is not supported by AMS." +msgstr "" msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " -"dry it before use." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " -"AMS, please use with caution." msgid "default" -msgstr "default" +msgstr "" #, boost-format msgid "Edit Custom G-code (%1%)" @@ -3933,7 +3810,7 @@ msgstr "" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -3974,40 +3851,40 @@ msgid "Specific for %1%" msgstr "" msgid "Presets" -msgstr "Presets" +msgstr "" msgid "Print settings" -msgstr "Print settings" +msgstr "" msgid "Filament settings" -msgstr "Filament settings" +msgstr "" msgid "SLA Materials settings" msgstr "" msgid "Printer settings" -msgstr "Printer settings" +msgstr "" msgid "parameter name" -msgstr "parameter name" +msgstr "" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s can’t be a percentage" #, c-format, boost-format msgid "Value %s is out of range, continue?" -msgstr "Value %s is out of range, continue?" +msgstr "" msgid "Parameter validation" -msgstr "Parameter validation" +msgstr "" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Value %s is out of range. The valid range is from %d to %d." +msgstr "" msgid "Value is out of range." -msgstr "Value is out of range." +msgstr "" #, c-format, boost-format msgid "" @@ -4015,9 +3892,6 @@ msgid "" "YES for %s%%, \n" "NO for %s %s." msgstr "" -"Is it %s%% or %s %s?\n" -"YES for %s%%, \n" -"NO for %s %s." #, boost-format msgid "" @@ -4033,106 +3907,106 @@ msgstr "" #, boost-format msgid "Invalid format. Expected vector format: \"%1%\"" -msgstr "Invalid format. Expected vector format: \"%1%\"" +msgstr "" msgid "Layer Height" -msgstr "Layer Height" +msgstr "" msgid "Line Width" -msgstr "Line Width" +msgstr "" msgid "Fan Speed" -msgstr "Fan Speed" +msgstr "" msgid "Temperature" -msgstr "Temperature" +msgstr "" msgid "Flow" -msgstr "Flow" +msgstr "" msgid "Tool" -msgstr "Tool" +msgstr "" msgid "Layer Time" -msgstr "Layer Time" +msgstr "" msgid "Layer Time (log)" -msgstr "Layer Time (log)" +msgstr "" msgid "Height: " -msgstr "Height: " +msgstr "" msgid "Width: " -msgstr "Width: " +msgstr "" msgid "Speed: " -msgstr "Speed: " +msgstr "" msgid "Flow: " -msgstr "Flow: " +msgstr "" msgid "Layer Time: " -msgstr "Layer Time: " +msgstr "" msgid "Fan: " -msgstr "Fan: " +msgstr "" msgid "Temperature: " -msgstr "Temperature: " +msgstr "" -msgid "Loading G-codes" -msgstr "Loading G-code" +msgid "Loading G-code" +msgstr "" msgid "Generating geometry vertex data" -msgstr "Generating geometry vertex data" +msgstr "" msgid "Generating geometry index data" -msgstr "Generating geometry index data" +msgstr "" msgid "Statistics of All Plates" -msgstr "Statistics of All Plates" +msgstr "" msgid "Display" -msgstr "Display" +msgstr "" msgid "Flushed" -msgstr "Flushed" +msgstr "" msgid "Tower" -msgstr "Tower" +msgstr "" msgid "Total" -msgstr "Total" +msgstr "" msgid "Total Estimation" msgstr "Total estimation" msgid "Total time" -msgstr "Total time" +msgstr "" msgid "Total cost" -msgstr "Total cost" +msgstr "" msgid "up to" -msgstr "up to" +msgstr "" msgid "above" -msgstr "above" +msgstr "" msgid "from" -msgstr "from" +msgstr "" msgid "Color Scheme" msgstr "Color scheme" msgid "Time" -msgstr "Time" +msgstr "" msgid "Percent" -msgstr "Percent" +msgstr "" msgid "Used filament" -msgstr "Used filament" +msgstr "" msgid "Layer Height (mm)" msgstr "Layer height (mm)" @@ -4141,139 +4015,136 @@ msgid "Line Width (mm)" msgstr "Line width (mm)" msgid "Speed (mm/s)" -msgstr "Speed (mm/s)" +msgstr "" msgid "Fan Speed (%)" msgstr "Fan speed (%)" msgid "Temperature (°C)" -msgstr "Temperature (°C)" +msgstr "" msgid "Volumetric flow rate (mm³/s)" -msgstr "Volumetric flow rate (mm³/s)" +msgstr "" msgid "Travel" -msgstr "Travel" +msgstr "" msgid "Seams" -msgstr "Seams" +msgstr "" msgid "Retract" -msgstr "Retract" +msgstr "" msgid "Unretract" -msgstr "Unretract" +msgstr "" msgid "Filament Changes" msgstr "Filament changes" msgid "Wipe" -msgstr "Wipe" +msgstr "" msgid "Options" -msgstr "Options" +msgstr "" msgid "travel" msgstr "Travel" msgid "Extruder" -msgstr "Extruder" - -msgid "Filament change times" -msgstr "Filament change times" - -msgid "Cost" -msgstr "Cost" - -msgid "Color change" -msgstr "Color change" - -msgid "Print" -msgstr "Print" - -msgid "Printer" -msgstr "Printer" - -msgid "Custom g-code" msgstr "" -msgid "ToolChange" +msgid "Filament change times" +msgstr "" + +msgid "Cost" +msgstr "" + +msgid "Color change" +msgstr "" + +msgid "Print" +msgstr "" + +msgid "Printer" +msgstr "" + +msgid "Tool Change" msgstr "" msgid "Time Estimation" -msgstr "Time Estimation" +msgstr "" msgid "Normal mode" -msgstr "Normal mode" +msgstr "" msgid "Total Filament" -msgstr "Total Filament" +msgstr "" msgid "Model Filament" -msgstr "Model Filament" +msgstr "" msgid "Prepare time" -msgstr "Prepare time" +msgstr "" msgid "Model printing time" -msgstr "Model printing time" +msgstr "" msgid "Switch to silent mode" -msgstr "Switch to silent mode" +msgstr "" msgid "Switch to normal mode" -msgstr "Switch to normal mode" +msgstr "" msgid "Variable layer height" -msgstr "Variable layer height" +msgstr "" msgid "Adaptive" -msgstr "Adaptive" +msgstr "" msgid "Quality / Speed" -msgstr "Quality / Speed" +msgstr "" msgid "Smooth" -msgstr "Smooth" +msgstr "" msgid "Radius" -msgstr "Radius" +msgstr "" msgid "Keep min" -msgstr "Keep min" +msgstr "" msgid "Left mouse button:" -msgstr "Left mouse button:" +msgstr "" msgid "Add detail" -msgstr "Add Detail" +msgstr "" msgid "Right mouse button:" -msgstr "Right mouse button:" +msgstr "" msgid "Remove detail" -msgstr "Remove detail" +msgstr "" msgid "Shift + Left mouse button:" -msgstr "Shift + Left mouse button:" +msgstr "" msgid "Reset to base" -msgstr "Reset to base" +msgstr "" msgid "Shift + Right mouse button:" -msgstr "Shift + Right mouse button:" +msgstr "" msgid "Smoothing" -msgstr "Smoothing" +msgstr "" msgid "Mouse wheel:" -msgstr "Mouse wheel:" +msgstr "" msgid "Increase/decrease edit area" -msgstr "Increase/decrease edit area" +msgstr "" msgid "Sequence" -msgstr "Sequence" +msgstr "" msgid "Mirror Object" msgstr "Mirror object" @@ -4282,7 +4153,7 @@ msgid "Tool Move" msgstr "Tool move" msgid "Tool Rotate" -msgstr "Tool Rotate" +msgstr "" msgid "Move Object" msgstr "Move object" @@ -4291,173 +4162,169 @@ msgid "Auto Orientation options" msgstr "Auto orientation options" msgid "Enable rotation" -msgstr "Enable rotation" +msgstr "" msgid "Optimize support interface area" -msgstr "Optimize support interface area" +msgstr "" msgid "Orient" -msgstr "Orient" +msgstr "" msgid "Arrange options" -msgstr "Arrange options" +msgstr "" msgid "Spacing" -msgstr "Spacing" +msgstr "" msgid "0 means auto spacing." -msgstr "0 means auto spacing." +msgstr "" msgid "Auto rotate for arrangement" -msgstr "Auto rotate for arrangement" +msgstr "" msgid "Allow multiple materials on same plate" -msgstr "Allow multiple materials on same plate" +msgstr "" msgid "Avoid extrusion calibration region" -msgstr "Avoid extrusion calibration region" +msgstr "" msgid "Align to Y axis" -msgstr "Align to Y axis" +msgstr "" msgid "Add plate" -msgstr "Add Plate" +msgstr "" -msgid "Auto orient" -msgstr "Auto Orient" +msgid "Auto orient all/selected objects" +msgstr "" + +msgid "Auto orient all objects on current plate" +msgstr "" msgid "Arrange all objects" -msgstr "Arrange all objects" +msgstr "" msgid "Arrange objects on selected plates" -msgstr "Arrange objects on selected plates" +msgstr "" msgid "Split to objects" -msgstr "Split to Objects" +msgstr "" msgid "Split to parts" -msgstr "Split to Parts" +msgstr "" msgid "Assembly View" -msgstr "Assembly View" +msgstr "" msgid "Select Plate" -msgstr "Select Plate" +msgstr "" msgid "Assembly Return" -msgstr "Assembly Return" +msgstr "" -msgid "return" -msgstr "return" +msgid "Return" +msgstr "" msgid "Paint Toolbar" -msgstr "Paint Toolbar" +msgstr "" msgid "Explosion Ratio" -msgstr "Explosion Ratio" +msgstr "" msgid "Section View" -msgstr "Section View" +msgstr "" msgid "Assemble Control" msgstr "Assembly Control" msgid "Total Volume:" -msgstr "Total Volume:" +msgstr "" msgid "Assembly Info" -msgstr "Assembly Info" +msgstr "" msgid "Volume:" -msgstr "Volume:" +msgstr "" msgid "Size:" -msgstr "Size:" +msgstr "" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -msgid "An object is layed over the boundary of plate." -msgstr "An object is laid over the boundary of the plate." +msgid "An object is laid over the plate boundaries." +msgstr "" msgid "A G-code path goes beyond the max print height." -msgstr "A G-code path goes beyond the max print height." +msgstr "" -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "A G-code path goes beyond plate boundaries." -msgid "Only the object being edit is visible." -msgstr "Only the object being edited is visible." +msgid "Only the object being edited is visible." +msgstr "" msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" -"An object is laid over the boundary of the plate or exceeds the height " -"limit.\n" -"Please solve the problem by moving it totally on or off the plate, and " -"confirming that the height is within the build volume." msgid "Calibration step selection" -msgstr "Calibration step selection" +msgstr "" msgid "Micro lidar calibration" -msgstr "Micro lidar calibration" +msgstr "" msgid "Bed leveling" -msgstr "Bed leveling" +msgstr "" msgid "Vibration compensation" -msgstr "Vibration compensation" +msgstr "" msgid "Motor noise cancellation" -msgstr "Motor noise cancellation" +msgstr "" msgid "Calibration program" -msgstr "Calibration program" +msgstr "" msgid "" "The calibration program detects the status of your device automatically to " "minimize deviation.\n" "It keeps the device performing optimally." msgstr "" -"The calibration program detects the status of your device automatically to " -"minimize deviation.\n" -"It keeps the device performing optimally." msgid "Calibration Flow" -msgstr "Calibration Flow" +msgstr "" msgid "Start Calibration" -msgstr "Start Calibration" +msgstr "" msgid "Completed" -msgstr "Completed" +msgstr "" msgid "Calibrating" -msgstr "Calibrating" +msgstr "" msgid "No step selected" -msgstr "No step selected" +msgstr "" msgid "Auto-record Monitoring" -msgstr "Auto-record Monitoring" +msgstr "" msgid "Go Live" -msgstr "Go Live" +msgstr "" msgid "Liveview Retry" -msgstr "Liveview Retry" +msgstr "" msgid "Resolution" -msgstr "Resolution" +msgstr "" msgid "Enable" -msgstr "Enable" +msgstr "" msgid "Hostname or IP" msgstr "" @@ -4466,19 +4333,19 @@ msgid "Custom camera source" msgstr "" msgid "Show \"Live Video\" guide page." -msgstr "Show \"Live Video\" guide page." +msgstr "" msgid "720p" -msgstr "720p" +msgstr "" msgid "1080p" -msgstr "1080p" +msgstr "" -msgid "ConnectPrinter(LAN)" -msgstr "Connect Printer (LAN)" +msgid "Connect Printer (LAN)" +msgstr "" msgid "Please input the printer access code:" -msgstr "Please input the printer access code:" +msgstr "" msgid "" "You can find it in \"Settings > Network > Connection code\"\n" @@ -4491,169 +4358,169 @@ msgid "Invalid input." msgstr "Invalid input" msgid "New Window" -msgstr "New Window" +msgstr "" msgid "Open a new window" -msgstr "Open a new window" +msgstr "" msgid "Application is closing" msgstr "Closing application" msgid "Closing Application while some presets are modified." -msgstr "Closing Application while some presets are modified." +msgstr "" msgid "Logging" -msgstr "Logging" +msgstr "" msgid "Preview" -msgstr "Preview" +msgstr "" msgid "Multi-device" -msgstr "Multi-device" +msgstr "" msgid "Project" -msgstr "Project" +msgstr "" msgid "Yes" -msgstr "Yes" +msgstr "" msgid "No" -msgstr "No" +msgstr "" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "will be closed before creating a new model. Do you want to continue?" +msgstr "" msgid "Slice plate" -msgstr "Slice plate" +msgstr "" msgid "Print plate" -msgstr "Print plate" +msgstr "" msgid "Slice all" -msgstr "Slice all" +msgstr "" msgid "Export G-code file" -msgstr "Export G-code file" +msgstr "" msgid "Export plate sliced file" -msgstr "Export plate sliced file" +msgstr "" msgid "Export all sliced file" -msgstr "Export all sliced file" +msgstr "" msgid "Print all" -msgstr "Print all" +msgstr "" msgid "Send all" -msgstr "Send all" +msgstr "" msgid "Keyboard Shortcuts" -msgstr "Keyboard Shortcuts" +msgstr "" msgid "Show the list of the keyboard shortcuts" msgstr "Show the list of keyboard shortcuts" msgid "Setup Wizard" -msgstr "Setup Wizard" +msgstr "" msgid "Show Configuration Folder" -msgstr "Show Configuration Folder" +msgstr "" msgid "Show Tip of the Day" -msgstr "Show Tip of the Day" +msgstr "" msgid "Check for Update" msgstr "Check for Updates" msgid "Open Network Test" -msgstr "Open Network Test" +msgstr "" #, c-format, boost-format msgid "&About %s" -msgstr "&About %s" +msgstr "" msgid "Upload Models" -msgstr "Upload Models" +msgstr "" msgid "Download Models" -msgstr "Download Models" +msgstr "" msgid "Default View" -msgstr "Default View" +msgstr "" #. TRN To be shown in the main menu View->Top msgid "Top" -msgstr "Top" +msgstr "" msgid "Top View" -msgstr "Top View" +msgstr "" #. TRN To be shown in the main menu View->Bottom msgid "Bottom" -msgstr "Bottom" +msgstr "" msgid "Bottom View" -msgstr "Bottom View" +msgstr "" msgid "Front" -msgstr "Front" +msgstr "" msgid "Front View" -msgstr "Front View" +msgstr "" msgid "Rear" -msgstr "Rear" +msgstr "" msgid "Rear View" -msgstr "Rear View" +msgstr "" msgid "Left" -msgstr "Left" +msgstr "" msgid "Left View" -msgstr "Left View" +msgstr "" msgid "Right" -msgstr "Right" +msgstr "" msgid "Right View" -msgstr "Right View" +msgstr "" msgid "Start a new window" -msgstr "Start a new window" +msgstr "" msgid "New Project" -msgstr "New Project" +msgstr "" msgid "Start a new project" -msgstr "Start a new project" +msgstr "" msgid "Open a project file" -msgstr "Open a project file" +msgstr "" msgid "Recent projects" msgstr "Recent Projects" msgid "Save Project" -msgstr "Save Project" +msgstr "" msgid "Save current project to file" -msgstr "Save current project to file" +msgstr "" msgid "Save Project as" -msgstr "Save Project as" +msgstr "" msgid "Shift+" -msgstr "Shift+" +msgstr "" msgid "Save current project as" -msgstr "Save current project as" +msgstr "" msgid "Import 3MF/STL/STEP/SVG/OBJ/AMF" -msgstr "Import 3MF/STL/STEP/SVG/OBJ/AMF" +msgstr "" msgid "Load a model" -msgstr "Load a model" +msgstr "" msgid "Import Zip Archive" msgstr "" @@ -4662,88 +4529,88 @@ msgid "Load models contained within a zip archive" msgstr "" msgid "Import Configs" -msgstr "Import Configs" +msgstr "" msgid "Load configs" -msgstr "Load configs" +msgstr "" msgid "Import" -msgstr "Import" +msgstr "" msgid "Export all objects as one STL" -msgstr "Export all objects as one STL" +msgstr "" msgid "Export all objects as STLs" -msgstr "Export all objects as STLs" +msgstr "" msgid "Export Generic 3MF" -msgstr "Export Generic 3MF" +msgstr "" msgid "Export 3mf file without using some 3mf-extensions" -msgstr "Export 3mf file without using some 3mf-extensions" +msgstr "" msgid "Export current sliced file" -msgstr "Export current sliced file" +msgstr "" msgid "Export all plate sliced file" -msgstr "Export all plate sliced file" +msgstr "" msgid "Export G-code" -msgstr "Export G-code" +msgstr "" msgid "Export current plate as G-code" -msgstr "Export current plate as G-code" +msgstr "" msgid "Export Preset Bundle" msgstr "" msgid "Export current configuration to files" -msgstr "Export current configuration to files" +msgstr "" msgid "Export" -msgstr "Export" +msgstr "" msgid "Quit" -msgstr "Quit" +msgstr "" msgid "Undo" -msgstr "Undo" +msgstr "" msgid "Redo" -msgstr "Redo" +msgstr "" msgid "Cut selection to clipboard" -msgstr "Cut selection to clipboard" +msgstr "" msgid "Copy" -msgstr "Copy" +msgstr "" msgid "Copy selection to clipboard" -msgstr "Copy selection to clipboard" +msgstr "" msgid "Paste" -msgstr "Paste" +msgstr "" msgid "Paste clipboard" -msgstr "Paste clipboard" +msgstr "" msgid "Delete selected" msgstr "Delete Selected" msgid "Deletes the current selection" -msgstr "Deletes the current selection" +msgstr "" msgid "Delete all" msgstr "Delete All" msgid "Deletes all objects" -msgstr "Deletes all objects" +msgstr "" msgid "Clone selected" msgstr "Clone Selected" msgid "Clone copies of selections" -msgstr "Clone copies of selections" +msgstr "" msgid "Duplicate Current Plate" msgstr "" @@ -4755,38 +4622,38 @@ msgid "Select all" msgstr "Select All" msgid "Selects all objects" -msgstr "Selects all objects" +msgstr "" msgid "Deselect all" msgstr "Deselect All" msgid "Deselects all objects" -msgstr "Deselects all objects" +msgstr "" msgid "Use Perspective View" -msgstr "Use Perspective View" +msgstr "" msgid "Use Orthogonal View" -msgstr "Use Orthogonal View" +msgstr "" msgid "Auto Perspective" msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4796,43 +4663,43 @@ msgid "Reset to default window layout" msgstr "" msgid "Show &Labels" -msgstr "Show &Labels" +msgstr "" -msgid "Show object labels in 3D scene" -msgstr "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." +msgstr "" msgid "Show &Overhang" -msgstr "Show &Overhang" +msgstr "" -msgid "Show object overhang highlight in 3D scene" -msgstr "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." +msgstr "" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" -msgstr "Preferences" +msgstr "" msgid "Help" -msgstr "Help" +msgstr "" msgid "Temperature Calibration" -msgstr "Temperature Calibration" +msgstr "" msgid "Pass 1" -msgstr "Pass 1" +msgstr "" msgid "Flow rate test - Pass 1" -msgstr "Flow rate test - Pass 1" +msgstr "" msgid "Pass 2" -msgstr "Pass 2" +msgstr "" msgid "Flow rate test - Pass 2" -msgstr "Flow rate test - Pass 2" +msgstr "" msgid "YOLO (Recommended)" msgstr "" @@ -4847,74 +4714,74 @@ msgid "Orca YOLO flowrate calibration, 0.005 step" msgstr "" msgid "Flow rate" -msgstr "Flow rate" +msgstr "" msgid "Pressure advance" -msgstr "Pressure advance" +msgstr "" msgid "Retraction test" -msgstr "Retraction test" +msgstr "" msgid "Orca Tolerance Test" -msgstr "Orca Tolerance Test" +msgstr "" msgid "Max flowrate" -msgstr "Max flowrate" +msgstr "" msgid "VFA" -msgstr "VFA" +msgstr "" msgid "More..." -msgstr "More..." +msgstr "" msgid "Tutorial" -msgstr "Tutorial" +msgstr "" msgid "Calibration help" -msgstr "Calibration help" +msgstr "" msgid "More calibrations" -msgstr "More calibrations" +msgstr "" msgid "&Open G-code" -msgstr "&Open G-code" +msgstr "" msgid "Open a G-code file" -msgstr "Open a G-code file" +msgstr "" msgid "Re&load from Disk" -msgstr "Re&load from Disk" +msgstr "" msgid "Reload the plater from disk" -msgstr "Reload the plater from disk" +msgstr "" msgid "Export &Toolpaths as OBJ" -msgstr "Export &Toolpaths as OBJ" +msgstr "" msgid "Export toolpaths as OBJ" -msgstr "Export toolpaths as OBJ" +msgstr "" msgid "Open &Slicer" -msgstr "Open &Slicer" +msgstr "" msgid "Open Slicer" -msgstr "Open Slicer" +msgstr "" msgid "&Quit" -msgstr "&Quit" +msgstr "" #, c-format, boost-format msgid "Quit %s" -msgstr "Quit %s" +msgstr "" msgid "&File" -msgstr "&File" +msgstr "" msgid "&View" -msgstr "&View" +msgstr "" msgid "&Help" -msgstr "&Help" +msgstr "" #, c-format, boost-format msgid "A file exists with the same name: %s, do you want to overwrite it?" @@ -4925,19 +4792,19 @@ msgid "A config exists with the same name: %s, do you want to overwrite it?" msgstr "A config exists with the same name: %s. Do you want to overwrite it?" msgid "Overwrite file" -msgstr "Overwrite file" +msgstr "" msgid "Overwrite config" -msgstr "Overwrite config" +msgstr "" msgid "Yes to All" -msgstr "Yes to All" +msgstr "" msgid "No to All" -msgstr "No to All" +msgstr "" msgid "Choose a directory" -msgstr "Choose a directory" +msgstr "" #, c-format, boost-format msgid "There is %d config exported. (Only non-system configs)" @@ -4949,7 +4816,7 @@ msgid "Export result" msgstr "Export Result" msgid "Select profile to load:" -msgstr "Select profile to load:" +msgstr "" #, c-format, boost-format msgid "There is %d config imported. (Only non-system and compatible configs)" @@ -4965,189 +4832,177 @@ msgid "" msgstr "" msgid "Import result" -msgstr "Import result" +msgstr "" msgid "File is missing" -msgstr "File is missing" +msgstr "" msgid "The project is no longer available." -msgstr "The project is no longer available." +msgstr "" msgid "Filament Settings" msgstr "Filament settings" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. Process presets\n" "2. Filament presets\n" "3. Printer presets" msgid "Synchronization" -msgstr "Synchronization" +msgstr "" msgid "The device cannot handle more conversations. Please retry later." -msgstr "The device cannot handle more conversations. Please retry later." +msgstr "" msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "Player is malfunctioning. Please reinstall the system player." +msgstr "" msgid "The player is not loaded, please click \"play\" button to retry." msgstr "The player is not loaded; please click the \"play\" button to retry." msgid "Please confirm if the printer is connected." -msgstr "Please confirm if the printer is connected." +msgstr "" msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" -"The printer is currently busy downloading. Please try again after it " -"finishes." msgid "Printer camera is malfunctioning." -msgstr "Printer camera is malfunctioning." +msgstr "" -msgid "Problem occurred. Please update the printer firmware and try again." -msgstr "A problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." +msgstr "" msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." msgstr "Please enter the IP of the printer to connect." msgid "Initializing..." -msgstr "Initializing..." +msgstr "" msgid "Connection Failed. Please check the network and try again" -msgstr "Connection Failed. Please check the network and try again" +msgstr "" msgid "" -"Please check the network and try again, You can restart or update the " -"printer if the issue persists." -msgstr "" "Please check the network and try again. You can restart or update the " "printer if the issue persists." +msgstr "" msgid "The printer has been logged out and cannot connect." -msgstr "The printer has been logged out and cannot connect." +msgstr "" msgid "Video Stopped." msgstr "" msgid "LAN Connection Failed (Failed to start liveview)" -msgstr "LAN Connection Failed (Failed to start liveview)" +msgstr "" msgid "" "Virtual Camera Tools is required for this task!\n" "Do you want to install them?" msgstr "" -"Virtual Camera Tools is required for this task!\n" -"Do you want to install them?" msgid "Downloading Virtual Camera Tools" -msgstr "Downloading Virtual Camera Tools" +msgstr "" msgid "" "Another virtual camera is running.\n" "Orca Slicer supports only a single virtual camera.\n" "Do you want to stop this virtual camera?" msgstr "" -"Another virtual camera is running.\n" -"Orca Slicer supports only a single virtual camera.\n" -"Do you want to stop this virtual camera?" #, c-format, boost-format msgid "Virtual camera initialize failed (%s)!" -msgstr "Virtual camera initialize failed (%s)!" +msgstr "" msgid "Network unreachable" -msgstr "Network unreachable" +msgstr "" msgid "Information" -msgstr "Information" +msgstr "" msgid "Playing..." -msgstr "Playing..." +msgstr "" msgid "Year" -msgstr "Year" +msgstr "" msgid "Month" -msgstr "Month" +msgstr "" msgid "All Files" -msgstr "All Files" +msgstr "" msgid "Group files by year, recent first." -msgstr "Group files by year, recent first." +msgstr "" msgid "Group files by month, recent first." -msgstr "Group files by month, recent first." +msgstr "" msgid "Show all files, recent first." -msgstr "Show all files, recent first." +msgstr "" msgid "Switch to timelapse files." -msgstr "Switch to timelapse files." +msgstr "" msgid "Video" -msgstr "Video" +msgstr "" msgid "Switch to video files." -msgstr "Switch to video files." +msgstr "" msgid "Switch to 3mf model files." -msgstr "Switch to 3mf model files." +msgstr "" msgid "Delete selected files from printer." -msgstr "Delete selected files from printer." +msgstr "" msgid "Download" -msgstr "Download" +msgstr "" msgid "Download selected files from printer." -msgstr "Download selected files from printer." +msgstr "" msgid "Select" -msgstr "Select" +msgstr "" msgid "Batch manage files." -msgstr "Batch manage files." +msgstr "" msgid "Refresh" -msgstr "Refresh" +msgstr "" msgid "Reload file list from printer." -msgstr "Reload file list from printer." +msgstr "" msgid "No printers." -msgstr "No printers." +msgstr "" msgid "Loading file list..." -msgstr "Loading file list..." +msgstr "" msgid "No files" -msgstr "No files" +msgstr "" msgid "Load failed" -msgstr "Load failed" +msgstr "" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" -"Browsing file in SD card is not supported in current firmware. Please update " -"the printer firmware." msgid "" "Please check if the SD card is inserted into the printer.\n" @@ -5157,10 +5012,10 @@ msgstr "" "If it still cannot be read, you can try formatting the card." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN Connection Failed (Failed to view sdcard)" +msgstr "" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "Browsing file in SD card is not supported in LAN Only Mode." +msgstr "" #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" @@ -5170,100 +5025,96 @@ msgstr[0] "" msgstr[1] "" msgid "Delete files" -msgstr "Delete files" +msgstr "" #, c-format, boost-format msgid "Do you want to delete the file '%s' from printer?" -msgstr "Do you want to delete the file '%s' from printer?" +msgstr "" msgid "Delete file" -msgstr "Delete file" +msgstr "" msgid "Fetching model information..." -msgstr "Fetching model information..." +msgstr "" msgid "Failed to fetch model information from printer." -msgstr "Failed to fetch model information from printer." +msgstr "" msgid "Failed to parse model information." -msgstr "Failed to parse model information." +msgstr "" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" #, c-format, boost-format msgid "File '%s' was lost! Please download it again." -msgstr "File '%s' was lost! Please download it again." +msgstr "" #, c-format, boost-format msgid "" "File: %s\n" "Title: %s\n" msgstr "" -"File: %s\n" -"Title: %s\n" msgid "Download waiting..." -msgstr "Download waiting..." +msgstr "" msgid "Play" -msgstr "Play" +msgstr "" msgid "Open Folder" -msgstr "Open Folder" +msgstr "" msgid "Download finished" -msgstr "Download finished" +msgstr "" #, c-format, boost-format msgid "Downloading %d%%..." -msgstr "Downloading %d%%..." +msgstr "" msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Reconnecting the printer, the operation cannot be completed immediately, " -"please try again later." msgid "File does not exist." -msgstr "File does not exist." +msgstr "" msgid "File checksum error. Please retry." -msgstr "File checksum error. Please retry." +msgstr "" msgid "Not supported on the current printer version." -msgstr "Not supported on the current printer version." +msgstr "" msgid "Storage unavailable, insert SD card." msgstr "Storage unavailable, insert Micro SD card." #, c-format, boost-format msgid "Error code: %d" -msgstr "Error code: %d" +msgstr "" msgid "Speed:" -msgstr "Speed:" +msgstr "" msgid "Deadzone:" -msgstr "Deadzone:" +msgstr "" msgid "Options:" -msgstr "Options:" +msgstr "" msgid "Zoom" -msgstr "Zoom" +msgstr "" msgid "Translation/Zoom" -msgstr "Translation/Zoom" +msgstr "" msgid "3Dconnexion settings" -msgstr "3Dconnexion settings" +msgstr "" msgid "Swap Y/Z axes" -msgstr "Swap Y/Z axes" +msgstr "" msgid "Invert X axis" msgstr "" @@ -5287,13 +5138,13 @@ msgid "Printing Progress" msgstr "Printing progress" msgid "0" -msgstr "0" +msgstr "" msgid "Layer: N/A" -msgstr "Layer: N/A" +msgstr "" msgid "Clear" -msgstr "Clear" +msgstr "" msgid "" "You have completed printing the mall model, \n" @@ -5303,56 +5154,54 @@ msgstr "" "but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "How do you like this printing file?" +msgstr "" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" -"(The model has already been rated. Your rating will overwrite the previous " -"rating.)" msgid "Rate" -msgstr "Rate" +msgstr "" msgid "Camera" -msgstr "Camera" +msgstr "" msgid "SD Card" msgstr "MicroSD Card" msgid "Camera Setting" -msgstr "Camera Setting" +msgstr "" msgid "Switch Camera View" msgstr "" msgid "Control" -msgstr "Control" +msgstr "" msgid "Printer Parts" -msgstr "Printer Parts" +msgstr "" msgid "Print Options" -msgstr "Print Options" +msgstr "" msgid "100%" -msgstr "100%" +msgstr "" msgid "Lamp" -msgstr "Lamp" +msgstr "" msgid "Aux" -msgstr "Aux" +msgstr "" msgid "Cham" -msgstr "Cham" +msgstr "" msgid "Bed" -msgstr "Bed" +msgstr "" msgid "Debug Info" -msgstr "Debug Info" +msgstr "" msgid "No SD Card" msgstr "No MicroSD Card" @@ -5361,16 +5210,16 @@ msgid "SD Card Abnormal" msgstr "MicroSD Card Abnormal" msgid "Cancel print" -msgstr "Cancel print" +msgstr "" msgid "Are you sure you want to cancel this print?" -msgstr "Are you sure you want to cancel this print?" +msgstr "" msgid "Downloading..." -msgstr "Downloading..." +msgstr "" msgid "Cloud Slicing..." -msgstr "Cloud Slicing..." +msgstr "" #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead." @@ -5378,27 +5227,24 @@ msgstr "In Cloud Slicing Queue, there are %s tasks ahead of you." #, c-format, boost-format msgid "Layer: %s" -msgstr "Layer: %s" +msgstr "" #, c-format, boost-format msgid "Layer: %d/%d" -msgstr "Layer: %d/%d" +msgstr "" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." msgid "Still unload" -msgstr "Still unload" +msgstr "" msgid "Still load" -msgstr "Still load" +msgstr "" -msgid "Please select an AMS slot before calibration" -msgstr "Please select an AMS slot before calibration." +msgid "Please select an AMS slot before calibration." +msgstr "" msgid "" "Cannot read filament info: the filament is loaded to the tool head,please " @@ -5407,169 +5253,153 @@ msgstr "" "Cannot read filament info: the filament is loaded to the tool head. Please " "unload the filament and try again." -msgid "This only takes effect during printing" -msgstr "This only takes effect during printing" +msgid "This only takes effect during printing." +msgstr "" msgid "Silent" -msgstr "Silent" +msgstr "" msgid "Standard" -msgstr "Standard" +msgstr "" msgid "Sport" -msgstr "Sport" +msgstr "" msgid "Ludicrous" -msgstr "Ludicrous" +msgstr "" msgid "Can't start this without SD card." msgstr "Can't start without MicroSD card." msgid "Rate the Print Profile" -msgstr "Rate the Print Profile" +msgstr "" msgid "Comment" -msgstr "Comment" +msgstr "" msgid "Rate this print" -msgstr "Rate this print" +msgstr "" msgid "Add Photo" -msgstr "Add Photo" +msgstr "" msgid "Delete Photo" -msgstr "Delete Photo" +msgstr "" msgid "Submit" -msgstr "Submit" +msgstr "" msgid "Please click on the star first." -msgstr "Please click on the star first." - -msgid "InFo" -msgstr "Info" +msgstr "" msgid "Get oss config failed." -msgstr "Get oss config failed." +msgstr "" msgid "Upload Pictures" -msgstr "Upload Pictures" +msgstr "" msgid "Number of images successfully uploaded" -msgstr "Number of images successfully uploaded" +msgstr "" msgid " upload failed" -msgstr " upload failed" +msgstr "" msgid " upload config prase failed\n" -msgstr " upload config prase failed\n" +msgstr "" msgid " No corresponding storage bucket\n" -msgstr " No corresponding storage bucket\n" +msgstr "" -msgid " can not be opened\n" -msgstr " cannot be opened\n" +msgid " cannot be opened\n" +msgstr "" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" -"The following issues occurred during the process of uploading images. Do you " -"want to ignore them?\n" -"\n" msgid "info" -msgstr "info" +msgstr "" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "Synchronizing the printing results. Please retry a few seconds later." +msgstr "" msgid "Upload failed\n" -msgstr "Upload failed\n" +msgstr "" msgid "obtaining instance_id failed\n" msgstr "Obtaining instance_id failed\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" -"\n" -" error code: " -msgstr "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " +msgstr "" msgid "error message: " -msgstr "error message: " +msgstr "" msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" -msgstr "" -"\n" -"\n" "Would you like to redirect to the webpage to give a rating?" +msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" -"Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" msgid "You can select up to 16 images." -msgstr "You can select up to 16 images." +msgstr "" msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." -msgstr "" -"At least one successful print record of this print profile is required \n" "to give a positive rating (4 or 5 stars)." +msgstr "" msgid "Status" -msgstr "Status" +msgstr "" msgid "Update" -msgstr "Update" +msgstr "" msgid "Don't show again" -msgstr "Don't show again" +msgstr "" #, c-format, boost-format msgid "%s error" -msgstr "%s error" +msgstr "" #, c-format, boost-format msgid "%s has encountered an error" -msgstr "%s has encountered an error" +msgstr "" #, c-format, boost-format msgid "%s warning" -msgstr "%s warning" +msgstr "" #, c-format, boost-format msgid "%s has a warning" -msgstr "%s has a warning" +msgstr "" #, c-format, boost-format msgid "%s info" -msgstr "%s info" +msgstr "" #, c-format, boost-format msgid "%s information" -msgstr "%s information" +msgstr "" msgid "Skip" -msgstr "Skip" +msgstr "" msgid "Newer 3mf version" -msgstr "Newer 3mf version" +msgstr "" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5577,7 +5407,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "Download Beta Version" +msgstr "" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5586,13 +5416,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "Current Version: " +msgstr "" msgid "Latest Version: " -msgstr "Latest Version: " +msgstr "" msgid "Not for now" -msgstr "Not for now" +msgstr "" msgid "Server Exception" msgstr "" @@ -5614,7 +5444,7 @@ msgid "Don't show this dialog again" msgstr "" msgid "3D Mouse disconnected." -msgstr "3D Mouse disconnected." +msgstr "" msgid "Configuration can update now." msgstr "A new configuration is available. Update now?" @@ -5623,28 +5453,28 @@ msgid "Detail." msgstr "More" msgid "Integration was successful." -msgstr "Integration was successful." +msgstr "" msgid "Integration failed." -msgstr "Integration failed." +msgstr "" msgid "Undo integration was successful." -msgstr "Undo integration was successful." +msgstr "" msgid "New network plug-in available." msgstr "New network plug-in available" msgid "Details" -msgstr "Details" +msgstr "" msgid "New printer config available." -msgstr "New printer config available." +msgstr "" msgid "Wiki" -msgstr "Wiki" +msgstr "" msgid "Undo integration failed." -msgstr "Undo integration failed." +msgstr "" msgid "Exporting." msgstr "Exporting" @@ -5656,73 +5486,73 @@ msgid "Goto download page." msgstr "Go to download page" msgid "Open Folder." -msgstr "Open Folder." +msgstr "" msgid "Safely remove hardware." -msgstr "Safely remove hardware." +msgstr "" #, c-format, boost-format msgid "%1$d Object has custom supports." msgid_plural "%1$d Objects have custom supports." -msgstr[0] "%1$d Object has custom supports." -msgstr[1] "%1$d Objects have custom supports." +msgstr[0] "" +msgstr[1] "" #, c-format, boost-format msgid "%1$d Object has color painting." msgid_plural "%1$d Objects have color painting." -msgstr[0] "%1$d Object has color painting." -msgstr[1] "%1$d Objects have color painting." +msgstr[0] "" +msgstr[1] "" #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "" msgstr[1] "" msgid "ERROR" -msgstr "ERROR" +msgstr "" msgid "COMPLETED" -msgstr "COMPLETED" +msgstr "" msgid "CANCELED" -msgstr "CANCELED" +msgstr "" msgid "Cancel upload" -msgstr "Cancel upload" +msgstr "" msgid "Jump to" -msgstr "Jump to" +msgstr "" msgid "Error:" -msgstr "Error:" +msgstr "" msgid "Warning:" -msgstr "Warning:" +msgstr "" -msgid "Export successfully." -msgstr "Exported successfully" +msgid "Exported successfully" +msgstr "" msgid "Model file downloaded." -msgstr "Model file downloaded." +msgstr "" msgid "Serious warning:" -msgstr "Serious warning:" +msgstr "" msgid " (Repair)" -msgstr " (Repair)" +msgstr "" msgid " Click here to install it." -msgstr " Click here to install it." +msgstr "" msgid "WARNING:" -msgstr "WARNING:" +msgstr "" -msgid "Your model needs support ! Please make support material enable." -msgstr "Your model needs support! Please enable support material." +msgid "Your model needs support! Please enable support material." +msgstr "" -msgid "Gcode path overlap" -msgstr "G-code path overlap" +msgid "G-code path overlap" +msgstr "" msgid "Support painting" msgstr "Support Painting" @@ -5731,13 +5561,13 @@ msgid "Color painting" msgstr "Color Painting" msgid "Cut connectors" -msgstr "Cut connectors" +msgstr "" msgid "Layers" -msgstr "Layers" +msgstr "" msgid "Range" -msgstr "Range" +msgstr "" msgid "" "The application cannot run normally because OpenGL version is lower than " @@ -5747,38 +5577,36 @@ msgstr "" "than 2.0.\n" msgid "Please upgrade your graphics card driver." -msgstr "Please upgrade your graphics card driver." +msgstr "" msgid "Unsupported OpenGL version" -msgstr "Unsupported OpenGL version" +msgstr "" #, c-format, boost-format msgid "" "Unable to load shaders:\n" "%s" msgstr "" -"Unable to load shaders:\n" -"%s" msgid "Error loading shaders" -msgstr "Error loading shaders" +msgstr "" msgctxt "Layers" msgid "Top" -msgstr "Top" +msgstr "" msgctxt "Layers" msgid "Bottom" -msgstr "Bottom" +msgstr "" msgid "Enable AI monitoring of printing" -msgstr "Enable AI monitoring of printing" +msgstr "" msgid "Sensitivity of pausing is" -msgstr "Sensitivity of pausing is" +msgstr "" msgid "Enable detection of build plate position" -msgstr "Enable detection of build plate position" +msgstr "" msgid "" "The localization tag of build plate is detected, and printing is paused if " @@ -5788,50 +5616,50 @@ msgstr "" "be paused if the tag is not in predefined range." msgid "First Layer Inspection" -msgstr "First Layer Inspection" +msgstr "" msgid "Auto-recovery from step loss" msgstr "Auto-recover from step loss" msgid "Allow Prompt Sound" -msgstr "Allow Prompt Sound" +msgstr "" msgid "Filament Tangle Detect" msgstr "Filament Tangle Detection" msgid "Nozzle Clumping Detection" -msgstr "Nozzle Clumping Detection" +msgstr "" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Check if the nozzle is clumping by filament or other foreign objects." +msgstr "" msgid "Nozzle Type" -msgstr "Nozzle Type" +msgstr "" msgid "Stainless Steel" -msgstr "Stainless Steel" +msgstr "" msgid "Hardened Steel" -msgstr "Hardened Steel" +msgstr "" #, c-format, boost-format msgid "%.1f" -msgstr "%.1f" +msgstr "" msgid "Global" -msgstr "Global" +msgstr "" msgid "Objects" -msgstr "Objects" +msgstr "" msgid "Advance" msgstr "Advanced" msgid "Compare presets" -msgstr "Compare presets" +msgstr "" msgid "View all object's settings" -msgstr "View all object's settings" +msgstr "" msgid "Material settings" msgstr "" @@ -5862,58 +5690,58 @@ msgstr "" #, boost-format msgid " plate %1%:" -msgstr " plate %1%:" +msgstr "" msgid "Invalid name, the following characters are not allowed:" -msgstr "Invalid name, the following characters are not allowed:" +msgstr "" msgid "Sliced Info" -msgstr "Sliced Info" +msgstr "" msgid "Used Filament (m)" -msgstr "Used Filament (m)" +msgstr "" msgid "Used Filament (mm³)" -msgstr "Used Filament (mm³)" +msgstr "" msgid "Used Filament (g)" -msgstr "Used Filament (g)" +msgstr "" msgid "Used Materials" -msgstr "Used Materials" +msgstr "" msgid "Estimated time" -msgstr "Estimated time" +msgstr "" msgid "Filament changes" -msgstr "Filament changes" +msgstr "" msgid "Click to edit preset" -msgstr "Click to edit preset" +msgstr "" msgid "Connection" -msgstr "Connection" +msgstr "" msgid "Bed type" -msgstr "Bed type" +msgstr "" msgid "Flushing volumes" -msgstr "Flushing volumes" +msgstr "" msgid "Add one filament" -msgstr "Add one filament" +msgstr "" msgid "Remove last filament" -msgstr "Remove last filament" +msgstr "" msgid "Synchronize filament list from AMS" -msgstr "Synchronize filament list from AMS" +msgstr "" msgid "Set filaments to use" -msgstr "Set filaments to use" +msgstr "" msgid "Search plate, object and part." -msgstr "Search plate, object and part." +msgstr "" msgid "Pellets" msgstr "" @@ -5921,17 +5749,14 @@ msgstr "" msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." msgstr "" -"No AMS filaments. Please select a printer in 'Device' page to load AMS info." msgid "Sync filaments with AMS" -msgstr "Sync filaments with AMS" +msgstr "" msgid "" "Sync filaments with AMS will drop all current selected filament presets and " "colors. Do you want to continue?" msgstr "" -"Sync filaments with AMS will drop all current selected filament presets and " -"colors. Do you want to continue?" msgid "" "Already did a synchronization, do you want to sync only changes or resync " @@ -5941,13 +5766,13 @@ msgstr "" "all?" msgid "Sync" -msgstr "Sync" +msgstr "" msgid "Resync" -msgstr "Resync" +msgstr "" msgid "There are no compatible filaments, and sync is not performed." -msgstr "There are no compatible filaments, and sync is not performed." +msgstr "" msgid "" "There are some unknown filaments mapped to generic preset. Please update " @@ -5957,26 +5782,24 @@ msgstr "" #, boost-format msgid "Do you want to save changes to \"%1%\"?" -msgstr "Do you want to save changes to \"%1%\"?" +msgstr "" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " -"computer." #, c-format, boost-format -msgid "Ejecting of device %s(%s) has failed." -msgstr "Ejecting of device %s(%s) has failed." +msgid "Ejecting of device %s (%s) has failed." +msgstr "" msgid "Previous unsaved project detected, do you want to restore it?" msgstr "" "Previously unsaved items have been detected. Do you want to restore them?" msgid "Restore" -msgstr "Restore" +msgstr "" msgid "" "The current hot bed temperature is relatively high. The nozzle may be " @@ -6000,8 +5823,6 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" -"Enabling traditional timelapse photography may cause surface imperfections. " -"It is recommended to change to smooth mode." msgid "Expand sidebar" msgstr "" @@ -6011,21 +5832,19 @@ msgstr "" #, c-format, boost-format msgid "Loading file: %s" -msgstr "Loading file: %s" +msgstr "" msgid "The 3mf is not supported by OrcaSlicer, load geometry data only." msgstr "The 3mf is not supported by OrcaSlicer, loading geometry data only." msgid "Load 3mf" -msgstr "Load 3mf" +msgstr "" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" msgid "You'd better upgrade your software.\n" msgstr "You should update your software.\n" @@ -6035,40 +5854,35 @@ msgid "" "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " "software." msgstr "" -"The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " -"software." msgid "Invalid values found in the 3mf:" -msgstr "Invalid values found in the 3mf:" +msgstr "" msgid "Please correct them in the param tabs" msgstr "Please correct them in the Param tabs" -msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "The 3mf has following modified G-code in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" +msgstr "" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" -msgid "Modified G-codes" -msgstr "Modified G-code" +msgid "Modified G-code" +msgstr "" -msgid "The 3mf has following customized filament or printer presets:" -msgstr "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" +msgstr "" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" -"Please confirm that the G-codes within these presets are safe to prevent any " -"damage to the machine!" msgid "Customized Preset" -msgstr "Customized Preset" +msgstr "" msgid "Name of components inside step file is not UTF8 format!" msgstr "Component name(s) inside step file not in UTF8 format!" @@ -6077,17 +5891,17 @@ msgid "The name may show garbage characters!" msgstr "Because of unsupported text encoding, garbage characters may appear!" msgid "Remember my choice." -msgstr "Remember my choice." +msgstr "" #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." -msgstr "Failed loading file \"%1%\". An invalid configuration was found." +msgstr "" msgid "Objects with zero volume removed" -msgstr "Objects with zero volume removed" +msgstr "" msgid "The volume of the object is zero" -msgstr "The volume of the object is zero" +msgstr "" #, c-format, boost-format msgid "" @@ -6098,7 +5912,7 @@ msgstr "" " Do you want to scale to millimeters?" msgid "Object too small" -msgstr "Object too small" +msgstr "" msgid "" "This file contains several objects positioned at multiple heights.\n" @@ -6110,38 +5924,36 @@ msgstr "" "the file be loaded as a single object with multiple parts?" msgid "Multi-part object detected" -msgstr "Multi-part object detected" +msgstr "" msgid "Load these files as a single object with multiple parts?\n" -msgstr "Load these files as a single object with multiple parts?\n" +msgstr "" msgid "Object with multiple parts was detected" msgstr "An object with multiple parts was detected" msgid "The file does not contain any geometry data." -msgstr "The file does not contain any geometry data." +msgstr "" msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" -msgstr "" -"Your object appears to be too large, Do you want to scale it down to fit the " +"Your object appears to be too large, do you want to scale it down to fit the " "print bed automatically?" +msgstr "" msgid "Object too large" -msgstr "Object too large" +msgstr "" msgid "Export STL file:" -msgstr "Export STL file:" +msgstr "" msgid "Export AMF file:" -msgstr "Export AMF file:" +msgstr "" msgid "Save file as:" msgstr "Save file as" msgid "Export OBJ file:" -msgstr "Export OBJ file:" +msgstr "" #, c-format, boost-format msgid "" @@ -6152,10 +5964,10 @@ msgstr "" "Do you want to replace it?" msgid "Confirm Save As" -msgstr "Confirm Save As" +msgstr "" msgid "Delete object which is a part of cut object" -msgstr "Delete object which is a part of cut object" +msgstr "" msgid "" "You try to delete an object which is a part of a cut object.\n" @@ -6167,83 +5979,80 @@ msgstr "" "After that, model consistency can't be guaranteed." msgid "The selected object couldn't be split." -msgstr "The selected object couldn't be split." +msgstr "" msgid "Another export job is running." -msgstr "Another export job is running." +msgstr "" msgid "Unable to replace with more than one volume" -msgstr "Unable to replace with more than one volume" +msgstr "" msgid "Error during replace" msgstr "Error during replacement" msgid "Replace from:" -msgstr "Replace from:" +msgstr "" msgid "Select a new file" -msgstr "Select a new file" +msgstr "" msgid "File for the replace wasn't selected" msgstr "File for the replacement wasn't selected" msgid "Please select a file" -msgstr "Please select a file" +msgstr "" msgid "Do you want to replace it" msgstr "Do you want to replace it?" msgid "Message" -msgstr "Message" +msgstr "" msgid "Reload from:" -msgstr "Reload from:" +msgstr "" msgid "Unable to reload:" -msgstr "Unable to reload:" +msgstr "" msgid "Error during reload" -msgstr "Error during reload" +msgstr "" msgid "There are warnings after slicing models:" -msgstr "There are warnings after slicing models:" +msgstr "" msgid "warnings" -msgstr "warnings" +msgstr "" msgid "Invalid data" -msgstr "Invalid data" +msgstr "" msgid "Slicing Canceled" -msgstr "Slicing Canceled" +msgstr "" #, c-format, boost-format msgid "Slicing Plate %d" -msgstr "Slicing Plate %d" +msgstr "" msgid "Please resolve the slicing errors and publish again." -msgstr "Please resolve the slicing errors and publish again." +msgstr "" msgid "" "Network Plug-in is not detected. Network related features are unavailable." msgstr "" -"Network Plug-in is not detected. Network related features are unavailable." msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" -"Preview only mode:\n" -"The loaded file contains G-code only, cannot enter the Prepare page" msgid "You can keep the modified presets to the new project or discard them" msgstr "You can keep the modified presets for the new project or discard them" msgid "Creating a new project" -msgstr "Creating a new project" +msgstr "" msgid "Load project" -msgstr "Load project" +msgstr "" msgid "" "Failed to save the project.\n" @@ -6255,10 +6064,10 @@ msgstr "" "project file open." msgid "Save project" -msgstr "Save project" +msgstr "" msgid "Importing Model" -msgstr "Importing Model" +msgstr "" msgid "prepare 3mf file..." msgstr "preparing 3mf file..." @@ -6266,15 +6075,15 @@ msgstr "preparing 3mf file..." msgid "Download failed, unknown file format." msgstr "Download failed; unknown file format." -msgid "downloading project ..." -msgstr "downloading project ..." +msgid "downloading project..." +msgstr "" msgid "Download failed, File size exception." msgstr "Download failed; File size exception." #, c-format, boost-format msgid "Project downloaded %d%%" -msgstr "Project downloaded %d%%" +msgstr "" msgid "" "Importing to Orca Slicer failed. Please download the file and manually " @@ -6289,21 +6098,21 @@ msgid "" msgstr "" msgid "mm/s²" -msgstr "mm/s²" +msgstr "" msgid "No speeds provided for calibration. Use default optimal speed " msgstr "" msgid "mm/s" -msgstr "mm/s" +msgstr "" msgid "Import SLA archive" msgstr "" msgid "The selected file" -msgstr "The selected file" +msgstr "" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "Does not contain valid G-code." msgid "Error occurs while loading G-code file" @@ -6324,16 +6133,16 @@ msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." msgstr "" msgid "Drop project file" -msgstr "Drop project file" +msgstr "" msgid "Please select an action" -msgstr "Please select an action" +msgstr "" msgid "Open as project" -msgstr "Open as project" +msgstr "" msgid "Import geometry only" -msgstr "Import geometry only" +msgstr "" msgid "" "This option can be changed later in preferences, under 'Load Behaviour'." @@ -6343,16 +6152,16 @@ msgid "Only one G-code file can be opened at the same time." msgstr "Only one G-code file can be opened at a time." msgid "G-code loading" -msgstr "G-code loading" +msgstr "" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-code files and models cannot be loaded together!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Unable to add models in preview mode" msgid "All objects will be removed, continue?" -msgstr "All objects will be removed, continue?" +msgstr "" msgid "The current project has unsaved changes, save it before continue?" msgstr "" @@ -6360,63 +6169,57 @@ msgstr "" "continuing?" msgid "Number of copies:" -msgstr "Number of copies:" +msgstr "" msgid "Copies of the selected object" -msgstr "Copies of the selected object" +msgstr "" msgid "Save G-code file as:" -msgstr "Save G-code file as:" +msgstr "" msgid "Save SLA file as:" -msgstr "Save SLA file as:" +msgstr "" msgid "The provided file name is not valid." -msgstr "The provided file name is not valid." +msgstr "" msgid "The following characters are not allowed by a FAT file system:" -msgstr "The following characters are not allowed by a FAT file system:" +msgstr "" msgid "Save Sliced file as:" -msgstr "Save Sliced file as:" +msgstr "" #, c-format, boost-format msgid "" "The file %s has been sent to the printer's storage space and can be viewed " "on the printer." msgstr "" -"The file %s has been sent to the printer's storage space and can be viewed " -"on the printer." msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try again." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try again." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "Reason: part \"%1%\" is empty." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "Reason: part \"%1%\" does not bound a volume." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "Reason: part \"%1%\" has self intersection." +msgstr "" #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "Reason: \"%1%\" and another part have no intersection." +msgstr "" msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be exported." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be exported." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6441,61 +6244,61 @@ msgstr "" "We suggest using auto-arrange to avoid collisions when printing." msgid "Send G-code" -msgstr "Send G-code" +msgstr "" msgid "Send to printer" -msgstr "Send to printer" +msgstr "" msgid "Custom supports and color painting were removed before repairing." -msgstr "Custom supports and color painting were removed before repairing." +msgstr "" msgid "Optimize Rotation" msgstr "" msgid "Invalid number" -msgstr "Invalid number" +msgstr "" msgid "Plate Settings" -msgstr "Plate Settings" +msgstr "" #, boost-format msgid "Number of currently selected parts: %1%\n" -msgstr "Number of currently selected parts: %1%\n" +msgstr "" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "Number of currently selected objects: %1%\n" +msgstr "" #, boost-format msgid "Part name: %1%\n" -msgstr "Part name: %1%\n" +msgstr "" #, boost-format msgid "Object name: %1%\n" -msgstr "Object name: %1%\n" +msgstr "" #, boost-format msgid "Size: %1% x %2% x %3% in\n" -msgstr "Size: %1% x %2% x %3% in\n" +msgstr "" #, boost-format msgid "Size: %1% x %2% x %3% mm\n" -msgstr "Size: %1% x %2% x %3% mm\n" +msgstr "" #, boost-format msgid "Volume: %1% in³\n" -msgstr "Volume: %1% in³\n" +msgstr "" #, boost-format msgid "Volume: %1% mm³\n" -msgstr "Volume: %1% mm³\n" +msgstr "" #, boost-format msgid "Triangles: %1%\n" -msgstr "Triangles: %1%\n" +msgstr "" msgid "Tips:" -msgstr "Tips:" +msgstr "" msgid "" "\"Fix Model\" feature is currently only on Windows. Please repair the model " @@ -6504,43 +6307,43 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" -"Plate %d: %s is not suggested for use printing filament %s(%s). If you still " -"want to do this print job, please set this filament's bed temperature to a " -"number that is not zero." +"Plate %d: %s is not suggested for use printing filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " +"to a number that is not zero." msgid "Switching the language requires application restart.\n" msgstr "Switching languages requires the application to restart.\n" msgid "Do you want to continue?" -msgstr "Do you want to continue?" +msgstr "" msgid "Language selection" -msgstr "Language selection" +msgstr "" msgid "Switching application language while some presets are modified." -msgstr "Switching application language while some presets are modified." +msgstr "" msgid "Changing application language" -msgstr "Changing application language" +msgstr "" msgid "Changing the region will log out your account.\n" msgstr "Changing the region will log you out of your account.\n" msgid "Region selection" -msgstr "Region selection" +msgstr "" msgid "Second" -msgstr "Second" +msgstr "" msgid "Browse" -msgstr "Browse" +msgstr "" msgid "Choose Download Directory" -msgstr "Choose Download Directory" +msgstr "" msgid "Associate" msgstr "" @@ -6558,25 +6361,25 @@ msgid "Current Instance Path: " msgstr "" msgid "General Settings" -msgstr "General Settings" +msgstr "" msgid "Asia-Pacific" -msgstr "Asia-Pacific" +msgstr "" msgid "China" -msgstr "China" +msgstr "" msgid "Europe" -msgstr "Europe" +msgstr "" msgid "North America" -msgstr "North America" +msgstr "" msgid "Others" -msgstr "Others" +msgstr "" msgid "Login Region" -msgstr "Login Region" +msgstr "" msgid "Stealth Mode" msgstr "" @@ -6593,13 +6396,13 @@ msgid "Check for stable updates only" msgstr "" msgid "Metric" -msgstr "Metric" +msgstr "" msgid "Imperial" -msgstr "Imperial" +msgstr "" msgid "Units" -msgstr "Units" +msgstr "" msgid "Allow only one OrcaSlicer instance" msgstr "" @@ -6609,9 +6412,6 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" -"On OSX there is always only one instance of app running by default. However " -"it is allowed to run multiple instances of same app from the command line. " -"In such case this setting will allow only one instance." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6641,14 +6441,12 @@ msgid "" msgstr "" msgid "Zoom to mouse position" -msgstr "Zoom to mouse position" +msgstr "" msgid "" "Zoom in towards the mouse pointer's position in the 3D view, rather than the " "2D window center." msgstr "" -"Zoom in towards the mouse pointer's position in the 3D view, rather than the " -"2D window center." msgid "Use free camera" msgstr "" @@ -6656,6 +6454,12 @@ msgstr "" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" +msgid "Swap pan and rotate mouse buttons" +msgstr "" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "" + msgid "Reverse mouse zoom" msgstr "" @@ -6669,13 +6473,13 @@ msgid "Show the splash screen during startup." msgstr "" msgid "Show \"Tip of the day\" notification after start" -msgstr "Show \"Tip of the day\" notification after start" +msgstr "" msgid "If enabled, useful hints are displayed at startup." -msgstr "If enabled, useful hints are displayed at startup." +msgstr "" msgid "Flushing volumes: Auto-calculate every time the color changed." -msgstr "Flushing volumes: Auto-calculate every time the color changed." +msgstr "" msgid "If enabled, auto-calculate every time the color changed." msgstr "If enabled, auto-calculate every time the color changes." @@ -6695,15 +6499,13 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." msgid "Auto arrange plate after cloning" msgstr "" @@ -6714,20 +6516,20 @@ msgstr "" msgid "Network" msgstr "" -msgid "Auto sync user presets(Printer/Filament/Process)" -msgstr "Auto sync user presets (Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" +msgstr "" msgid "User Sync" -msgstr "User Sync" +msgstr "" msgid "Update built-in Presets automatically." msgstr "Update built-in presets automatically." msgid "System Sync" -msgstr "System Sync" +msgstr "" msgid "Clear my choice on the unsaved presets." -msgstr "Clear my choice on the unsaved presets." +msgstr "" msgid "Associate files to OrcaSlicer" msgstr "Associate files to Orca Slicer" @@ -6781,19 +6583,19 @@ msgid "Should printer/filament/process settings be loaded when opening a .3mf?" msgstr "" msgid "Maximum recent projects" -msgstr "Maximum recent projects" +msgstr "" msgid "Maximum count of recent projects" -msgstr "Maximum count of recent projects" +msgstr "" msgid "Clear my choice on the unsaved projects." -msgstr "Clear my choice on the unsaved projects." +msgstr "" -msgid "No warnings when loading 3MF with modified G-codes" -msgstr "No warnings when loading 3MF with modified G-code" +msgid "No warnings when loading 3MF with modified G-code" +msgstr "" msgid "Auto-Backup" -msgstr "Auto-Backup" +msgstr "" msgid "" "Backup your project periodically for restoring from the occasional crash." @@ -6802,16 +6604,16 @@ msgstr "" "crash." msgid "every" -msgstr "every" +msgstr "" msgid "The period of backup in seconds." -msgstr "The period of backup in seconds." +msgstr "" msgid "Downloads" -msgstr "Downloads" +msgstr "" msgid "Dark Mode" -msgstr "Dark Mode" +msgstr "" msgid "Enable Dark mode" msgstr "Enable Dark Mode" @@ -6820,28 +6622,28 @@ msgid "Develop mode" msgstr "Developer mode" msgid "Skip AMS blacklist check" -msgstr "Skip AMS blacklist check" +msgstr "" msgid "Home page and daily tips" -msgstr "Home page and daily tips" +msgstr "" msgid "Show home page on startup" -msgstr "Show home page on startup" +msgstr "" msgid "Sync settings" -msgstr "Sync settings" +msgstr "" msgid "User sync" -msgstr "User sync" +msgstr "" msgid "Preset sync" -msgstr "Preset sync" +msgstr "" msgid "Preferences sync" -msgstr "Preferences sync" +msgstr "" msgid "View control settings" -msgstr "View control settings" +msgstr "" msgid "Rotate of view" msgstr "Rotate View" @@ -6853,317 +6655,317 @@ msgid "Zoom of view" msgstr "Zoom View" msgid "Other" -msgstr "Other" +msgstr "" msgid "Mouse wheel reverses when zooming" msgstr "Reverse scroll direction while zooming" msgid "Enable SSL(MQTT)" -msgstr "Enable SSL(MQTT)" +msgstr "" msgid "Enable SSL(FTP)" -msgstr "Enable SSL(FTP)" +msgstr "" msgid "Internal developer mode" -msgstr "Internal developer mode" +msgstr "" msgid "Log Level" -msgstr "Log Level" +msgstr "" msgid "fatal" -msgstr "fatal" +msgstr "" msgid "error" -msgstr "error" +msgstr "" msgid "warning" -msgstr "warning" +msgstr "" msgid "debug" -msgstr "debug" +msgstr "" msgid "trace" -msgstr "trace" +msgstr "" msgid "Host Setting" -msgstr "Host Setting" +msgstr "" msgid "DEV host: api-dev.bambu-lab.com/v1" -msgstr "DEV host: api-dev.bambu-lab.com/v1" +msgstr "" msgid "QA host: api-qa.bambu-lab.com/v1" -msgstr "QA host: api-qa.bambu-lab.com/v1" +msgstr "" msgid "PRE host: api-pre.bambu-lab.com/v1" -msgstr "PRE host: api-pre.bambu-lab.com/v1" +msgstr "" msgid "Product host" -msgstr "Product host" +msgstr "" msgid "debug save button" msgstr "Debug save button" msgid "save debug settings" -msgstr "save debug settings" +msgstr "" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Debug settings have been saved successfully!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Cloud environment switched; please login again!" msgid "System presets" -msgstr "System presets" +msgstr "" msgid "User presets" -msgstr "User presets" +msgstr "" msgid "Incompatible presets" -msgstr "Incompatible presets" +msgstr "" msgid "AMS filaments" msgstr "AMS filament" -msgid "Click to pick filament color" -msgstr "Click to select filament color" +msgid "Click to select filament color" +msgstr "" -msgid "Please choose the filament colour" -msgstr "Please choose the filament color" +msgid "Please choose the filament color" +msgstr "" msgid "Add/Remove presets" -msgstr "Add/Remove presets" +msgstr "" msgid "Edit preset" -msgstr "Edit preset" +msgstr "" msgid "Project-inside presets" -msgstr "Project-inside presets" +msgstr "" msgid "Add/Remove filaments" msgstr "Add/Remove filament" msgid "Add/Remove materials" -msgstr "Add/Remove materials" +msgstr "" -msgid "Select/Remove printers(system presets)" -msgstr "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" +msgstr "" msgid "Create printer" -msgstr "Create printer" +msgstr "" msgid "The selected preset is null!" -msgstr "The selected preset is null!" +msgstr "" msgid "End" -msgstr "End" +msgstr "" msgid "Customize" -msgstr "Customize" +msgstr "" msgid "Other layer filament sequence" -msgstr "Other layer filament sequence" +msgstr "" msgid "Please input layer value (>= 2)." -msgstr "Please input layer value (>= 2)." +msgstr "" msgid "Plate name" -msgstr "Plate name" +msgstr "" msgid "Same as Global Print Sequence" -msgstr "Same as Global Print Sequence" +msgstr "" msgid "Print sequence" -msgstr "Print sequence" +msgstr "" msgid "Same as Global" -msgstr "Same as Global" +msgstr "" msgid "Disable" -msgstr "Disable" +msgstr "" msgid "Spiral vase" -msgstr "Spiral vase" +msgstr "" msgid "First layer filament sequence" -msgstr "First layer filament sequence" +msgstr "" msgid "Same as Global Plate Type" -msgstr "Same as Global Plate Type" +msgstr "" msgid "Same as Global Bed Type" msgstr "Same as Global Plate Type" msgid "By Layer" -msgstr "By Layer" +msgstr "" msgid "By Object" -msgstr "By Object" +msgstr "" msgid "Accept" -msgstr "Accept" +msgstr "" msgid "Log Out" -msgstr "Log Out" +msgstr "" msgid "Slice all plate to obtain time and filament estimation" msgstr "Slice all plates to obtain time and filament estimation" msgid "Packing project data into 3mf file" -msgstr "Packing project data into 3mf file" +msgstr "" msgid "Uploading 3mf" -msgstr "Uploading 3mf" +msgstr "" msgid "Jump to model publish web page" -msgstr "Jump to model publish web page" +msgstr "" -msgid "Note: The preparation may takes several minutes. Please be patient." -msgstr "Note: The preparation may take several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." +msgstr "" msgid "Publish" -msgstr "Publish" +msgstr "" -msgid "Publish was cancelled" -msgstr "Publish was cancelled" +msgid "Publish was canceled" +msgstr "" msgid "Slicing Plate 1" -msgstr "Slicing Plate 1" +msgstr "" msgid "Packing data to 3mf" -msgstr "Packing data to 3mf" +msgstr "" msgid "Jump to webpage" -msgstr "Jump to webpage" +msgstr "" #, c-format, boost-format msgid "Save %s as" -msgstr "Save %s as" +msgstr "" msgid "User Preset" -msgstr "User Preset" +msgstr "" msgid "Preset Inside Project" -msgstr "Preset Inside Project" +msgstr "" msgid "Name is unavailable." -msgstr "Name is unavailable." +msgstr "" -msgid "Overwrite a system profile is not allowed" -msgstr "Overwriting a system profile is not allowed." +msgid "Overwriting a system profile is not allowed." +msgstr "" #, boost-format msgid "Preset \"%1%\" already exists." -msgstr "Preset \"%1%\" already exists." +msgstr "" #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." -msgstr "" +msgid "" "Preset \"%1%\" already exists and is incompatible with the current printer." +msgstr "" -msgid "Please note that saving action will replace this preset" +msgid "Please note that saving will overwrite this preset." msgstr "Please note that saving will overwrite the current preset." msgid "The name cannot be the same as a preset alias name." -msgstr "The name cannot be the same as a preset alias name." +msgstr "" msgid "Save preset" -msgstr "Save preset" +msgstr "" msgctxt "PresetName" msgid "Copy" -msgstr "Copy" +msgstr "" #, boost-format msgid "Printer \"%1%\" is selected with preset \"%2%\"" -msgstr "Printer \"%1%\" is selected with preset \"%2%\"" +msgstr "" #, boost-format msgid "Please choose an action with \"%1%\" preset after saving." -msgstr "Please choose an action with \"%1%\" preset after saving." +msgstr "" #, boost-format msgid "For \"%1%\", change \"%2%\" to \"%3%\" " -msgstr "For \"%1%\", change \"%2%\" to \"%3%\" " +msgstr "" #, boost-format msgid "For \"%1%\", add \"%2%\" as a new preset" -msgstr "For \"%1%\", add \"%2%\" as a new preset" +msgstr "" #, boost-format msgid "Simply switch to \"%1%\"" -msgstr "Simply switch to \"%1%\"" +msgstr "" msgid "Task canceled" -msgstr "Task canceled" +msgstr "" msgid "(LAN)" -msgstr "(LAN)" +msgstr "" msgid "Search" -msgstr "Search" +msgstr "" msgid "My Device" -msgstr "My Device" +msgstr "" msgid "Other Device" -msgstr "Other Device" +msgstr "" msgid "Online" -msgstr "Online" +msgstr "" msgid "Input access code" -msgstr "Input access code" +msgstr "" msgid "Can't find my devices?" msgstr "Can't find devices?" msgid "Log out successful." -msgstr "Log out successful." +msgstr "" msgid "Busy" -msgstr "Busy" +msgstr "" msgid "Bambu Cool Plate" -msgstr "Bambu Cool Plate" +msgstr "" msgid "PLA Plate" -msgstr "PLA Plate" +msgstr "" msgid "Bambu Engineering Plate" -msgstr "Bambu Engineering Plate" +msgstr "" msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "High temperature Plate" +msgstr "" msgid "Bambu Textured PEI Plate" msgstr "" msgid "Send print job to" -msgstr "Send print job to" +msgstr "" msgid "Flow Dynamics Calibration" -msgstr "Flow Dynamics Calibration" +msgstr "" msgid "Click here if you can't connect to the printer" -msgstr "Click here if you can't connect to the printer" +msgstr "" msgid "send completed" msgstr "Send complete" msgid "Error code" -msgstr "Error code" +msgstr "" msgid "No login account, only printers in LAN mode are displayed" -msgstr "No login account, only printers in LAN mode are displayed" +msgstr "" msgid "Connecting to server" -msgstr "Connecting to server" +msgstr "" msgid "Synchronizing device information" -msgstr "Synchronizing device information" +msgstr "" msgid "Synchronizing device information time out" msgstr "Synchronizing device information timed out" @@ -7174,7 +6976,6 @@ msgstr "Cannot send a print job while the printer is updating firmware" msgid "" "The printer is executing instructions. Please restart printing after it ends" msgstr "" -"The printer is executing instructions. Please restart printing after it ends" msgid "The printer is busy on other print job" msgstr "The printer is busy with another print job." @@ -7184,51 +6985,37 @@ msgid "" "Filament %s exceeds the number of AMS slots. Please update the printer " "firmware to support AMS slot assignment." msgstr "" -"Filament %s exceeds the number of AMS slots. Please update the printer " -"firmware to support AMS slot assignment." msgid "" "Filament exceeds the number of AMS slots. Please update the printer firmware " "to support AMS slot assignment." msgstr "" -"Filament exceeds the number of AMS slots. Please update the printer firmware " -"to support AMS slot assignment." msgid "" "Filaments to AMS slots mappings have been established. You can click a " "filament above to change its mapping AMS slot" msgstr "" -"Filaments to AMS slots mappings have been established. You can click a " -"filament above to change its mapping AMS slot" msgid "" "Please click each filament above to specify its mapping AMS slot before " "sending the print job" msgstr "" -"Please click each filament above to specify its mapping AMS slot before " -"sending the print job" #, c-format, boost-format msgid "" "Filament %s does not match the filament in AMS slot %s. Please update the " "printer firmware to support AMS slot assignment." msgstr "" -"Filament %s does not match the filament in AMS slot %s. Please update the " -"printer firmware to support AMS slot assignment." msgid "" "Filament does not match the filament in AMS slot. Please update the printer " "firmware to support AMS slot assignment." msgstr "" -"Filament does not match the filament in AMS slot. Please update the printer " -"firmware to support AMS slot assignment." msgid "" "The printer firmware only supports sequential mapping of filament => AMS " "slot." msgstr "" -"The printer firmware only supports sequential mapping of filament => AMS " -"slot." msgid "An SD card needs to be inserted before printing." msgstr "A MicroSD card needs to be inserted before printing." @@ -7238,8 +7025,6 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" -"The selected printer (%s) is incompatible with the chosen printer profile in " -"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "A MicroSD card needs to be inserted to record a timelapse." @@ -7253,7 +7038,7 @@ msgid "Cannot send the print job for empty plate" msgstr "Cannot send a print job for an empty plate." msgid "This printer does not support printing all plates" -msgstr "This printer does not support printing all plates" +msgstr "" msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " @@ -7265,22 +7050,18 @@ msgstr "" msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" -"Timelapse is not supported because Print sequence is set to \"By object\"." msgid "Errors" -msgstr "Errors" +msgstr "" msgid "Please check the following:" -msgstr "Please check the following:" +msgstr "" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"The printer type selected when generating G-Code is not consistent with the " -"currently selected printer. It is recommended that you use the same printer " -"type for slicing." msgid "" "There are some unknown filaments in the AMS mappings. Please check whether " @@ -7293,11 +7074,11 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "nozzle in preset: %s %s" +msgstr "" #, c-format, boost-format msgid "nozzle memorized: %.2f %s" -msgstr "nozzle memorized: %.2f %s" +msgstr "" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " @@ -7310,40 +7091,34 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" -"Printing high temperature material(%s material) with %s may cause nozzle " -"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Please fix the error above, otherwise printing cannot continue." +msgstr "" msgid "" "Please click the confirm button if you still want to proceed with printing." msgstr "" -"Please click the confirm button if you still want to proceed with printing." msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -"Connecting to the printer. Unable to cancel during the connection process." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" -"Caution to use! Flow calibration on Textured PEI Plate may fail due to the " -"scattered surface." msgid "Automatic flow calibration using Micro Lidar" -msgstr "Automatic flow calibration using Micro Lidar" +msgstr "" msgid "Modifying the device name" -msgstr "Modifying the device name" +msgstr "" msgid "Bind with Pin Code" -msgstr "Bind with Pin Code" +msgstr "" msgid "Bind with Access Code" msgstr "" @@ -7355,7 +7130,7 @@ msgid "Cannot send the print task when the upgrade is in progress" msgstr "Cannot send print tasks when an update is in progress" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "The selected printer is incompatible with the chosen printer presets." +msgstr "" msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" @@ -7371,16 +7146,16 @@ msgid "Slice ok." msgstr "Slice complete" msgid "View all Daily tips" -msgstr "View all Daily tips" +msgstr "" msgid "Failed to create socket" -msgstr "Failed to create socket" +msgstr "" msgid "Failed to connect socket" -msgstr "Failed to connect socket" +msgstr "" msgid "Failed to publish login request" -msgstr "Failed to publish login request" +msgstr "" msgid "Get ticket from device timeout" msgstr "Timeout getting ticket from device" @@ -7389,78 +7164,71 @@ msgid "Get ticket from server timeout" msgstr "Timeout getting ticket from server" msgid "Failed to post ticket to server" -msgstr "Failed to post ticket to server" +msgstr "" msgid "Failed to parse login report reason" -msgstr "Failed to parse login report reason" +msgstr "" msgid "Receive login report timeout" -msgstr "Receive login report timeout" +msgstr "" msgid "Unknown Failure" -msgstr "Unknown Failure" +msgstr "" msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" -"Please Find the Pin Code in Account page on printer screen,\n" -" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "Can't find Pin Code?" +msgstr "" msgid "Pin Code" -msgstr "Pin Code" +msgstr "" msgid "Binding..." -msgstr "Binding..." +msgstr "" msgid "Please confirm on the printer screen" -msgstr "Please confirm on the printer screen" +msgstr "" msgid "Log in failed. Please check the Pin Code." -msgstr "Log in failed. Please check the Pin Code." +msgstr "" msgid "Log in printer" -msgstr "Log in printer" +msgstr "" -msgid "Would you like to log in this printer with current account?" -msgstr "Would you like to log in this printer with the current account?" +msgid "Would you like to log in to this printer with the current account?" +msgstr "" msgid "Check the reason" -msgstr "Check the reason" +msgstr "" msgid "Read and accept" -msgstr "Read and accept" +msgstr "" msgid "Terms and Conditions" -msgstr "Terms and Conditions" +msgstr "" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " -"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " -"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "" "Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " "device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " "Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" msgid "and" -msgstr "and" +msgstr "" msgid "Privacy Policy" -msgstr "Privacy Policy" +msgstr "" msgid "We ask for your help to improve everyone's printer" -msgstr "We ask for your help to improve everyone's printer" +msgstr "" msgid "Statement about User Experience Improvement Program" -msgstr "Statement about User Experience Improvement Program" +msgstr "" #, c-format, boost-format msgid "" @@ -7470,94 +7238,79 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" -"In the 3D Printing community, we learn from each other's successes and " -"failures to adjust our own slicing parameters and settings. %s follows the " -"same principle and uses machine learning to improve its performance from the " -"successes and failures of the vast number of prints by our users. We are " -"training %s to be smarter by feeding them the real-world data. If you are " -"willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " -"not collect any Personal Data by which an individual can be identified " -"directly or indirectly, including without limitation names, addresses, " -"payment information, or phone numbers. By enabling this service, you agree " -"to these terms and the statement about Privacy Policy." msgid "Statement on User Experience Improvement Plan" -msgstr "Statement on User Experience Improvement Plan" +msgstr "" msgid "Log in successful." -msgstr "Log in successful." +msgstr "" msgid "Log out printer" -msgstr "Log out printer" +msgstr "" msgid "Would you like to log out the printer?" -msgstr "Would you like to log out the printer?" +msgstr "" msgid "Please log in first." -msgstr "Please log in first." +msgstr "" msgid "There was a problem connecting to the printer. Please try again." -msgstr "There was a problem connecting to the printer. Please try again." +msgstr "" msgid "Failed to log out." -msgstr "Failed to log out." +msgstr "" #. TRN "Save current Settings" #, c-format, boost-format msgid "Save current %s" -msgstr "Save current %s" +msgstr "" msgid "Delete this preset" -msgstr "Delete this preset" +msgstr "" msgid "Search in preset" -msgstr "Search in preset" +msgstr "" msgid "Click to reset all settings to the last saved preset." -msgstr "Click to reset all settings to the last saved preset." +msgstr "" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" -"A Prime tower is required for smooth timelapse mode. There may be flaws on " +"A prime tower is required for smooth timelapse mode. There may be flaws on " "the model without a prime tower. Are you sure you want to disable the prime " "tower?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "A prime tower is required for smooth timelapse mode. There may be flaws on " "the model without prime tower. Do you want to enable the prime tower?" msgid "Still print by object?" -msgstr "Still print by object?" +msgstr "" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " +"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically.\n" "No - Do not change these settings for me." @@ -7577,41 +7330,31 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" -"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." -msgid "Adjust to the set range automatically? \n" -msgstr "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "" msgid "Adjust" -msgstr "Adjust" +msgstr "" msgid "Ignore" -msgstr "Ignore" +msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " -"printing complications." -msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush. Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." +msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." -msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications. Please use with the latest printer firmware." +msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7619,10 +7362,6 @@ msgid "" "by right-click the empty position of build plate and choose \"Add " "Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" -"When recording timelapse without toolhead, it is recommended to add a " -"\"Timelapse Wipe Tower\" \n" -"by right-click the empty position of build plate and choose \"Add " -"Primitive\"->\"Timelapse Wipe Tower\"." msgid "" "A copy of the current system preset will be created, which will be detached " @@ -7694,16 +7433,16 @@ msgid "symbolic profile name" msgstr "" msgid "Line width" -msgstr "Line width" +msgstr "" msgid "Seam" -msgstr "Seam" +msgstr "" msgid "Precision" -msgstr "Precision" +msgstr "" msgid "Wall generator" -msgstr "Wall generator" +msgstr "" msgid "Walls and surfaces" msgstr "" @@ -7715,46 +7454,43 @@ msgid "Overhangs" msgstr "" msgid "Walls" -msgstr "Walls" +msgstr "" msgid "Top/bottom shells" -msgstr "Top/bottom shells" +msgstr "" msgid "Initial layer speed" msgstr "First layer speed" msgid "Other layers speed" -msgstr "Other layers speed" +msgstr "" msgid "Overhang speed" -msgstr "Overhang speed" +msgstr "" msgid "" "This is the speed for various overhang degrees. Overhang degrees are " "expressed as a percentage of line width. 0 speed means no slowing down for " "the overhang degree range and wall speed is used" msgstr "" -"This is the speed for various overhang degrees. Overhang degrees are " -"expressed as a percentage of line width. 0 speed means no slowing down for " -"the overhang degree range and wall speed is used" msgid "Bridge" -msgstr "Bridge" +msgstr "" msgid "Set speed for external and internal bridges" msgstr "" msgid "Travel speed" -msgstr "Travel speed" +msgstr "" msgid "Acceleration" -msgstr "Acceleration" +msgstr "" msgid "Jerk(XY)" -msgstr "Jerk(XY)" +msgstr "" msgid "Raft" -msgstr "Raft" +msgstr "" msgid "Support filament" msgstr "Filament for Supports" @@ -7766,7 +7502,7 @@ msgid "Multimaterial" msgstr "" msgid "Prime tower" -msgstr "Prime tower" +msgstr "" msgid "Filament for Features" msgstr "" @@ -7778,19 +7514,19 @@ msgid "Skirt" msgstr "" msgid "Special mode" -msgstr "Special mode" +msgstr "" msgid "G-code output" -msgstr "G-code output" +msgstr "" msgid "Post-processing Scripts" -msgstr "Post-processing Scripts" +msgstr "" msgid "Notes" -msgstr "Notes" +msgstr "" msgid "Frequent" -msgstr "Frequent" +msgstr "" #, c-format, boost-format msgid "" @@ -7811,19 +7547,19 @@ msgstr[1] "" "be broken." msgid "Reserved keywords found" -msgstr "Reserved keywords found" +msgstr "" msgid "Setting Overrides" -msgstr "Setting Overrides" +msgstr "" msgid "Retraction" -msgstr "Retraction" +msgstr "" msgid "Basic information" -msgstr "Basic information" +msgstr "" msgid "Recommended nozzle temperature" -msgstr "Recommended nozzle temperature" +msgstr "" msgid "Recommended nozzle temperature range of this filament. 0 means no set" msgstr "Recommended nozzle temperature range of this filament. 0 means not set" @@ -7835,86 +7571,93 @@ msgid "Print chamber temperature" msgstr "" msgid "Print temperature" -msgstr "Print temperature" +msgstr "" msgid "Nozzle" -msgstr "Nozzle" +msgstr "" msgid "Nozzle temperature when printing" -msgstr "Nozzle temperature when printing" +msgstr "" msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" +"This is the bed temperature when the Cool Plate Supertack is installed. A " +"value of 0 means the filament does not support printing on the Cool Plate " +"SuperTack." msgid "Cool Plate" -msgstr "Cool Plate" +msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" -"This is the bed temperature when the cool plate is installed. A value of 0 " +"This is the bed temperature when the Cool Plate is installed. A value of 0 " "means the filament does not support printing on the Cool Plate." -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." +msgstr "" +"This is the bed temperature when the Textured Cool Plate is installed. A " +"value of 0 means the filament does not support printing on the Textured Cool " +"Plate." + +msgid "Engineering Plate" msgstr "" -msgid "Engineering plate" -msgstr "Engineering plate" - msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "This is the bed temperature when the engineering plate is installed. A value " "of 0 means the filament does not support printing on the Engineering Plate." msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Smooth PEI Plate / High Temp Plate" +msgstr "" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"This is the bed temperature when the Smooth PEI Plate/High Temperature Plate " +"is installed. A value of 0 means the filament does not support printing on " +"the Smooth PEI Plate/High Temp Plate." msgid "Textured PEI Plate" -msgstr "Textured PEI Plate" +msgstr "" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" -"Bed temperature when Textured PEI Plate is installed. 0 means the filament " -"is not supported on the Textured PEI Plate" +"This is the bed temperature when the Textured PEI Plate is installed. A " +"value of 0 means the filament does not support printing on the Textured " +"PEI Plate." msgid "Volumetric speed limitation" -msgstr "Volumetric speed limitation" +msgstr "" msgid "Cooling" -msgstr "Cooling" +msgstr "" msgid "Cooling for specific layer" -msgstr "Cooling for specific layer" +msgstr "" msgid "Part cooling fan" -msgstr "Part cooling fan" +msgstr "" msgid "Min fan speed threshold" -msgstr "Min fan speed threshold" +msgstr "" msgid "" "Part cooling fan speed will start to run at min speed when the estimated " @@ -7928,7 +7671,7 @@ msgstr "" "minimum and maximum fan speed according to layer printing time." msgid "Max fan speed threshold" -msgstr "Max fan speed threshold" +msgstr "" msgid "" "Part cooling fan speed will be max when the estimated layer time is shorter " @@ -7938,33 +7681,33 @@ msgstr "" "is shorter than the threshold value." msgid "Auxiliary part cooling fan" -msgstr "Auxiliary part cooling fan" +msgstr "" msgid "Exhaust fan" -msgstr "Exhaust fan" +msgstr "" msgid "During print" -msgstr "During print" +msgstr "" msgid "Complete print" -msgstr "Complete print" +msgstr "" msgid "Filament start G-code" -msgstr "Filament start G-code" +msgstr "" msgid "Filament end G-code" -msgstr "Filament end G-code" +msgstr "" msgid "Wipe tower parameters" msgstr "" -msgid "Toolchange parameters with single extruder MM printers" -msgstr "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" +msgstr "" msgid "Ramming settings" msgstr "" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" msgid "Dependencies" @@ -7974,9 +7717,9 @@ msgid "Profile dependencies" msgstr "" msgid "Printable space" -msgstr "Printable space" +msgstr "" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "" @@ -7991,61 +7734,61 @@ msgid "Fan speed-up time" msgstr "" msgid "Extruder Clearance" -msgstr "Extruder Clearance" +msgstr "" msgid "Adaptive bed mesh" msgstr "" msgid "Accessory" -msgstr "Accessory" +msgstr "" -msgid "Machine gcode" -msgstr "Machine G-code" +msgid "Machine G-code" +msgstr "" msgid "Machine start G-code" -msgstr "Machine start G-code" +msgstr "" msgid "Machine end G-code" -msgstr "Machine end G-code" +msgstr "" msgid "Printing by object G-code" -msgstr "Printing by object G-code" +msgstr "" msgid "Before layer change G-code" -msgstr "Before layer change G-code" +msgstr "" msgid "Layer change G-code" -msgstr "Layer change G-code" +msgstr "" -msgid "Time lapse G-code" -msgstr "Time lapse G-code" +msgid "Timelapse G-code" +msgstr "" msgid "Change filament G-code" -msgstr "Change filament G-code" +msgstr "" msgid "Change extrusion role G-code" msgstr "" msgid "Pause G-code" -msgstr "Pause G-code" +msgstr "" msgid "Template Custom G-code" -msgstr "Template Custom G-code" +msgstr "" msgid "Motion ability" -msgstr "Motion ability" +msgstr "" msgid "Normal" -msgstr "Normal" +msgstr "" msgid "Speed limitation" -msgstr "Speed limitation" +msgstr "" msgid "Acceleration limitation" -msgstr "Acceleration limitation" +msgstr "" msgid "Jerk limitation" -msgstr "Jerk limitation" +msgstr "" msgid "Single extruder multi-material setup" msgstr "" @@ -8061,7 +7804,7 @@ msgid "" msgstr "" msgid "Nozzle diameter" -msgstr "Nozzle diameter" +msgstr "" msgid "Wipe tower" msgstr "" @@ -8075,13 +7818,13 @@ msgid "" msgstr "" msgid "Layer height limits" -msgstr "Layer height limits" +msgstr "" msgid "Z-Hop" msgstr "" msgid "Retraction when switching material" -msgstr "Retraction when switching material" +msgstr "" msgid "" "The Wipe option is not available when using the Firmware Retraction mode.\n" @@ -8093,21 +7836,19 @@ msgstr "" "Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "Firmware Retraction" +msgstr "" msgid "Detached" -msgstr "Detached" +msgstr "" #, c-format, boost-format msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" -"%d Filament Preset and %d Process Preset is attached to this printer. Those " -"presets would be deleted if the printer is deleted." -msgid "Presets inherited by other presets can not be deleted!" -msgstr "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" +msgstr "" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -8117,7 +7858,7 @@ msgstr[1] "" #. TRN Remove/Delete #, boost-format msgid "%1% Preset" -msgstr "%1% Preset" +msgstr "" msgid "Following preset will be deleted too." msgid_plural "Following presets will be deleted too." @@ -8125,32 +7866,29 @@ msgstr[0] "The following preset will be deleted too:" msgstr[1] "The following presets will be deleted too:" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Are you sure to delete the selected preset? \n" -"If the preset corresponds to a filament currently in use on your printer, " -"please reset the filament information for that slot." #, boost-format msgid "Are you sure to %1% the selected preset?" msgstr "Are you sure you want to %1% the selected preset?" msgid "All" -msgstr "All" +msgstr "" msgid "Set" -msgstr "Set" +msgstr "" msgid "Click to reset current value and attach to the global value." -msgstr "Click to reset current value and attach to the global value." +msgstr "" msgid "Click to drop current modify and reset to saved value." msgstr "Click to drop current modifications and reset to saved value." msgid "Process Settings" -msgstr "Process Settings" +msgstr "" msgid "Undef" msgstr "Undefined" @@ -8159,87 +7897,77 @@ msgid "Unsaved Changes" msgstr "unsaved changes" msgid "Transfer or discard changes" -msgstr "Transfer or discard changes" +msgstr "" msgid "Old Value" msgstr "Old value" msgid "New Value" -msgstr "New Value" +msgstr "" msgid "Transfer" -msgstr "Transfer" +msgstr "" msgid "Don't save" -msgstr "Don't save" +msgstr "" msgid "Discard" -msgstr "Discard" +msgstr "" msgid "Click the right mouse button to display the full text." -msgstr "Click the right mouse button to display the full text." +msgstr "" msgid "All changes will not be saved" msgstr "No changes will be saved." msgid "All changes will be discarded." -msgstr "All changes will be discarded." +msgstr "" msgid "Save the selected options." -msgstr "Save the selected options." +msgstr "" msgid "Keep the selected options." -msgstr "Keep the selected options." +msgstr "" msgid "Transfer the selected options to the newly selected preset." -msgstr "Transfer the selected options to the newly selected preset." +msgstr "" #, boost-format msgid "" "Save the selected options to preset \n" "\"%1%\"." msgstr "" -"Save the selected options to preset \n" -"\"%1%\"." #, boost-format msgid "" "Transfer the selected options to the newly selected preset \n" "\"%1%\"." msgstr "" -"Transfer the selected options to the newly selected preset \n" -"\"%1%\"." #, boost-format msgid "Preset \"%1%\" contains the following unsaved changes:" -msgstr "Preset \"%1%\" contains the following unsaved changes:" +msgstr "" #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new printer profile and it " "contains the following unsaved changes:" msgstr "" -"Preset \"%1%\" is not compatible with the new printer profile and it " -"contains the following unsaved changes:" #, boost-format msgid "" "Preset \"%1%\" is not compatible with the new process profile and it " "contains the following unsaved changes:" msgstr "" -"Preset \"%1%\" is not compatible with the new process profile and it " -"contains the following unsaved changes:" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "You have changed some settings of preset \"%1%\"." +msgstr "" msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" -"\n" -"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8248,7 +7976,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "You have previously modified your settings." +msgstr "" msgid "" "\n" @@ -8260,16 +7988,16 @@ msgid "Extruders count" msgstr "Extruder count" msgid "General" -msgstr "General" +msgstr "" msgid "Capabilities" -msgstr "Capabilities" +msgstr "" msgid "Show all presets (including incompatible)" -msgstr "Show all presets (including incompatible)" +msgstr "" msgid "Select presets to compare" -msgstr "Select presets to compare" +msgstr "" msgid "" "You can only transfer to current active profile because it has been modified." @@ -8290,138 +8018,131 @@ msgid "" msgstr "" msgid "Add File" -msgstr "Add File" +msgstr "" msgid "Set as cover" -msgstr "Set as cover" +msgstr "" msgid "Cover" -msgstr "Cover" +msgstr "" #, boost-format msgid "The name \"%1%\" already exists." -msgstr "The name \"%1%\" already exists." +msgstr "" msgid "Basic Info" -msgstr "Basic Info" +msgstr "" msgid "Pictures" -msgstr "Pictures" +msgstr "" msgid "Bill of Materials" -msgstr "Bill of Materials" +msgstr "" msgid "Assembly Guide" -msgstr "Assembly Guide" +msgstr "" msgid "Author" -msgstr "Author" +msgstr "" msgid "Model Name" -msgstr "Model Name" +msgstr "" #, c-format, boost-format msgid "%s Update" -msgstr "%s Update" +msgstr "" msgid "A new version is available" -msgstr "A new version is available" +msgstr "" msgid "Configuration update" -msgstr "Configuration update" +msgstr "" -msgid "A new configuration package available, Do you want to install it?" -msgstr "A new configuration package is available. Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" +msgstr "" msgid "Description:" -msgstr "Description:" +msgstr "" msgid "Configuration incompatible" -msgstr "Configuration incompatible" - -msgid "the configuration package is incompatible with current application." msgstr "" -"the configuration package is incompatible with the current application." + +msgid "the configuration package is incompatible with the current application." +msgstr "" #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" -msgstr "" "The configuration package is incompatible with the current application.\n" "%s will update the configuration package to allow the application to start." +msgstr "" #, c-format, boost-format msgid "Exit %s" -msgstr "Exit %s" +msgstr "" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" "The configuration package is incompatible with the current version of Bambu " "Studio." msgid "Configuration updates" -msgstr "Configuration updates" +msgstr "" msgid "No updates available." -msgstr "No updates available." +msgstr "" msgid "The configuration is up to date." -msgstr "The configuration is up to date." +msgstr "" msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "" msgid "Recommended " -msgstr "Recommended " +msgstr "" msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "" msgid "Quick set:" -msgstr "Quick set:" +msgstr "" msgid "Color match" -msgstr "Color match" +msgstr "" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "" msgid "Append" -msgstr "Append" +msgstr "" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "" msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "" msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "" msgid "Map Filament" -msgstr "Map Filament" +msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" msgid "Ramming customization" msgstr "" @@ -8442,7 +8163,7 @@ msgid "Total ramming time" msgstr "" msgid "s" -msgstr "s" +msgstr "" msgid "Total rammed volume" msgstr "" @@ -8454,13 +8175,13 @@ msgid "Ramming line spacing" msgstr "" msgid "Auto-Calc" -msgstr "Auto-Calc" +msgstr "" msgid "Re-calculate" -msgstr "Re-calculate" +msgstr "" msgid "Flushing volumes for filament change" -msgstr "Flushing volumes for filament change" +msgstr "" msgid "" "Orca would re-calculate your flushing volumes every time the filaments color " @@ -8468,33 +8189,33 @@ msgid "" msgstr "" msgid "Flushing volume (mm³) for each filament pair." -msgstr "Flushing volume (mm³) for each filament pair." +msgstr "" #, c-format, boost-format msgid "Suggestion: Flushing Volume in range [%d, %d]" -msgstr "Suggestion: Flushing Volume in range [%d, %d]" +msgstr "" #, c-format, boost-format msgid "The multiplier should be in range [%.2f, %.2f]." -msgstr "The multiplier should be in range [%.2f, %.2f]." +msgstr "" msgid "Multiplier" -msgstr "Multiplier" +msgstr "" msgid "unloaded" -msgstr "unloaded" +msgstr "" msgid "loaded" -msgstr "loaded" +msgstr "" msgid "Filament #" -msgstr "Filament #" +msgstr "" msgid "From" -msgstr "From" +msgstr "" msgid "To" -msgstr "To" +msgstr "" msgid "" "Windows Media Player is required for this task! Do you want to enable " @@ -8518,147 +8239,147 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" msgid "Bambu Network plug-in not detected." -msgstr "Bambu Network plug-in not detected." +msgstr "" msgid "Click here to download it." -msgstr "Click here to download it." +msgstr "" msgid "Login" -msgstr "Login" +msgstr "" msgid "The configuration package is changed in previous Config Guide" -msgstr "The configuration package is changed in previous Config Guide" +msgstr "" msgid "Configuration package changed" -msgstr "Configuration package changed" +msgstr "" msgid "Toolbar" -msgstr "Toolbar" +msgstr "" msgid "Objects list" -msgstr "Objects list" +msgstr "" msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files" -msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files" +msgstr "" msgid "⌘+Shift+G" -msgstr "⌘+Shift+G" +msgstr "" msgid "Ctrl+Shift+G" -msgstr "Ctrl+Shift+G" +msgstr "" msgid "Paste from clipboard" -msgstr "Paste from clipboard" +msgstr "" msgid "Show/Hide 3Dconnexion devices settings dialog" -msgstr "Show/Hide 3Dconnexion devices settings dialog" +msgstr "" msgid "Switch table page" -msgstr "Switch table page" +msgstr "" msgid "Show keyboard shortcuts list" -msgstr "Show keyboard shortcuts list" +msgstr "" msgid "Global shortcuts" -msgstr "Global shortcuts" +msgstr "" msgid "Rotate View" -msgstr "Rotate View" +msgstr "" msgid "Pan View" -msgstr "Pan View" +msgstr "" msgid "Mouse wheel" -msgstr "Mouse wheel" +msgstr "" msgid "Zoom View" -msgstr "Zoom View" +msgstr "" msgid "Shift+A" -msgstr "Shift+A" +msgstr "" msgid "Shift+R" -msgstr "Shift+R" +msgstr "" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." +msgstr "" + +msgid "Auto orients all objects on the active plate." msgstr "" -"This auto orients selected objects or all objects. If there are selected " -"objects, it just orients the selected ones. Otherwise, it will orient all " -"objects in the current plate." msgid "Shift+Tab" -msgstr "Shift+Tab" +msgstr "" msgid "Collapse/Expand the sidebar" -msgstr "Collapse/Expand the sidebar" +msgstr "" msgid "⌘+Any arrow" -msgstr "⌘+Any arrow" +msgstr "" msgid "Movement in camera space" -msgstr "Movement in camera space" +msgstr "" msgid "⌥+Left mouse button" -msgstr "⌥+Left mouse button" +msgstr "" msgid "Select a part" -msgstr "Select a part" +msgstr "" msgid "⌘+Left mouse button" -msgstr "⌘+Left mouse button" +msgstr "" msgid "Select multiple objects" -msgstr "Select multiple objects" +msgstr "" msgid "Ctrl+Any arrow" -msgstr "Ctrl+Any arrow" +msgstr "" msgid "Alt+Left mouse button" -msgstr "Alt+Left mouse button" +msgstr "" msgid "Ctrl+Left mouse button" -msgstr "Ctrl+Left mouse button" +msgstr "" msgid "Shift+Left mouse button" -msgstr "Shift+Left mouse button" +msgstr "" msgid "Select objects by rectangle" -msgstr "Select objects by rectangle" +msgstr "" msgid "Arrow Up" -msgstr "Arrow Up" +msgstr "" msgid "Move selection 10 mm in positive Y direction" msgstr "Move selection 10mm in positive Y direction" msgid "Arrow Down" -msgstr "Arrow Down" +msgstr "" msgid "Move selection 10 mm in negative Y direction" msgstr "Move selection 10mm in negative Y direction" msgid "Arrow Left" -msgstr "Arrow Left" +msgstr "" msgid "Move selection 10 mm in negative X direction" msgstr "Move selection 10mm in negative X direction" msgid "Arrow Right" -msgstr "Arrow Right" +msgstr "" msgid "Move selection 10 mm in positive X direction" msgstr "Move selection 10mm in positive X direction" msgid "Shift+Any arrow" -msgstr "Shift+Any arrow" +msgstr "" msgid "Movement step set to 1 mm" msgstr "Movement step set to 1mm" @@ -8667,51 +8388,63 @@ msgid "keyboard 1-9: set filament for object/part" msgstr "Keyboard 1-9: set filament for object/part" msgid "Camera view - Default" -msgstr "Camera view - Default" +msgstr "" msgid "Camera view - Top" -msgstr "Camera view - Top" +msgstr "" msgid "Camera view - Bottom" -msgstr "Camera view - Bottom" +msgstr "" msgid "Camera view - Front" -msgstr "Camera view - Front" +msgstr "" msgid "Camera view - Behind" -msgstr "Camera view - Behind" +msgstr "" msgid "Camera Angle - Left side" -msgstr "Camera Angle - Left side" +msgstr "" msgid "Camera Angle - Right side" -msgstr "Camera Angle - Right side" +msgstr "" msgid "Select all objects" -msgstr "Select all objects" +msgstr "" msgid "Gizmo move" -msgstr "Gizmo move" +msgstr "" msgid "Gizmo scale" -msgstr "Gizmo scale" +msgstr "" msgid "Gizmo rotate" -msgstr "Gizmo rotate" +msgstr "" msgid "Gizmo cut" -msgstr "Gizmo cut" +msgstr "" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Place face on bed" +msgid "Gizmo place face on bed" +msgstr "" + +msgid "Gizmo mesh boolean" +msgstr "" msgid "Gizmo SLA support points" -msgstr "Gizmo SLA support points" +msgstr "" msgid "Gizmo FDM paint-on seam" -msgstr "Gizmo FDM paint-on seam" +msgstr "" -msgid "Gizmo Text emboss / engrave" +msgid "Gizmo text emboss/engrave" +msgstr "" + +msgid "Gizmo measure" +msgstr "" + +msgid "Gizmo assemble" +msgstr "" + +msgid "Gizmo brim ears" msgstr "" msgid "Zoom in" @@ -8724,73 +8457,73 @@ msgid "Switch between Prepare/Preview" msgstr "" msgid "Plater" -msgstr "Plater" +msgstr "" msgid "Move: press to snap by 1mm" -msgstr "Move: press to snap by 1mm" +msgstr "" msgid "⌘+Mouse wheel" -msgstr "⌘+Mouse wheel" +msgstr "" msgid "Support/Color Painting: adjust pen radius" -msgstr "Support/Color Painting: adjust pen radius" +msgstr "" msgid "⌥+Mouse wheel" -msgstr "⌥+Mouse wheel" +msgstr "" msgid "Support/Color Painting: adjust section position" -msgstr "Support/Color Painting: adjust section position" +msgstr "" msgid "Ctrl+Mouse wheel" -msgstr "Ctrl+Mouse wheel" +msgstr "" msgid "Alt+Mouse wheel" -msgstr "Alt+Mouse wheel" +msgstr "" msgid "Gizmo" -msgstr "Gizmo" +msgstr "" msgid "Set extruder number for the objects and parts" -msgstr "Set extruder number for the objects and parts" +msgstr "" -msgid "Delete objects, parts, modifiers " +msgid "Delete objects, parts, modifiers" msgstr "Delete objects, parts, modifiers" msgid "Select the object/part and press space to change the name" -msgstr "Select the object/part and press space to change the name" +msgstr "" msgid "Mouse click" -msgstr "Mouse click" +msgstr "" msgid "Select the object/part and mouse click to change the name" -msgstr "Select the object/part and mouse click to change the name" +msgstr "" msgid "Objects List" -msgstr "Objects List" +msgstr "" msgid "Vertical slider - Move active thumb Up" -msgstr "Vertical slider - Move active thumb Up" +msgstr "" msgid "Vertical slider - Move active thumb Down" -msgstr "Vertical slider - Move active thumb Down" +msgstr "" msgid "Horizontal slider - Move active thumb Left" -msgstr "Horizontal slider - Move active thumb Left" +msgstr "" msgid "Horizontal slider - Move active thumb Right" -msgstr "Horizontal slider - Move active thumb Right" +msgstr "" msgid "On/Off one layer mode of the vertical slider" -msgstr "On/Off one layer mode of the vertical slider" +msgstr "" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "" msgid "Move slider 5x faster" -msgstr "Move slider 5x faster" +msgstr "" msgid "Shift+Mouse wheel" -msgstr "Shift+Mouse wheel" +msgstr "" msgid "Horizontal slider - Move to start position" msgstr "" @@ -8799,14 +8532,14 @@ msgid "Horizontal slider - Move to last position" msgstr "" msgid "Release Note" -msgstr "Release Note" +msgstr "" #, c-format, boost-format -msgid "version %s update information :" -msgstr "version %s update information:" +msgid "version %s update information:" +msgstr "" msgid "Network plug-in update" -msgstr "Network plug-in update" +msgstr "" msgid "" "Click OK to update the Network plug-in when Orca Slicer launches next time." @@ -8814,56 +8547,56 @@ msgstr "" "Click OK to update the Network plug-in the next time Orca Slicer launches." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" -msgstr "A new network plug-in (%s) is available. Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" +msgstr "" msgid "New version of Orca Slicer" -msgstr "New version of Orca Slicer" +msgstr "" msgid "Skip this Version" -msgstr "Skip this Version" +msgstr "" msgid "Done" -msgstr "Done" +msgstr "" msgid "resume" -msgstr "resume" +msgstr "" msgid "Resume Printing" -msgstr "Resume Printing" +msgstr "" -msgid "Resume Printing(defects acceptable)" -msgstr "Resume Printing (defects acceptable)" +msgid "Resume Printing (defects acceptable)" +msgstr "" -msgid "Resume Printing(problem solved)" -msgstr "Resume Printing (problem solved)" +msgid "Resume Printing (problem solved)" +msgstr "" msgid "Stop Printing" -msgstr "Stop Printing" +msgstr "" msgid "Check Assistant" -msgstr "Check Assistant" +msgstr "" msgid "Filament Extruded, Continue" -msgstr "Filament Extruded, Continue" +msgstr "" msgid "Not Extruded Yet, Retry" -msgstr "Not Extruded Yet, Retry" +msgstr "" msgid "Finished, Continue" -msgstr "Finished, Continue" +msgstr "" msgid "Load Filament" msgstr "Load" msgid "Filament Loaded, Resume" -msgstr "Filament Loaded, Resume" +msgstr "" msgid "View Liveview" -msgstr "View Liveview" +msgstr "" msgid "Confirm and Update Nozzle" -msgstr "Confirm and Update Nozzle" +msgstr "" msgid "Connect the printer using IP and access code" msgstr "" @@ -8883,10 +8616,10 @@ msgid "" msgstr "" msgid "IP" -msgstr "IP" +msgstr "" msgid "Access Code" -msgstr "Access Code" +msgstr "" msgid "Printer model" msgstr "" @@ -8895,7 +8628,7 @@ msgid "Printer name" msgstr "" msgid "Where to find your printer's IP and Access Code?" -msgstr "Where to find your printer's IP and Access Code?" +msgstr "" msgid "Connect" msgstr "" @@ -8922,48 +8655,44 @@ msgid "Connecting to printer... The dialog will close later" msgstr "" msgid "Connection failed, please double check IP and Access Code" -msgstr "Connection failed, please double check IP and Access Code" +msgstr "" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" -"Connection failed! If your IP and Access Code is correct, \n" -"please move to step 3 for troubleshooting network issues" msgid "Model:" -msgstr "Model:" +msgstr "" msgid "Serial:" -msgstr "Serial:" +msgstr "" msgid "Version:" -msgstr "Version:" +msgstr "" msgid "Update firmware" -msgstr "Update firmware" +msgstr "" msgid "Beta version" -msgstr "Beta version" +msgstr "" msgid "Latest version" -msgstr "Latest version" +msgstr "" msgid "Updating" -msgstr "Updating" +msgstr "" -msgid "Updating failed" -msgstr "Updating failed" +msgid "Update failed" +msgstr "" -msgid "Updating successful" -msgstr "Update successful" +msgid "Update successful" +msgstr "" msgid "" "Are you sure you want to update? This will take about 10 minutes. Do not " "turn off the power while the printer is updating." msgstr "" -"Are you sure you want to update? This will take about 10 minutes. Do not " -"turn off the power while the printer is updating." msgid "" "An important update was detected and needs to be run before printing can " @@ -8984,37 +8713,37 @@ msgstr "" "printer or update next time you start Orca Slicer." msgid "Extension Board" -msgstr "Extension Board" +msgstr "" msgid "Saving objects into the 3mf failed." -msgstr "Saving objects into the 3mf failed." +msgstr "" msgid "Only Windows 10 is supported." -msgstr "Only Windows 10 is supported." +msgstr "" msgid "Failed to initialize the WinRT library." -msgstr "Failed to initialize the WinRT library." +msgstr "" msgid "Exporting objects" -msgstr "Exporting objects" +msgstr "" msgid "Failed loading objects." -msgstr "Failed loading objects." +msgstr "" msgid "Repairing object by Windows service" -msgstr "Repairing object by Windows service" +msgstr "" msgid "Repair failed." -msgstr "Repair failed." +msgstr "" msgid "Loading repaired objects" -msgstr "Loading repaired objects" +msgstr "" msgid "Exporting 3mf file failed" -msgstr "Exporting 3mf file failed" +msgstr "" msgid "Import 3mf file failed" -msgstr "Import 3mf file failed" +msgstr "" msgid "Repaired 3mf file does not contain any object" msgstr "The repaired 3mf file does not contain any objects." @@ -9029,14 +8758,14 @@ msgid "Repaired 3mf file contains more than one volume" msgstr "The repaired 3mf file contains more than one volume." msgid "Repair finished" -msgstr "Repair finished" +msgstr "" msgid "Repair canceled" -msgstr "Repair canceled" +msgstr "" #, boost-format msgid "Copying of file %1% to %2% failed: %3%" -msgstr "Copying of file %1% to %2% failed: %3%" +msgstr "" msgid "Need to check the unsaved changes before configuration updates." msgstr "Please check any unsaved changes before updating the configuration." @@ -9048,14 +8777,12 @@ msgid " updated to " msgstr "" msgid "Open G-code file:" -msgstr "Open G-code file:" +msgstr "" msgid "" "One object has empty initial layer and can't be printed. Please Cut the " "bottom or enable supports." msgstr "" -"One object has empty initial layer and can't be printed. Please Cut the " -"bottom or enable supports." #, boost-format msgid "Object can't be printed for empty layer between %1% and %2%." @@ -9063,7 +8790,7 @@ msgstr "The object has empty layers between %1% and %2% and can’t be printed." #, boost-format msgid "Object: %1%" -msgstr "Object: %1%" +msgstr "" msgid "" "Maybe parts of the object at these height are too thin, or the object has " @@ -9081,57 +8808,55 @@ msgid "" msgstr "" msgid "" -"Failed to generate gcode for invalid custom G-code.\n" -"\n" -msgstr "" "Failed to generate G-code for invalid custom G-code.\n" "\n" +msgstr "" msgid "Please check the custom G-code or use the default custom G-code." -msgstr "Please check the custom G-code or use the default custom G-code." +msgstr "" #, boost-format msgid "Generating G-code: layer %1%" -msgstr "Generating G-code: layer %1%" +msgstr "" msgid "Inner wall" -msgstr "Inner wall" +msgstr "" msgid "Outer wall" -msgstr "Outer wall" +msgstr "" msgid "Overhang wall" -msgstr "Overhang wall" +msgstr "" msgid "Sparse infill" -msgstr "Sparse infill" +msgstr "" msgid "Internal solid infill" -msgstr "Internal solid infill" +msgstr "" msgid "Top surface" -msgstr "Top surface" +msgstr "" msgid "Bottom surface" -msgstr "Bottom surface" +msgstr "" msgid "Internal Bridge" msgstr "" msgid "Gap infill" -msgstr "Gap infill" +msgstr "" msgid "Support interface" -msgstr "Support interface" +msgstr "" msgid "Support transition" -msgstr "Support transition" +msgstr "" msgid "Multiple" -msgstr "Multiple" +msgstr "" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "Failed to calculate line width of %1%. Cannot get value of “%2%” " msgid "" @@ -9140,97 +8865,97 @@ msgid "" msgstr "" msgid "undefined error" -msgstr "undefined error" +msgstr "" msgid "too many files" -msgstr "too many files" +msgstr "" msgid "file too large" msgstr "File too large" msgid "unsupported method" -msgstr "unsupported method" +msgstr "" msgid "unsupported encryption" -msgstr "unsupported encryption" +msgstr "" msgid "unsupported feature" -msgstr "unsupported feature" +msgstr "" msgid "failed finding central directory" -msgstr "failed finding central directory" +msgstr "" msgid "not a ZIP archive" -msgstr "not a ZIP archive" +msgstr "" msgid "invalid header or corrupted" -msgstr "invalid header or corrupted" +msgstr "" msgid "unsupported multidisk" msgstr "Saving to RAID is not supported." msgid "decompression failed" -msgstr "decompression failed" +msgstr "" msgid "compression failed" -msgstr "compression failed" +msgstr "" msgid "unexpected decompressed size" -msgstr "unexpected decompressed size" +msgstr "" msgid "CRC check failed" -msgstr "CRC check failed" +msgstr "" msgid "unsupported central directory size" -msgstr "unsupported central directory size" +msgstr "" msgid "allocation failed" -msgstr "allocation failed" +msgstr "" msgid "file open failed" -msgstr "file open failed" +msgstr "" msgid "file create failed" -msgstr "file create failed" +msgstr "" msgid "file write failed" -msgstr "file write failed" +msgstr "" msgid "file read failed" -msgstr "file read failed" +msgstr "" msgid "file close failed" -msgstr "file close failed" +msgstr "" msgid "file seek failed" -msgstr "file seek failed" +msgstr "" msgid "file stat failed" -msgstr "file stat failed" +msgstr "" msgid "invalid parameter" -msgstr "invalid parameter" +msgstr "" msgid "invalid filename" -msgstr "invalid filename" +msgstr "" msgid "buffer too small" msgstr "Buffer too small" msgid "internal error" -msgstr "internal error" +msgstr "" msgid "file not found" -msgstr "file not found" +msgstr "" msgid "archive too large" msgstr "Archive too large" msgid "validation failed" -msgstr "validation failed" +msgstr "" msgid "write callback failed" -msgstr "write callback failed" +msgstr "" #, boost-format msgid "" @@ -9240,53 +8965,48 @@ msgstr "" #, boost-format msgid "%1% is too close to others, and collisions may be caused." -msgstr "%1% is too close to others, and collisions may be caused." +msgstr "" #, boost-format msgid "%1% is too tall, and collisions will be caused." -msgstr "%1% is too tall, and collisions will be caused." +msgstr "" msgid " is too close to others, there may be collisions when printing." msgstr " is too close to others; there may be collisions when printing." msgid " is too close to exclusion area, there may be collisions when printing." msgstr "" -" is too close to exclusion area, there may be collisions when printing." msgid "Prime Tower" -msgstr "Prime Tower" +msgstr "" msgid " is too close to others, and collisions may be caused.\n" -msgstr " is too close to others, and collisions may be caused.\n" +msgstr "" msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " is too close to an exclusion area, and collisions will be caused.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Unable to print multiple filaments which have large temperature differences " "together. Otherwise, the extruder and nozzle may be blocked or damaged " "during printing." msgid "No extrusions under current settings." -msgstr "No extrusions under current settings." +msgstr "" msgid "" "Smooth mode of timelapse is not supported when \"by object\" sequence is " "enabled." msgstr "" -"Smooth mode of timelapse is not supported when \"by object\" sequence is " -"enabled." msgid "" "Please select \"By object\" print sequence to print multiple objects in " "spiral vase mode." msgstr "" -"Please select \"By object\" print sequence to print multiple objects in " -"spiral vase mode." msgid "" "The spiral vase mode does not work when an object contains more than one " @@ -9317,7 +9037,7 @@ msgid "" msgstr "" msgid "Variable layer height is not supported with Organic supports." -msgstr "Variable layer height is not supported with Organic supports." +msgstr "" msgid "" "Different nozzle diameters and different filament diameters may not work " @@ -9329,8 +9049,6 @@ msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." msgid "" "Ooze prevention is only supported with the wipe tower when " @@ -9341,8 +9059,6 @@ msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " -"RepRapFirmware and Repetier G-code flavors." msgid "The prime tower is not supported in \"By object\" print." msgstr "A prime tower is not supported in “By object” print." @@ -9354,23 +9070,24 @@ msgstr "" "A prime tower is not supported when adaptive layer height is on. It requires " "that all objects have the same layer height." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "A prime tower requires any “support gap” to be a multiple of layer height." -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "A prime tower requires that all objects have the same layer height." msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "A prime tower requires that all objects are printed over the same number of " "raft layers." msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9382,10 +9099,8 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" -"The prime tower is only supported if all objects have the same variable " -"layer height" msgid "" "One or more object were assigned an extruder that the printer does not have." @@ -9427,9 +9142,8 @@ msgstr "" msgid "" "Support enforcers are used but support is not enabled. Please enable support." msgstr "" -"Support enforcers are used but support is not enabled. Please enable support." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Layer height cannot exceed nozzle diameter." msgid "" @@ -9450,7 +9164,7 @@ msgstr "" #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" -msgstr "Plate %d: %s does not support filament %s" +msgstr "" msgid "" "Setting the jerk speed too low could lead to artifacts on curved surfaces" @@ -9489,13 +9203,13 @@ msgid "" msgstr "" msgid "Generating skirt & brim" -msgstr "Generating skirt & brim" +msgstr "" msgid "Exporting G-code" -msgstr "Exporting G-code" +msgstr "" msgid "Generating G-code" -msgstr "Generating G-code" +msgstr "" msgid "Failed processing of the filename_format template." msgstr "Processing of the filename_format template failed." @@ -9504,7 +9218,7 @@ msgid "Printer technology" msgstr "" msgid "Printable area" -msgstr "Printable area" +msgstr "" msgid "Bed exclude area" msgstr "Excluded bed area" @@ -9514,22 +9228,19 @@ msgid "" "left corner to cut filament during filament change. The area is expressed as " "polygon by points in following format: \"XxY, XxY, ...\"" msgstr "" -"Unprintable area in XY plane. For example, X1 Series printers use the front " -"left corner to cut filament during filament change. The area is expressed as " -"polygon by points in following format: \"XxY, XxY, ...\"" msgid "Bed custom texture" -msgstr "Bed custom texture" +msgstr "" msgid "Bed custom model" -msgstr "Bed custom model" +msgstr "" msgid "Elephant foot compensation" -msgstr "Elephant foot compensation" +msgstr "" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "This shrinks the first layer on the build plate to compensate for elephant " "foot effect." @@ -9545,19 +9256,19 @@ msgid "" msgstr "" msgid "layers" -msgstr "layers" +msgstr "" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "This is the height for each layer. Smaller layer heights give greater " "accuracy but longer printing time." msgid "Printable height" -msgstr "Printable height" +msgstr "" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "This is the maximum printable height which is limited by the height of the " "build area." @@ -9565,20 +9276,20 @@ msgstr "" msgid "Preferred orientation" msgstr "" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" -msgstr "Printer preset names" +msgstr "" msgid "Use 3rd-party print host" msgstr "" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" msgid "Hostname, IP or URL" -msgstr "Hostname, IP or URL" +msgstr "" msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " @@ -9587,53 +9298,42 @@ msgid "" "user name and password into the URL in the following format: https://" "username:password@your-octopi-address/" msgstr "" -"Orca Slicer can upload G-code files to a printer host. This field should " -"contain the hostname, IP address or URL of the printer host instance. Print " -"host behind HAProxy with basic auth enabled can be accessed by putting the " -"user name and password into the URL in the following format: https://" -"username:password@your-octopi-address/" msgid "Device UI" -msgstr "Device UI" +msgstr "" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" -"Specify the URL of your device user interface if it's not same as print_host" msgid "API Key / Password" -msgstr "API Key / Password" +msgstr "" msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " "contain the API Key or the password required for authentication." msgstr "" -"Orca Slicer can upload G-code files to a printer host. This field should " -"contain the API Key or the password required for authentication." -msgid "Name of the printer" -msgstr "Name of the printer" +msgid "Name of the printer." +msgstr "" msgid "HTTPS CA File" -msgstr "HTTPS CA File" +msgstr "" msgid "" "Custom CA certificate file can be specified for HTTPS OctoPrint connections, " "in crt/pem format. If left blank, the default OS CA certificate repository " "is used." msgstr "" -"Custom CA certificate file can be specified for HTTPS OctoPrint connections, " -"in crt/pem format. If left blank, the default OS CA certificate repository " -"is used." msgid "User" -msgstr "User" +msgstr "" msgid "Password" -msgstr "Password" +msgstr "" msgid "Ignore HTTPS certificate revocation checks" -msgstr "Ignore HTTPS certificate revocation checks" +msgstr "" msgid "" "Ignore HTTPS certificate revocation checks in case of missing or offline " @@ -9644,34 +9344,35 @@ msgstr "" "distribution points. One may want to enable this option for self signed " "certificates if connection fails." -msgid "Names of presets related to the physical printer" -msgstr "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." +msgstr "" msgid "Authorization Type" -msgstr "Authorization Type" +msgstr "" msgid "API key" -msgstr "API key" +msgstr "" msgid "HTTP digest" -msgstr "HTTP digest" +msgstr "" -msgid "Avoid crossing wall" -msgstr "Avoid crossing walls" +msgid "Avoid crossing walls" +msgstr "" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "This detours to avoid traveling across walls, which may cause blobs on the " -"surface" +"surface." -msgid "Avoid crossing wall - Max detour length" -msgstr "Avoid crossing walls - Max detour length" +msgid "Avoid crossing walls - Max detour length" +msgstr "" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Maximum detour distance for avoiding crossing wall: The printer won't detour " "if the detour distance is larger than this value. Detour length could be " @@ -9679,46 +9380,48 @@ msgstr "" "a direct travel path. A value of 0 will disable this." msgid "mm or %" -msgstr "mm or %" +msgstr "" msgid "Other layers" -msgstr "Other layers" +msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "This is the bed temperature for layers except for the first one. A value of " "0 means the filament does not support printing on the Cool Plate." msgid "°C" -msgstr "°C" - -msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." +msgstr "" +"This is the bed temperature for layers except for the first one. A value of " +"0 means the filament does not support printing on the Textured Cool Plate." + +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "This is the bed temperature for layers except for the first one. A value of " "0 means the filament does not support printing on the Engineering Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "This is the bed temperature for layers except for the first one. A value of " "0 means the filament does not support printing on the High Temp Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" -"Bed temperature after the first layer. 0 means the filament is not supported " -"on the Textured PEI Plate." +"This is the bed temperature for layers except for the first one. A value of " +"0 means the filament does not support printing on the Textured PEI Plate." msgid "Initial layer" msgstr "First layer" @@ -9727,94 +9430,89 @@ msgid "Initial layer bed temperature" msgstr "First layer bed temperature" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" +"This is the bed temperature of the first layer. A value of 0 means the " +"filament does not support printing on the Cool Plate SuperTack." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "This is the bed temperature of the first layer. A value of 0 means the " "filament does not support printing on the Cool Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" +"This is the bed temperature of the first layer. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "This is the bed temperature of the first layer. A value of 0 means the " "filament does not support printing on the Engineering Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "This is the bed temperature of the first layer. A value of 0 means the " "filament does not support printing on the High Temp Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" -"Bed temperature of the first layer 0 means the filament is not supported on " -"the Textured PEI Plate." +"This is the bed temperature of the first layer. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." -msgid "Bed types supported by the printer" -msgstr "Bed types supported by the printer" +msgid "Bed types supported by the printer." +msgstr "Plate types supported by the printer" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "Engineering Plate" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" +msgid "First layer print sequence" msgstr "" -msgid "First layer print sequence" -msgstr "First layer print sequence" - msgid "Other layers print sequence" -msgstr "Other layers print sequence" +msgstr "" msgid "The number of other layers print sequence" -msgstr "The number of other layers print sequence" +msgstr "" msgid "Other layers filament sequence" -msgstr "Other layers filament sequence" +msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" -msgstr "This G-code is inserted at every layer change before lifting z." +msgid "This G-code is inserted at every layer change before the Z lift." +msgstr "" msgid "Bottom shell layers" -msgstr "Bottom shell layers" +msgstr "" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" -"This is the number of solid layers of bottom shell, including the bottom " -"surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" msgid "Bottom shell thickness" -msgstr "Bottom shell thickness" +msgstr "" msgid "" "The number of bottom solid layers is increased when slicing if the thickness " "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "The number of bottom solid layers is increased when slicing if the thickness " "calculated by bottom shell layers is thinner than this value. This can avoid " @@ -9835,22 +9533,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -9943,9 +9641,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -9953,11 +9651,11 @@ msgid "" msgstr "" msgid "Bridge flow ratio" -msgstr "Bridge flow ratio" +msgstr "" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -9977,11 +9675,11 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "Top surface flow ratio" +msgstr "" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -9991,7 +9689,7 @@ msgid "Bottom surface flow ratio" msgstr "" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10006,14 +9704,12 @@ msgid "" msgstr "" msgid "Only one wall on top surfaces" -msgstr "Only one wall on top surfaces" +msgstr "" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" -msgstr "" "Use only one wall on flat top surfaces, to give more space to the top infill " -"pattern" +"pattern." +msgstr "" msgid "One wall threshold" msgstr "" @@ -10031,11 +9727,11 @@ msgid "" msgstr "" msgid "Only one wall on first layer" -msgstr "Only one wall on first layer" +msgstr "" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" msgid "Extra perimeters on overhangs" @@ -10065,7 +9761,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10085,9 +9781,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -10114,13 +9810,13 @@ msgstr "" msgid "Classic mode" msgstr "" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "" msgid "Slow down for overhang" msgstr "Slow down for overhangs" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Enable this option to slow down when printing overhangs. The speeds for " "different overhang percentages are set below." @@ -10131,11 +9827,11 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10150,13 +9846,13 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "mm/s or %" +msgstr "" msgid "External" msgstr "" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10173,30 +9869,28 @@ msgid "" msgstr "" msgid "Brim width" -msgstr "Brim width" +msgstr "" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "This is the distance from the model to the outermost brim line." msgid "Brim type" -msgstr "Brim type" +msgstr "" msgid "" "This controls the generation of the brim at outer and/or inner side of " "models. Auto means the brim width is analyzed and calculated automatically." msgstr "" -"This controls the generation of the brim at outer and/or inner side of " -"models. Auto means the brim width is analyzed and calculated automatically." msgid "Painted" msgstr "" msgid "Brim-object gap" -msgstr "Brim-object gap" +msgstr "" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "This creates a gap between the innermost brim line and the object and can " "make the brim easier to remove." @@ -10211,8 +9905,8 @@ msgid "Brim ear max angle" msgstr "" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" @@ -10222,17 +9916,17 @@ msgstr "" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" msgid "Compatible machine" -msgstr "Compatible machine" +msgstr "" msgid "upward compatible machine" -msgstr "upward compatible machine" +msgstr "" msgid "Compatible machine condition" -msgstr "Compatible machine condition" +msgstr "" msgid "" "A boolean expression using the configuration values of an active printer " @@ -10244,10 +9938,10 @@ msgstr "" "compatible with the active printer profile." msgid "Compatible process profiles" -msgstr "Compatible process profiles" +msgstr "" msgid "Compatible process profiles condition" -msgstr "Compatible process profiles condition" +msgstr "" msgid "" "A boolean expression using the configuration values of an active print " @@ -10258,34 +9952,34 @@ msgstr "" "profile. If this expression evaluates to true, this profile is considered " "compatible with the active print profile." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "" "This determines the print sequence, allowing you to print layer-by-layer or " "object-by-object." msgid "By layer" -msgstr "By layer" +msgstr "" msgid "By object" -msgstr "By object" +msgstr "" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" msgstr "" msgid "Slow printing down for better layer cooling" -msgstr "Slow printing down for better layer cooling" +msgstr "" msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Enable this option to slow printing speed down to ensure that the final " "layer time is not shorter than the layer time threshold in \"Max fan speed " @@ -10293,62 +9987,58 @@ msgstr "" "improve the quality for small details." msgid "Normal printing" -msgstr "Normal printing" +msgstr "" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "This is the default acceleration for both normal printing and travel after " "the first layer." msgid "Default filament profile" -msgstr "Default filament profile" +msgstr "" -msgid "Default filament profile when switch to this machine profile" -msgstr "Default filament profile when switching to this machine profile" +msgid "Default filament profile when switching to this machine profile." +msgstr "" msgid "Default process profile" -msgstr "Default process profile" +msgstr "" -msgid "Default process profile when switch to this machine profile" -msgstr "Default process profile when switching to this machine profile" +msgid "Default process profile when switching to this machine profile." +msgstr "" msgid "Activate air filtration" -msgstr "Activate air filtration" +msgstr "" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" msgid "Fan speed" -msgstr "Fan speed" +msgstr "" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" -"Speed of exhaust fan during printing.This speed will override the speed in " -"filament custom g-code" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "" msgid "No cooling for the first" -msgstr "No cooling for the first" +msgstr "" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" -msgstr "" "Turn off all cooling fans for the first few layers. This can be used to " -"improve bed adhesion." +"improve build plate adhesion." +msgstr "" msgid "Don't support bridges" -msgstr "Don't support bridges" +msgstr "" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "This disables supporting bridges, which decreases the amount of support " "required. Bridges can usually be printed directly without support over a " @@ -10394,20 +10084,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10430,31 +10120,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10467,7 +10151,7 @@ msgid "No filtering" msgstr "" msgid "Max bridge length" -msgstr "Max bridge length" +msgstr "" msgid "" "Max length of bridges that don't need support. Set it to 0 if you want all " @@ -10479,26 +10163,24 @@ msgstr "" "you don't want any bridges to be supported." msgid "End G-code" -msgstr "End G-code" +msgstr "" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Add end G-Code when finishing the entire print." -msgid "Between Object Gcode" -msgstr "Between Object Gcode" +msgid "Between Object G-code" +msgstr "" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Add end G-code when finishing the printing of this filament." msgid "Ensure vertical shell thickness" -msgstr "Ensure vertical shell thickness" +msgstr "" msgid "" "Add solid infill near sloping surfaces to guarantee the vertical shell " @@ -10518,45 +10200,45 @@ msgid "Moderate" msgstr "" msgid "Top surface pattern" -msgstr "Top surface pattern" +msgstr "" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "This is the line pattern for top surface infill." msgid "Concentric" -msgstr "Concentric" +msgstr "" msgid "Rectilinear" -msgstr "Rectilinear" +msgstr "" msgid "Monotonic" -msgstr "Monotonic" +msgstr "" msgid "Monotonic line" -msgstr "Monotonic line" +msgstr "" msgid "Aligned Rectilinear" -msgstr "Aligned Rectilinear" +msgstr "" msgid "Hilbert Curve" -msgstr "Hilbert Curve" +msgstr "" msgid "Archimedean Chords" -msgstr "Archimedean Chords" +msgstr "" msgid "Octagram Spiral" -msgstr "Octagram Spiral" +msgstr "" msgid "Bottom surface pattern" -msgstr "Bottom surface pattern" +msgstr "" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "This is the line pattern of bottom surface infill, not including bridge " "infill." msgid "Internal solid infill pattern" -msgstr "Internal solid infill pattern" +msgstr "" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -10576,7 +10258,7 @@ msgstr "" "printed slower than inner walls for higher quality." msgid "Small perimeters" -msgstr "Small perimeters" +msgstr "" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -10589,15 +10271,14 @@ msgid "Small perimeters threshold" msgstr "" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10611,7 +10292,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10631,7 +10312,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "Print infill first" +msgstr "" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -10665,7 +10346,7 @@ msgid "Clockwise" msgstr "" msgid "Height to rod" -msgstr "Height to rod" +msgstr "" msgid "" "Distance of the nozzle tip to the lower rod. Used for collision avoidance in " @@ -10675,7 +10356,7 @@ msgstr "" "in by-object printing." msgid "Height to lid" -msgstr "Height to lid" +msgstr "" msgid "" "Distance of the nozzle tip to the lid. Used for collision avoidance in by-" @@ -10692,10 +10373,10 @@ msgstr "" "printing." msgid "Nozzle height" -msgstr "Nozzle height" +msgstr "" msgid "The height of nozzle tip." -msgstr "The height of nozzle tip." +msgstr "" msgid "Bed mesh min" msgstr "" @@ -10742,50 +10423,45 @@ msgid "" msgstr "" msgid "Extruder Color" -msgstr "Extruder Color" +msgstr "" -msgid "Only used as a visual help on UI" -msgstr "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." +msgstr "" msgid "Extruder offset" -msgstr "Extruder offset" +msgstr "" msgid "Flow ratio" -msgstr "Flow ratio" +msgstr "" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" -msgstr "" "The material may have volumetric change after switching between molten and " "crystalline states. This setting changes all extrusion flow of this filament " "in G-code proportionally. The recommended value range is between 0.95 and " "1.05. You may be able to tune this value to get a nice flat surface if there " "is slight overflow or underflow." +msgstr "" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" msgid "Enable pressure advance" -msgstr "Enable pressure advance" +msgstr "" msgid "" "Enable pressure advance, auto calibration result will be overwritten once " "enabled." msgstr "" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" msgid "Enable adaptive pressure advance (beta)" @@ -10832,19 +10508,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10861,9 +10536,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10875,11 +10550,12 @@ msgid "" msgstr "" msgid "Keep fan always on" -msgstr "Keep fan always on" +msgstr "" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Enabling this setting means that part cooling fan will never stop entirely " "and will instead run at least at minimum speed to reduce the frequency of " @@ -10892,41 +10568,39 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" -msgstr "Layer time" +msgstr "" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "The part cooling fan will be enabled for layers where the estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " "maximum fan speeds according to layer printing time." msgid "Default color" -msgstr "Default color" +msgstr "" msgid "Default filament color" -msgstr "Default filament color" +msgstr "" msgid "Filament notes" -msgstr "Filament notes" +msgstr "" msgid "You can put your notes regarding the filament here." -msgstr "You can put your notes regarding the filament here." +msgstr "" msgid "Required nozzle HRC" -msgstr "Required nozzle HRC" +msgstr "" msgid "" "Minimum HRC of nozzle required to print the filament. Zero means no checking " @@ -10938,31 +10612,31 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "This setting is the volume of filament that can be melted and extruded per " "second. Printing speed is limited by max volumetric speed, in case of too " "high and unreasonable speed setting. This value cannot be zero." msgid "mm³/s" -msgstr "mm³/s" +msgstr "" msgid "Filament load time" -msgstr "Filament load time" +msgstr "" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" -msgstr "Filament unload time" +msgstr "" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -10971,12 +10645,12 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Filament diameter is used to calculate extrusion variables in G-code, so it " "is important that this is accurate and precise." @@ -11032,7 +10706,7 @@ msgid "Unloading speed" msgstr "" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Speed used for unloading the filament on the wipe tower (does not affect " @@ -11049,13 +10723,10 @@ msgid "Delay after unloading" msgstr "" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " -"original dimensions." -msgstr "" "Time to wait after the filament is unloaded. May help to get reliable tool " "changes with flexible materials that may need more time to shrink to " "original dimensions." +msgstr "" msgid "Number of cooling moves" msgstr "" @@ -11075,7 +10746,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11087,7 +10758,7 @@ msgid "Cooling moves are gradually accelerating beginning at this speed." msgstr "" msgid "Minimal purge on wipe tower" -msgstr "Minimal purge on wipe tower" +msgstr "" msgid "" "After a tool change, the exact position of the newly loaded filament inside " @@ -11118,85 +10789,83 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" msgid "Multi-tool ramming volume" msgstr "" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "" msgid "Multi-tool ramming flow" msgstr "" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" msgid "Density" -msgstr "Density" +msgstr "" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Filament density, for statistical purposes only." msgid "g/cm³" -msgstr "g/cm³" +msgstr "" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Filament material type" msgid "Soluble material" -msgstr "Soluble material" +msgstr "" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" -"Soluble material is commonly used to print support and support interfaces" msgid "Support material" -msgstr "Support material" +msgstr "" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" -"Support material is commonly used to print support and support interfaces." msgid "Softening temperature" -msgstr "Softening temperature" +msgstr "" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "The material softens at this temperature, so when the bed temperature is " "equal to or greater than this, it's highly recommended to open the front " "door and/or remove the upper glass to avoid clogs." msgid "Price" -msgstr "Price" +msgstr "" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Filament price, for statistical purposes only." msgid "money/kg" -msgstr "money/kg" +msgstr "" msgid "Vendor" -msgstr "Vendor" +msgstr "" -msgid "Vendor of filament. For show only" -msgstr "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." +msgstr "" msgid "(Undefined)" -msgstr "(Undefined)" +msgstr "" msgid "Sparse infill direction" msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "This is the angle for sparse infill pattern, which controls the start or " "main direction of lines." @@ -11206,7 +10875,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -11216,55 +10885,55 @@ msgid "Rotate the solid infill direction by 90° for each layer." msgstr "" msgid "Sparse infill density" -msgstr "Sparse infill density" +msgstr "" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" -msgstr "Sparse infill pattern" +msgstr "" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "This is the line pattern for internal sparse infill." msgid "Grid" -msgstr "Grid" +msgstr "" msgid "2D Lattice" msgstr "" msgid "Line" -msgstr "Line" +msgstr "" msgid "Cubic" -msgstr "Cubic" +msgstr "" msgid "Tri-hexagon" -msgstr "Tri-hexagon" +msgstr "" msgid "Gyroid" -msgstr "Gyroid" +msgstr "" msgid "Honeycomb" -msgstr "Honeycomb" +msgstr "" msgid "Adaptive Cubic" -msgstr "Adaptive Cubic" +msgstr "" msgid "3D Honeycomb" -msgstr "3D Honeycomb" +msgstr "" msgid "Support Cubic" -msgstr "Support Cubic" +msgstr "" msgid "Lightning" -msgstr "Lightning" +msgstr "" msgid "Cross Hatch" -msgstr "Cross Hatch" +msgstr "" msgid "Quarter Cubic" msgstr "" @@ -11296,16 +10965,16 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" msgid "0 (no open anchors)" -msgstr "0 (no open anchors)" +msgstr "" msgid "1000 (unlimited)" -msgstr "1000 (unlimited)" +msgstr "" msgid "Maximum length of the infill anchor" msgstr "" @@ -11318,7 +10987,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11326,23 +10995,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "This is the acceleration of top surface infill. Using a lower value may " "improve top surface quality." -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "Acceleration of outer wall: using a lower value can improve quality." msgid "" @@ -11351,14 +11020,12 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " "(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" -"Acceleration of sparse infill. If the value is expressed as a percentage " -"(e.g. 100%), it will be calculated based on the default acceleration." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -11368,41 +11035,41 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "This is the printing acceleration for the first layer. Using limited " "acceleration can improve build plate adhesion." msgid "Enable accel_to_decel" -msgstr "Enable accel_to_decel" +msgstr "" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." +msgstr "" msgid "accel_to_decel" -msgstr "accel_to_decel" +msgstr "" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -msgid "Jerk of outer walls" -msgstr "Jerk of outer walls" - -msgid "Jerk of inner walls" -msgstr "Jerk of inner walls" - -msgid "Jerk for top surface" +msgid "Jerk of outer walls." msgstr "" -msgid "Jerk for infill" +msgid "Jerk of inner walls." msgstr "" -msgid "Jerk for initial layer" +msgid "Jerk for top surface." msgstr "" -msgid "Jerk for travel" +msgid "Jerk for infill." +msgstr "" + +msgid "Jerk for initial layer." +msgstr "" + +msgid "Jerk for travel." msgstr "" msgid "" @@ -11415,25 +11082,25 @@ msgstr "First layer height" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "This is the height of the first layer. Making the first layer height thicker " "can improve build plate adhesion." -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "" "This is the speed for the first layer except for solid infill sections." msgid "Initial layer infill" msgstr "First layer infill" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "This is the speed for solid infill parts of the first layer." msgid "Initial layer travel speed" msgstr "" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "" #, fuzzy @@ -11448,11 +11115,11 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "First layer nozzle temperature" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "Nozzle temperature for printing the first layer with this filament" msgid "Full fan speed at layer" -msgstr "Full fan speed at layer" +msgstr "" msgid "" "Fan speed will be ramped up linearly from zero at layer " @@ -11470,7 +11137,7 @@ msgstr "" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11491,52 +11158,50 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "This setting makes the toolhead randomly jitter while printing walls so that " "the surface has a rough textured look. This setting controls the fuzzy " "position." msgid "Contour" -msgstr "Contour" +msgstr "" msgid "Contour and hole" -msgstr "Contour and hole" +msgstr "" msgid "All walls" -msgstr "All walls" +msgstr "" msgid "Fuzzy skin thickness" -msgstr "Fuzzy skin thickness" +msgstr "" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "The width of jittering: it’s recommended to keep this lower than the outer " "wall line width." msgid "Fuzzy skin point distance" -msgstr "Fuzzy skin point distance" +msgstr "" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" -"The average distance between the random points introduced on each line " -"segment" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11547,7 +11212,7 @@ msgid "" msgstr "" msgid "Classic" -msgstr "Classic" +msgstr "" msgid "Perlin" msgstr "" @@ -11586,10 +11251,10 @@ msgid "" msgstr "" msgid "Filter out tiny gaps" -msgstr "Filter out tiny gaps" +msgstr "" msgid "Layers and Perimeters" -msgstr "Layers and Perimeters" +msgstr "" msgid "" "Don't print gap fill with a length is smaller than the threshold specified " @@ -11599,29 +11264,26 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "This is the speed for gap infill. Gaps usually have irregular line width and " "should be printed more slowly." msgid "Precise Z height" -msgstr "Precise Z height" +msgstr "" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" -"Enable this to get precise z height of object after slicing. It will get the " -"precise object height by fine-tuning the layer heights of the last few " -"layers. Note that this is an experimental parameter." msgid "Arc fitting" -msgstr "Arc fitting" +msgstr "" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11631,28 +11293,28 @@ msgid "" msgstr "" msgid "Add line number" -msgstr "Add line number" - -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" msgstr "" -"Enable this to add line number(Nx) at the beginning of each G-Code line." + +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." +msgstr "" msgid "Scan first layer" -msgstr "Scan first layer" +msgstr "" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Enable this to allow the camera on the printer to check the quality of the " "first layer." msgid "Nozzle type" -msgstr "Nozzle type" +msgstr "" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "The metallic material of the nozzle: This determines the abrasive resistance " "of the nozzle and what kind of filament can be printed." @@ -11661,16 +11323,16 @@ msgid "Undefine" msgstr "Undefined" msgid "Hardened steel" -msgstr "Hardened steel" +msgstr "" msgid "Stainless steel" -msgstr "Stainless steel" +msgstr "" msgid "Brass" -msgstr "Brass" +msgstr "" msgid "Nozzle HRC" -msgstr "Nozzle HRC" +msgstr "" msgid "" "The nozzle's hardness. Zero means no checking for nozzle's hardness during " @@ -11680,13 +11342,13 @@ msgstr "" "slicing." msgid "HRC" -msgstr "HRC" +msgstr "" msgid "Printer structure" -msgstr "Printer structure" +msgstr "" -msgid "The physical arrangement and components of a printing device" -msgstr "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." +msgstr "" msgid "CoreXY" msgstr "" @@ -11701,10 +11363,10 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "Best object position" +msgstr "" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "Best auto arranging position in range [0,1] w.r.t. bed shape." +msgstr "" msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -11716,10 +11378,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" @@ -11743,7 +11405,7 @@ msgstr "" msgid "Time cost" msgstr "" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "" msgid "money/h" @@ -11758,7 +11420,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "Support air filtration" +msgstr "" msgid "" "Enable this if printer support air filtration\n" @@ -11766,10 +11428,10 @@ msgid "" msgstr "" msgid "G-code flavor" -msgstr "G-code flavor" +msgstr "" -msgid "What kind of gcode the printer is compatible with" -msgstr "What kind of G-code the printer is compatible with." +msgid "What kind of G-code the printer is compatible with." +msgstr "" msgid "Klipper" msgstr "" @@ -11777,29 +11439,29 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." msgstr "" msgid "Exclude objects" -msgstr "Exclude objects" +msgstr "" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" msgid "Verbose G-code" @@ -11812,7 +11474,7 @@ msgid "" msgstr "" msgid "Infill combination" -msgstr "Infill combination" +msgstr "" msgid "" "Automatically Combine sparse infill of several layers to print together to " @@ -11825,7 +11487,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11855,6 +11517,10 @@ msgid "" "value to ~10-15% to minimize potential over extrusion and accumulation of " "material resulting in rough top surfaces." msgstr "" +"This allows the infill area to be enlarged slightly to overlap with walls " +"for better bonding. The percentage value is relative to line width of " +"sparse infill. Set this value to ~10-15% to minimize potential over " +"extrusion and accumulation of material resulting in rough top surfaces." msgid "Top/Bottom solid infill/wall overlap" msgstr "" @@ -11865,44 +11531,41 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "This is the speed for internal sparse infill." msgid "Inherits profile" msgstr "" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" -msgstr "Interface shells" +msgstr "" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" -"Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" msgid "Maximum width of a segmented region" -msgstr "Maximum width of a segmented region" +msgstr "" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" "Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" -msgstr "Interlocking depth of a segmented region" +msgstr "" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" @@ -11962,7 +11625,7 @@ msgstr "" "flat surfaces smoother. This setting controls which layers are being ironed." msgid "No ironing" -msgstr "No ironing" +msgstr "" msgid "Top surfaces" msgstr "All top surfaces" @@ -11974,26 +11637,26 @@ msgid "All solid layer" msgstr "All solid layers" msgid "Ironing Pattern" -msgstr "Ironing Pattern" +msgstr "" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "" msgid "Ironing flow" -msgstr "Ironing flow" +msgstr "" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "This is the amount of material to be extruded during ironing. It is relative " "to the flow of normal layer height. Too high a value will result in " "overextrusion on the surface." msgid "Ironing line spacing" -msgstr "Ironing line spacing" +msgstr "" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "This is the distance between the lines used for ironing." msgid "Ironing inset" @@ -12001,13 +11664,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" -msgstr "Ironing speed" +msgstr "" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "This is the print speed for ironing lines." msgid "Ironing angle" @@ -12018,15 +11681,15 @@ msgid "" "uses the default method." msgstr "" -msgid "This gcode part is inserted at every layer change after lift z" -msgstr "This G-code is inserted at every layer change after the z lift." +msgid "This G-code is inserted at every layer change after the Z lift." +msgstr "" msgid "Supports silent mode" msgstr "Silent Mode" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Whether the machine supports silent mode in which machine uses lower " "acceleration to print more quietly" @@ -12035,27 +11698,25 @@ msgid "Emit limits to G-code" msgstr "" msgid "Machine limits" -msgstr "Machine limits" +msgstr "" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" -msgstr "" "This G-code will be used as a code for the pause print. Users can insert " "pause G-code in the G-code viewer." +msgstr "" -msgid "This G-code will be used as a custom code" -msgstr "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." +msgstr "" msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -12069,122 +11730,122 @@ msgid "" msgstr "" msgid "Maximum speed X" -msgstr "Maximum speed X" +msgstr "" msgid "Maximum speed Y" -msgstr "Maximum speed Y" +msgstr "" msgid "Maximum speed Z" -msgstr "Maximum speed Z" +msgstr "" msgid "Maximum speed E" -msgstr "Maximum speed E" +msgstr "" msgid "Maximum X speed" -msgstr "Maximum X speed" +msgstr "" msgid "Maximum Y speed" -msgstr "Maximum Y speed" +msgstr "" msgid "Maximum Z speed" -msgstr "Maximum Z speed" +msgstr "" msgid "Maximum E speed" -msgstr "Maximum E speed" +msgstr "" msgid "Maximum acceleration X" -msgstr "Maximum acceleration X" +msgstr "" msgid "Maximum acceleration Y" -msgstr "Maximum acceleration Y" +msgstr "" msgid "Maximum acceleration Z" -msgstr "Maximum acceleration Z" +msgstr "" msgid "Maximum acceleration E" -msgstr "Maximum acceleration E" +msgstr "" msgid "Maximum acceleration of the X axis" -msgstr "Maximum acceleration of the X axis" +msgstr "" msgid "Maximum acceleration of the Y axis" -msgstr "Maximum acceleration of the Y axis" +msgstr "" msgid "Maximum acceleration of the Z axis" -msgstr "Maximum acceleration of the Z axis" +msgstr "" msgid "Maximum acceleration of the E axis" -msgstr "Maximum acceleration of the E axis" +msgstr "" msgid "Maximum jerk X" -msgstr "Maximum jerk X" +msgstr "" msgid "Maximum jerk Y" -msgstr "Maximum jerk Y" +msgstr "" msgid "Maximum jerk Z" -msgstr "Maximum jerk Z" +msgstr "" msgid "Maximum jerk E" -msgstr "Maximum jerk E" +msgstr "" msgid "Maximum jerk of the X axis" -msgstr "Maximum jerk of the X axis" +msgstr "" msgid "Maximum jerk of the Y axis" -msgstr "Maximum jerk of the Y axis" +msgstr "" msgid "Maximum jerk of the Z axis" -msgstr "Maximum jerk of the Z axis" +msgstr "" msgid "Maximum jerk of the E axis" -msgstr "Maximum jerk of the E axis" +msgstr "" msgid "Minimum speed for extruding" -msgstr "Minimum speed for extruding" +msgstr "" msgid "Minimum speed for extruding (M205 S)" -msgstr "Minimum speed for extruding (M205 S)" +msgstr "" msgid "Minimum travel speed" -msgstr "Minimum travel speed" +msgstr "" msgid "Minimum travel speed (M205 T)" -msgstr "Minimum travel speed (M205 T)" +msgstr "" msgid "Maximum acceleration for extruding" -msgstr "Maximum acceleration for extruding" +msgstr "" msgid "Maximum acceleration for extruding (M204 P)" -msgstr "Maximum acceleration for extruding (M204 P)" +msgstr "" msgid "Maximum acceleration for retracting" -msgstr "Maximum acceleration for retracting" +msgstr "" msgid "Maximum acceleration for retracting (M204 R)" -msgstr "Maximum acceleration for retracting (M204 R)" +msgstr "" msgid "Maximum acceleration for travel" -msgstr "Maximum acceleration for travel" +msgstr "" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "The part cooling fan speed may be increased when auto cooling is enabled. " "This is the maximum speed for the part cooling fan." msgid "Max" -msgstr "Max" +msgstr "" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" -"The highest printable layer height for the extruder: this is used to limit " +"The highest printable layer height for the extruder. This is used to limit " "the maximum layer height when adaptive layer height is enabled." msgid "Extrusion rate smoothing" @@ -12196,23 +11857,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12227,11 +11888,11 @@ msgstr "" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12246,8 +11907,8 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" -msgstr "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." +msgstr "" msgid "" "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " @@ -12258,17 +11919,17 @@ msgid "" msgstr "" msgid "Min" -msgstr "Min" +msgstr "" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "The lowest printable layer height for the extruder. This is used to limit " "the minimum layer height when adaptive layer height is enabled." msgid "Min print speed" -msgstr "Min print speed" +msgstr "" msgid "" "The minimum print speed to which the printer slows down to maintain the " @@ -12288,19 +11949,17 @@ msgid "" msgstr "" msgid "Host Type" -msgstr "Host Type" +msgstr "" msgid "" "Orca Slicer can upload G-code files to a printer host. This field must " "contain the kind of the host." msgstr "" -"Orca Slicer can upload G-code files to a printer host. This field must " -"contain the kind of the host." msgid "Nozzle volume" -msgstr "Nozzle volume" +msgstr "" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Volume of nozzle between the filament cutter and the end of the nozzle" msgid "Cooling tube position" @@ -12338,28 +11997,24 @@ msgstr "" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " -"than unloading." -msgstr "" -"When set to zero, the distance the filament is moved from parking position " -"during load is exactly the same as it was moved back during unload. When " "positive, it is loaded further, if negative, the loading move is shorter " "than unloading." +msgstr "" msgid "Start end points" -msgstr "Start end points" +msgstr "" msgid "The start and end points which is from cutter area to garbage can." msgstr "" "The start and end points which are from the cutter area to the excess chute." msgid "Reduce infill retraction" -msgstr "Reduce infill retraction" +msgstr "" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Don't retract when the travel is entirely in an infill area. That means the " "oozing can't been seen. This can reduce times of retraction for complex " @@ -12371,9 +12026,9 @@ msgid "" msgstr "" msgid "Filename format" -msgstr "Filename format" +msgstr "" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "Users can decide project file names when exporting." msgid "Make overhangs printable" @@ -12396,11 +12051,11 @@ msgstr "" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" msgid "mm²" -msgstr "mm²" +msgstr "" msgid "Detect overhang wall" msgstr "Detect overhang walls" @@ -12421,10 +12076,10 @@ msgid "" "nozzle diameter." msgstr "" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "This is the speed for inner walls." -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "This is the number of walls per layer." msgid "Alternate extra wall" @@ -12432,10 +12087,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12456,74 +12111,70 @@ msgid "Type of the printer" msgstr "" msgid "Printer notes" -msgstr "Printer notes" +msgstr "" msgid "You can put your notes regarding the printer here." -msgstr "You can put your notes regarding the printer here." +msgstr "" msgid "Printer variant" msgstr "" msgid "Raft contact Z distance" -msgstr "Raft contact Z distance" +msgstr "" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "This is the Z gap between an object and a raft. It is ignored for soluble " "interfaces." msgid "Raft expansion" -msgstr "Raft expansion" +msgstr "" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "This expands all raft layers in XY plane." msgid "Initial layer density" msgstr "First layer density" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "This is the density of the first raft or support layer." msgid "Initial layer expansion" msgstr "First layer expansion" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "This expands the first raft or support layer to improve bed adhesion." msgid "Raft layers" -msgstr "Raft layers" +msgstr "" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" -msgstr "" -"Object will be raised by this number of support layers. Use this function to " "avoid warping when printing ABS." +msgstr "" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "The G-code path is generated after simplifying the contour of models to " "avoid too many points and G-code lines. Smaller values mean higher " "resolution and more time required to slice." msgid "Travel distance threshold" -msgstr "Travel distance threshold" +msgstr "" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" -msgstr "" -"Only trigger retraction when the travel distance is longer than this " "threshold." +msgstr "" msgid "Retract amount before wipe" -msgstr "Retract amount before wipe" +msgstr "" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "This is the length of fast retraction before a wipe, relative to retraction " "length." @@ -12531,7 +12182,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Retract on layer change" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "This forces a retraction on layer changes." msgid "Retract on top layer" @@ -12539,11 +12190,11 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" -msgstr "Retraction Length" +msgstr "" msgid "" "Some amount of material in extruder is pulled back to avoid ooze during long " @@ -12552,29 +12203,23 @@ msgstr "" "This is the amount of filament in the extruder that is pulled back to avoid " "oozing during long travel distances. Set to 0 to disable retraction." -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Long retraction when cut (beta)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Experimental feature: Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " -"significantly, it may also raise the risk of nozzle clogs or other printing " -"problems." msgid "Retraction distance when cut" -msgstr "Retraction distance when cut" +msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Experimental feature. Retraction length before cutting off during filament " -"change" msgid "Z-hop height" msgstr "" @@ -12582,51 +12227,44 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Whenever there is a retraction, the nozzle is lifted a little to create " "clearance between the nozzle and the print. This prevents the nozzle from " "hitting the print when traveling more. Using spiral lines to lift z can " "prevent stringing." -msgid "Z hop lower boundary" -msgstr "Z hop lower boundary" +msgid "Z-hop lower boundary" +msgstr "" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" -msgid "Z hop upper boundary" -msgstr "Z hop upper boundary" +msgid "Z-hop upper boundary" +msgstr "" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" msgid "Z-hop type" msgstr "" -msgid "Z hop type" +msgid "Slope" msgstr "" -msgid "Slope" -msgstr "Slope" - msgid "Spiral" -msgstr "Spiral" +msgstr "" msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12649,7 +12287,7 @@ msgid "On surfaces" msgstr "" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" @@ -12666,7 +12304,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "Extra length on restart" +msgstr "" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -12681,21 +12319,21 @@ msgstr "" msgid "Retraction Speed" msgstr "Retraction speed" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "This is the speed for retraction." msgid "De-retraction Speed" msgstr "Deretraction speed" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "The speed for reloading filament into the extruder after a retraction; " "setting this to 0 means that it will be the same speed as the retraction." msgid "Use firmware retraction" -msgstr "Use firmware retraction" +msgstr "" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -12709,26 +12347,26 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" -msgstr "Seam position" +msgstr "" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "This is the starting position for each part of the outer wall." msgid "Nearest" -msgstr "Nearest" +msgstr "" msgid "Aligned" -msgstr "Aligned" +msgstr "" msgid "Back" -msgstr "Back" +msgstr "" msgid "Random" -msgstr "Random" +msgstr "" msgid "Staggered inner seams" msgstr "" @@ -12739,7 +12377,7 @@ msgid "" msgstr "" msgid "Seam gap" -msgstr "Seam gap" +msgstr "" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -12753,20 +12391,17 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "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 "" -"Apply scarf joints only to smooth perimeters where traditional seams do not " -"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "Conditional angle threshold" +msgstr "" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -12793,7 +12428,7 @@ 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 " +"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 " @@ -12809,50 +12444,45 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "Scarf start height" +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 "" -"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." msgid "Scarf around entire wall" -msgstr "Scarf around entire wall" +msgstr "" msgid "The scarf extends to the entire length of the wall." -msgstr "The scarf extends to the entire length of the wall." +msgstr "" msgid "Scarf length" -msgstr "Scarf length" +msgstr "" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Length of the scarf. Setting this parameter to zero effectively disables the " -"scarf." msgid "Scarf steps" -msgstr "Scarf steps" +msgstr "" msgid "Minimum number of segments of each scarf." -msgstr "Minimum number of segments of each scarf." +msgstr "" msgid "Scarf joint for inner walls" -msgstr "Scarf joint for inner walls" +msgstr "" msgid "Use scarf joint for inner walls as well." -msgstr "Use scarf joint for inner walls as well." +msgstr "" msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -12873,7 +12503,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -12881,21 +12511,17 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "Wipe speed" +msgstr "" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" -"The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" msgid "Skirt distance" -msgstr "Skirt distance" +msgstr "" msgid "Distance from skirt to brim or object" msgstr "This is the distance from the skirt to the brim or the object." @@ -12909,9 +12535,9 @@ msgid "" msgstr "" msgid "Skirt height" -msgstr "Skirt height" +msgstr "" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Number of skirt layers: usually only one" msgid "Single loop draft shield" @@ -12929,7 +12555,7 @@ msgstr "" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -12956,9 +12582,9 @@ msgid "Per object" msgstr "" msgid "Skirt loops" -msgstr "Skirt loops" +msgstr "" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "This is the number of loops for the skirt. 0 means the skirt is disabled." @@ -12975,26 +12601,24 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" -msgstr "" "The printing speed in exported G-code will be slowed down when the estimated " "layer time is shorter than this value in order to get better cooling for " "these layers." +msgstr "" msgid "Minimum sparse infill threshold" -msgstr "Minimum sparse infill threshold" +msgstr "" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Sparse infill areas which are smaller than this threshold value are replaced " "by internal solid infill." @@ -13010,7 +12634,7 @@ msgid "" "computed over the nozzle diameter." msgstr "" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "This is the speed for internal solid infill, not including the top or bottom " "surface." @@ -13018,32 +12642,28 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "This enables spiraling, which smooths out the Z moves of the outer contour " "and turns a solid model into a single walled print with solid bottom layers. " "The final generated model has no seam." msgid "Smooth Spiral" -msgstr "Smooth Spiral" +msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" -"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "Max XY Smoothing" +msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" -"Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" msgid "Spiral starting flow ratio" msgstr "" @@ -13073,8 +12693,8 @@ msgid "" "timelapse video when printing completes. If smooth mode is selected, the " "toolhead will move to the excess chute after each layer is printed and then " "take a snapshot. Since the melt filament may leak from the nozzle during the " -"process of taking a snapshot, prime tower is required for smooth mode to " -"wipe nozzle." +"process of taking a snapshot, prime tower is required for smooth mode to wipe " +"nozzle." msgstr "" "If smooth or traditional mode is selected, a timelapse video will be " "generated for each print. After each layer is printed, a snapshot is taken " @@ -13086,16 +12706,16 @@ msgstr "" "wipe the nozzle." msgid "Traditional" -msgstr "Traditional" +msgstr "" msgid "Temperature variation" -msgstr "Temperature variation" +msgstr "" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -13112,23 +12732,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" -msgstr "Start G-code" +msgstr "" -msgid "Start G-code when start the whole printing" -msgstr "G-code added when starting a print" +msgid "Start G-code when starting the entire print." +msgstr "G-code added when starting a print." -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "G-code added when the printer starts using this filament" msgid "Single Extruder Multi Material" msgstr "" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" msgid "Manual Filament Change" @@ -13145,25 +12765,21 @@ msgstr "" msgid "Purge in prime tower" msgstr "" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " -"print the wipe tower. User is responsible for ensuring there is no collision " -"with the print." -msgstr "" "If enabled, the wipe tower will not be printed on layers with no tool " "changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." +msgstr "" msgid "Prime all printing extruders" msgstr "" @@ -13174,35 +12790,30 @@ msgid "" msgstr "" msgid "Slice gap closing radius" -msgstr "Slice gap closing radius" +msgstr "" msgid "" "Cracks smaller than 2x gap closing radius are being filled during the " "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Cracks smaller than 2x gap closing radius are being filled during the " -"triangle mesh slicing. The gap closing operation may reduce the final print " -"resolution, therefore it is advisable to keep the value reasonably low." msgid "Slicing Mode" -msgstr "Slicing Mode" +msgstr "" msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " -"close all holes in the model." msgid "Regular" -msgstr "Regular" +msgstr "" msgid "Even-odd" -msgstr "Even-odd" +msgstr "" msgid "Close holes" -msgstr "Close holes" +msgstr "" msgid "Z offset" msgstr "" @@ -13215,99 +12826,95 @@ msgid "" msgstr "" msgid "Enable support" -msgstr "Enable support" +msgstr "" msgid "Enable support generation." msgstr "This enables support generation." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" msgid "Normal (auto)" -msgstr "Normal(auto)" +msgstr "" msgid "Tree (auto)" -msgstr "Tree(auto)" +msgstr "" msgid "Normal (manual)" -msgstr "Normal(manual)" +msgstr "" msgid "Tree (manual)" -msgstr "Tree(manual)" +msgstr "" msgid "Support/object xy distance" -msgstr "Support/object xy distance" +msgstr "" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "This controls the XY separation between an object and its support." msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" -msgstr "Pattern angle" +msgstr "" msgid "Use this setting to rotate the support pattern on the horizontal plane." msgstr "" -"Use this setting to rotate the support pattern on the horizontal plane." msgid "On build plate only" -msgstr "On build plate only" +msgstr "" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "This setting only generates supports that begin on the build plate." msgid "Support critical regions only" -msgstr "Support critical regions only" +msgstr "" msgid "" "Only create support for critical regions including sharp tail, cantilever, " "etc." msgstr "" -"Only create support for critical regions including sharp tail, cantilever, " -"etc." msgid "Remove small overhangs" -msgstr "Remove small overhangs" +msgstr "" msgid "Remove small overhangs that possibly need no supports." -msgstr "Remove small overhangs that possibly need no supports." +msgstr "" msgid "Top Z distance" -msgstr "Top Z distance" +msgstr "" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "This determines the Z gap between top support interfaces and objects." msgid "Bottom Z distance" -msgstr "Bottom Z distance" +msgstr "" -msgid "The z gap between the bottom support interface and object" -msgstr "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." +msgstr "" msgid "Support/raft base" -msgstr "Support/raft base" +msgstr "" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament to print support bases and rafts. \"Default\" means no specific " "filament for support, and current filament is used" msgid "Avoid interface filament for base" -msgstr "Avoid interface filament for base" +msgstr "" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" -"Avoid using support interface filament to print support base if possible." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -13324,86 +12931,86 @@ msgstr "" "by default." msgid "Support/raft interface" -msgstr "Support/raft interface" +msgstr "" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament to print support interfaces. \"Default\" means no specific filament " "for support interface, and current filament is used" msgid "Top interface layers" -msgstr "Top interface layers" +msgstr "" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "This is the number of top interface layers." msgid "Bottom interface layers" -msgstr "Bottom interface layers" +msgstr "" -msgid "Number of bottom interface layers" -msgstr "Number of bottom interface layers" +msgid "Number of bottom interface layers." +msgstr "" msgid "Same as top" -msgstr "Same as top" +msgstr "" msgid "Top interface spacing" -msgstr "Top interface spacing" +msgstr "" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "This is the spacing of interface lines. 0 means solid interface." msgid "Bottom interface spacing" -msgstr "Bottom interface spacing" +msgstr "" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "This is the spacing of bottom interface lines. 0 means solid interface." -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "This is the speed for support interfaces." msgid "Base pattern" -msgstr "Base pattern" +msgstr "" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "This is the line pattern for support." msgid "Rectilinear grid" -msgstr "Rectilinear grid" +msgstr "" msgid "Hollow" -msgstr "Hollow" +msgstr "" msgid "Interface pattern" -msgstr "Interface pattern" +msgstr "" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "This is the line pattern for support interfaces. The default pattern for non-" "soluble support interfaces is Rectilinear while the default pattern for " "soluble support interfaces is Concentric." msgid "Rectilinear Interlaced" -msgstr "Rectilinear Interlaced" +msgstr "" msgid "Base pattern spacing" -msgstr "Base pattern spacing" +msgstr "" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "This determines the spacing between support lines." msgid "Normal Support expansion" msgstr "Normal support expansion" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" -msgstr "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." +msgstr "" -msgid "Speed of support" +msgid "Speed of support." msgstr "This is the speed for support." msgid "" @@ -13420,34 +13027,31 @@ msgid "Default (Grid/Organic)" msgstr "" msgid "Snug" -msgstr "Snug" +msgstr "" msgid "Organic" msgstr "" msgid "Tree Slim" -msgstr "Tree Slim" +msgstr "" msgid "Tree Strong" -msgstr "Tree Strong" +msgstr "" msgid "Tree Hybrid" -msgstr "Tree Hybrid" +msgstr "" msgid "Independent support layer height" -msgstr "Independent support layer height" +msgstr "" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" -"Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " -"when the prime tower is enabled." msgid "Threshold angle" -msgstr "Threshold angle" +msgstr "" msgid "" "Support will be generated for overhangs whose slope angle is below the " @@ -13466,16 +13070,13 @@ msgid "" msgstr "" msgid "Tree support branch angle" -msgstr "Tree support branch angle" +msgstr "" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " -"printed more horizontally, allowing them to reach farther." -msgstr "" "This setting determines the maximum overhang angle that the branches of tree " "support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." +msgstr "" msgid "Preferred Branch Angle" msgstr "" @@ -13488,12 +13089,11 @@ msgid "" msgstr "" msgid "Tree support branch distance" -msgstr "Tree support branch distance" +msgstr "" msgid "" "This setting determines the distance between neighboring tree support nodes." msgstr "" -"This setting determines the distance between neighboring tree support nodes." msgid "Branch Density" msgstr "" @@ -13508,11 +13108,11 @@ msgid "" msgstr "" msgid "Adaptive layer height" -msgstr "Adaptive layer height" +msgstr "" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" msgid "Auto brim width" @@ -13520,13 +13120,13 @@ msgstr "" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" msgid "Tree support brim width" -msgstr "Tree support brim width" +msgstr "" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" msgid "Tip Diameter" @@ -13537,10 +13137,10 @@ msgid "Branch tip diameter for organic supports." msgstr "" msgid "Tree support branch diameter" -msgstr "Tree support branch diameter" +msgstr "" msgid "This setting determines the initial diameter of support nodes." -msgstr "This setting determines the initial diameter of support nodes." +msgstr "" #. TRN PrintSettings: #lmFIXME msgid "Branch Diameter Angle" @@ -13555,7 +13155,7 @@ msgid "" msgstr "" msgid "Support wall loops" -msgstr "Support wall loops" +msgstr "" msgid "" "This setting specifies the count of support walls in the range of [0,2]. 0 " @@ -13563,14 +13163,12 @@ msgid "" msgstr "" msgid "Tree support with infill" -msgstr "Tree support with infill" +msgstr "" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" -msgstr "" -"This setting specifies whether to add infill inside large hollows of tree " "support." +msgstr "" msgid "Activate temperature control" msgstr "" @@ -13581,7 +13179,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13589,20 +13187,20 @@ msgid "" msgstr "" msgid "Chamber temperature" -msgstr "Chamber temperature" +msgstr "" msgid "" "For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber " "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13611,7 +13209,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Nozzle temperature after the first layer" msgid "Detect thin wall" @@ -13619,19 +13217,17 @@ msgstr "Detect thin walls" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "This detects thin walls which can’t contain two lines and uses a single line " "to print. It may not print as well because it’s not a closed loop." msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" -msgstr "" "This G-code is inserted when filament is changed, including T commands to " "trigger tool change." +msgstr "" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" msgid "" @@ -13639,33 +13235,33 @@ msgid "" "the nozzle diameter." msgstr "" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "This is the speed for solid top surface infill." msgid "Top shell layers" -msgstr "Top shell layers" +msgstr "" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than the top " "shell thickness, the top shell layers will be increased" msgid "Top solid layers" -msgstr "Top solid layers" +msgstr "" msgid "Top shell thickness" -msgstr "Top shell thickness" +msgstr "" msgid "" "The number of top solid layers is increased when slicing if the thickness " "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "The number of top solid layers is increased when slicing if the thickness " "calculated by top shell layers is thinner than this value. This can avoid " @@ -13673,15 +13269,16 @@ msgstr "" "setting is disabled and thickness of top shell is determined simply by the " "number of top shell layers." -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "This is the speed at which traveling is done." msgid "Wipe while retracting" -msgstr "Wipe while retracting" +msgstr "" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "This moves the nozzle along the last extrusion path when retracting to clean " "any leaked material on the nozzle. This can minimize blobs when printing a " @@ -13692,11 +13289,11 @@ msgstr "Wipe distance" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13712,10 +13309,10 @@ msgstr "" "when printing objects." msgid "Purging volumes" -msgstr "Purging volumes" +msgstr "" msgid "Flush multiplier" -msgstr "Flush multiplier" +msgstr "" msgid "" "The actual flushing volumes is equal to the flush multiplier multiplied by " @@ -13725,13 +13322,13 @@ msgstr "" "multiplied by the flushing volumes in the table." msgid "Prime volume" -msgstr "Prime volume" +msgstr "" msgid "The volume of material to prime extruder on tower." msgstr "" "This is the volume of material to prime the extruder with on the tower." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "This is the width of prime towers." msgid "Wipe tower rotation angle" @@ -13765,7 +13362,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -13809,12 +13406,9 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." -msgstr "" -"This object will be used to purge the nozzle after a filament change to save " "filament and decrease the print time. Colors of the objects will be mixed as " "a result. It will not take effect unless the prime tower is enabled." +msgstr "" msgid "Maximal bridging distance" msgstr "" @@ -13841,35 +13435,36 @@ msgid "Idle temperature" msgstr "" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" -msgstr "X-Y hole compensation" +msgstr "" msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" -"Holes in objects will be grown or shrunk in the XY plane by the set value. " +"Holes in objects will expand or contract in the XY plane by the set value. " "Positive values make holes bigger and negative values make holes smaller. " -"This function is used to adjust size slightly when objects have assembly " +"This function is used to adjust sizes slightly when objects have assembly " "issues." msgid "X-Y contour compensation" -msgstr "X-Y contour compensation" +msgstr "" msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" -"The contour of objects will be grown or shrunk in the XY plane by the set " -"value. Positive values make contours bigger, and negative values make " +"Contours of objects will expand or contract in the XY plane by the set " +"value. Positive values make contours bigger and negative values make " "contours smaller. This function is used to adjust sizes slightly when " "objects have assembly issues." @@ -13914,45 +13509,45 @@ msgstr "" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" msgid "Use relative E distances" -msgstr "Use relative E distances" +msgstr "" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "The classic wall generator produces walls with constant extrusion width and " "for very thin areas, gap-fill is used. The Arachne engine produces walls " "with variable extrusion width." msgid "Arachne" -msgstr "Arachne" +msgstr "" msgid "Wall transition length" -msgstr "Wall transition length" +msgstr "" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " "segments. It's expressed as a percentage over nozzle diameter." msgid "Wall transitioning filter margin" -msgstr "Wall transitioning filter margin" +msgstr "" msgid "" "Prevent transitioning back and forth between one extra wall and one less. " @@ -13961,55 +13556,37 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" -"Prevent transitioning back and forth between one extra wall and one less. " -"This margin extends the range of extrusion widths which follow to [Minimum " -"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " -"margin reduces the number of transitions, which reduces the number of " -"extrusion starts/stops and travel time. However, large extrusion width " -"variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" msgid "Wall transitioning threshold angle" -msgstr "Wall transitioning threshold angle" +msgstr "" msgid "" "When to create transitions between even and odd numbers of walls. A wedge " "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" -"When to create transitions between even and odd numbers of walls. A wedge " -"shape with an angle greater than this setting will not have transitions and " -"no walls will be printed in the center to fill the remaining space. Reducing " -"this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" msgid "Wall distribution count" -msgstr "Wall distribution count" +msgstr "" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" -"The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" msgid "Minimum feature size" -msgstr "Minimum feature size" +msgstr "" msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" -"Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the minimum " -"feature size will be widened to the minimum wall width. It's expressed as a " -"percentage over nozzle diameter" msgid "Minimum wall length" msgstr "" @@ -14035,42 +13612,35 @@ msgid "" msgstr "" msgid "Minimum wall width" -msgstr "Minimum wall width" +msgstr "" msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" -"Width of the wall that will replace thin features (according to the Minimum " -"feature size) of the model. If the Minimum wall width is thinner than the " -"thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" msgid "Detect narrow internal solid infill" -msgstr "Detect narrow internal solid infill" +msgstr "" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." -msgstr "" "This option will auto-detect narrow internal solid infill areas. If enabled, " "the concentric pattern will be used for the area to speed up printing. " "Otherwise, the rectilinear pattern will be used by default." +msgstr "" msgid "invalid value " -msgstr "invalid value " +msgstr "" msgid "Invalid value when spiral vase mode is enabled: " -msgstr "Invalid value when spiral vase mode is enabled: " +msgstr "" msgid "too large line width " -msgstr "too large line width " +msgstr "" msgid " not in range " -msgstr " not in range " +msgstr "" msgid "Export 3MF" msgstr "Export 3mf" @@ -14079,19 +13649,19 @@ msgid "Export project as 3MF." msgstr "This exports the project as a 3mf file." msgid "Export slicing data" -msgstr "Export slicing data" +msgstr "" msgid "Export slicing data to a folder." msgstr "Export slicing data to a folder" msgid "Load slicing data" -msgstr "Load slicing data" +msgstr "" -msgid "Load cached slicing data from directory" -msgstr "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." +msgstr "" msgid "Export STL" -msgstr "Export STL" +msgstr "" msgid "Export the objects as single STL." msgstr "" @@ -14099,37 +13669,37 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" -msgstr "Slice" +msgstr "" msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" -msgstr "Slice the plates: 0-all plates, i-plate i, others-invalid" +msgstr "" msgid "Show command help." msgstr "This shows command help." msgid "UpToDate" -msgstr "UpToDate" +msgstr "" msgid "Update the configs values of 3mf to latest." -msgstr "Update the configs values of 3mf to latest." +msgstr "" msgid "downward machines check" msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" -msgstr "Load default filaments" +msgstr "" -msgid "Load first filament as default for those not loaded" -msgstr "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." +msgstr "" msgid "Minimum save" msgstr "" @@ -14138,64 +13708,64 @@ msgid "export 3mf with minimum size." msgstr "" msgid "mtcpp" -msgstr "mtcpp" +msgstr "" msgid "max triangle count per plate for slicing." msgstr "max triangle count per plate for slicing" msgid "mstpp" -msgstr "mstpp" +msgstr "" msgid "max slicing time per plate in seconds." msgstr "max slicing time per plate in seconds" msgid "No check" -msgstr "No check" +msgstr "" -msgid "Do not run any validity checks, such as gcode path conflicts check." -msgstr "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." +msgstr "" msgid "Normative check" -msgstr "Normative check" +msgstr "" msgid "Check the normative items." -msgstr "Check the normative items." +msgstr "" msgid "Output Model Info" -msgstr "Output Model Info" +msgstr "" msgid "Output the model's information." msgstr "This outputs the model’s information." msgid "Export Settings" -msgstr "Export Settings" +msgstr "" msgid "Export settings to a file." msgstr "This exports settings to a file." msgid "Send progress to pipe" -msgstr "Send progress to pipe" +msgstr "" msgid "Send progress to pipe." -msgstr "Send progress to pipe." +msgstr "" msgid "Arrange Options" -msgstr "Arrange Options" +msgstr "" msgid "Arrange options: 0-disable, 1-enable, others-auto" -msgstr "Arrange options: 0-disable, 1-enable, others-auto" +msgstr "" -msgid "Repetions count" -msgstr "Repetition count" +msgid "Repetition count" +msgstr "" -msgid "Repetions count of the whole model" -msgstr "Repetition count of the whole model" +msgid "Repetition count of the whole model." +msgstr "" msgid "Ensure on bed" msgstr "" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" msgid "" @@ -14204,10 +13774,10 @@ msgid "" msgstr "" msgid "Convert Unit" -msgstr "Convert Unit" +msgstr "" -msgid "Convert the units of model" -msgstr "Convert the units of model" +msgid "Convert the units of model." +msgstr "" msgid "Orient Options" msgstr "" @@ -14224,65 +13794,65 @@ msgstr "" msgid "Rotation angle around the Y axis in degrees." msgstr "" -msgid "Scale the model by a float factor" -msgstr "Scale the model by a float factor" +msgid "Scale the model by a float factor." +msgstr "" msgid "Load General Settings" -msgstr "Load General Settings" +msgstr "" -msgid "Load process/machine settings from the specified file" -msgstr "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." +msgstr "" msgid "Load Filament Settings" -msgstr "Load Filament Settings" +msgstr "" -msgid "Load filament settings from the specified file list" -msgstr "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." +msgstr "" msgid "Skip Objects" -msgstr "Skip Objects" +msgstr "" -msgid "Skip some objects in this print" -msgstr "Skip some objects in this print" +msgid "Skip some objects in this print." +msgstr "" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" -msgstr "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." +msgstr "" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "load up-to-date process/machine settings from the specified file when using " "up-to-date" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14295,31 +13865,29 @@ msgid "" msgstr "" msgid "Output directory" -msgstr "Output directory" +msgstr "" msgid "Output directory for the exported files." msgstr "This is the output directory for exported files." msgid "Debug level" -msgstr "Debug level" +msgstr "" msgid "" "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " "5:trace\n" msgstr "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " -"5:trace\n" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "" msgid "Load filament ids" @@ -14328,30 +13896,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14378,13 +13946,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" msgid "" @@ -14468,10 +14036,10 @@ msgstr "" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "" msgid "Total volume" @@ -14641,67 +14209,60 @@ msgid "The current extruder ID. The same as current_extruder." msgstr "" msgid "Error in zip archive" -msgstr "Error in zip archive" +msgstr "" msgid "Generating walls" -msgstr "Generating walls" +msgstr "" msgid "Generating infill regions" -msgstr "Generating infill regions" +msgstr "" msgid "Generating infill toolpath" -msgstr "Generating infill toolpath" +msgstr "" msgid "Detect overhangs for auto-lift" -msgstr "Detect overhangs for auto-lift" +msgstr "" msgid "Checking support necessity" -msgstr "Checking support necessity" +msgstr "" msgid "floating regions" -msgstr "floating regions" +msgstr "" msgid "floating cantilever" -msgstr "floating cantilever" +msgstr "" msgid "large overhangs" -msgstr "large overhangs" +msgstr "" #, c-format, boost-format msgid "" "It seems object %s has %s. Please re-orient the object or enable support " "generation." msgstr "" -"It seems object %s has %s. Please re-orient the object or enable support " -"generation." msgid "Generating support" -msgstr "Generating support" +msgstr "" msgid "Optimizing toolpath" -msgstr "Optimizing toolpath" +msgstr "" msgid "Slicing mesh" -msgstr "Slicing mesh" +msgstr "" msgid "" "No layers were detected. You might want to repair your STL file(s) or check " "their size or thickness and retry.\n" msgstr "" -"No layers were detected. You might want to repair your STL file(s) or check " -"their size or thickness and retry.\n" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" -"An object's XY size compensation will not be used because it is also color-" -"painted.\n" -"XY Size compensation can not be combined with color-painting." msgid "Support: generate contact points" -msgstr "Support: generate contact points" +msgstr "" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." @@ -14718,59 +14279,56 @@ msgstr "The supplied file couldn't be read because it's empty." msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "Unknown file format: input file must have .3mf or .zip.amf extension." -msgid "Canceled" -msgstr "Canceled" - msgid "load_obj: failed to parse" -msgstr "load_obj: failed to parse" +msgstr "" msgid "load mtl in obj: failed to parse" -msgstr "load mtl in obj: failed to parse" +msgstr "" msgid "The file contains polygons with more than 4 vertices." -msgstr "The file contains polygons with more than 4 vertices." +msgstr "" msgid "The file contains polygons with less than 2 vertices." -msgstr "The file contains polygons with less than 2 vertices." +msgstr "" msgid "The file contains invalid vertex index." -msgstr "The file contains invalid vertex index." +msgstr "" msgid "This OBJ file couldn't be read because it's empty." -msgstr "This OBJ file couldn't be read because it's empty." +msgstr "" msgid "Flow Rate Calibration" -msgstr "Flow Rate Calibration" +msgstr "" msgid "Max Volumetric Speed Calibration" -msgstr "Max Volumetric Speed Calibration" +msgstr "" msgid "Manage Result" -msgstr "Manage Result" +msgstr "" msgid "Manual Calibration" -msgstr "Manual Calibration" +msgstr "" msgid "Result can be read by human eyes." -msgstr "Result can be read by human eyes." +msgstr "" msgid "Auto-Calibration" -msgstr "Auto-Calibration" +msgstr "" msgid "We would use Lidar to read the calibration result" -msgstr "We would use Lidar to read the calibration result" +msgstr "" msgid "Prev" -msgstr "Prev" +msgstr "" msgid "Recalibration" -msgstr "Recalibration" +msgstr "" msgid "Calibrate" -msgstr "Calibrate" +msgstr "" msgid "Finish" -msgstr "Finish" +msgstr "" msgid "How to use calibration result?" msgstr "How can I use calibration results?" @@ -14778,32 +14336,29 @@ msgstr "How can I use calibration results?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" -"You could change the Flow Dynamics Calibration Factor in material editing" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" -"The current firmware version of the printer does not support calibration.\n" -"Please upgrade the printer firmware." msgid "Calibration not supported" -msgstr "Calibration not supported" +msgstr "" msgid "Error desc" -msgstr "Error desc" +msgstr "" msgid "Extra info" -msgstr "Extra info" +msgstr "" msgid "Flow Dynamics" -msgstr "Flow Dynamics" +msgstr "" msgid "Flow Rate" -msgstr "Flow Rate" +msgstr "" msgid "Max Volumetric Speed" -msgstr "Max Volumetric Speed" +msgstr "" #, c-format, boost-format msgid "" @@ -14813,66 +14368,60 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" -"Please input valid values:\n" -"Start value: >= %.1f\n" -"End value: <= %.1f\n" -"End value: > Start value\n" -"Value step: >= %.3f)" msgid "The name cannot be empty." -msgstr "The name cannot be empty." +msgstr "" #, c-format, boost-format -msgid "The selected preset: %s is not found." -msgstr "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." +msgstr "" msgid "The name cannot be the same as the system preset name." -msgstr "The name cannot be the same as the system preset name." +msgstr "" msgid "The name is the same as another existing preset name" -msgstr "The name is the same as another existing preset name" +msgstr "" msgid "create new preset failed." -msgstr "create new preset failed." +msgstr "" msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" -"Are you sure to cancel the current calibration and return to the home page?" msgid "No Printer Connected!" -msgstr "No Printer Connected!" +msgstr "" msgid "Printer is not connected yet." -msgstr "Printer is not connected yet." +msgstr "" msgid "Please select filament to calibrate." -msgstr "Please select filament to calibrate." +msgstr "" msgid "The input value size must be 3." -msgstr "The input value size must be 3." +msgstr "" msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "This machine type can only hold 16 historical results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "Connecting to printer..." +msgstr "" msgid "The failed test result has been dropped." -msgstr "The failed test result has been dropped." +msgstr "" -msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." +msgstr "" #, c-format, boost-format msgid "" @@ -14893,41 +14442,33 @@ msgstr "" "result will not be saved." msgid "Internal Error" -msgstr "Internal Error" +msgstr "" msgid "Please select at least one filament for calibration" -msgstr "Please select at least one filament for calibration" +msgstr "" -msgid "Flow rate calibration result has been saved to preset" -msgstr "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." +msgstr "" -msgid "Max volumetric speed calibration result has been saved to preset" -msgstr "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." +msgstr "" msgid "When do you need Flow Dynamics Calibration" -msgstr "When do you need Flow Dynamics Calibration" +msgstr "" msgid "" "We now have added the auto-calibration for different filaments, which is " "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" -"We now have added the auto-calibration for different filaments, which is " -"fully automated and the result will be saved into the printer for future " -"use. You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" -"3. If the max volumetric speed or print temperature is changed in the " -"filament setting." msgid "About this calibration" -msgstr "About this calibration" +msgstr "" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -14950,37 +14491,25 @@ msgid "" msgstr "" msgid "When to use Flow Rate Calibration" -msgstr "When to use Flow Rate Calibration" +msgstr "" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"After using Flow Dynamics Calibration, there might still be some extrusion " -"issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" -"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" -"PLA used in RC planes. These materials expand greatly when heated, and " -"calibration provides a useful reference flow rate." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -14990,12 +14519,6 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" -"Flow Rate Calibration measures the ratio of expected to actual extrusion " -"volumes. The default setting works well in Bambu Lab printers and official " -"filaments as they were pre-calibrated and fine-tuned. For a regular " -"filament, you usually won't need to perform a Flow Rate Calibration unless " -"you still see the listed defects after you have done other calibrations. For " -"more details, please check out the wiki article." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -15032,242 +14555,230 @@ msgstr "" "read and understand the process before doing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "When you need Max Volumetric Speed Calibration" +msgstr "" msgid "Over-extrusion or under extrusion" -msgstr "Over-extrusion or under extrusion" +msgstr "" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "Max Volumetric Speed calibration is recommended when you print with:" +msgstr "" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "material with significant thermal shrinkage/expansion, such as..." +msgstr "" msgid "materials with inaccurate filament diameter" -msgstr "materials with inaccurate filament diameter" +msgstr "" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "We found the best Flow Dynamics Calibration Factor" +msgstr "" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" -"Part of the calibration failed! You may clean the plate and retry. The " -"failed test result would be dropped." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" -"*We recommend you to add brand, materia, type, and even humidity level in " -"the Name" msgid "Failed" -msgstr "Failed" +msgstr "" msgid "Please enter the name you want to save to printer." -msgstr "Please enter the name you want to save to printer." +msgstr "" msgid "The name cannot exceed 40 characters." -msgstr "The name cannot exceed 40 characters." +msgstr "" msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Only one of the results with the same name will be saved. Are you sure you " "want to replace the other results?" msgid "Please find the best line on your plate" -msgstr "Please find the best line on your plate" +msgstr "" msgid "Please find the corner with perfect degree of extrusion" msgstr "Please find the corner with the perfect degree of extrusion" msgid "Input Value" -msgstr "Input Value" +msgstr "" msgid "Save to Filament Preset" -msgstr "Save to Filament Preset" +msgstr "" msgid "Preset" -msgstr "Preset" +msgstr "" msgid "Record Factor" -msgstr "Record Factor" +msgstr "" msgid "We found the best flow ratio for you" -msgstr "We found the best flow ratio for you" +msgstr "" msgid "Flow Ratio" -msgstr "Flow Ratio" +msgstr "" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "Please input a valid value (0.0 < flow ratio < 2.0)" +msgstr "" msgid "Please enter the name of the preset you want to save." -msgstr "Please enter the name of the preset you want to save." +msgstr "" msgid "Calibration1" -msgstr "Calibration1" +msgstr "" msgid "Calibration2" -msgstr "Calibration2" +msgstr "" msgid "Please find the best object on your plate" -msgstr "Please find the best object on your plate" +msgstr "" msgid "Fill in the value above the block with smoothest top surface" -msgstr "Fill in the value above the block with smoothest top surface" +msgstr "" msgid "Skip Calibration2" -msgstr "Skip Calibration2" +msgstr "" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "flow ratio : %s " - -msgid "Please choose a block with smoothest top surface" -msgstr "Please choose a block with smoothest top surface" +msgstr "" msgid "Please choose a block with smoothest top surface." -msgstr "Please choose a block with smoothest top surface." +msgstr "" msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "Please input a valid value (0 <= Max Volumetric Speed <= 60)" +msgstr "" msgid "Calibration Type" -msgstr "Calibration Type" +msgstr "" msgid "Complete Calibration" -msgstr "Complete Calibration" +msgstr "" msgid "Fine Calibration based on flow ratio" -msgstr "Fine Calibration based on flow ratio" +msgstr "" msgid "Title" -msgstr "Title" +msgstr "" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" -"A test model will be printed. Please clear the build plate and place it back " -"to the hot bed before calibration." msgid "Printing Parameters" -msgstr "Printing Parameters" +msgstr "" msgid "Plate Type" -msgstr "Plate Type" +msgstr "" msgid "filament position" -msgstr "filament position" +msgstr "" msgid "External Spool" -msgstr "External Spool" +msgstr "" msgid "Filament For Calibration" -msgstr "Filament For Calibration" +msgstr "" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" -"Tips for calibration material: \n" -"- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" msgid "Pattern" -msgstr "Pattern" +msgstr "" msgid "Method" -msgstr "Method" +msgstr "" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "%s is not compatible with %s" +msgstr "" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "TPU is not supported for Flow Dynamics Auto-Calibration." +msgstr "" msgid "Connecting to printer" -msgstr "Connecting to printer" +msgstr "" msgid "From k Value" -msgstr "From k Value" +msgstr "" msgid "To k Value" -msgstr "To k Value" +msgstr "" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "The nozzle diameter has been synchronized from the printer Settings" +msgstr "" msgid "From Volumetric Speed" -msgstr "From Volumetric Speed" +msgstr "" msgid "To Volumetric Speed" -msgstr "To Volumetric Speed" +msgstr "" msgid "Flow Dynamics Calibration Result" -msgstr "Flow Dynamics Calibration Result" +msgstr "" msgid "New" -msgstr "New" +msgstr "" msgid "No History Result" -msgstr "No History Result" +msgstr "" msgid "Success to get history result" -msgstr "Success to get history result" +msgstr "" msgid "Refreshing the historical Flow Dynamics Calibration records" msgstr "Refreshing the previous Flow Dynamics Calibration records" msgid "Action" -msgstr "Action" +msgstr "" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." msgstr "This machine type can only hold %d historical results per nozzle." msgid "Edit Flow Dynamics Calibration" -msgstr "Edit Flow Dynamics Calibration" +msgstr "" msgid "New Flow Dynamic Calibration" -msgstr "New Flow Dynamic Calibration" +msgstr "" msgid "Ok" -msgstr "Ok" +msgstr "" msgid "The filament must be selected." -msgstr "The filament must be selected." +msgstr "" msgid "Network lookup" -msgstr "Network lookup" +msgstr "" msgid "Address" -msgstr "Address" +msgstr "" msgid "Hostname" -msgstr "Hostname" +msgstr "" msgid "Service name" -msgstr "Service name" +msgstr "" msgid "OctoPrint version" -msgstr "OctoPrint version" +msgstr "" msgid "Searching for devices" -msgstr "Searching for devices" +msgstr "" msgid "Finished" -msgstr "Finished" +msgstr "" msgid "Multiple resolved IP addresses" msgstr "" @@ -15279,34 +14790,34 @@ msgid "" msgstr "" msgid "PA Calibration" -msgstr "PA Calibration" +msgstr "" msgid "DDE" msgstr "" msgid "Bowden" -msgstr "Bowden" +msgstr "" msgid "Extruder type" msgstr "" msgid "PA Tower" -msgstr "PA Tower" +msgstr "" msgid "PA Line" -msgstr "PA Line" +msgstr "" msgid "PA Pattern" -msgstr "PA Pattern" +msgstr "" msgid "Start PA: " -msgstr "Start PA: " +msgstr "" msgid "End PA: " -msgstr "End PA: " +msgstr "" msgid "PA step: " -msgstr "PA step: " +msgstr "" msgid "Accelerations: " msgstr "" @@ -15315,7 +14826,7 @@ msgid "Speeds: " msgstr "" msgid "Print numbers" -msgstr "Print numbers" +msgstr "" msgid "Comma-separated list of printing accelerations" msgstr "" @@ -15329,46 +14840,42 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" -"Please input valid values:\n" -"Start PA: >= 0.0\n" -"End PA: > Start PA\n" -"PA step: >= 0.001)" msgid "Temperature calibration" -msgstr "Temperature calibration" +msgstr "" msgid "PLA" -msgstr "PLA" +msgstr "" msgid "ABS/ASA" -msgstr "ABS/ASA" +msgstr "" msgid "PETG" -msgstr "PETG" +msgstr "" msgid "PCTG" msgstr "" msgid "TPU" -msgstr "TPU" +msgstr "" msgid "PA-CF" -msgstr "PA-CF" +msgstr "" msgid "PET-CF" -msgstr "PET-CF" +msgstr "" msgid "Filament type" -msgstr "Filament type" +msgstr "" msgid "Start temp: " -msgstr "Start temp: " +msgstr "" msgid "End temp: " -msgstr "End temp: " +msgstr "" msgid "Temp step: " -msgstr "Temp step: " +msgstr "" msgid "" "Please input valid values:\n" @@ -15378,16 +14885,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "Max volumetric speed test" +msgstr "" msgid "Start volumetric speed: " -msgstr "Start volumetric speed: " +msgstr "" msgid "End volumetric speed: " -msgstr "End volumetric speed: " +msgstr "" msgid "step: " -msgstr "step: " +msgstr "" msgid "" "Please input valid values:\n" @@ -15397,13 +14904,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "VFA test" +msgstr "" msgid "Start speed: " -msgstr "Start speed: " +msgstr "" msgid "End speed: " -msgstr "End speed: " +msgstr "" msgid "" "Please input valid values:\n" @@ -15413,22 +14920,22 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "Start retraction length: " +msgstr "" msgid "End retraction length: " -msgstr "End retraction length: " +msgstr "" msgid "mm/mm" -msgstr "mm/mm" +msgstr "" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" -msgstr "Upload to Printer Host with the following filename:" +msgstr "" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "Use forward slashes ( / ) as a directory separator if needed." +msgstr "" msgid "Upload to storage" msgstr "" @@ -15438,44 +14945,44 @@ msgstr "" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "Upload filename doesn't end with \"%s\". Do you wish to continue?" +msgstr "" msgid "Upload" -msgstr "Upload" +msgstr "" msgid "Print host upload queue" -msgstr "Print host upload queue" +msgstr "" msgid "ID" -msgstr "ID" +msgstr "" msgid "Progress" -msgstr "Progress" +msgstr "" msgid "Host" -msgstr "Host" +msgstr "" msgctxt "OfFile" msgid "Size" -msgstr "Size" +msgstr "" msgid "Filename" -msgstr "Filename" +msgstr "" msgid "Cancel selected" -msgstr "Cancel selected" +msgstr "" msgid "Show error message" -msgstr "Show error message" +msgstr "" -msgid "Enqueued" -msgstr "Queued" +msgid "Queued" +msgstr "" msgid "Uploading" -msgstr "Uploading" +msgstr "" msgid "Cancelling" -msgstr "Cancelling" +msgstr "" msgid "Error uploading to print host" msgstr "" @@ -15498,127 +15005,127 @@ msgid "Smooth Build Plate (Side B)" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "Unable to perform boolean operation on selected parts" +msgstr "" msgid "Mesh Boolean" -msgstr "Mesh Boolean" +msgstr "" msgid "Union" -msgstr "Union" +msgstr "" msgid "Difference" -msgstr "Difference" +msgstr "" msgid "Intersection" -msgstr "Intersection" +msgstr "" msgid "Source Volume" -msgstr "Source Volume" +msgstr "" msgid "Tool Volume" -msgstr "Tool Volume" +msgstr "" msgid "Subtract from" -msgstr "Subtract from" +msgstr "" msgid "Subtract with" -msgstr "Subtract with" +msgstr "" msgid "selected" -msgstr "selected" +msgstr "" msgid "Part 1" -msgstr "Part 1" +msgstr "" msgid "Part 2" -msgstr "Part 2" +msgstr "" msgid "Delete input" -msgstr "Delete input" +msgstr "" msgid "Network Test" -msgstr "Network Test" +msgstr "" msgid "Start Test Multi-Thread" -msgstr "Start Test Multi-Thread" +msgstr "" msgid "Start Test Single-Thread" -msgstr "Start Test Single-Thread" +msgstr "" msgid "Export Log" -msgstr "Export Log" +msgstr "" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "System Version:" +msgstr "" msgid "DNS Server:" -msgstr "DNS Server:" - -msgid "Test OrcaSlicer(GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test OrcaSlicer (GitHub):" +msgstr "" + +msgid "Test bing.com" +msgstr "" msgid "Test bing.com:" -msgstr "Test bing.com:" +msgstr "" msgid "Log Info" -msgstr "Log Info" +msgstr "" msgid "Select filament preset" -msgstr "Select filament preset" +msgstr "" msgid "Create Filament" -msgstr "Create Filament" +msgstr "" msgid "Create Based on Current Filament" -msgstr "Create Based on Current Filament" +msgstr "" msgid "Copy Current Filament Preset " -msgstr "Copy Current Filament Preset " +msgstr "" msgid "Basic Information" -msgstr "Basic Information" +msgstr "" msgid "Add Filament Preset under this filament" -msgstr "Add Filament Preset under this filament" +msgstr "" msgid "We could create the filament presets for your following printer:" -msgstr "We could create the filament presets for your following printer:" +msgstr "" msgid "Select Vendor" -msgstr "Select Vendor" +msgstr "" msgid "Input Custom Vendor" -msgstr "Input Custom Vendor" +msgstr "" msgid "Can't find vendor I want" -msgstr "Can't find vendor I want" +msgstr "" msgid "Select Type" -msgstr "Select Type" +msgstr "" msgid "Select Filament Preset" -msgstr "Select Filament Preset" +msgstr "" msgid "Serial" -msgstr "Serial" +msgstr "" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "e.g. Basic, Matte, Silk, Marble" +msgstr "" msgid "Filament Preset" -msgstr "Filament Preset" +msgstr "" msgid "Create" -msgstr "Create" +msgstr "" msgid "Vendor is not selected, please reselect vendor." msgstr "Vendor is not selected; please reselect vendor." @@ -15627,12 +15134,11 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "Custom vendor missing; please input custom vendor." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgid "Filament type is not selected, please reselect type." -msgstr "Filament type is not selected, please reselect type." +msgstr "" msgid "Filament serial is not entered, please enter serial." msgstr "Filament serial missing; please input serial." @@ -15645,139 +15151,134 @@ msgstr "" "filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "All inputs in the custom vendor or serial are spaces. Please re-enter." +msgstr "" -msgid "The vendor can not be a number. Please re-enter." -msgstr "The vendor can not be a number; please re-enter." +msgid "The vendor cannot be a number. Please re-enter." +msgstr "The vendor cannot be a number; please re-enter." msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" -"You have not selected a printer or preset yet. Please select at least one." #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue, the preset created will be displayed with its full name. Do " "you want to continue?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "Some existing presets have failed to be created, as follows:\n" +msgstr "" msgid "" "\n" "Do you want to rewrite it?" msgstr "" -"\n" -"Do you want to rewrite it?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" -msgstr "Create Printer/Nozzle" +msgstr "" msgid "Create Printer" -msgstr "Create Printer" +msgstr "" msgid "Create Nozzle for Existing Printer" -msgstr "Create Nozzle for Existing Printer" +msgstr "" msgid "Create from Template" -msgstr "Create from Template" +msgstr "" msgid "Create Based on Current Printer" -msgstr "Create Based on Current Printer" +msgstr "" msgid "Import Preset" -msgstr "Import Preset" +msgstr "" msgid "Create Type" -msgstr "Create Type" +msgstr "" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "The model was not found; please reselect vendor." msgid "Select Model" -msgstr "Select Model" +msgstr "" msgid "Select Printer" -msgstr "Select Printer" +msgstr "" msgid "Input Custom Model" -msgstr "Input Custom Model" +msgstr "" msgid "Can't find my printer model" -msgstr "Can't find my printer model" +msgstr "" msgid "Rectangle" -msgstr "Rectangle" +msgstr "" msgid "Printable Space" -msgstr "Printable Space" +msgstr "" msgid "Hot Bed STL" -msgstr "Hot Bed STL" +msgstr "" msgid "Load stl" -msgstr "Load stl" +msgstr "" msgid "Hot Bed SVG" -msgstr "Hot Bed SVG" +msgstr "" msgid "Load svg" -msgstr "Load svg" +msgstr "" msgid "Max Print Height" -msgstr "Max Print Height" +msgstr "" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "The file exceeds %d MB, please import again." +msgstr "" msgid "Exception in obtaining file size, please import again." -msgstr "Exception in obtaining file size, please import again." +msgstr "" -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Preset path was not found; please reselect vendor." msgid "The printer model was not found, please reselect." -msgstr "The printer model was not found, please reselect." +msgstr "" -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "The nozzle diameter was not found; please reselect." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" -msgstr "Printer Preset" +msgstr "" msgid "Filament Preset Template" -msgstr "Filament Preset Template" +msgstr "" msgid "Deselect All" -msgstr "Deselect All" +msgstr "" msgid "Process Preset Template" -msgstr "Process Preset Template" +msgstr "" msgid "Back Page 1" -msgstr "Back Page 1" +msgstr "" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" -"You have not yet chosen which printer preset to create based on. Please " -"choose the vendor and model of the printer" msgid "" "You have entered an illegal input in the printable area section on the first " @@ -15807,22 +15308,22 @@ msgstr "" "\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "You need to select at least one filament preset." +msgstr "" msgid "You need to select at least one process preset." -msgstr "You need to select at least one process preset." +msgstr "" msgid "Create filament presets failed. As follows:\n" -msgstr "Create filament presets failed. As follows:\n" +msgstr "" msgid "Create process presets failed. As follows:\n" -msgstr "Create process presets failed. As follows:\n" +msgstr "" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Vendor was not found; please reselect." msgid "Current vendor has no models, please reselect." -msgstr "Current vendor has no models, please reselect." +msgstr "" msgid "" "You have not selected the vendor and model or entered the custom vendor and " @@ -15835,16 +15336,13 @@ msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" -"There may be escape characters in the custom printer vendor or model. Please " -"delete and re-enter." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" -"All inputs in the custom printer vendor or model are spaces. Please re-enter." msgid "Please check bed printable shape and origin input." -msgstr "Please check bed printable shape and origin input." +msgstr "" msgid "" "You have not yet selected the printer to replace the nozzle, please choose." @@ -15852,20 +15350,20 @@ msgstr "" "You have not yet selected the printer to replace the nozzle for; please " "choose a printer." -msgid "Create Printer Successful" -msgstr "Create Printer Successful" +msgid "Printer Created Successfully" +msgstr "" -msgid "Create Filament Successful" -msgstr "Filament Created Successfully" +msgid "Filament Created Successfully" +msgstr "" msgid "Printer Created" -msgstr "Printer Created" +msgstr "" msgid "Please go to printer settings to edit your presets" -msgstr "Please go to printer settings to edit your presets" +msgstr "" msgid "Filament Created" -msgstr "Filament Created" +msgstr "" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -15883,12 +15381,12 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" msgid "Printer Setting" -msgstr "Printer Setting" +msgstr "" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -15897,31 +15395,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "Printer presets(.zip)" +msgstr "" msgid "Filament presets(.zip)" -msgstr "Filament presets(.zip)" +msgstr "" msgid "Process presets(.zip)" -msgstr "Process presets(.zip)" +msgstr "" msgid "initialize fail" -msgstr "initialize fail" +msgstr "" msgid "add file fail" -msgstr "add file fail" +msgstr "" msgid "add bundle structure file fail" -msgstr "add bundle structure file fail" +msgstr "" msgid "finalize fail" -msgstr "finalize fail" +msgstr "" msgid "open zip written fail" -msgstr "open zip written fail" +msgstr "" msgid "Export successful" -msgstr "Export successful" +msgstr "" #, c-format, boost-format msgid "" @@ -15936,16 +15434,14 @@ msgstr "" "creation." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"User's filament preset set. \n" -"Can be shared with others." msgid "" "Only display printer names with changes to printer, filament, and process " @@ -15955,57 +15451,47 @@ msgstr "" "are displayed." msgid "Only display the filament names with changes to filament presets." -msgstr "Only display the filament names with changes to filament presets." +msgstr "" msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"Only printer names with user printer presets will be displayed, and each " -"preset you choose will be exported as a zip." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" -"Only the filament names with user filament presets will be displayed, \n" -"and all user filament presets in each filament name you select will be " -"exported as a zip." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" -"Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be " -"exported as a zip." msgid "Please select at least one printer or filament." -msgstr "Please select at least one printer or filament." +msgstr "" msgid "Please select a type you want to export" msgstr "Please select a preset type you want to export" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Failed to create temporary folder, please try Export Configs again." +msgstr "" msgid "Edit Filament" -msgstr "Edit Filament" +msgstr "" msgid "Filament presets under this filament" -msgstr "Filament presets under this filament" +msgstr "" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" -"Note: If the only preset under this filament is deleted, the filament will " -"be deleted after exiting the dialog." -msgid "Presets inherited by other presets can not be deleted" -msgstr "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" +msgstr "" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." @@ -16013,62 +15499,59 @@ msgstr[0] "" msgstr[1] "" msgid "Delete Preset" -msgstr "Delete Preset" +msgstr "" msgid "Are you sure to delete the selected preset?" -msgstr "Are you sure to delete the selected preset?" +msgstr "" msgid "Delete preset" -msgstr "Delete preset" +msgstr "" msgid "+ Add Preset" -msgstr "+ Add Preset" +msgstr "" msgid "Delete Filament" -msgstr "Delete Filament" +msgstr "" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" -"All the filament presets belong to this filament would be deleted. \n" -"If you are using this filament on your printer, please reset the filament " -"information for that slot." msgid "Delete filament" -msgstr "Delete filament" +msgstr "" msgid "Add Preset" -msgstr "Add Preset" +msgstr "" msgid "Add preset for new printer" -msgstr "Add preset for new printer" +msgstr "" msgid "Copy preset from filament" -msgstr "Copy preset from filament" +msgstr "" msgid "The filament choice not find filament preset, please reselect it" -msgstr "The filament choice not find filament preset, please reselect it" +msgstr "" msgid "[Delete Required]" -msgstr "[Delete Required]" +msgstr "" msgid "Edit Preset" -msgstr "Edit Preset" +msgstr "" msgid "For more information, please check out Wiki" msgstr "For more information, please check out our Wiki" msgid "Collapse" -msgstr "Collapse" +msgstr "" msgid "Daily Tips" -msgstr "Daily Tips" +msgstr "" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "nozzle memorized: %.1f %s" +msgstr "" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " @@ -16079,42 +15562,40 @@ msgstr "" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "*Printing %s material with %s may cause nozzle damage" +msgstr "" msgid "Need select printer" -msgstr "Need select printer" +msgstr "" msgid "The start, end or step is not valid value." -msgstr "The start, end or step is not valid value." +msgstr "" msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" -"Unable to calibrate: maybe because the set calibration value range is too " -"large, or the step is too small" #, fuzzy msgid "Physical Printer" msgstr "Printer" msgid "Print Host upload" -msgstr "Print Host upload" +msgstr "" msgid "Test" -msgstr "Test" +msgstr "" msgid "Could not get a valid Printer Host reference" -msgstr "Could not get a valid Printer Host reference" +msgstr "" msgid "Success!" -msgstr "Success!" +msgstr "" msgid "Are you sure to log out?" msgstr "" msgid "Refresh Printers" -msgstr "Refresh Printers" +msgstr "" msgid "View print host webui in Device tab" msgstr "" @@ -16126,106 +15607,98 @@ msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" +msgstr "" msgid "Open CA certificate file" -msgstr "Open CA certificate file" +msgstr "" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" -"On this system, %s uses HTTPS certificates from the system Certificate Store " -"or Keychain." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" -"To use a custom CA file, please import your CA file into Certificate Store / " -"Keychain." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." -msgstr "Connection to printers connected via the print host failed." +msgstr "" #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "Mismatched type of print host: %s" +msgstr "" -msgid "Connection to AstroBox works correctly." -msgstr "Connection to AstroBox is working correctly." +msgid "Connection to AstroBox is working correctly." +msgstr "" msgid "Could not connect to AstroBox" -msgstr "Could not connect to AstroBox" +msgstr "" -msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "Note: AstroBox version 1.1.0 or higher is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Duet works correctly." -msgstr "Connection to Duet is working correctly." +msgid "Connection to Duet is working correctly." +msgstr "" msgid "Could not connect to Duet" -msgstr "Could not connect to Duet" +msgstr "" msgid "Unknown error occurred" -msgstr "Unknown error occurred" +msgstr "" msgid "Wrong password" -msgstr "Wrong password" +msgstr "" msgid "Could not get resources to create a new connection" -msgstr "Could not get resources to create a new connection" +msgstr "" msgid "Upload not enabled on FlashAir card." -msgstr "Upload not enabled on FlashAir card." +msgstr "" -msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "Connection to FlashAir is working correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." +msgstr "" msgid "Could not connect to FlashAir" -msgstr "Could not connect to FlashAir" +msgstr "" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" -"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " -"is required." -msgid "Connection to MKS works correctly." -msgstr "Connection to MKS is working correctly." +msgid "Connection to MKS is working correctly." +msgstr "" msgid "Could not connect to MKS" -msgstr "Could not connect to MKS" +msgstr "" -msgid "Connection to OctoPrint works correctly." -msgstr "Connection to OctoPrint is working correctly." +msgid "Connection to OctoPrint is working correctly." +msgstr "" msgid "Could not connect to OctoPrint" -msgstr "Could not connect to OctoPrint" +msgstr "" -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Note: OctoPrint version 1.1.0 or higher is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "Connection to Prusa SL1 / SL1S is working correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." +msgstr "" msgid "Could not connect to Prusa SLA" -msgstr "Could not connect to Prusa SLA" +msgstr "" -msgid "Connection to PrusaLink works correctly." -msgstr "Connection to PrusaLink is working correctly." +msgid "Connection to PrusaLink is working correctly." +msgstr "" msgid "Could not connect to PrusaLink" -msgstr "Could not connect to PrusaLink" +msgstr "" msgid "Storages found" msgstr "" @@ -16245,28 +15718,26 @@ msgstr "" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "" msgid "Could not connect to Prusa Connect" msgstr "" -msgid "Connection to Repetier works correctly." -msgstr "Connection to Repetier is working correctly." +msgid "Connection to Repetier is working correctly." +msgstr "" msgid "Could not connect to Repetier" -msgstr "Could not connect to Repetier" +msgstr "" -msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "Note: Repetier version 0.90.0 or higher is required." +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "" #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" #, boost-format msgid "" @@ -16274,9 +15745,6 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" -"Parsing of host response failed.\n" -"Message body: \"%1%\"\n" -"Error: \"%2%\"" #, boost-format msgid "" @@ -16284,47 +15752,33 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" -"Enumeration of host printers failed.\n" -"Message body: \"%1%\"\n" -"Error: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" -"It has a small layer height, and results in almost negligible layer lines " -"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. This results in " "much higher print quality but a much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height. This results in almost negligible layer lines and " -"slightly longer print time." +"slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height. This results in slightly visible layer lines but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height. This results in almost invisible layer lines and higher print " @@ -16333,211 +15787,145 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost invisible layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality but " +"shorter print time." msgstr "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height. This results in minimal layer lines and higher print quality but " "longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in minimal layer lines and much higher print quality " "but much longer print time." +msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." -msgstr "" -"It has a normal layer height, and results in average layer lines and print " +"It has a normal layer height. This results in average layer lines and print " "quality. It is suitable for most printing cases." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in less apparent layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost negligible layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and longer print time." +msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height. This results in much more apparent layer lines and much lower print " "quality, but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height. This results in less apparent layer lines and slightly higher print " +"height. This results in less apparent layer lines and slight higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" -"It has a very big layer height, and results in very apparent layer lines, " -"low print quality and shorter printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and shorter print time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height. This results in very apparent layer lines and much lower print " "quality but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height. This results in extremely apparent layer lines and much lower " "print quality but much shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " "smaller layer height. This results in slightly less but still apparent layer " -"lines and slightly higher print quality, but longer print time in some cases." +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height. This results in less but still apparent layer lines and slightly " -"higher print quality, but longer print time in some cases." +"higher print quality but longer print time in some cases." +msgstr "" msgid "Connected to Obico successfully!" msgstr "" @@ -16560,7 +15948,7 @@ msgstr "" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -16575,7 +15963,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -msgid "User cancelled." +msgid "User canceled." msgstr "" msgid "Head diameter" @@ -16606,8 +15994,8 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" @@ -16620,7 +16008,7 @@ msgid "Brim Ears" msgstr "" msgid "Please select single object." -msgstr "Please select single object." +msgstr "" #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -16679,7 +16067,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" #: resources/data/hints.ini: [hint:Reverse on odd] @@ -16695,9 +16083,6 @@ msgid "" "Did you know that you can cut a model at any angle and position with the " "cutting tool?" msgstr "" -"Cut Tool\n" -"Did you know that you can cut a model at any angle and position with the " -"cutting tool?" #: resources/data/hints.ini: [hint:Fix Model] msgid "" @@ -16705,22 +16090,17 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" -"Fix Model\n" -"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " -"problems on the Windows system?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" "Timelapse\n" "Did you know that you can generate a timelapse video during each print?" msgstr "" -"Timelapse\n" -"Did you know that you can generate a timelapse video during each print?" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Auto-Arrange\n" "Did you know that you can auto-arrange all the objects in your project?" @@ -16729,7 +16109,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " @@ -16742,10 +16122,6 @@ msgid "" "sits on the print bed? Select the \"Place on face\" function or press the " "F key." msgstr "" -"Lay on Face\n" -"Did you know that you can quickly orient a model so that one of its faces " -"sits on the print bed? Select the \"Place on face\" function or press the " -"F key." #: resources/data/hints.ini: [hint:Object List] msgid "" @@ -16753,9 +16129,6 @@ msgid "" "Did you know that you can view all objects/parts in a list and change " "settings for each object/part?" msgstr "" -"Object List\n" -"Did you know that you can view all objects/parts in a list and change " -"settings for each object/part?" #: resources/data/hints.ini: [hint:Search Functionality] msgid "" @@ -16777,9 +16150,6 @@ msgid "" "Did you know that you can view all objects/parts on a table and change " "settings for each object/part?" msgstr "" -"Slicing Parameter Table\n" -"Did you know that you can view all objects/parts on a table and change " -"settings for each object/part?" #: resources/data/hints.ini: [hint:Split to Objects/Parts] msgid "" @@ -16787,9 +16157,6 @@ msgid "" "Did you know that you can split a big object into small ones for easy " "colorizing or printing?" msgstr "" -"Split to Objects/Parts\n" -"Did you know that you can split a big object into small ones for easy " -"colorizing or printing?" #: resources/data/hints.ini: [hint:Subtract a Part] msgid "" @@ -16815,10 +16182,6 @@ msgid "" "paint it on your print, to have it in a less visible location? This improves " "the overall look of your model. Check it out!" msgstr "" -"Z seam location\n" -"Did you know that you can customize the location of the Z seam, and even " -"paint it on your print, to have it in a less visible location? This improves " -"the overall look of your model. Check it out!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" @@ -16827,10 +16190,6 @@ msgid "" "prints? Depending on the material, you can improve the overall finish of the " "printed model by doing some fine-tuning." msgstr "" -"Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking " -"prints? Depending on the material, you can improve the overall finish of the " -"printed model by doing some fine-tuning." #: resources/data/hints.ini: [hint:Split your prints into plates] msgid "" @@ -16839,10 +16198,6 @@ msgid "" "individual plates ready to print? This will simplify the process of keeping " "track of all the parts." msgstr "" -"Split your prints into plates\n" -"Did you know that you can split a model that has a lot of parts into " -"individual plates ready to print? This will simplify the process of keeping " -"track of all the parts." #: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer #: Height] @@ -16862,10 +16217,6 @@ msgid "" "makes it easy to place the support material only on the sections of the " "model that actually need it." msgstr "" -"Support painting\n" -"Did you know that you can paint the location of your supports? This feature " -"makes it easy to place the support material only on the sections of the " -"model that actually need it." #: resources/data/hints.ini: [hint:Different types of supports] msgid "" @@ -16894,18 +16245,15 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " -"the printing surface, it's recommended to use a brim?" -msgstr "" -"Brim for better adhesion\n" "Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" +msgstr "" #: resources/data/hints.ini: [hint:Set parameters for multiple objects] msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " @@ -16916,13 +16264,11 @@ msgid "" "Stack objects\n" "Did you know that you can stack objects as a whole one?" msgstr "" -"Stack objects\n" -"Did you know that you can stack objects as a whole one?" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Flush into support/objects/infill\n" @@ -16935,17 +16281,14 @@ msgid "" "Did you know that you can use more wall loops and higher sparse infill " "density to improve the strength of the model?" msgstr "" -"Improve strength\n" -"Did you know that you can use more wall loops and higher sparse infill " -"density to improve the strength of the model?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " @@ -16957,79 +16300,13 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " "probability of warping?" -#~ msgid "" -#~ "We have added an experimental style \"Tree Slim\" that features smaller " -#~ "support volume but weaker strength.\n" -#~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." -#~ msgstr "" -#~ "We have added an experimental style \"Tree Slim\" that features smaller " -#~ "support volume but weaker strength.\n" -#~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." - -#~ msgid "" -#~ "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the " -#~ "following settings: at least 2 interface layers, at least 0.1mm top z " -#~ "distance or using support materials on interface." -#~ msgstr "" -#~ "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the " -#~ "following settings: at least 2 interface layers, at least 0.1mm top z " -#~ "distance or using support materials on interface." - -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "When using support material for the support interface, we recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" - -#~ msgid "This setting specify the count of walls around support" -#~ msgstr "This setting specify the count of walls around support" - -#, c-format, boost-format -#~ msgid "Support: generate toolpath at layer %d" -#~ msgstr "Support: generate toolpath at layer %d" - -#~ msgid "Support: detect overhangs" -#~ msgstr "Support: detect overhangs" - -#~ msgid "Support: propagate branches" -#~ msgstr "Support: propagate branches" - -#~ msgid "Support: draw polygons" -#~ msgstr "Support: draw polygons" - -#~ msgid "Support: generate toolpath" -#~ msgstr "Support: generate toolpath" - -#, c-format, boost-format -#~ msgid "Support: generate polygons at layer %d" -#~ msgstr "Support: generate polygons at layer %d" - -#, c-format, boost-format -#~ msgid "Support: fix holes at layer %d" -#~ msgstr "Support: fix holes at layer %d" - -#, c-format, boost-format -#~ msgid "Support: propagate branches at layer %d" -#~ msgstr "Support: propagate branches at layer %d" - -#~ msgid "Current Cabin humidity" -#~ msgstr "Current Cabin humidity" - -#~ msgid "Stopped." -#~ msgstr "Stopped." - #, c-format, boost-format #~ msgid "Connect failed [%d]!" #~ msgstr "Connection failed [%d]!" @@ -17041,28 +16318,12 @@ msgstr "" #~ msgid "Initialize failed (%s)!" #~ msgstr "Initialization failed (%s)!" -#~ msgid "LAN Connection Failed (Sending print file)" -#~ msgstr "LAN Connection Failed (Sending print file)" - #~ msgid "" #~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN." #~ msgstr "" #~ "Step 1, please confirm that Orca Slicer and your printer are on the same " #~ "LAN." -#~ msgid "" -#~ "Step 2, if the IP and Access Code below are different from the actual " -#~ "values on your printer, please correct them." -#~ msgstr "" -#~ "Step 2, if the IP and Access Code below are different from the actual " -#~ "values on your printer, please correct them." - -#~ msgid "Step 3: Ping the IP address to check for packet loss and latency." -#~ msgstr "Step 3: Ping the IP address to check for packet loss and latency." - -#~ msgid "IP and Access Code Verified! You may close the window" -#~ msgstr "IP and Access Code Verified! You may close the window" - #~ msgid "Force cooling for overhang and bridge" #~ msgstr "Force cooling for overhangs and bridges" @@ -17085,9 +16346,6 @@ msgstr "" #~ "walls which have a large overhang degree. Forcing cooling for overhangs " #~ "and bridges can achieve better quality for these parts." -#~ msgid "Cooling overhang threshold" -#~ msgstr "Cooling overhang threshold" - #, c-format #~ msgid "" #~ "Force cooling fan to be specific speed when overhang degree of printed " @@ -17100,28 +16358,6 @@ msgstr "" #~ "indicates how much width of the line without support from lower layer. " #~ "0% means forcing cooling for all outer wall no matter the overhang degree." -#~ msgid "Thick bridges" -#~ msgstr "Thick bridges" - -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "Normal(auto) and Tree(auto) are used to generate support automatically. " -#~ "If normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" - -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Scale" - -#~ msgid "Cool plate" -#~ msgstr "Cool plate" - -#~ msgid "Z hop when retract" -#~ msgstr "Z hop when retracting" - #~ msgid "" #~ "While printing by Object, the extruder may collide skirt.\n" #~ "Thus, reset the skirt layer to 1 to avoid that." @@ -17130,38 +16366,20 @@ msgstr "" #~ "Thus, reset the skirt layer to 1 to avoid collisions." #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material extruded for bridges to avoid sagging." -#~ msgid "" -#~ "This factor affects the amount of material for top solid infill. You can " -#~ "decrease it slightly to have smooth surface finish" -#~ msgstr "" -#~ "This factor affects the amount of material for top solid infill. You can " -#~ "decrease it slightly to have smooth surface finish" - #~ msgid "Speed of bridge and completely overhang wall" #~ msgstr "This is the speed for bridges and 100% overhang walls." -#~ msgid "Time to load new filament when switch filament. For statistics only" -#~ msgstr "" -#~ "Time to load new filament when switching filament, for statistical " -#~ "purposes only." - -#~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" -#~ msgstr "" -#~ "Time to unload old filament when switching filament, for statistical " -#~ "purposes only." - #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -17169,34 +16387,11 @@ msgstr "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " #~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials, the actual chamber " #~ "temperature should not be high to avoid clogs, so 0 (turned off) is " #~ "highly recommended." -#~ msgid "" -#~ "Different nozzle diameters and different filament diameters is not " -#~ "allowed when prime tower is enabled." -#~ msgstr "" -#~ "Different nozzle diameters and different filament diameters is not " -#~ "allowed when prime tower is enabled." - -#~ msgid "" -#~ "Ooze prevention is currently not supported with the prime tower enabled." -#~ msgstr "" -#~ "Ooze prevention is currently not supported with the prime tower enabled." - -#~ msgid "" -#~ "Interlocking depth of a segmented region. Zero disables this feature." -#~ msgstr "" -#~ "Interlocking depth of a segmented region. Zero disables this feature." - -#~ msgid "Please input a valid value (K in 0~0.3)" -#~ msgstr "Please input a valid value (K in 0~0.3)" - -#~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" -#~ msgstr "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" - #~ msgid "Printer local connection failed, please try again." #~ msgstr "Printer local connection failed; please try again." @@ -17239,35 +16434,9 @@ msgstr "" #~ "may cause the result not exactly the same in each calibration. We are " #~ "still investigating the root cause to do improvements with new updates." -#~ msgid "" -#~ "Only one of the results with the same name will be saved. Are you sure " -#~ "you want to overrides the other results?" -#~ msgstr "" -#~ "Only one of the results with the same name will be saved. Are you sure " -#~ "you want to replace the other results?" - -#, c-format, boost-format -#~ msgid "" -#~ "There is already a historical calibration result with the same name: %s. " -#~ "Only one of the results with the same name is saved. Are you sure you " -#~ "want to overrides the historical result?" -#~ msgstr "" -#~ "There is already a previous calibration result with the same name: %s. " -#~ "Only one of the results with the same name is saved. Are you sure you " -#~ "want to replace the previous result?" - #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Please find the corner with the perfect degree of extrusion" -#~ msgid "V" -#~ msgstr "V" - -#~ msgid "Export &Configs" -#~ msgstr "Export &Configs" - -#~ msgid "Infill direction" -#~ msgstr "Infill direction" - #~ msgid "" #~ "Enable this to get a G-code file which has G2 and G3 moves. And the " #~ "fitting tolerance is same with resolution" @@ -17275,48 +16444,9 @@ msgstr "" #~ "Enable this to get a G-code file with G2 and G3 moves. The fitting " #~ "tolerance is the same as the resolution." -#~ msgid "" -#~ "Infill area is enlarged slightly to overlap with wall for better bonding. " -#~ "The percentage value is relative to line width of sparse infill" -#~ msgstr "" -#~ "This allows the infill area to be enlarged slightly to overlap with walls " -#~ "for better bonding. The percentage value is relative to line width of " -#~ "sparse infill." - #~ msgid "Unload Filament" #~ msgstr "Unload" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" to automatically " -#~ "load or unload filament." - -#~ msgid "MC" -#~ msgstr "MC" - -#~ msgid "MainBoard" -#~ msgstr "MainBoard" - -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "active" -#~ msgstr "active" - -#~ msgid "Jump to layer" -#~ msgstr "Jump to layer" - -#~ msgid "Cabin humidity" -#~ msgstr "Cabin humidity" - #~ msgid "" #~ "Green means that AMS humidity is normal, orange represent humidity is " #~ "high, red represent humidity is too high.(Hygrometer: lower the better.)" @@ -17325,9 +16455,6 @@ msgstr "" #~ "high, and red means that humidity is too high. (Hygrometer: the lower, " #~ "the better.)" -#~ msgid "Desiccant status" -#~ msgstr "Desiccant status" - #~ msgid "" #~ "A desiccant status lower than two bars indicates that desiccant may be " #~ "inactive. Please change the desiccant.(The bars: higher the better.)" @@ -17335,24 +16462,6 @@ msgstr "" #~ "A desiccant status lower than two bars indicates that desiccant may be " #~ "inactive. Please change the desiccant. (The higher, the better.)" -#~ msgid "" -#~ "Note: When the lid is open or the desiccant pack is changed, it can take " -#~ "hours or a night to absorb the moisture. Low temperatures also slow down " -#~ "the process. During this time, the indicator may not represent the " -#~ "chamber accurately." -#~ msgstr "" -#~ "Note: When the lid is open or the desiccant pack is changed, it can take " -#~ "hours or a night to absorb the moisture. Low temperatures also slow down " -#~ "the process. During this time, the indicator may not represent the " -#~ "chamber accurately." - -#~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " -#~ "automatically read any information until printing is completed." -#~ msgstr "" -#~ "Note: if new filament is inserted during printing, the AMS will not " -#~ "automatically read any information until printing has finished." - #, boost-format #~ msgid "Succeed to export G-code to %1%" #~ msgstr "Success! G-code exported to %1%" @@ -17364,7 +16473,7 @@ msgstr "" #~ msgstr "Initialization failed (No Camera Device)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Printer is busy downloading; please wait for the download to finish." @@ -17374,22 +16483,10 @@ msgstr "" #~ msgid "Initialize failed (Missing LAN ip of printer)!" #~ msgstr "Initialization failed (Missing LAN IP of printer)!" -#, c-format, boost-format -#~ msgid "Stopped [%d]!" -#~ msgstr "Stopped [%d]!" - #, c-format, boost-format #~ msgid "Load failed [%d]!" #~ msgstr "Loading failed [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "No files [%d]" - -#, c-format, boost-format -#~ msgid "Load failed [%d]" -#~ msgstr "Load failed [%d]" - #~ msgid "Failed to fetching model informations from printer." #~ msgstr "Failed to fetch model information from printer." @@ -17398,116 +16495,42 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "presets?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "presets?" -#~ 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 " - -#~ msgid "The Config can not be loaded." -#~ msgstr "The Config cannot be loaded." - -#~ msgid "Movement:" -#~ msgstr "Movement:" - -#~ msgid "Movement" -#~ msgstr "Movement" - -#~ msgid "Auto Segment" -#~ msgstr "Auto Segment" - -#~ msgid "Depth ratio" -#~ msgstr "Depth ratio" - -#~ msgid "Prizm" -#~ msgstr "Prizm" - -#~ msgid "connector is out of cut contour" -#~ msgstr "connector is out of cut contour" - -#~ msgid "connectors are out of cut contour" -#~ msgstr "connectors are out of cut contour" - -#~ msgid "connector is out of object" -#~ msgstr "connector is out of object" - #~ msgid "connectors is out of object" #~ msgstr "Connectors must be on object surface." #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected to keep after cut" -#~ msgid "Edit Text" -#~ msgstr "Edit Text" - #~ msgid "Error! Unable to create thread!" #~ msgstr "Error. Unable to create thread." -#~ msgid "Exception" -#~ msgstr "Exception" - -#~ msgid "Choose SLA archive:" -#~ msgstr "Choose SLA archive:" - -#~ msgid "Import file" -#~ msgstr "Import file" - -#~ msgid "Import model and profile" -#~ msgstr "Import model and profile" - -#~ msgid "Import profile only" -#~ msgstr "Import profile only" - -#~ msgid "Import model only" -#~ msgstr "Import model only" - -#~ msgid "Accurate" -#~ msgstr "Accurate" - -#~ msgid "Balanced" -#~ msgstr "Balanced" - -#~ msgid "Quick" -#~ msgstr "Quick" - #~ msgid "" #~ "Discribe how long the nozzle will move along the last path when retracting" #~ msgstr "" #~ "This describes how long the nozzle will move along the last path while " #~ "retracting." -#~ msgid "Filling bed " -#~ msgstr "Filling bed" - -#, boost-format -#~ msgid "%1% infill pattern doesn't support 100%% density." -#~ msgstr "%1% infill pattern doesn't support 100%% density." - #~ msgid "" #~ "Switch to rectilinear pattern?\n" #~ "Yes - switch to rectilinear pattern automaticlly\n" @@ -17517,56 +16540,21 @@ msgstr "" #~ "Yes - Switch to rectilinear pattern automatically\n" #~ "No - Reset density to default non 100% value automatically" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." -#~ msgstr "" -#~ "Please heat the nozzle to above 170 degrees before loading filament." - #, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" #~ msgstr "" #~ "This is the density of internal sparse infill. 100% means that the object " #~ "will be solid throughout." -#~ msgid "Tree support wall loops" -#~ msgstr "Tree support wall loops" - #~ msgid "This setting specify the count of walls around tree support" #~ msgstr "This setting specifies the wall count around tree support." -#, c-format, boost-format -#~ msgid " doesn't work at 100%% density " -#~ msgstr " doesn't work at 100%% density " - -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - -#~ msgid "Tool-Lay on Face" -#~ msgstr "Tool-Lay on Face" - -#~ msgid "Export as STL" -#~ msgstr "Export as STL" - -#~ msgid "Check cloud service status" -#~ msgstr "Check cloud service status" - -#~ msgid "Please input a valid value (K in 0~0.5)" -#~ msgstr "Please input a valid value (K in 0~0.5)" - -#~ msgid "Please input a valid value (K in 0~0.5, N in 0.6~2.0)" -#~ msgstr "Please input a valid value (K in 0~0.5, N in 0.6~2.0)" - #~ msgid "Export all objects as STL" #~ msgstr "Export All Objects as STL" #~ msgid "The 3mf is not compatible, load geometry data only!" #~ msgstr "The 3mf is not compatible, loading geometry data only!" -#~ msgid "Incompatible 3mf" -#~ msgstr "Incompatible 3mf" - -#~ msgid "Add/Remove printers" -#~ msgstr "Add/Remove printers" - #, c-format, boost-format #~ msgid "%s is not supported by AMS." #~ msgstr "%s is not supported by the AMS." @@ -17574,52 +16562,12 @@ msgstr "" #~ msgid "Don't remind me of this version again" #~ msgstr "Don't remind me about this version again." -#~ msgid "Error: IP or Access Code are not correct" -#~ msgstr "Error: IP or Access Code are not correct" - -#~ msgid "Order of inner wall/outer wall/infil" -#~ msgstr "Order of inner wall/outer wall/infill" - #~ msgid "Print sequence of inner wall, outer wall and infill. " #~ msgstr "This is the print sequence of inner walls, outer walls, and infill." -#~ msgid "inner/outer/infill" -#~ msgstr "inner/outer/infill" - -#~ msgid "outer/inner/infill" -#~ msgstr "outer/inner/infill" - -#~ msgid "infill/inner/outer" -#~ msgstr "infill/inner/outer" - -#~ msgid "infill/outer/inner" -#~ msgstr "infill/outer/inner" - -#~ msgid "inner-outer-inner/infill" -#~ msgstr "inner-outer-inner/infill" - -#~ msgid "Embeded" -#~ msgstr "Embedded" - -#~ msgid "Online Models" -#~ msgstr "Online Models" - -#~ msgid "Show online staff-picked models on the home page" -#~ msgstr "Show online staff-picked models on the home page" - #~ msgid "The minimum printing speed when slow down for cooling" #~ msgstr "The minimum printing speed when slowing down for cooling." -#~ msgid "" -#~ "The bed temperature exceeds filament's vitrification temperature. Please " -#~ "open the front door of printer before printing to avoid nozzle clog." -#~ msgstr "" -#~ "The bed temperature exceeds filament's vitrification temperature. Please " -#~ "open the front door of printer before printing to avoid nozzle clogs." - -#~ msgid "Temperature of vitrificaiton" -#~ msgstr "Temperature of vitrification" - #~ msgid "" #~ "Material becomes soft at this temperature. Thus the heatbed cannot be " #~ "hotter than this tempature" @@ -17627,9 +16575,6 @@ msgstr "" #~ "Material becomes soft at this temperature. Thus, the heat bed cannot be " #~ "hotter than this temperature." -#~ msgid "Enable this option if machine has auxiliary part cooling fan" -#~ msgstr "Enable this option if the machine has an auxiliary part cooling fan" - #~ msgid "" #~ "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " #~ "during printing except the first several layers which is defined by no " @@ -17639,29 +16584,14 @@ msgstr "" #~ "run at this speed during printing except for during the first several " #~ "layers which may be set to have no part cooling." -#~ msgid "Empty layers around bottom are replaced by nearest normal layers." -#~ msgstr "Empty layers around bottom are replaced by nearest normal layers." - -#~ msgid "The model has too many empty layers." -#~ msgstr "The model has too many empty layers." - -#~ msgid "Cali" -#~ msgstr "Cali" - -#~ msgid "Calibration of extrusion" -#~ msgstr "Calibration of extrusion" - -#~ msgid "Push new filament into the extruder" -#~ msgstr "Push new filament into the extruder" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "The bed temperature of other layers is lower than the bed temperature of " -#~ "the first layer by more than %d degrees centigrade.\n" +#~ "the first layer by more than %d degrees Celsius.\n" #~ "This may cause models to break free from the build plate during printing." #~ msgid "" @@ -17677,44 +16607,14 @@ msgstr "" #~ "Please keep the printer open during the printing process to ensure air " #~ "circulation or reduce the temperature of the hot bed." -#~ msgid "Total Time Estimation" -#~ msgstr "Total Time Estimation" - -#~ msgid "Resonance frequency identification" -#~ msgstr "Resonance frequency identification" - -#~ msgid "Immediately score" -#~ msgstr "Immediately score" - -#~ msgid "Please give a score for your favorite Bambu Market model." -#~ msgstr "Please give a score for your favorite Bambu Market model." - -#~ msgid "Score" -#~ msgstr "Score" - -#~ msgid "Bambu High Temperature Plate" -#~ msgstr "Bambu High Temperature Plate" - -#~ msgid "Can't connect to the printer" -#~ msgstr "Can't connect to the printer" - -#~ msgid "Recommended temperature range" -#~ msgstr "Recommended temperature range" - -#~ msgid "High Temp Plate" -#~ msgstr "High Temp Plate" - #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "This is the bed temperature when the high temperature plate is installed. " #~ "A value of 0 means the filament does not support printing on the High " #~ "Temp Plate." -#~ msgid "Internal bridge support thickness" -#~ msgstr "Internal bridge support thickness" - #~ msgid "" #~ "Style and shape of the support. For normal support, projecting the " #~ "supports into a regular grid will create more stable supports (default), " @@ -17730,9 +16630,6 @@ msgstr "" #~ "save a lot of material (default), while hybrid style will create similar " #~ "structure to normal support under large flat overhangs." -#~ msgid "Bed temperature difference" -#~ msgstr "Bed temperature difference" - #~ msgid "" #~ "Do not recommend bed temperature of other layer to be lower than initial " #~ "layer for more than this threshold. Too low bed temperature of other " @@ -17741,6 +16638,3 @@ msgstr "" #~ "It is not recommend for bed temperature of other layers to be lower than " #~ "the first layer by more than this threshold. Too low bed temperature of " #~ "other layer may cause the model to break free from the build plate." - -#~ msgid "Orient the model" -#~ msgstr "Orient the model" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 7f33b41404..321cf83cae 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Pintar Soportes" msgid "Alt + Mouse wheel" @@ -110,7 +110,7 @@ msgstr "Seleccionar faceta como base" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "El recuento de filamentos supera el número máximo que admite la herramienta " @@ -598,10 +598,10 @@ msgstr "Mostrar estructura de alambre" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "No se puede aplicar en la vista previa del proceso." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operación ya cancelada. Por favor, espere unos segundos." msgid "Face recognition" @@ -798,7 +798,7 @@ msgid "Change Text Type" msgstr "Cambiar tipo de texto" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Renombrar estilo(%1%) para texto en relieve" msgid "Name can't be empty." @@ -1020,8 +1020,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "No se puede cargar exactamente la misma fuente(\"%1%\"). La aplicación " "seleccionó una similar (\"%2%\"). Tiene que especificar la fuente para " @@ -1152,7 +1152,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "La forma está marcada como invisible (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Relleno de forma (%1%) contiene no soportado: %2%." @@ -1193,7 +1193,7 @@ msgid "" "Do NOT save local path to 3MF file.\n" "Also disables 'reload from disk' option." msgstr "" -"NO guarda la ruta local al archivo en el archivo 3MF. \n" +"NO guarda la ruta local al archivo en el archivo 3MF.\n" "También desactiva la opción 'recargar desde disco'." #. TRN: An menu option to convert the SVG into an unmodifiable model part. @@ -1245,8 +1245,7 @@ msgstr "Reiniciar rotación" msgid "Lock/unlock rotation angle when dragging above the surface." msgstr "" "Bloquear/desbloquear el ángulo de rotación al arrastrar por encima de la " -"superficie.Bloquear/desbloquear el ángulo de rotación al arrastrar por " -"encima de la superficie." +"superficie." msgid "Mirror vertically" msgstr "Simetria vertical" @@ -1331,7 +1330,7 @@ msgid "Measure" msgstr "Medir" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Por favor, confirma que el ratio de explosión = 1, por favor seleccione al " "menos un objeto" @@ -1391,14 +1390,14 @@ msgstr "" "Característica 1 se ha reiniciado.\n" "característica 2 ha sido característica 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Advertencia: por favor selecciona la característica del Plano." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "" "Advertencia: por favor selecciona la característica del Punto o Círculo" -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Advertencia: por favor selecciona dos malla distintas" msgid "Copy to clipboard" @@ -1422,7 +1421,7 @@ msgstr "Paralelo" msgid "Center coincidence" msgstr "Centrar coincidencía" -msgid "Featue 1" +msgid "Feature 1" msgstr "Característica 1" msgid "Reverse rotation" @@ -1480,16 +1479,12 @@ msgstr "" "algunos valores." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer se cerrará por falta de memoria. Le agradeceremos que comunique " "el suceso a nuestro equipo." -# msgid "OrcaSlicer will terminate because of running out of memory.It may be -# a bug. It will be appreciated if you report the issue to our team." -# msgstr "OrcaSlicer se cerrará porque se está quedando sin memoria. Le -# agradeceremos que informe de ello a nuestro equipo." msgid "Fatal error" msgstr "Error fatal" @@ -1500,11 +1495,6 @@ msgstr "" "OrcaSlicer se cerrará debido a un error de traducción. Le agradeceremos que " "nos informe del escenario específico en el que se ha producido este problema." -# msgid "OrcaSlicer will terminate because of a localization error. It will be -# appreciated if you report the specific scenario this issue happened." -# msgstr "OrcaSlicer terminará debido a un error de localización. Le -# agradeceríamos que nos informara del escenario específico en el que se ha -# producido este problema" msgid "Critical error" msgstr "Error crítico" @@ -1629,7 +1619,7 @@ msgstr "Abrir proyecto" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "La versión de Orca Slicer es una versión demasiado antigua y necesita ser " "actualizada a la última versión antes de poder utilizarla con normalidad" @@ -1842,7 +1832,7 @@ msgstr "Test de hilos de Orca \" String Hell\"" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1850,7 +1840,7 @@ msgstr "" "Este modelo contiene texto en relieve en la superficie superior. Para " "obtener resultados óptimos, es aconsejable establecer el \"Umbral de " "perímetro (min_width_top_surface)\" a 0 para que \"Sólo un perímetro en las " -"superficies superiores\" funcione mejor. \n" +"superficies superiores\" funcione mejor.\n" "Sí - Cambiar estos ajustes automáticamente \n" "No - No cambiar estos ajustes" @@ -1939,16 +1929,16 @@ msgstr "Purgar en los soportes de objetos" msgid "Edit in Parameter Table" msgstr "Editar en la Tabla de Parámetros" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Convertir de pulgadas" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Restaurar a pulgadas" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Convertir de metros" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Restaurar a metros" msgid "Assemble" @@ -2210,7 +2200,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2227,7 +2217,7 @@ msgstr "Borrar todos los conectores" msgid "Deleting the last solid part is not allowed." msgstr "No se permite borrar la última parte sólida." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "El objeto de destino sólo contiene una pieza y no se puede dividir." msgid "Assembly" @@ -2270,14 +2260,14 @@ msgid "Selection conflicts" msgstr "Conflictos en la selección" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Si el primer elemento seleccionado es un objeto, el segundo también debería " "serlo." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Si el primer elemento seleccionado es una pieza, el segundo debe ser una " "pieza en el mismo objeto." @@ -2341,7 +2331,7 @@ msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" "una celda sólo puede copiarse en una o varias celdas de la misma columna" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "no se admite la copia de múltiples celdas" msgid "Outside" @@ -2605,8 +2595,8 @@ msgid "Edit" msgstr "Editar" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Todos los objetos seleccionados están en la bandeja bloqueada,\n" "No podemos hacer un auto posicionamiento en estos objetos." @@ -2615,8 +2605,8 @@ msgid "No arrangeable objects are selected." msgstr "No se han seleccionado objetos posicionables." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Esta bandeja está bloqueada,\n" "No podemos hacer auto-posicionamiento en esta bandeja." @@ -2656,15 +2646,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Todos los objetos seleccionados están en la bandeja bloqueada,\n" "No podemos hacer auto-orientación en estos objetos." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Esta bandeja está bloqueada,\n" "No podemos hacer auto-orientación en esta bandeja." @@ -2721,7 +2711,7 @@ msgstr "" "Ha fallado la conexión con el servicio de la nube. Por favor, inténtelo de " "nuevo." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "" "No se ha encontrado el archivo de impresión; por favor, lamine de nuevo." @@ -2752,7 +2742,7 @@ msgstr "" "El tamaño del archivo de impresión es demasiado grande. Ajuste el tamaño del " "archivo e inténtalo de nuevo." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Archivo de impresión no encontrado; por favor, lamínelo de nuevo y envíelo " "para imprimir." @@ -2795,10 +2785,10 @@ msgstr "Enviado correctamente. Se cargará la siguiente página en %ss" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Se necesita insertar una tarjeta SD antes de imprimir vía red local." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Enviando el archivo de G-Code vía red local" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Enviando el archivo de G-Code a la tarjeta SD" #, c-format, boost-format @@ -2846,10 +2836,10 @@ msgstr "Descargando" msgid "Download failed" msgstr "Descarga fallida" -msgid "Cancelled" +msgid "Canceled" msgstr "Cancelado" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Instalación exitosa." msgid "Installing" @@ -2920,9 +2910,6 @@ msgstr "Confirmar" msgid "Close" msgstr "Cerrar" -msgid "Colour" -msgstr "Color" - msgid "" "Nozzle\n" "Temperature" @@ -3088,8 +3075,8 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Cambie el desecante cuando esté demasiado húmedo. El indicador puede no ser " @@ -3098,7 +3085,7 @@ msgstr "" "temperaturas también ralentizan el proceso." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Configurar qué ranura AMS debe utilizarse para un filamento utilizado en el " "trabajo de impresión." @@ -3119,7 +3106,7 @@ msgid "Print using materials mounted on the back of the case" msgstr "" "Imprimir usando materiales montados en la parte de atrás de la cubierta" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Imprimir usando filamentos en AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3146,12 +3133,12 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "Si hay dos filamentos idénticos en AMS, se habilitará el auto-reemplazo de " -"filamentos AMS. \n" +"filamentos AMS.\n" "(Actualmente admite el reemplazo automático de consumibles con la misma " "marca, tipo de material y color)." @@ -3175,7 +3162,7 @@ msgstr "" "nuevo filamento de Bambu Lab. Esto tardará unos 20 segundos." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Nota: si se inserta un nuevo filamento durante la impresión, el AMS no leerá " @@ -3193,8 +3180,8 @@ msgstr "Actualización al encender" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "El AMS leerá automáticamente la información del filamento insertado al " "arrancar. Tomará aproximadamente 1 minuto. El proceso de lectura hará rodar " @@ -3225,8 +3212,8 @@ msgid "AMS filament backup" msgstr "Auto reemplazo de Filamento AMS" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "El AMS continuará con otra bobina con las mismas propiedades de filamento " "automáticamente cuando el filamento se termine" @@ -3291,7 +3278,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Guarde el proyecto y reinicie el programa." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Procesando el G-Code del archivo anterior..." msgid "Slicing complete" @@ -3378,12 +3365,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Archivo de G-Code exportado a %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Error desconocido al exportar el G-Code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3560,7 +3547,7 @@ msgstr "Usar AMS" msgid "Select Printers" msgstr "Seleccionar impresoras" -msgid "Ams Status" +msgid "AMS Status" msgstr "Estado del AMS" msgid "Printing Options" @@ -3582,7 +3569,7 @@ msgid "Send to" msgstr "Mandar a" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "impresoras al mismo tiempo.(Depende de cuántos aparatos puedan calentarse al " @@ -3592,7 +3579,7 @@ msgid "Wait" msgstr "Espere" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "minuto por tanda. (Depende de lo que tarde en terminar de calentarse)." msgid "Send" @@ -3692,11 +3679,11 @@ msgid "Bed Shape" msgstr "Forma de la cama de impresión" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"La temperatura mínima recomendada es inferior a 190 grados o la temperatura " -"máxima recomendada es superior a 300 grados.\n" +"La temperatura mínima recomendada es inferior a 190°C o la temperatura " +"máxima recomendada es superior a 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3722,11 +3709,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "La temperatura recomendada de la boquilla para este tipo de filamento es de " -"[%d, %d] grados centígrados" +"[%d, %d] grados Celsius." msgid "" "Too small max volumetric speed.\n" @@ -3737,9 +3724,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "La temperatura actual de la cámara es superior a la temperatura de seguridad " "del material, puede provocar que el material se ablande y se atasque. La " @@ -3807,7 +3794,7 @@ msgstr "" "vertical de las cubiertas\" se establece en Todos." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3877,11 +3864,11 @@ msgstr "" "timelapse." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"¿Cambiar estos ajustes automáticamente? \n" +"¿Cambiar estos ajustes automáticamente?\n" "Sí - Cambiar estos ajustes y activar el modo espiral automáticamente\n" "No - Dejar de usar el modo espiral esta vez" @@ -3936,7 +3923,7 @@ msgstr "El usuario ha pausado la impresión" msgid "Pause of front cover falling" msgstr "Pausa al caer la cubierta frontal" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Calibrando Micro Lidar" msgid "Calibrating extrusion flow" @@ -3976,7 +3963,7 @@ msgstr "Pausado debido a un error en el control de temperatura de cámara" msgid "Cooling chamber" msgstr "Enfriando cámara" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Pausado debido a un G-Code de usuario" msgid "Motor noise showoff" @@ -4020,7 +4007,7 @@ msgstr "Actualización fallida." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "La temperatura actual de la cámara o la temperatura objetivo de la cámara " @@ -4028,8 +4015,8 @@ msgstr "" "cargar filamento de baja temperatura (PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Filamento de baja temperatura (PLA/PETG/TPU) ha sido cargado en el extrusor. " @@ -4038,14 +4025,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Cuando se ajusta la temperatura de la cámara por debajo de 40℃, el control " "de la temperatura de la cámara no será activado. La temperatura objetivo de " "la cámara se ajustará automáticamente a 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Fallo iniciando el trabajo de impresión" msgid "" @@ -4060,7 +4047,7 @@ msgstr "El parámetro actual de calibración de flujo no es válido" msgid "Selected diameter and machine diameter do not match" msgstr "El diámetro seleccionado y el diámetro de la máquina no coinciden" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Fallo al generar el G-Code de calibración" msgid "Calibration error" @@ -4073,14 +4060,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF no soportado por el AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Un PVA húmedo se vuelve flexible y se atascará dentro del AMS, por favor, " "asegurese de secarlo antes de usarlo." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "Los filamentos CF/GF son duros y quebradizos. Es fácil romperlos o crear " @@ -4098,7 +4085,7 @@ msgstr "" "Marcadores de posición incorporados (haga doble clic en el elemento para " "añadirlo al G-Code)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Buscar marcadores de posición G-Code" msgid "Add selected placeholder to G-code" @@ -4157,7 +4144,7 @@ msgid "parameter name" msgstr "nombre del parámetro" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s no puede ser un porcentaje" #, c-format, boost-format @@ -4247,8 +4234,8 @@ msgstr "Velocidad del Ventilador: " msgid "Temperature: " msgstr "Temperatura: " -msgid "Loading G-codes" -msgstr "Cargando G-Codes" +msgid "Loading G-code" +msgstr "Cargando G-Code" msgid "Generating geometry vertex data" msgstr "Generación de datos de vértices de la geometría" @@ -4361,10 +4348,7 @@ msgstr "Imprimir" msgid "Printer" msgstr "Impresora" -msgid "Custom g-code" -msgstr "G-Code personalizado" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Cambio de Herramienta" msgid "Time Estimation" @@ -4490,8 +4474,11 @@ msgstr "Alinear con el eje Y" msgid "Add plate" msgstr "Añadir bandeja" -msgid "Auto orient" -msgstr "Orientar automáticamente" +msgid "Auto orient all/selected objects" +msgstr "Orientar automáticamente todos/seleccionados objetos" + +msgid "Auto orient all objects on current plate" +msgstr "Orientar automáticamente todos los objetos de la bandeja actual" msgid "Arrange all objects" msgstr "Ordenar todos los objetos" @@ -4514,8 +4501,8 @@ msgstr "Seleccionr Bandeja" msgid "Assembly Return" msgstr "Volver a agrupar" -msgid "return" -msgstr "volver" +msgid "Return" +msgstr "Volver" msgid "Paint Toolbar" msgstr "Barra de herramientas de pintura" @@ -4543,26 +4530,26 @@ msgstr "Tamaño:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Se han encontrado conflictos de rutas G-Code en la capa %d, z = %.2lf mm. " "Por favor, separe más los objetos en conflicto (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Un objeto está sobre el límite de la bandeja." msgid "A G-code path goes beyond the max print height." msgstr "Una ruta de G-Code supera la altura máxima de impresión." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Una ruta de G-Code supera el límite de la bandeja." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Sólo es visible el objeto que se está editando." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4643,7 +4630,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Conectar Impresora (LAN)" msgid "Please input the printer access code:" @@ -4943,20 +4930,20 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "Mostrar Ventana &G-Code" -msgid "Show g-code window in Preview scene" -msgstr "Mostrar ventana de G-Code en Vista previa" +msgid "Show G-code window in Preview scene." +msgstr "Mostrar ventana de G-Code en Vista previa." msgid "Show 3D Navigator" msgstr "Mostrar Navegador 3D" -msgid "Show 3D navigator in Prepare and Preview scene" -msgstr "Mostrar navegador 3D en escena Preparar y Vista previa" +msgid "Show 3D navigator in Prepare and Preview scene." +msgstr "Mostrar navegador 3D en escena Preparar y Vista previa." msgid "Reset Window Layout" msgstr "Reiniciar Diseño de Ventana" @@ -4967,20 +4954,20 @@ msgstr "Restablecer el diseño de ventana por defecto" msgid "Show &Labels" msgstr "Mostrar Etiquetas(&L)" -msgid "Show object labels in 3D scene" -msgstr "Mostrar etiquetas en escena 3D" +msgid "Show object labels in 3D scene." +msgstr "Mostrar etiquetas en escena 3D." msgid "Show &Overhang" msgstr "Mostrar Voladizo (&O)" -msgid "Show object overhang highlight in 3D scene" -msgstr "Mostrar resalte de voladizos de objeto en escena 3D" +msgid "Show object overhang highlight in 3D scene." +msgstr "Mostrar resalte de voladizos de objeto en escena 3D." msgid "Show Selected Outline (beta)" msgstr "Mostrar Contorno Seleccionado (beta)" -msgid "Show outline around selected object in 3D scene" -msgstr "Mostrar el contorno alrededor del objeto seleccionado en la escena 3D" +msgid "Show outline around selected object in 3D scene." +msgstr "Mostrar el contorno alrededor del objeto seleccionado en la escena 3D." msgid "Preferences" msgstr "Preferencias" @@ -5158,13 +5145,13 @@ msgid "Filament Settings" msgstr "Configuración de Filamento" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"¿Quiere sincronizar sus datos personales desde Bambu Cloud? \n" +"¿Quiere sincronizar sus datos personales desde Bambu Cloud?\n" "Esta contiene la siguiente información:\n" "1. Los Perfiles de Proceso\n" "2. Los Perfiles de Filamento\n" @@ -5200,7 +5187,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "La cámara de la impresora funciona mal." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Se ha producido un problema. Actualice el firmware de la impresora e " "inténtelo de nuevo." @@ -5221,7 +5208,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Conexión fallida. Compruebe la red e inténtelo de nuevo" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Compruebe la red e inténtelo de nuevo. Puede reiniciar o actualizar la " @@ -5379,8 +5366,8 @@ msgid "Failed to parse model information." msgstr "No se pudo analizar la información del modelo." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "El archivo .gcode .3mf no contiene datos de G-Code. Por favor, lamine con " "Orca Slicer y exporte un nuevo archivo .gcode.3mf." @@ -5394,8 +5381,6 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" -"File: %s\n" -"Title: %s\n" msgid "Download waiting..." msgstr "Descarga esperando..." @@ -5577,10 +5562,9 @@ msgid "Layer: %d/%d" msgstr "Capa: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Por favor, caliente la boquilla por encima de 170 grados antes de cargar o " +"Por favor, caliente la boquilla por encima de 170°C antes de cargar o " "descargar filamento." msgid "Still unload" @@ -5589,7 +5573,7 @@ msgstr "Aún descargado" msgid "Still load" msgstr "Aún cargado" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Seleccione una ranura AMS antes de la calibración" msgid "" @@ -5638,9 +5622,6 @@ msgstr "Aceptar" msgid "Please click on the star first." msgstr "Por favor presione en las estrellas primero." -msgid "InFo" -msgstr "Información" - msgid "Get oss config failed." msgstr "Falló la obtención de la configuración de oss." @@ -5659,7 +5640,7 @@ msgstr " Error en la carga de configuración\n" msgid " No corresponding storage bucket\n" msgstr " Sin cubo de almacenamiento correspondiente\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " no es posible abrirlo\n" msgid "" @@ -5685,8 +5666,9 @@ msgstr "Carga fallida\n" msgid "obtaining instance_id failed\n" msgstr "Error al obtener instance_id \n" +#, fuzzy msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5701,7 +5683,7 @@ msgstr "Mensaje de error: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5709,7 +5691,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Algunas de sus imágenes no se han podido cargar. ¿Desea redirigir a la " "página web para la valoración?" @@ -5719,7 +5701,7 @@ msgstr "Puede seleccionar hasta 16 imágenes." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Se requiere al menos un registro de impresión correcto de este perfil de " "impresión \n" @@ -5765,7 +5747,7 @@ msgid "Newer 3mf version" msgstr "Nueva versión 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "La versión del archivo 3mf está en Beta y es más reciente que la versión " @@ -5877,9 +5859,9 @@ msgstr[1] "%1$d Los objetos tienen pintura de color." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d El objeto se ha cargado como parte del objeto de corte." -msgstr[1] "%1$d Los objetos se han cargado como partes del objeto de corte" +msgstr[1] "%1$d Los objetos se han cargado como partes del objeto de corte." msgid "ERROR" msgstr "ERROR" @@ -5902,7 +5884,7 @@ msgstr "Error:" msgid "Warning:" msgstr "Advertencia:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Exportación exitosa." msgid "Model file downloaded." @@ -5920,12 +5902,12 @@ msgstr " Presiona aquí para instalarlo." msgid "WARNING:" msgstr "AVISO:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "¡Su modelo necesita soporte! Por favor, haga que el material de apoyo esté " "habilitado." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Superposición de la ruta del G-Code" msgid "Support painting" @@ -6171,7 +6153,7 @@ msgstr "¿Quieres guardar los cambios en \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Desmontado correctamente. El dispositivo %s(%s) ahora puede ser extraído de " @@ -6232,8 +6214,8 @@ msgstr "Cargar 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "La versión de 3mf %s es más nueva que la versión de %s %s, encontradas las " "siguientes llaves no reconocidas:" @@ -6255,28 +6237,31 @@ msgstr "Valores inválidos encontrados en el 3mf:" msgid "Please correct them in the param tabs" msgstr "Por favor, corríjalos en las pestañas de parámetros" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "El archivo 3mf ha realizado las siguientes modificaciones en el G-Code de " "los perfiles de filamento o impresora:" +#, fuzzy msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "¡Por favor, confirme que esas modificaciones de G-Code son seguras para " "evitar cualquier daño a la máquina!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "G-Code modificado" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "El archivo 3mf tiene los siguientes perfiles personalizados de filamento o " "impresora:" +#, fuzzy msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "¡Por favor, confirme que el G-Code dentro de los perfiles son seguros para " @@ -6341,9 +6326,10 @@ msgstr "Se ha detectado un objeto con varias piezas" msgid "The file does not contain any geometry data." msgstr "El archivo no contiene ninguna información geométrica." +#, fuzzy msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Su objeto parece demasiado grande, ¿Desea reducir el tamaño automáticamente " "para que quepa en la cama caliente?" @@ -6451,11 +6437,11 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Previsualizar solo el modo:\n" "El archivo cargado contiene solo G-Code, no es posible entrar a la página de " -"Preparación" +"Preparación." msgid "You can keep the modified presets to the new project or discard them" msgstr "" @@ -6488,7 +6474,7 @@ msgstr "Preparar el archivo 3mf..." msgid "Download failed, unknown file format." msgstr "Descarga fallida; formato de archivo desconocido." -msgid "downloading project ..." +msgid "downloading project..." msgstr "Descargando proyecto..." msgid "Download failed, File size exception." @@ -6527,7 +6513,7 @@ msgstr "Importar archivo SLA" msgid "The selected file" msgstr "El archivo seleccionado" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "no contiene G-Code válido." msgid "Error occurs while loading G-code file" @@ -6571,10 +6557,10 @@ msgstr "Sólo se puede abrir un archivo de G-Code al mismo tiempo." msgid "G-code loading" msgstr "Carga del G-Code" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "¡Los archivos de G-Code no pueden cargarse junto con modelos!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "¡No se pueden añadir modelos en el modo de vista previa!" msgid "All objects will be removed, continue?" @@ -6642,8 +6628,6 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be exported." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be exported." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6743,8 +6727,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Bandeja %d: %s no es recomendable ser usada para imprimir el filamento " @@ -6909,6 +6893,12 @@ msgstr "" "Si está activada, utiliza la cámara libre. Si no está activada, utiliza la " "cámara restringida." +msgid "Swap pan and rotate mouse buttons" +msgstr "Intercambiar los botones de panorámica y rotación del mouse" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Si está habilitado, intercambia las funciones de panorámica y rotación de los botones izquierdo y derecho del mouse." + msgid "Reverse mouse zoom" msgstr "Invertir el zoom del ratón" @@ -6953,7 +6943,7 @@ msgstr "" "Si está activada, Orca recordará y cambiará la configuración de archivos/" "procesos para cada impresora automáticamente." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Gestión multidispositivo (surte efecto tras reiniciar Orca)." msgid "" @@ -6972,7 +6962,7 @@ msgstr "Disposición automática de la placa tras la clonación de objetos" msgid "Network" msgstr "Red" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Sincronización automática de los perfiles del usuario (Impresora/Filamento/" "Proceso)" @@ -7049,7 +7039,7 @@ msgstr "Máxima cantidad de proyectos recientes" msgid "Clear my choice on the unsaved projects." msgstr "Limpiar mi elección de proyectos no guardados." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "No avisar cuando cargue archivos 3MF con G-Codes modificados" msgid "Auto-Backup" @@ -7119,13 +7109,13 @@ msgid "Mouse wheel reverses when zooming" msgstr "La rueda del ratón se invierte al hacer zoom" msgid "Enable SSL(MQTT)" -msgstr "Enable SSL(MQTT)" +msgstr "" msgid "Enable SSL(FTP)" -msgstr "Enable SSL(FTP)" +msgstr "" msgid "Internal developer mode" -msgstr "Internal developer mode" +msgstr "" msgid "Log Level" msgstr "Nivel de registro" @@ -7166,10 +7156,10 @@ msgstr "botón de guardar la depuración" msgid "save debug settings" msgstr "guardar los ajustes de depuración" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "¡Los ajustes de depuración se han guardado con éxito!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "¡Cambiado a entorno de nube, Por favor vuelva a autenticarse!" msgid "System presets" @@ -7184,10 +7174,10 @@ msgstr "Perfiles incompatibles" msgid "AMS filaments" msgstr "Filamentos AMS" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Haga clic para elegir el color del filamento" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Por favor elija el color del filamento" msgid "Add/Remove presets" @@ -7205,7 +7195,7 @@ msgstr "Añadir/Borrar filamentos" msgid "Add/Remove materials" msgstr "Añadir/Borrar materiales" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Seleccionar/Borrar impresoras (perfiles del sistema)" msgid "Create printer" @@ -7279,14 +7269,14 @@ msgstr "Cargando 3mf" msgid "Jump to model publish web page" msgstr "Ir a la página web de publicación de modelos" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Nota: La preparación puede llevar varios minutos. Por favor, sea paciente." msgid "Publish" msgstr "Publicar" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "La publicación fue cancelada" msgid "Slicing Plate 1" @@ -7311,7 +7301,7 @@ msgstr "Perfil interno del proyecto" msgid "Name is unavailable." msgstr "El nombre no está disponible." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "No se permite sobrescribir un perfil del sistema" #, boost-format @@ -7319,10 +7309,12 @@ msgid "Preset \"%1%\" already exists." msgstr "El perfil \"%1%\" ya existe." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "El perfil \"%1%\" ya existe y es incompatible con la impresora actual." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Tenga en cuenta que la acción de guardar reemplazará este perfil" msgid "The name cannot be the same as a preset alias name." @@ -7341,7 +7333,7 @@ msgstr "La impresora \"%1%\" está seleccionada con el perfil \"%2%\"" #, boost-format msgid "Please choose an action with \"%1%\" preset after saving." -msgstr "Por favor, elija una acción con el perfil \"%1%\" después de guardar." +msgstr "Por favor, elija una acción con el perfil \"%1%\" después de guardar." #, boost-format msgid "For \"%1%\", change \"%2%\" to \"%3%\" " @@ -7544,7 +7536,7 @@ msgid "Please check the following:" msgstr "Por favor compruebe lo siguiente:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7580,7 +7572,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "La impresión de material de alta temperatura (material %s) con %s puede " @@ -7701,7 +7693,7 @@ msgstr "No se ha podido iniciar sesión. Por favor, compruebe el código PIN." msgid "Log in printer" msgstr "Iniciar sesión en la impresora" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "¿Desea iniciar sesión en esta impresora con la cuenta actual?" msgid "Check the reason" @@ -7714,10 +7706,10 @@ msgid "Terms and Conditions" msgstr "Condiciones generales" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Gracias por adquirir un dispositivo Bambu Lab. Antes de utilizar su " @@ -7747,7 +7739,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7805,7 +7797,7 @@ msgstr "" "Presionar para reiniciar todos los ajustes al perfil guardado por defecto." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Se requiere una torre de purga para un timelapse suave. Puede haber defectos " @@ -7813,7 +7805,7 @@ msgstr "" "deshabilitar la torre de purgado?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "La torre de purga es necesaria para que el timelapse sea suave. Puede haber " @@ -7823,22 +7815,18 @@ msgid "Still print by object?" msgstr "¿Seguir imprimiendo por objeto?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Cambiar estos ajustes automáticamente? \n" +"Cambiar estos ajustes automáticamente?\n" "Sí - Cambiar estos ajustes automáticamente\n" "No - No cambiar estos ajustes" @@ -7864,13 +7852,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "La altura de la capa excede el límite en Ajustes de la Impresora -> Extrusor " "-> Limite de Altura de Capa, esto puede causar problemas de calidad de " "impresión." -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "¿Desea ajustar el rango automáticamente?\n" msgid "Adjust" @@ -7881,8 +7869,8 @@ msgstr "Ignorar" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Característica experimental: Retraer y cortar el filamento a mayor distancia " @@ -7892,9 +7880,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Característica experimental: Retraer y cortar el filamento a mayor distancia " "durante los cambios de filamento para minimizar el descarte. Aunque puede " @@ -8145,8 +8133,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Bandeja Fría (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura de cama cuando la bandeja fría está instalada. Valor 0 significa " "que el filamento no es compatible para imprimir en la bandeja fría SuperTack" @@ -8155,30 +8143,30 @@ msgid "Cool Plate" msgstr "Bandeja Fría" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Esta es la temperatura de la bandeja cuando la Bandeja Fría está instalada. " "Un valor de 0 significa que el filamento no admite la impresión en la " "Bandeja Fría" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "Bandeja Fría Texturizada" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura de la cama cuando la placa fría está instalada. El valor 0 " "significa que el filamento no se puede imprimir en la placa de refrigeración " "texturizada" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "Bandeja de Ingeniería" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Esta es la temperatura de la cama cuando la Bandeja de Ingeniería está " "instalada. Un valor de 0 significa que el filamento no admite la impresión " @@ -8188,9 +8176,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Bandeja PEI suave / Bandeja de Alta Temperatura" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Temperatura de la cama cuando está instalada la bandeja PEI lisa/ Bandeja de " "Alta Temperatura. El valor 0 significa que el filamento no admite la " @@ -8200,8 +8188,8 @@ msgid "Textured PEI Plate" msgstr "Bandeja PEI Texturizada" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura de la cama cuando la Bandeja PEI Texturizada está instalada. El " "valor 0 significa que el filamento no es compatible para imprimir en la " @@ -8266,13 +8254,13 @@ msgstr "G-Code de fin de filamento" msgid "Wipe tower parameters" msgstr "Parámetros de torre de purga" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Parámetros de cambio de cabezal para impresoras de 1 extrusor MM" msgid "Ramming settings" msgstr "Parámetros de Moldeado de Extremo" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" "Parámetros de cambio de cabezal para impresoras de varios extrusores MM" @@ -8285,7 +8273,7 @@ msgstr "Dependencias de perfil" msgid "Printable space" msgstr "Espacio imprimible" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Valor no válido proporcionado para el parámetro %1%: %2%" @@ -8308,7 +8296,7 @@ msgstr "Malla adaptativa de cama" msgid "Accessory" msgstr "Accesorio" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-Code de la máquina" msgid "Machine start G-code" @@ -8326,7 +8314,7 @@ msgstr "G-Code para antes del cambio de capa" msgid "Layer change G-code" msgstr "G-Code tras el cambio de capa" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "G-Code de timelapse" msgid "Change filament G-code" @@ -8369,7 +8357,7 @@ msgid "" "nozzle diameter value?" msgstr "" "Seleccionado Extrusor Único Multi Material, \n" -"y todos los extrusores deben tener el mismo diámetro. \n" +"y todos los extrusores deben tener el mismo diámetro.\n" "¿Desea cambiar el diámetro de todos los extrusores al valor del diámetro de " "la boquilla del primer extrusor?" @@ -8422,7 +8410,7 @@ msgstr "" "El perfil de Filamento %d y el perfil de Proceso %d están adjuntos a esta " "impresora. Esos perfiles se borrarían si se elimina la impresora." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "¡Los perfiles heredados de otros perfiles no pueden borrarse!" msgid "The following presets inherit this preset." @@ -8441,11 +8429,11 @@ msgstr[0] "El siguiente perfil también se eliminará." msgstr[1] "Los siguientes perfiles también se eliminarán." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"¿Está seguro de que desea eliminar el perfil seleccionado? \n" +"¿Está seguro de que desea eliminar el perfil seleccionado?\n" "Si el perfil corresponde a un filamento actualmente en uso en su impresora, " "restablezca la información del filamento para esa ranura." @@ -8605,7 +8593,7 @@ msgid "" "Note: New modified presets will be selected in settings tabs after close " "this dialog." msgstr "" -"Transferir las opciones seleccionadas del perfil izquierdo al derecho. \n" +"Transferir las opciones seleccionadas del perfil izquierdo al derecho.\n" "Nota: Los nuevos perfiles modificados se seleccionarán en las pestañas de " "configuración después de cerrar este cuadro de diálogo." @@ -8660,7 +8648,7 @@ msgstr "Hay una nueva versión disponible" msgid "Configuration update" msgstr "Actualización de configuración" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Un nuevo paquete de configuración disponible, ¿desea instalarlo?" msgid "Description:" @@ -8669,13 +8657,13 @@ msgstr "Descripción:" msgid "Configuration incompatible" msgstr "Configuración incompatible" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "el paquete de configuración es incompatible con la aplicación actual." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "El paquete de configuración es incompatible con la aplicación actual.\n" "%s Actualiza el paquete de configuración, de lo contrario no podrá iniciar" @@ -8684,7 +8672,7 @@ msgstr "" msgid "Exit %s" msgstr "Salir %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "el paquete de configuración es incompatible con la APP actual." msgid "Configuration updates" @@ -8737,18 +8725,18 @@ msgid "Map Filament" msgstr "Mapear Filamento" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Nota: el color ha sido seleccionado, puede elegir OK\n" "para continuar o ajustarlo manualmente." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" -"Advertencia: El recuento de extrusores recién añadidos y \n" -"actuales es superior a 16." +"Advertencia: El recuento de extrusores recién \n" +"añadidos y actuales es superior a 16." msgid "Ramming customization" msgstr "Personalización de Moldeado de Extremo" @@ -8861,11 +8849,11 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "A tu sistema le faltan los codecs H.264 para GStreamer, necesarios para " -"reproducir vídeo. (Prueba a instalar los paquetes gstreamer1.0-plugins-bad " +"reproducir vídeo. (Prueba a instalar los paquetes gstreamer1.0-plugins-bad " "o gstreamer1.0-libav y, a continuación, reinicia Orca Slicer...)." msgid "Bambu Network plug-in not detected." @@ -8933,13 +8921,17 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Orienta automáticamente los objetos seleccionados o todos los objetos. Si " "hay objetos seleccionados, sólo orienta los seleccionados. En caso " -"contrario, orientará todos los objetos de la placa actual." +"contrario, orientará todos los objetos del proyecto actual." + +#, fuzzy +msgid "Auto orients all objects on the active plate." +msgstr "Orienta automáticamente todos los objetos de la placa actual." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -9049,17 +9041,29 @@ msgstr "Herramienta de rotación" msgid "Gizmo cut" msgstr "Herramienta de corte" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "Herramienta de situar cara en cama" +msgid "Gizmo mesh boolean" +msgstr "Gizmo buleana de malla" + msgid "Gizmo SLA support points" msgstr "Herramienta de puntos de soporte SLA" msgid "Gizmo FDM paint-on seam" msgstr "Herramienta de pintado de costuras FDM" -msgid "Gizmo Text emboss / engrave" -msgstr "Herramienta de Texto en relieve / grabado" +msgid "Gizmo text emboss/engrave" +msgstr "Herramienta de texto en relieve/grabado" + +msgid "Gizmo measure" +msgstr "Gizmo medir" + +msgid "Gizmo assemble" +msgstr "Gizmo ensamblar" + +msgid "Gizmo brim ears" +msgstr "Gizmo orejas de borde" msgid "Zoom in" msgstr "Acercar" @@ -9100,8 +9104,8 @@ msgstr "Herramienta" msgid "Set extruder number for the objects and parts" msgstr "Ajustar el número de extrusor para los objetos y las piezas" -msgid "Delete objects, parts, modifiers " -msgstr "Eliminar objetos, piezas, modificadores " +msgid "Delete objects, parts, modifiers" +msgstr "Eliminar objetos, piezas, modificadores" msgid "Select the object/part and press space to change the name" msgstr "" @@ -9135,7 +9139,7 @@ msgstr "" msgid "On/Off one layer mode of the vertical slider" msgstr "Activar/Desactivar el modo de una capa del control deslizante vertical" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Activar/Desactivar ventana de G-Code" msgid "Move slider 5x faster" @@ -9154,7 +9158,7 @@ msgid "Release Note" msgstr "Notas de versión" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "información de actualización de la versión %s:" msgid "Network plug-in update" @@ -9167,8 +9171,8 @@ msgstr "" "a iniciarse." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" -msgstr "Un nuevo plug-in de red(%s) está disponible. ¿Desea instalarlo?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" +msgstr "Un nuevo plug-in de red (%s) está disponible. ¿Desea instalarlo?" msgid "New version of Orca Slicer" msgstr "Nueva versión de Orca Slicer" @@ -9185,10 +9189,10 @@ msgstr "Continuar" msgid "Resume Printing" msgstr "Continuar Imprimiendo" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Continuar Imprimiendo (defectos aceptables)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Continuar Imprimiendo (problema solucionado)" msgid "Stop Printing" @@ -9306,10 +9310,10 @@ msgstr "Última versión" msgid "Updating" msgstr "Actualizando" -msgid "Updating failed" +msgid "Update failed" msgstr "Actualización fallida" -msgid "Updating successful" +msgid "Update successful" msgstr "Actualización exitosa" msgid "" @@ -9439,7 +9443,7 @@ msgstr "" "que no hay colisión." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "La generación del G-Code ha fallado por un G-Code personalizado no válido.\n" @@ -9491,7 +9495,7 @@ msgid "Multiple" msgstr "Múltiple" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Ha fallado el cálculo del ancho de línea de %1%. No se puede obtener el " "valor de \"%2%\". " @@ -9631,9 +9635,9 @@ msgstr "" " está demasiado cerca del área de exclusión, y se producirán colisiones.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "No se pueden imprimir juntos varios filamentos que tengan una gran " "diferencia de temperatura. De lo contrario, el extrusor y la boquilla pueden " @@ -9735,26 +9739,27 @@ msgstr "" "La torre de purga no es compatible cuando la altura de capa adaptativa está " "activada. Requiere que todos los objetos tengan la misma altura de capa." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "La torre de purga requiere que el \"hueco de apoyo\" sea múltiplo de la " "altura de la capa" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "La torre de purga requiere que todos los objetos tengan la misma altura de " "capa" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "La torre de purga requiere que todos los objetos se impriman sobre el mismo " "número de capas de balsa (base de impresión)" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9766,7 +9771,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "La torre de purga sólo se admite si todos los objetos tienen la misma altura " "de capa adaptativa" @@ -9821,7 +9826,7 @@ msgstr "" "Se utilizan las herramientas de forzado de soporte pero los soportes no " "están habilitados. Por favor, active la generación de soportes." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "La altura de la capa no puede superar el diámetro de la boquilla" msgid "" @@ -9831,7 +9836,7 @@ msgid "" msgstr "" "El direccionamiento de extrusión relativa requiere reiniciar la posición del " "extrusor en cada capa para evitar perdidas de precisión de punto flotante. " -"Añade \"G92 E0\" al g-code de antes de cambio de capa." +"Añade \"G92 E0\" al G-code de antes de cambio de capa." msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " @@ -9948,8 +9953,8 @@ msgid "Elephant foot compensation" msgstr "Compensación de Pata de elefante" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Contracción de la primera capa en la bandeja de impresión para compensar el " "efecto de Pata de elefante" @@ -9973,7 +9978,7 @@ msgstr "capas" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Altura de laminado para cada capa. Una altura de capa más pequeña significa " "más precisión y más tiempo de impresión" @@ -9981,13 +9986,13 @@ msgstr "" msgid "Printable height" msgstr "Altura imprimible" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "Altura máxima imprimible limitada por el mecanismo de la impresora" msgid "Preferred orientation" msgstr "Orientación preferida" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "Orientar automáticamente los stls en el eje Z en la importación inicial" @@ -9997,7 +10002,7 @@ msgstr "Nombres de perfiles de la impresora" msgid "Use 3rd-party print host" msgstr "Utilizar host de impresión de terceros" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Permitir el control de la impresora de BambuLab a través de hosts de " "impresión de terceros" @@ -10023,7 +10028,7 @@ msgid "Device UI" msgstr "IU de dispositivo" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Especifica la URL de tu IU de dispositivo si no es el mismo que el host de " "impresión" @@ -10039,7 +10044,7 @@ msgstr "" "debería contener una clave API o una contraseña requerida para la " "autenticación." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Nombre de la impresora" msgid "HTTPS CA File" @@ -10072,7 +10077,7 @@ msgstr "" "o puntos de distribución sin conexión. Se debería activar esta opción de " "certificados autofirmados si la conexión falla." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Nombres de perfiles relacionados por la impresora física" msgid "Authorization Type" @@ -10084,22 +10089,23 @@ msgstr "Clave API" msgid "HTTP digest" msgstr "Resumen HTTP" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Evitar cruzar perímetro" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Desvíese y evite atravesar el perímetro, ya que puede provocar una mancha en " "la superficie" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Evitar cruzar perímetro - Longitud de desvío máximo" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Distancia de desvío máximo para evitar cruzar el perímetro. No lo evite si " "la distancia de desvío es más alta que este valor. La distancia de desvío " @@ -10113,46 +10119,46 @@ msgid "Other layers" msgstr "Otras capas" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Esta es la temperatura de la cama para las capas excepto la inicial. Un " "valor de 0 significa que el filamento no admite la impresión en la Bandeja " -"Fría" +"Fría." msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura de la cama para las capas excepto la inicial. El valor 0 " "significa que el filamento no es compatible para imprimir en la placa fría " -"texturizada" +"texturizada." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Esta es la temperatura de la cama para las capas excepto la inicial. Un " "valor de 0 significa que el filamento no admite la impresión en la Bandeja " -"de Ingeniería" +"de Ingeniería." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Esta es la temperatura de la cama para las capas excepto la inicial. Un " "valor de 0 significa que el filamento no admite la impresión en la Bandeja " -"de Alta Temperatura" +"de Alta Temperatura." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura de cama para las capas excepto la inicial. El valor 0 significa " -"que el filamento no es compatible para imprimir en la Bandeja PEI Texturizada" +"que el filamento no es compatible para imprimir en la Bandeja PEI Texturizada." msgid "Initial layer" msgstr "Capa inicial" @@ -10161,64 +10167,58 @@ msgid "Initial layer bed temperature" msgstr "Temperatura de la cama durante la primera capa" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura de cama de la capa inicial. Valor 0 significa que el filamento " "no es compatible para imprimir en la Bandeja Fría SuperTack" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Esta es la temperatura de la cama de la primera capa. Un valor de 0 " "significa que el filamento no admite la impresión en la Bandeja Fría" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Temperatura de la capa inicial. El valor 0 significa que el filamento no es " "compatible para imprimir en la placa fría texturizada" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Esta es la temperatura de la cama de la primera capa. Un valor de 0 " "significa que el filamento no admite la impresión en la Bandeja de Ingeniería" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Esta es la temperatura de la cama de la primera capa. Un valor de 0 " "significa que el filamento no admite la impresión en la Bandeja de Alta " "Temperatura" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Esta es la temperatura de la cama de la primera capa. Un valor de 0 " "significa que el filamento no admite la impresión en la Bandeja PEI " "Texturizada" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Tipos de cama que admite la impresora" msgid "Smooth Cool Plate" msgstr "Bandeja Fría Lisa" -msgid "Engineering Plate" -msgstr "Bandeja de Ingeniería" - msgid "Smooth High Temp Plate" msgstr "Bandeja Lisa de Alta Temperatura" -msgid "Textured Cool Plate" -msgstr "Bandeja Fría Texturizada" - msgid "First layer print sequence" msgstr "Secuencia de impresión de primera capa" @@ -10231,7 +10231,7 @@ msgstr "El número de secuencias de impresión de otras capas" msgid "Other layers filament sequence" msgstr "Secuencia de filamentos de otras capas" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Este G-Code se inserta en cada cambio de capa antes de levantar z" msgid "Bottom shell layers" @@ -10240,7 +10240,7 @@ msgstr "Capas inferiores de cubierta" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Es el número de capas sólidas de la cubierta inferior, incluida la capa " "superficial inferior. Si el grosor calculado por este valor es menor que el " @@ -10255,7 +10255,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "El número de capas sólidas del fondo se incrementa al cortar si el grosor " "calculado por las capas de la cubierta es más fino que este valor. Esto " @@ -10276,22 +10276,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Activa el relleno de huecos para las superficies solidas seleccionadas. La " "longitud mínima a rellenar puede ser ajustada en el campo 'Filtrar pequeños " @@ -10306,17 +10306,17 @@ msgstr "" "rellenos sólidos y reduciendo la probabilidad de aparición de huecos de ojal " "en las superficies superior e inferior.\n" "3. Nunca: Deshabilita el relleno de huecos en todas las áreas de relleno " -"sólido. \n" +"sólido.\n" "\n" "Nótese que si se utiliza el generador de perímetros clásico (ancho de línea " "constante), el relleno de huecos puede ser aplicado entre perímetros, en los " "casos en los que una línea de extrusión completa no pueda caber entre estos. " "Ese relleno de huecos entre perímetros es independiente de este parámetro y " -"no se verá afectado por estos asjustes. \n" +"no se verá afectado por estos asjustes.\n" "\n" "Si desea desactivar todos los rellenos de huecos, incluidos aquellos " "asociados al generador de perímetros Clásico, ajuste el parámetro 'Filtrar " -"pequeños huecos' a un número muy elevado, por ejemplo 999999. \n" +"pequeños huecos' a un número muy elevado, por ejemplo 999999.\n" "\n" "Se desaconseja encare no desactivar completamente el relleno de huecos, ya " "que el relleno de huecos entre perímetros contribuye significativamente a la " @@ -10415,9 +10415,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10428,14 +10428,14 @@ msgid "Bridge flow ratio" msgstr "Ratio de flujo en puentes" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" "Disminuya este valor ligeramente (por ejemplo 0,9) para reducir la cantidad " -"de material extruido en puentes, para mejorar o evitar el hundimiento. \n" +"de material extruido en puentes, para mejorar o evitar el hundimiento.\n" "\n" "El valor final de flujo para puentes es calculado multiplicando este valor " "por el valor de flujo del filamento, y en su caso, por el factor de flujo " @@ -10456,7 +10456,7 @@ msgstr "" "Este valor regula el grosor de la capa puente interna. Es la primera capa " "sobre el relleno de baja densidad. Disminuya ligeramente este valor (por " "ejemplo a 0,9) para mejorar la calidad de la superficie sobre el relleno de " -"baja densidad. \n" +"baja densidad.\n" "\n" "El valor final de flujo para puentes internos es calculado multiplicando " "este valor por el valor de flujo del filamento, y en su caso, por el factor " @@ -10467,7 +10467,7 @@ msgstr "Ratio de flujo en superficie superior" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10484,13 +10484,13 @@ msgid "Bottom surface flow ratio" msgstr "Ratio de flujo en superficie inferior" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Este factor controla la cantidad de material extruido para el relleno sólido " -"de las superficies superior e inferior. \n" +"de las superficies superior e inferior.\n" "\n" "El valor final de flujo es el producto de este valor, el factor de flujo del " "filamente y, si procede, el factor de flujo del objeto." @@ -10509,8 +10509,8 @@ msgid "Only one wall on top surfaces" msgstr "Sólo un perímetro en las capas superiores" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Sólo un perímetro en la capas superiores planas, para dar más espacio al " "patrón de relleno superior" @@ -10544,7 +10544,7 @@ msgstr "Solo un perímetro en la primera capa" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Usar solo un perímetro en la primera capa, para dar más espacio en el patrón " "de relleno inferior" @@ -10584,7 +10584,7 @@ msgid "Reverse only internal perimeters" msgstr "Invertir solo los perímetros internos" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10616,16 +10616,15 @@ msgstr "Crear puentes en agujeros con avellanado" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Esta opción crea puentes para los orificios avellanados, lo que permite " -"imprimirlos sin soporte. \n" -"Los modos disponibles son:\n" -" 1. Ninguno: No se crea ningún puente. \n" +"imprimirlos sin soporte. Los modos disponibles son:\n" +"1. Ninguno: No se crea ningún puente.\n" "2. Parcialmente Puenteado: Sólo se puentea una parte de la zona sin " -"soporte. \n" +"soporte.\n" "3. Capa de Sacrificio: Se crea una capa de sacrificio completa." msgid "Partially bridged" @@ -10657,13 +10656,13 @@ msgstr "" msgid "Classic mode" msgstr "Modo clásico" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Activar esta opción para usar el modo clásico" msgid "Slow down for overhang" msgstr "Disminuir velocidad en voladizos" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Habilite esta opción para ralentizar la impresión para diferentes grados de " "voladizo" @@ -10674,11 +10673,11 @@ msgstr "Reducir velocidad en perímetros curvados" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10717,14 +10716,14 @@ msgid "External" msgstr "Externo" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " "are supported by less than 13%, whether they are part of a bridge or an " "overhang." msgstr "" -"Velocidad de las extrusiones de puentes exteriormente visibles. \n" +"Velocidad de las extrusiones de puentes exteriormente visibles.\n" "\n" "Adicionalmente, si se desactiva la función 'Reducir velocidad en perímetros " "curvados' o se usa el método Clásico de voladizos, también se utilizará esta " @@ -10744,7 +10743,7 @@ msgstr "" msgid "Brim width" msgstr "Ancho del borde de adherencia" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Distancia del modelo a la línea más externa del borde de adherencia" msgid "Brim type" @@ -10766,7 +10765,7 @@ msgstr "Espaciado borde de adherencia-objeto" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Un hueco entre la línea más interna del borde de adherencia y el objeto " "puede hacer que el borde de adherencia se retire más fácilmente" @@ -10781,8 +10780,8 @@ msgid "Brim ear max angle" msgstr "Ángulo máximo de las Orejas de borde" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Ángulo máxima para el que generar Orejas de borde.\n" @@ -10796,7 +10795,7 @@ msgstr "Radio de detección de Orejas de borde" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "La geometría se verá diezmada antes de detectar angulos agudos. Este " "parámetro indica la longitud mínima de desviación para el diezmado\n" @@ -10835,7 +10834,7 @@ msgstr "" "de impresión activo. Si esta expresión se evalúa como verdadera, este perfil " "se considera compatible con el perfil de impresión activo." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Secuencia de impresión, capa a capa u objeto por objeto" msgid "By layer" @@ -10847,7 +10846,7 @@ msgstr "Por objeto" msgid "Intra-layer order" msgstr "Orden dentro de la capa" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Orden de impresión dentro de cada capa" msgid "As object list" @@ -10861,7 +10860,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Active esta opción para reducir la velocidad de impresión para que el tiempo " "final de la capa no sea inferior al umbral de tiempo de la capa en \"Umbral " @@ -10874,7 +10873,7 @@ msgstr "Impresión normal" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "La aceleración por defecto tanto de la impresión normal como del " "desplazamiento excepto para la primera capa" @@ -10882,14 +10881,14 @@ msgstr "" msgid "Default filament profile" msgstr "Perfil de filamento por defecto" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "" "Perfil de filamento por defecto cuando se cambia a este perfil de máquina" msgid "Default process profile" msgstr "Perfil de proceso por defecto" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "" "Perfil de proceso por defecto cuando se cambia a este perfil de máquina" @@ -10905,21 +10904,21 @@ msgid "Fan speed" msgstr "Velocidad del ventilador" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Velocidad del ventilador de extracción durante la impresión, esta velocidad " -"sobrescribirá la velocidad en el GCode personalizado del filamento" +"sobrescribirá la velocidad en el G-code personalizado del filamento." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Velocidad del ventilador de extracción una vez finalizada la impresión" msgid "No cooling for the first" msgstr "No refrigerar las primeras" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Desactivar todos los ventiladores de refrigeración en las primeras capas. El " "ventilador de la primera capa suele estar apagado para conseguir una mejor " @@ -10929,8 +10928,8 @@ msgid "Don't support bridges" msgstr "No soportar puentes" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "No crear soportes en toda el área de los puentes. Los puentes normalmente " "pueden imprimirse directamente sin soporte si no son muy largos" @@ -10978,20 +10977,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11014,31 +11013,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -11065,20 +11058,20 @@ msgstr "" msgid "End G-code" msgstr "G-Code final" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "G-Code ejecutado en el final de la impresión completa" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "G-Code ejecutado entre Objetos" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "G-Code insertado entre objetos. Este parámetro sólo tendrá efecto cuando " -"imprima sus modelos objeto por objeto" +"imprima sus modelos objeto por objeto." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "G-Code ejecutado cuando se termine de imprimir con este filamento" msgid "Ensure vertical shell thickness" @@ -11114,7 +11107,7 @@ msgstr "Moderado" msgid "Top surface pattern" msgstr "Patrón de relleno cubierta superior" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Patrón de líneas del relleno de la superficie superior" msgid "Concentric" @@ -11144,7 +11137,7 @@ msgstr "Octograma en Espiral" msgid "Bottom surface pattern" msgstr "Patrón de relleno de cubierta inferior" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Patrón de líneas del relleno de la superficie de la cubierta inferior, no " "del relleno del puente" @@ -11193,7 +11186,7 @@ msgid "Small perimeters threshold" msgstr "Umbral de Perímetros pequeños" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Esto configura el umbral de longitud de perímetros pequeños. El umbral por " "defecto es 0mm" @@ -11202,7 +11195,7 @@ msgid "Walls printing order" msgstr "Orden de impresión de perímetros" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11216,7 +11209,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11225,7 +11218,7 @@ msgid "" "\n" " " msgstr "" -"Secuencia de impresión de los perímetros internos y externos. \n" +"Secuencia de impresión de los perímetros internos y externos.\n" "\n" "Utilice Interior/Exterior para obtener los mejores voladizos. Esto se debe a " "que los perímetros salientes pueden adherirse a un perímetro vecino durante " @@ -11241,7 +11234,7 @@ msgstr "" "perímetros para ser efectiva, ya que imprime primero los perímetros " "interiores a partir del 3er perímetro, después el perímetro exterior y, " "finalmente, el primer perímetro interior. En la mayoría de los casos, se " -"recomienda utilizar esta opción en lugar de la opción Exterior/Interior. \n" +"recomienda utilizar esta opción en lugar de la opción Exterior/Interior.\n" "\n" "Utilice Exterior/Interior para obtener la misma calidad en los perímetros " "exteriores y la misma precisión dimensional que con la opción Interior/" @@ -11417,7 +11410,7 @@ msgstr "" msgid "Extruder Color" msgstr "Color del extrusor" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Sólo se utiliza como ayuda visual en la interfaz de usuario" msgid "Extruder offset" @@ -11427,25 +11420,25 @@ msgid "Flow ratio" msgstr "Ratio de flujo" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "El material puede sufrir un cambio volumétrico tras cambiar entre el estado " "fundido y estado cristalino. Este ajuste cambia proporcionalmente todo el " "flujo de extrusión de este filamento en el G-Code. El rango de valores " "recomendado es entre 0.95 y 1.05. Puede ajustar ligeramente este valor para " "obtener una mejor superficie plana cuando hay una ligera sobre-extrusión o " -"infra-extrusión" +"infra-extrusión." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11470,7 +11463,7 @@ msgstr "" "Al activar Avance de Presión Lineal, el resultado de auto calibración se " "sobrescribirá." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "Pressure Advance(Klipper) AKA Factor de avance lineal(Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -11536,19 +11529,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Añada conjuntos de valores de avance de presión (PA), las velocidades de " "flujo volumétrico y las aceleraciones a las que se midieron, separados por " @@ -11576,10 +11568,9 @@ msgstr "" "sea el flujo volumétrico. Si no es así, confirme que su extrusor funciona " "correctamente. Cuanto más lento y con menos aceleración imprimas, mayor será " "el rango de valores PA aceptables. Si no se aprecia ninguna diferencia, " -"utilice el valor PA de la prueba más rápida. 3. Introduzca los trios de " -"valores PA, Flujo y Aceleraciones en el cuadro de texto que aparece aquí y " -"guarde su perfil de filamento.\n" -"\n" +"utilice el valor PA de la prueba más rápida.\n" +"3. Introduzca los trios de valores PA, Flujo y Aceleraciones en el cuadro de " +"texto que aparece aquí y guarde su perfil de filamento." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Activación del Avance de Presión Adaptativo para Voladizos (beta)" @@ -11599,9 +11590,9 @@ msgid "Pressure advance for bridges" msgstr "Avance de Presión Lineal para puentes" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -11624,8 +11615,9 @@ msgid "Keep fan always on" msgstr "Mantener el ventilador siempre encendido" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Si se activa este ajuste, el ventilador nunca se detendrá y funcionará al " "menos a la velocidad mínima para reducir la frecuencia de arranque y parada" @@ -11637,24 +11629,20 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Si está activada, esta configuración garantizará que los perímetros externos " "no se ralenticen para cumplir el tiempo de capa mínimo. Esto es " "especialmente útil en los siguientes escenarios:\n" -"\n" "1. Para evitar cambios de brillo al imprimir filamentos brillantes\n" "2. Para evitar cambios en la velocidad del perímetro externo que pueden " -"crear ligeros artefactos con apariencia de z banding\n" +"crear ligeros artefactos con apariencia de Z banding\n" "3. Para evitar imprimir a velocidades que provoquen VFA (artefactos finos) " -"en los perímetros externos\n" -"\n" +"en los perímetros externos" msgid "Layer time" msgstr "Tiempo de capa" @@ -11662,7 +11650,7 @@ msgstr "Tiempo de capa" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "El ventilador de refrigeración de la pieza se activará para las capas cuyo " "tiempo estimado sea inferior a este valor. La velocidad del ventilador se " @@ -11694,7 +11682,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Este ajuste representa la cantidad de volumen de filamento que puede ser " "derretido y extruido por segundo. La velocidad de impresión se verá limitada " @@ -11710,7 +11698,7 @@ msgstr "Tiempo de carga de filamento" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Tiempo que se tarda en cargar un nuevo filamento cuando se cambia de " "filamento. Generalmente sólo aplicable a multi-material con un único " @@ -11723,7 +11711,7 @@ msgstr "Tiempo de descarga del filamento" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Tiempo que se tarda en descargar un nuevo filamento cuando se cambia de " "filamento. Generalmente sólo aplicable a multi-material con un único " @@ -11736,18 +11724,18 @@ msgstr "Tiempo de cambio de herramienta" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Tiempo que se tarda en cambiar cabezal. Aplciable sólo a máquinas multi-" "herramientas. Para máquinas mono-herramientas, es 0. Sólo usado para " "elaborar estadísticas." msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "El diámetro del filamento se utiliza para calcular la extrusión en el G-" -"Code, por lo que es importante y debe ser preciso" +"Code, por lo que es importante y debe ser preciso." msgid "Pellet flow coefficient" msgstr "Coeficiente de Flujo de Pellets" @@ -11816,7 +11804,7 @@ msgid "Unloading speed" msgstr "Velocidad de descarga" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Velocidad usada para descargar el filamento en la torre de purga (no afecta " @@ -11835,8 +11823,8 @@ msgid "Delay after unloading" msgstr "Retraso tras descarga" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Tiempo de espera después de la descarga de filamento. Esto debería resultar " @@ -11865,7 +11853,7 @@ msgstr "" "refrigeración a la punta del extrusor." msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11924,7 +11912,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Llevar a cabo el moldeado de extremo cuando se usa una impresora multi " "cabezal (es decir, cuando el 'Extrusor Único Multimaterial' en los Ajustes " @@ -11936,13 +11924,13 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Volumen de Moldeado de Extremo Multicabezal" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "El volumen de Moldeado de Extremo antes del cambio de cabezal." msgid "Multi-tool ramming flow" msgstr "Flujo de Moldeado de Extremo multicabezal" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" "Flujo usado por el Moldeado de Extremo de filamento antes del cambio de " "cabezal." @@ -11950,20 +11938,20 @@ msgstr "" msgid "Density" msgstr "Densidad" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Densidad del filamento. Sólo para las estadísticas" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "El tipo de material del filamento" msgid "Soluble material" msgstr "Material soluble" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "El material soluble se utiliza habitualmente para imprimir soportes y la " "interfaz de los soportes" @@ -11972,7 +11960,7 @@ msgid "Support material" msgstr "Material de soporte" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "El material de soporte se utiliza habitualmente para imprimir soportes y la " "interfaz de los soportes" @@ -11982,8 +11970,8 @@ msgstr "Temperatura de ablandado" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "El material se reblandece a esta temperatura, por lo que cuando la " "temperatura de la cama es igual o superior a ella, es muy recomendable abrir " @@ -11992,7 +11980,7 @@ msgstr "" msgid "Price" msgstr "Precio" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Precio del filamento. Sólo para las estadísticas" msgid "money/kg" @@ -12001,7 +11989,7 @@ msgstr "moneda/kg" msgid "Vendor" msgstr "Fabricante" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Fabricante del filamento. Para mostrar solamente" msgid "(Undefined)" @@ -12012,7 +12000,7 @@ msgstr "Dirección de relleno de baja densidad" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Ángulo para el patrón de relleno de baja densidad, que controla el inicio o " "la dirección principal de la línea" @@ -12022,7 +12010,7 @@ msgstr "Dirección del relleno sólido" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Ángulo para el patrón de relleno sólido, que controla el inicio o la " "dirección principal de la línea" @@ -12039,7 +12027,7 @@ msgstr "Densidad de relleno de baja densidad" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Densidad del relleno de baja densidad interno, el 100% convierte el relleno " "de baja densidad en relleno sólido y se utilizará el patrón de relleno " @@ -12048,7 +12036,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Patrón de relleno de baja densidad" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Patrón de líneas para el relleno interno de baja densidad" msgid "Grid" @@ -12117,7 +12105,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12129,7 +12117,7 @@ msgstr "" "de relleno se conecta a un segmento de perímetro en un solo lado y la de " "relleno se conecta a un segmento de perímetro en un solo lado y la longitud " "del ancho de segmento de perímetro escogido se limita a este parámetro, pero " -"no más largo que anclaje_longitud_max. \n" +"no más largo que anclaje_longitud_max.\n" "Configure este parámetro a cero para deshabilitar los perímetros de anclaje " "conectados a una sola línea de relleno." @@ -12150,7 +12138,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12161,30 +12149,30 @@ msgstr "" "no hay ningún segmento más corto que este parámetro, esta línea de relleno " "se conecta a un segmento de perímetro solamente a un lado y la longitud del " "segmento de perìmetro escogida se limita a relleno_anclaje, pero no más alto " -"que este parámetro. \n" +"que este parámetro.\n" "Si se deja a 0, el algoritmo antiguo para conexión de relleno se usará, esto " "debería drear el mismo resultado que con 1000 y 0." msgid "0 (Simple connect)" msgstr "0 (Conexión simple)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Aceleración de los perímetros externos" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Aceleración de los perímetros internos" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Aceleración de los movimientos de desplazamiento" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Aceleración del relleno de la superficie superior. El uso de un valor más " "bajo puede mejorar la calidad de la superficie superior" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Aceleración del perímetro externo. Usar un valor menor puede mejorar la " "calidad" @@ -12218,7 +12206,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Aceleración de la primera capa. El uso de un valor más bajo puede mejorar la " "adherencia con la bandeja de impresión" @@ -12226,7 +12214,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Activar acel_a_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "El max_accel_to_decel de Klipper será ajustado automáticamente" msgid "accel_to_decel" @@ -12234,25 +12222,25 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "El max_accel_to_decel de Klipper se ajustará a este %% de aceleración" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk de los perímetros externos" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk de los perímetros internos" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Jerk de la superficie superior" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Jerk del relleno" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Jerk de la primera capa" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Jerk de desplazamiento" msgid "" @@ -12267,24 +12255,24 @@ msgstr "Altura de la primera capa" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Altura de la primera capa. Hacer que la altura de la primera capa sea " "ligeramente gruesa puede mejorar la adherencia con la bandeja de impresión" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Velocidad de la primera capa excepto la parte sólida de relleno" msgid "Initial layer infill" msgstr "Relleno de la primera capa" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Velocidad de la parte de relleno sólido de la primera capa" msgid "Initial layer travel speed" msgstr "Velocidad de desplazamiento en la primera capa" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Velocidad de movimientos de desplazamiento en la primera capa" msgid "Number of slow layers" @@ -12301,7 +12289,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Temperatura de la boquilla de la primera capa" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Temperatura de la boquilla para imprimir la primera capa cuando se utiliza " "este filamento" @@ -12330,7 +12318,7 @@ msgstr "Velocidad de ventilador en la interfaz de los soportes" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12351,7 +12339,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Sacudir ligeramente el cabezal de forma aleatoria cuando se imprime el " "perímetro externo, de modo que la superficie tenga un aspecto rugoso. Este " @@ -12371,7 +12359,7 @@ msgstr "Espesor de superficie rugosa" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "La anchura dentro de la cual se va a sacudir el cabezal. Se aconseja que " "esté por debajo del ancho de línea del perímetro exterior" @@ -12381,7 +12369,7 @@ msgstr "Distancia entre puntos de superficie rugosa" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "La diatancia media entre los puntos aleatorios introducidos en cada segmento " "de línea" @@ -12389,14 +12377,14 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "Aplicar superficie difusa en la primera capa" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Aplicar o no superficie difusa en la primera capa" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12462,7 +12450,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Velocidad de relleno de huecos. Un hueco suele tener un ancho de línea " "irregular y debería imprimirse más lentamente" @@ -12484,7 +12472,7 @@ msgstr "Activar movimientos en arco" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12505,17 +12493,18 @@ msgstr "" msgid "Add line number" msgstr "Añadir número de línea" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Active esta opción para añadir el número de línea (Nx) al principio de cada " -"línea de G-Code" +"línea de G-Code." msgid "Scan first layer" msgstr "Escanear la primera capa" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Active esta opción para que la cámara de la impresora compruebe la calidad " "de la primera capa" @@ -12525,7 +12514,7 @@ msgstr "Tipo de boquilla" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "El material metálico de la boquilla. Esto determina la resistencia a la " "abrasión de la boquilla, y con qué tipos de filamento puede imprimir" @@ -12558,7 +12547,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Estructura de la impresora" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Disposición física y componentes de un dispositivo de impresión" msgid "CoreXY" @@ -12593,10 +12582,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Arranca el ventilador este número de segundos antes que su tiempo de " @@ -12636,7 +12625,7 @@ msgstr "" msgid "Time cost" msgstr "Coste monetario por hora" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "El coste por hora de la impresora" msgid "money/h" @@ -12665,8 +12654,8 @@ msgstr "" msgid "G-code flavor" msgstr "Tipo de G-Code" -msgid "What kind of gcode the printer is compatible with" -msgstr "Con qué tipo de G-Code es compatible la impresora" +msgid "What kind of G-code the printer is compatible with." +msgstr "Con qué tipo de G-Code es compatible la impresora." msgid "Klipper" msgstr "Klipper" @@ -12674,21 +12663,21 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Impresora Modificada para Pellets" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Active esta opción si su impresora utiliza pellets en lugar de filamentos" msgid "Support multi bed types" msgstr "Usar tipos de cama múltiples" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "Active esta opción si desea utilizar varios tipos de cama" msgid "Label objects" msgstr "Etiquetar objetos" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12702,8 +12691,9 @@ msgstr "" msgid "Exclude objects" msgstr "Excluir objetos" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "Activar esta opción para añadir el comando EXCLUDE OBJECT en el G-Code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." +msgstr "Activar esta opción para añadir el comando EXCLUDE OBJECT en el " +"G-Code." msgid "Verbose G-code" msgstr "G-Code detallado" @@ -12732,7 +12722,7 @@ msgid "Infill combination - Max layer height" msgstr "Combinación de relleno - Altura máxima de la capa" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12791,7 +12781,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "El área de relleno sólido de cubierta superior/inferior se amplía " "ligeramente para solaparse con el perímetro, mejorando la adherencia y " @@ -12800,13 +12790,13 @@ msgstr "" "punto de partida para minimizar la aparición de agujeros. El valor " "porcentual es relativo al ancho de línea del relleno de baja densidad." -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Velocidad del relleno interno de baja densidad" msgid "Inherits profile" msgstr "Hereda el perfil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" @@ -12815,7 +12805,7 @@ msgstr "Perímetros de interfaz" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Furzar la generación de perímetro sólidos entre materiales/volúmenes " "adyacentes. Útil para impresiones con varios extrusores, con materiales " @@ -12834,7 +12824,7 @@ msgstr "Profundidad de entrelazado de una región segmentada" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Profundidad de enlazado de una región segmentada. Se ignorará si " @@ -12923,7 +12913,7 @@ msgstr "Todas la capas sólidas" msgid "Ironing Pattern" msgstr "Patrón de Alisado" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Patrón que se usará duante el alisado" msgid "Ironing flow" @@ -12931,7 +12921,7 @@ msgstr "Flujo de alisado" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "La cantidad de material a extruir durante el alisado. Relativo al flujo de " "la altura de la capa normal. Un valor demasiado alto provoca una " @@ -12940,7 +12930,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Espaciado entre líneas de alisado" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "La distancia entre las líneas de alisado" msgid "Ironing inset" @@ -12948,14 +12938,14 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "Velocidad de alisado" -msgid "Print speed of ironing lines" -msgstr "Velocidad de impresión de las líneas de alisado" +msgid "Print speed of ironing lines." +msgstr "Velocidad de impresión de las líneas de alisado." msgid "Ironing angle" msgstr "Ángulo de alisado" @@ -12967,16 +12957,16 @@ msgstr "" "El ángulo en el que se realiza el alisado. Un número negativo desactiva esta " "función y utiliza el método por defecto." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" -"Esta parte de G-Code se inserta en cada cambio de capa después de levantar z" +"Esta parte de G-Code se inserta en cada cambio de capa después de levantar z." msgid "Supports silent mode" msgstr "Admite el modo silencioso" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Si la máquina admite el modo silencioso en el que la se utiliza una menor " "aceleración para imprimir" @@ -12989,26 +12979,26 @@ msgstr "Límites de la máquina" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Si está activada, los límites de la máquina se emitirán en el archivo G-" "Code.\n" "Esta opción se ignorará si el tipo de G-Code es Klipper." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Este G-Code se usará como código para la pausa de impresión. El usuario " "puede insertar un comando de pausa de G-Code en el visor de G-Code." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Este G-Code se usará como un código personalizado" msgid "Small area flow compensation (beta)" msgstr "Compensación de flujo en áreas pequeñas (beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Activar la compensación de flujo en zonas de relleno pequeñas" msgid "Flow Compensation Model" @@ -13125,14 +13115,14 @@ msgstr "Aceleración máxima de retracción (M204 R)" msgid "Maximum acceleration for travel" msgstr "Aceleración máxima para el desplazamiento" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" "Aceleración máxima para el desplazamiento (M204 T), sólo se aplica en Marlin " "2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "La velocidad del ventilador de refrigeración de pieza puede aumentarse " "cuando la refrigeración automática está activada. Esta es la limitación de " @@ -13142,8 +13132,8 @@ msgid "Max" msgstr "Max" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "La altura de capa máxima imprimible por el extrusor. Se utiliza para limitar " "la altura máxima de capa cuando se habilita la altura de capa adaptativa" @@ -13157,23 +13147,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13184,26 +13174,26 @@ msgstr "" "(alta velocidad/ancho mayor) a una extrusión de menor flujo (menor velocidad/" "ancho menor) y viceversa.\n" "\n" -"Define la velocidad máxima a la que el flujo volumétrico extruido en mm3/seg " +"Define la velocidad máxima a la que el flujo volumétrico extruido en mm³/s² " "puede cambiar con el tiempo. Valores más altos significan que se permiten " "cambios de velocidad de extrusión más altos, lo que resulta en transiciones " "de velocidad más rápidas.\n" "\n" -"Un valor de 0 desactiva la función. \n" +"Un valor de 0 desactiva la función.\n" "\n" "Para una impresora de accionamiento directo de alta velocidad y alto flujo " "(como la Bambu lab o la Voron) este valor no suele ser necesario. Sin " "embargo, puede proporcionar algún beneficio marginal en ciertos casos en los " "que las velocidades de las características varían mucho. Por ejemplo, cuando " "hay ralentizaciones agresivas debidas a voladizos. En estos casos, se " -"recomienda un valor alto de alrededor de 300-350 mm3/s2, ya que esto permite " +"recomienda un valor alto de alrededor de 300-350 mm³/s², ya que esto permite " "el suavizado suficiente para ayudar al avance de presión a lograr una " "transición de flujo más suave.\n" "\n" "Para impresoras más lentas sin avance de presión, el valor debe fijarse " -"mucho más bajo. Un valor de 10-15mm3/s2 es un buen punto de partida para " -"extrusoras de accionamiento directo y de 5-10mm3/s2 para las de estilo " -"Bowden. \n" +"mucho más bajo. Un valor de 10-15 mm³/s² es un buen punto de partida para " +"extrusoras de accionamiento directo y de 5-10 mm³/s² para las de estilo " +"Bowden.\n" "\n" "Esta característica es conocida como Pressure Equalizer en Prusa slicer.\n" "\n" @@ -13217,11 +13207,11 @@ msgstr "Longitud del segmento de suavizado" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -13236,7 +13226,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Velocidad mínima del ventilador de refrigeración de la pieza" msgid "" @@ -13256,8 +13246,8 @@ msgid "Min" msgstr "Min" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "La menor altura de capa imprimible para el extrusor. Se utiliza para limitar " "la altura mínima de la capa cuando se activa la altura de capa adaptativa." @@ -13297,7 +13287,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Volumen de la boquilla" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Volumen de la boquilla entre el cortador y el extremo de la boquilla" msgid "Cooling tube position" @@ -13347,7 +13337,7 @@ msgstr "Distancia extra de carga" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Cuando se ajusta a cero, la distancia que el filamento se mueve desde la " @@ -13368,7 +13358,7 @@ msgstr "Reducir la retracción del relleno" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Desactiva la retracción cuando el desplazamiento se realiza en su totalidad " "dentro de un área de relleno, donde los artefactos causados por un rezumado " @@ -13387,7 +13377,7 @@ msgstr "" msgid "Filename format" msgstr "Formato de los nombres de archivo" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" "El usuario puede definir un nombre de archivo personalizado al exportar el " "proyecto" @@ -13416,7 +13406,7 @@ msgstr "Imprimir voladizos sin soportes - Área de orificios" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Máxima área de un orificio en la base del modelo antes de que se rellene de " "material cónico. El valor 0 llenará todos los orificios en la base del " @@ -13447,10 +13437,10 @@ msgstr "" "Ancho de extrusión del perímetro interno. Si se expresa cómo %, se calculará " "en base al diámetro de la boquilla." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Velocidad del perímetro interno" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Número de perímetros de cada capa" msgid "Alternate extra wall" @@ -13458,10 +13448,10 @@ msgstr "Perímetro adicional alternado" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -13507,7 +13497,7 @@ msgstr "Variante de la impresora" msgid "Raft contact Z distance" msgstr "Distancia Z de contacto de la balsa (base de impresión)" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Espacio Z entre el objeto y la balsa (base de impresión). Se ignora con una " "interfaz soluble" @@ -13515,20 +13505,20 @@ msgstr "" msgid "Raft expansion" msgstr "Expansión de la balsa (base de impresión)" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "" "Expandir todas las capas de la balsa (base de impresión) en el plano XY" msgid "Initial layer density" msgstr "Densidad de la primera capa" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Densidad de la balsa (base de impresión) o capa de soporte" msgid "Initial layer expansion" msgstr "Expansión de la primera capa" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Expandir la primera capa de la base de impresión o de soportes para mejorar " "la adherencia con la superficie de impresión" @@ -13538,16 +13528,16 @@ msgstr "Capas de balsa (base de impresión)" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "El objeto será elevado por este número de capas de soporte. Utilice esta " "función para evitar deformaciones al imprimir u otros materiales sensibles a " "las variaciones de temperatura" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "El G-Code se genera después de simplificar el contorno del modelo para " "evitar demasiados puntos y líneas de código en el archivo de G-Code. Un " @@ -13558,7 +13548,7 @@ msgstr "Umbral de distancia de desplazamiento" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Sólo se activa la retracción cuando la distancia de desplazamiento es " "superior a este umbral" @@ -13567,7 +13557,7 @@ msgid "Retract amount before wipe" msgstr "Longitud de retracción antes de purgado" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "La longitud de la retracción rápida antes de la purga, en relación con la " "longitud de la retracción" @@ -13575,7 +13565,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Retracción al cambiar de capa" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Forzar una retracción al cambiar de capa" msgid "Retract on top layer" @@ -13583,7 +13573,7 @@ msgstr "Retracción en la capa superior" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Forzar una retracción en la capa superior. Desactivarlo podría evitar " "atascos en patrones muy lentos con movimientos pequeños, como la curva de " @@ -13600,16 +13590,16 @@ msgstr "" "rezumado durante desplazamientos largos. Ajustar a cero para desactivar la " "retracción" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Retracción larga al cortar (beta)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Función experimental. Retraer y cortar el filamento una mayor distancia " +"Función experimental: Retraer y cortar el filamento una mayor distancia " "durante los cambios para minimizar el purgado. Si bien esto reduce " "significativamente el purgado, también puede aumentar el riesgo de bloqueos " "de boquillas u otros problemas de impresión." @@ -13618,10 +13608,10 @@ msgid "Retraction distance when cut" msgstr "Distancia de retracción al cortar" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Función experimental. Longitud de retracción antes del corte durante el " +"Función experimental: Longitud de retracción antes del corte durante el " "cambio de filamento" msgid "Z-hop height" @@ -13630,37 +13620,34 @@ msgstr "Altura de Salto en Z" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Cada vez que se realiza una retracción, la boquilla se levanta un poco para " "crear un pequeño margen entre la boquilla y la impresión. Esto evita que la " "boquilla golpee la pieza cuando se desplaza. El uso de la línea espiral para " "levantar z puede evitar la aparción de hilos" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Límite inferior de salto Z" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "El salto en Z sólo se usará cuando Z esté por encima de este valor y se " -"encuentre por debajo del parámetro: \"Límite superior de salto Z\"" +"encuentre por debajo del parámetro: \"Límite superior de salto Z\"." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Límite superior de salto Z" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"Si este valor es positivo, Z hop sólo se usará cuando Z esté por encima del " -"parámetro \"Límite inferior de salto Z\" y por debajo de este valor" +"Si este valor es positivo, Z-hop sólo se usará cuando Z esté por encima del " +"parámetro \"Límite inferior de salto Z\" y por debajo de este valor." msgid "Z-hop type" -msgstr "Tipo de Salto en Z" - -msgid "Z hop type" msgstr "Tipo de salto Z" msgid "Slope" @@ -13673,8 +13660,8 @@ msgid "Traveling angle" msgstr "Ángulo de desplazamiento" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Ángulo de desplazamiento para el tipo de salto Z de Pendiente y Espiral. Si " "se ajusta a 90°, se obtiene una elevación normal." @@ -13703,7 +13690,7 @@ msgid "On surfaces" msgstr "En las superficies" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Forzar el comportamiento de Salto Z. Este ajuste se ve afectado por los " @@ -13742,15 +13729,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Velocidad de retracción" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Velocidad de las retracciones" msgid "De-retraction Speed" msgstr "Velocidad de De-retracción" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Velocidad de recarga del filamento en el extrusor. Cero significa la misma " "velocidad que la retracción" @@ -13773,15 +13760,15 @@ msgid "Disable set remaining print time" msgstr "Desactivar tiempo de impresión restante" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Deshabilitar la generación del M73: Ajustar el tiempo de impresión restante " -"en el G-Code final" +"en el G-Code final." msgid "Seam position" msgstr "Posición de la costura" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "" "Estrategia de posicionado del inicio de impersión de cada perímetro exterior" @@ -13877,7 +13864,7 @@ msgstr "Velocidad de unión de bufanda" 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 " +"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 " @@ -13887,7 +13874,7 @@ msgid "" msgstr "" "Esta opción ajusta la velocidad de impresión para las uniones de bufanda. Se " "recomienda imprimir las uniones de bufanda a una velocidad lenta (inferior a " -"100 mm/s). También es aconsejable activar la opción \"Suavizado de la " +"100 mm/s). También es aconsejable activar la opción \"Suavizado de la " "velocidad de extrusión\" si la velocidad configurada varía " "significativamente de la velocidad de los perímetros exteriores o " "interiores. Si la velocidad especificada aquí es superior a la velocidad de " @@ -13947,7 +13934,7 @@ msgid "Role base wipe speed" msgstr "Velocidad de purga según tipo de línea" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -13975,7 +13962,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -13998,9 +13985,9 @@ msgstr "Velocidad de purgado" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "La velocidad de purgado es determinada por este parámetro. Si el valor se " "expresa como un porcentaje (por ejemplo, 80%), se calculará en función del " @@ -14026,7 +14013,7 @@ msgstr "" msgid "Skirt height" msgstr "Altura de falda" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Cantidad de capas de falda. Normalmente sólo una capa" msgid "Single loop draft shield" @@ -14044,7 +14031,7 @@ msgstr "Protector contra corrientes de aire" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14085,7 +14072,7 @@ msgstr "Por objeto" msgid "Skirt loops" msgstr "Bucles de la falda" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Número de bucles de la falda. Cero significa desactivar la falda" msgid "Skirt speed" @@ -14103,33 +14090,34 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Longitud mínima de extrusión de filamento en mm al imprimir el faldón. Cero " "significa que esta característica está desactivada.\n" "\n" "El uso de un valor distinto de cero es útil si la impresora está configurada " -"para imprimir sin una línea principal. \n" +"para imprimir sin una línea principal.\n" "El número final de bucles no se tiene en cuenta al organizar o validar la " "distancia de los objetos. En este caso, aumente el número de bucles." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "La velocidad de impresión en el G-Code exportado se ralentizará, cuando el " "tiempo estimado de la capa sea inferior a este valor, para conseguir una " -"mejor refrigeración de estas capas" +"mejor refrigeración de estas capas." msgid "Minimum sparse infill threshold" msgstr "Umbral de área mínima de relleno de baja densidad" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "El área de relleno de baja densidad que es menor que este valor de umbral se " "sustituye por un relleno sólido interno" @@ -14147,14 +14135,14 @@ msgstr "" "Ancho de línea del relleno sólido interno. Si se expresa cómo %, se " "calculará en base al diámetro de la boquilla." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Velocidad del relleno sólido interno, no de la superficie superior o inferior" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "El modo espiral suaviza los movimientos z del contorno exterior. Convierte " "un modelo sólido en una impresión de un solo perímetro con capas inferiores " @@ -14165,7 +14153,7 @@ msgstr "Espiral Suave" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Espiral Suave suaviza también los movimientos en X e Y, con lo que no se " "aprecia ninguna costura, ni siquiera en las direcciones XY en perímetros que " @@ -14177,7 +14165,7 @@ msgstr "Suavizado XY Máximo" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Distancia máxima a desplazar los puntos en XY para intentar conseguir una " "espiral suave. Si se expresa en %, se calculará en base al diámetro de la " @@ -14232,8 +14220,8 @@ msgstr "Variación de temperatura" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Diferencia de temperatura a aplicar cuando un extrusor no está activo. El " "valor no se utiliza cuando 'idle_temperature' en los ajustes de filamento se " @@ -14258,7 +14246,7 @@ msgid "Preheat steps" msgstr "Pasos de precalentamiento" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Insertar múltiples comandos de precalentamiento (por ejemplo, M104.1). Sólo " @@ -14267,16 +14255,16 @@ msgstr "" msgid "Start G-code" msgstr "G-Code inicial" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "G-Code de inicio cuando se comienza la impresión del archivo" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "G-Code de inicio cuando se comienza la impresión de este filamento" msgid "Single Extruder Multi Material" msgstr "Multi Material con Extrusor Único" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Usa una único boquilla para imprimir multifilamento" msgid "Manual Filament Change" @@ -14298,18 +14286,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Purgar en una torre" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Purgar el filamento restante en una torre" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Activar el moldeado de extremo del filamento" msgid "No sparse layers (beta)" msgstr "Sin capas de baja densidad (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14382,11 +14370,15 @@ msgstr "Habilitar los soportes" msgid "Enable support generation." msgstr "Habilitar la generación de soportes." +#, fuzzy msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" +"Normal (auto) y Árbol (auto) se utilizan para generar los soportes " +"automáticamente. Si se selecciona Normal (manual) o Árbol (manual), sólo " +"se generan los soportes forzados." msgid "Normal (auto)" msgstr "Normal (auto)" @@ -14403,14 +14395,14 @@ msgstr "Árbol (manual)" msgid "Support/object xy distance" msgstr "Distancia soporte/objeto X-Y" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Separación XY entre un objeto y su soporte" msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" msgstr "Ángulo del patrón" @@ -14422,7 +14414,7 @@ msgstr "" msgid "On build plate only" msgstr "Sólo en la bandeja de impresión" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "" "No crear soporte en la superficie del modelo, sólo en la bandeja de impresión" @@ -14445,13 +14437,13 @@ msgstr "Elimina los voladizos pequeños que posiblemente no necesiten soportes." msgid "Top Z distance" msgstr "Distancia Z superior" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "La distancia z entre la interfaz de soporte superior y el objeto" msgid "Bottom Z distance" msgstr "Distancia Z inferior" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "La distancia z entre la interfaz de apoyo inferior y el objeto" msgid "Support/raft base" @@ -14459,11 +14451,11 @@ msgstr "Capa base/balsa" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filamento para imprimir la base de soporte y la balsa de impresión. \"Por " "defecto\" significa que no hay filamento específico para el soporte y se " -"utiliza el filamento actual" +"utiliza el filamento actual." msgid "Avoid interface filament for base" msgstr "Evitar usar filamento de interfaz para la base" @@ -14495,7 +14487,7 @@ msgstr "Interfaz de soporte/balsa" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filamento para imprimir interfaz de soporte. \"Por defecto\" significa que " "no hay filamento específico para la interfaz de soporte y se utiliza el " @@ -14504,13 +14496,13 @@ msgstr "" msgid "Top interface layers" msgstr "Capas de la interfaz superior" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Número de capas de interfaz superior" msgid "Bottom interface layers" msgstr "Capas de la interfaz inferior" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Número de capas de la interfaz inferior" msgid "Same as top" @@ -14519,24 +14511,24 @@ msgstr "Lo mismo que la superior" msgid "Top interface spacing" msgstr "Espaciado de la interfaz superior" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Espaciado de las líneas de interfaz. Cero significa que la interfaz es sólida" msgid "Bottom interface spacing" msgstr "Espaciado de la interfaz inferior" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Espaciado de las líneas de interfaz. Cero significa que la interfaz es sólida" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Velocidad de la interfaz de soporte" msgid "Base pattern" msgstr "Patrón de base" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Patrón de líneas de soportes" msgid "Rectilinear grid" @@ -14551,7 +14543,7 @@ msgstr "Patrón de interfaz" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Patrón de líneas de la interfaz de soporte. El patrón por defecto para la " "interfaz de soporte no soluble es Rectilíneo, mientras que el patrón por " @@ -14563,16 +14555,16 @@ msgstr "Entrelazado rectilíneo" msgid "Base pattern spacing" msgstr "Espaciado del patrón base" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Espaciado entre las líneas de apoyo" msgid "Normal Support expansion" msgstr "Expansión de Soporte Normal" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Ampliar (+) o reducir (-) la expansión horizontal del soporte Normal" -msgid "Speed of support" +msgid "Speed of support." msgstr "Velocidad en soportes" msgid "" @@ -14616,7 +14608,7 @@ msgstr "Altura independiente de la capa de soporte " msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "La capa de soporte utiliza una altura de capa independiente de la capa del " @@ -14646,8 +14638,8 @@ msgid "Tree support branch angle" msgstr "Ángulo de las rama de soporte Árbol" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Este ajuste determina el ángulo máximo de voladizo que pueden tener las " @@ -14697,8 +14689,8 @@ msgid "Adaptive layer height" msgstr "Altura de capa adaptativa" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Si se activa esta opción, se calculará automáticamente la altura de todas " "las capas de soporte de los árboles excepto la primera. " @@ -14708,7 +14700,7 @@ msgstr "Ancho de borde de adherencia automático" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Si activa esta opción, se calculará automáticamente la anchura del borde de " "adherencia para el soporte de Árbol" @@ -14716,7 +14708,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Anchura del borde de adherencia" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" "Distancia desde la rama del árbol hasta la línea más externa del borde de " "adherencia" @@ -14763,7 +14755,7 @@ msgstr "Soporte de Árbol con relleno" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Este ajuste especifica si se añade relleno dentro de los grandes huecos de " "los soportes de Árbol" @@ -14777,7 +14769,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14789,7 +14781,7 @@ msgstr "" "Este comando especifica la temperatura objetivo de la cámara y mantendrá la " "impresora en espera hasta que se alcance dicha temperatura. Adicionalmente, " "se emite un comando M141 al finalizar la impresión para apagar el sistema de " -"calentamiento de cámara, en caso de existir. \n" +"calentamiento de cámara, en caso de existir.\n" "\n" "Esta función requiere de que el firmware de la impresora sea compatible con " "los comandos M191 y M141, ya sea nativamente o mediante el uso de macros. " @@ -14804,13 +14796,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -14821,7 +14813,7 @@ msgstr "" "Una mayor temperatura de la cámara puede ayudar a suprimir o reducir la " "deformación y potencialmente conducir a una mayor resistencia de unión entre " "capas para materiales de alta temperatura como ABS, ASA, PC, PA, etc. Al " -"mismo tiempo, la filtración de aire de ABS y ASA empeorará. \n" +"mismo tiempo, la filtración de aire de ABS y ASA empeorará.\n" "\n" "Por otro lado, materiales como PLA, PETG, TPU, PVA y otros materiales de " "baja temperatura, la temperatura real de la cámara no debe ser alta para " @@ -14838,7 +14830,7 @@ msgstr "" "M191, o si prefiere realizar un precalentamiento usando un macro si no " "dispone de un sistema de calentamiento activo de cámara." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Temperatura de la boquilla después de la primera capa" msgid "Detect thin wall" @@ -14846,21 +14838,21 @@ msgstr "Detección de perímetros delgados" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Detectar los perímetros delgados que no pueden contener dos líneas de ancho, " "y utilizar una sola línea para imprimir. Tal vez no se imprima muy bien, " "debido a que no es de bucle cerrado" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Este G-Code se inserta al cambiar de filamento, incluyendo el comando T para " -"activar el cambio de cabezal" +"activar el cambio de cabezal." -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "Este G-Code se inserta cuando se cambia el rol de extrusión" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "Este G-Code se inserta cuando se cambia el rol de extrusión." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -14869,7 +14861,7 @@ msgstr "" "Ancho de línea de las capas superiores. Si se expresa cómo %, se calculará " "en base al diámetro de la boquilla." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Velocidad del relleno de la superficie superior que es sólida" msgid "Top shell layers" @@ -14878,7 +14870,7 @@ msgstr "Capas de la cubierta superior" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Es el número de capas sólidas de la cubierta superior, incluida la capa " "superficial superior. Si el grosor calculado por este valor es menor que el " @@ -14896,7 +14888,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "El número de capas sólidas superiores se incrementa al laminar si el espesor " "calculado por las capas de la cubierta es más delgado que este valor. Esto " @@ -14905,15 +14897,16 @@ msgstr "" "capa superior está absolutamente determinado por las capas de la cubierta " "superior" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Velocidad de desplazamiento más rápida y sin extrusión" msgid "Wipe while retracting" msgstr "Purgar mientras se retrae" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Mueva la boquilla a lo largo de la última trayectoria de extrusión cuando se " "retraiga para limpiar el material rezumado en la boquilla. Esto puede " @@ -14924,21 +14917,21 @@ msgstr "Distancia de purgado" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Describa cuánto distancia se moverá la boquilla a lo largo de la última " -"trayectoria al retraerse. \n" +"trayectoria al retraerse.\n" "\n" "Dependiendo de la duración de la operación de purgado y de la velocidad y " "longitud de los ajustes de retracción del extrusor/filamento, puede ser " -"necesario un movimiento de retracción para retraer el filamento restante. \n" +"necesario un movimiento de retracción para retraer el filamento restante.\n" "\n" "Fijando un valor en la cantidad de retracción antes del purgado se realizará " "cualquier exceso de retracción antes del purgado, de lo contrario se " @@ -14972,7 +14965,7 @@ msgstr "Volumen de purga" msgid "The volume of material to prime extruder on tower." msgstr "El volumen de material para purgar la extrusora en la torre." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Ancho de la torre de purga" msgid "Wipe tower rotation angle" @@ -15008,7 +15001,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15029,7 +15022,7 @@ msgstr "" "aumentar la fuerza con la que la boquilla colisiona con las acummulaciones " "que se hayan podido formar en la torre de purga.\n" "\n" -"Antes de aumentar este parámetro más allá del valor por defecto de 90mm/seg, " +"Antes de aumentar este parámetro más allá del valor por defecto de 90mm/s, " "asegúrese de que su impresora puede puentear de forma fiable a las " "velocidades aumentadas y que el rezume al cambiar de cabezal está bien " "controlado.\n" @@ -15079,8 +15072,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Este objeto se utilizará para purgar la boquilla después de un cambio de " "filamento para ahorrar filamento y disminuir el tiempo de impresión. Los " @@ -15117,9 +15110,9 @@ msgid "Idle temperature" msgstr "Temperatura de Espera" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Temperatura de la boquilla cuando el cabezal no se está utilizando en " "configuraciones multicabezal. Este parámetro sólo es utilizado cuando la " @@ -15129,10 +15122,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Compensación en X-Y de huecos" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Los huecos del objeto crecerán o se reducirán en el plano XY según el valor " "configurado. Un valor positivo hace que los huecos sean más grandes. Un " @@ -15143,11 +15138,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Compensación de contornos en X-Y" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "El contorno del objeto crecerá o se reducirá en el plano XY según el valor " "configurado. Un valor positivo hace que el contorno sea más grande. Un valor " @@ -15206,7 +15202,7 @@ msgstr "Formato de las miniaturas de G-Code" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Formato de las miniaturas de G-Code: PNG para la mejor calidad, JPG para el " "tamaño más pequeño, QOI para firmware de baja memoria" @@ -15215,10 +15211,10 @@ msgid "Use relative E distances" msgstr "Usar distancias E relativas" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Se recomienda la extrusión relativa cuando se utiliza la opción " "\"label_objects\". Algunos extrusores funcionan mejor con esta opción " @@ -15229,7 +15225,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "El generador de perímetros clásico produce perímetros con ancho de extrusión " "constante y para zonas muy finas se utiliza rellenar-espacio. El motor " @@ -15244,7 +15240,7 @@ msgstr "Anchura de transición de perímetro" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Cuando se pasa de un número de perímetros a otro, a medida que la pieza se " "vuelve más fina se asigna una determinada cantidad de espacio para dividir o " @@ -15261,7 +15257,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Evita la transición entre un perímetro de más y uno de menos. Este margen " "amplía el rango de anchos de extrusión que siguen a [Ancho mínimo de " @@ -15279,7 +15275,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Cuándo crear transiciones entre números pares e impares de perímetros. Una " "forma de cuña con un ángulo mayor que este ajuste no tendrá transiciones y " @@ -15292,7 +15288,7 @@ msgstr "Recuento de la distribución del perímetro" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "El número de perímetros, contados desde el centro, sobre los que debe " "repartirse la variación. Los valores más bajos significan que los perímetros " @@ -15301,11 +15297,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Tamaño mínimo de la característica" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Espesor mínimo de los detalles finos. Las características del modelo que " "sean más finas que este valor no se imprimirán, mientras que las " @@ -15357,7 +15354,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Anchura del perímetro que sustituirá a los elementos finos (según el tamaño " "mínimo del elemento) del modelo. Si la anchura mínima del perímetro es menor " @@ -15369,9 +15366,9 @@ msgid "Detect narrow internal solid infill" msgstr "Detección de relleno interno estrecho" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Esta opción detectará automáticamente el área de relleno sólido interno " "estrecho. Si se activa, se utilizará un patrón concéntrico para el área para " @@ -15405,7 +15402,7 @@ msgstr "Exportar datos de laminado a una carpeta." msgid "Load slicing data" msgstr "Cargar datos de laminado" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Cargar datos de laminado en caché desde el directorio" msgid "Export STL" @@ -15417,7 +15414,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -15441,13 +15438,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "Cargar los filamentos por defecto" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Carga el primer filamento por defecto para los no cargados" msgid "Minimum save" @@ -15471,7 +15468,7 @@ msgstr "tiempo máximo de corte por bandeja en segundos." msgid "No check" msgstr "No comprobar" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "No ejecute ninguna comprobación de validez, como la comprobación de " "conflictos de ruta de G-Code." @@ -15506,17 +15503,17 @@ msgstr "Opciones de posicionamiento" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Opciones de posicionamiento: 0-desactivar, 1-activar, otras-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Cantidad de repeticiones" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Cantidad de repeticiones del modelo completo" msgid "Ensure on bed" msgstr "Auto-ajustar a la cama" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Eleva el objeto sobre la cama cuando está parcialmente debajo. Deshabilitado " "por defecto" @@ -15531,7 +15528,7 @@ msgstr "" msgid "Convert Unit" msgstr "Convertir Unidad" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Convertir las unidades del modelo" msgid "Orient Options" @@ -15549,67 +15546,67 @@ msgstr "Rotar alrededor de Y" msgid "Rotation angle around the Y axis in degrees." msgstr "El ángulo de rotación alrededor del eje Y en grados." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Escala el modelo por un factor de flotación" msgid "Load General Settings" msgstr "Cargar los ajustes generales" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Cargar los ajustes del proceso/máquina desde el archivo especificado" msgid "Load Filament Settings" msgstr "Cargar los ajustes del filamento" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "" "Cargar los ajustes del filamento desde la lista de archivos especificada" msgid "Skip Objects" msgstr "Omitir objetos" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Omitir algunos objetos en esta impresión" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" "carga los ajustes actualizados de proceso/máquina cuando se usa actualizar" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "carga los ajustes actualizados de proceso/máquina desde el archivo " "especificado cuando se usa actualizar" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -15643,14 +15640,14 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Cargar G-Code personalizado" -msgid "Load custom gcode from json" -msgstr "Cargar G-Code personalizado desde json" +msgid "Load custom G-code from json." +msgstr "Cargar G-Code personalizado desde json." msgid "Load filament ids" msgstr "" @@ -15658,30 +15655,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -15708,13 +15705,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Z-Hop actual" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" "Contiene el z-hop presente al principio del bloque de G-Code personalizado." @@ -15818,10 +15815,10 @@ msgid "Total filament volume extruded per extruder during the entire print." msgstr "" "Volumen total de filamento extruido por extrusor durante toda la impresión." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Total de cambios de cabezales" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Número de cambios de cabezal durante la impresión." msgid "Total volume" @@ -15881,7 +15878,7 @@ msgid "" msgstr "" "Contiene una cadena con información sobre la escala aplicada a cada objeto. " "La indexación de los objetos se basa en cero (el primer objeto tiene índice " -"0). \n" +"0).\n" "Ejemplo: 'x:100% y:50% z:100'." msgid "Input filename without extension" @@ -16070,7 +16067,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "La compensación de tamaño XY de un objeto no se utilizará porque también " "está pintado en color.\n" @@ -16096,9 +16093,6 @@ msgstr "" "Formato de archivo desconocido: el archivo de entrada debe tener extensión " ".3mf o .zip.amf." -msgid "Canceled" -msgstr "Cancelado" - msgid "load_obj: failed to parse" msgstr "load_obj: fallo al parsear" @@ -16200,7 +16194,7 @@ msgid "The name cannot be empty." msgstr "El nombre no puede estar vacío." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "El perfil seleccionado: %s no ha sido encontrado." msgid "The name cannot be the same as the system preset name." @@ -16234,12 +16228,12 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Esta impresora sólo puede almacenar 16 registros por boquilla. Puede borrar " "registros existentes y después comenzar la calibración. También puede elegir " -"continuar con la calibración, pero no podrá guardar los registros. \n" +"continuar con la calibración, pero no podrá guardar los registros.\n" "¿Desea continuar con la calibración?" msgid "Connecting to printer..." @@ -16248,7 +16242,7 @@ msgstr "Conectando a la impresora..." msgid "The failed test result has been dropped." msgstr "El resultado del test fallido ha sido descartado." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "" "El resultado de la Calibración de Dinámicas de Flujo se ha guardado en la " "impresora" @@ -16277,11 +16271,11 @@ msgstr "Error interno" msgid "Please select at least one filament for calibration" msgstr "Por favor, selecciona al menos un filamento por calibración" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" "El resultado de la calibración del ratio de flujo se ha guardado en el perfil" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "El resultado de la calibración de velocidad volumétrica máxima se ha salvado " "en el perfil" @@ -16294,10 +16288,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Hemos añadido la auto-calibración para diferentes filamentos, los cuales " "están totalmente automatizados, y los resultados se guardarán en la " @@ -16366,12 +16360,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Después de usar la Calibración de Dinámicas de Flujo, puede haber algunos " "Después de usar la Calibración de Dinámicas de Flujo, puede haber algunos " @@ -16492,7 +16486,7 @@ msgstr "El nombre no puede exceder de 40 caracteres." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Sólo se guardará uno de los resultados con el mismo nombre. ¿Está seguro de " "que desea reemplazar los otros resultados?" @@ -16547,9 +16541,6 @@ msgstr "Saltar Calibración2" msgid "flow ratio : %s " msgstr "Ratio de flujo: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Por favor, escoja un bloque con la superficie superior más lisa" - msgid "Please choose a block with smoothest top surface." msgstr "Por favor, escoja un bloque con la superficie superior más lisa." @@ -16595,7 +16586,7 @@ msgstr "Filamento para Calibrar" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Consejos para la calibración del material:\n" "- Los materiales que pueden tener la misma temperatura de cama\n" @@ -16864,7 +16855,7 @@ msgstr "Longitud de retracción final: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Enviar G-Code al host de impresión" msgid "Upload to Printer Host with the following filename:" @@ -16912,7 +16903,7 @@ msgstr "Cancelar selección" msgid "Show error message" msgstr "Mostrar mensaje de error" -msgid "Enqueued" +msgid "Queued" msgstr "En cola" msgid "Uploading" @@ -17001,14 +16992,14 @@ msgstr "Versión de Sistema:" msgid "DNS Server:" msgstr "Servidor DNS:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "Prueba OrcaSlicer(GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "Prueba OrcaSlicer(GitHub):" -msgid "Test Bing.com" -msgstr "Prueba Bing.com" +msgid "Test bing.com" +msgstr "Prueba bing.com" msgid "Test bing.com:" msgstr "Prueba Bing,.com:" @@ -17073,7 +17064,7 @@ msgstr "" "El fabricante personalizado no ha sido introducido, por favor introdúzcalo." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" o \"Genérico\" no pueden ser usados como Fabricante para " "filamentos personalizados." @@ -17098,7 +17089,7 @@ msgstr "" "Todas las entradas en el fabricante personalizado o serie son espacios. " "Vuelva a introducirlos." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "El fabricante no puede ser un número. Vuelva a introducirlos." msgid "" @@ -17109,11 +17100,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"El nombre del filamento %s que ha creado ya existe. \n" +"El nombre del filamento %s que ha creado ya existe.\n" "Si continúa, el perfil creado se mostrará con su nombre completo. ¿Desea " "continuar?" @@ -17131,11 +17122,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora " -"seleccionados\". \n" +"seleccionados\".\n" "Para añadir perfiles para más impresoras, vaya a la selección de impresoras" msgid "Create Printer/Nozzle" @@ -17159,7 +17150,7 @@ msgstr "Importar Perfil" msgid "Create Type" msgstr "Crear Tipo" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "No se encuentra el modelo, vuelva a seleccionar fabricante." msgid "Select Model" @@ -17204,18 +17195,18 @@ msgstr "" "Se ha producido una excepción obteniendo el tamaño de archivo, por favor, " "impórtelo de nuevo." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" "No se encuentra la ruta del perfil, vuelva a seleccionar el fabricante." msgid "The printer model was not found, please reselect." msgstr "No se ha encontrado el modelo de impresora, vuelva a seleccionarlo." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "" "El diámetro de la boquilla no se ha encontrado, vuelva a seleccionarlo." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "" "El perfil de impresora no se ha encontrado, por favor, vuelva a " "seleccionarlo." @@ -17283,7 +17274,7 @@ msgstr "Fallo creando perfiles de filamento:\n" msgid "Create process presets failed. As follows:\n" msgstr "Fallo crenado perfiles de proceso:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Fabricante no encontrado, por favor seleccione uno." msgid "Current vendor has no models, please reselect." @@ -17319,10 +17310,10 @@ msgstr "" "Todavía no ha seleccionado impresora para sustituir la boquilla, por favor, " "selecciónela." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Éxito Creando la Impresora" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Éxito Creando el Filamento" msgid "Printer Created" @@ -17351,7 +17342,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -17411,18 +17402,18 @@ msgstr "" "después de la creación." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Impresora y todos los perfiles de filamento y proceso que pertenecen a la " -"impresora. \n" +"impresora.\n" "Se puede compartir con otros." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Conjunto de perfiles de filamento del usuario. \n" +"Conjunto de perfiles de filamento del usuario.\n" "Se pueden compartir con otros." msgid "" @@ -17487,7 +17478,7 @@ msgstr "" "Nota: Si el único perfil basado en este filamento es borrado, el filamento " "se borrará después de salir del diálogo." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "Los perfiles heredados por otros perfiles no pueden borrarse" msgid "The following presets inherits this preset." @@ -17511,12 +17502,12 @@ msgid "Delete Filament" msgstr "Borrar Filamento" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Se eliminarán todos los perfiles de filamento que pertenezcan a este " -"filamento. \n" +"filamento.\n" "Si está utilizando este filamento en su impresora, restablezca la " "información del filamento para esa ranura." @@ -17648,16 +17639,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Tipo de host de impresión no coincidente: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "La conexión a AstroBox funciona correctamente." msgid "Could not connect to AstroBox" msgstr "No se ha podido conectar con AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Nota: Se requiere la versión 1.1.0 de AstroBox como mínimo." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "La conexión con Duet funciona correctamente." msgid "Could not connect to Duet" @@ -17675,7 +17666,7 @@ msgstr "No se han podido obtener recursos para crear una nueva conexión" msgid "Upload not enabled on FlashAir card." msgstr "La carga no está activada en la tarjeta FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" "La conexión a FlashAir funciona correctamente y la carga está activada." @@ -17689,28 +17680,28 @@ msgstr "" "Nota: Se requiere FlashAir con firmware 2.00.02 o más reciente y función de " "carga activada." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "La conexión con MKS funciona correctamente." msgid "Could not connect to MKS" msgstr "No se ha podido conectar con MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "La conexión con OctoPrint funciona correctamente." msgid "Could not connect to OctoPrint" msgstr "No se ha podido conectar con OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Nota: Se requiere una versión de OctoPrint al menos 1.1.0." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "La conexión a Prusa SL1 / SL1S funciona correctamente." msgid "Could not connect to Prusa SLA" msgstr "No se ha podido conectar con Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "La conexión a PrusaLink funciona correctamente." msgid "Could not connect to PrusaLink" @@ -17735,19 +17726,19 @@ msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" "La carga ha fallado. No se ha encontrado almacenamiento adecuado en %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "La conexión a Prusa Connect funciona correctamente." msgid "Could not connect to Prusa Connect" msgstr "No se pudo conectar a Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "La conexión con Repetier funciona correctamente." msgid "Could not connect to Repetier" msgstr "No se ha podido conectar con Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Nota: Se requiere la versión 0.90.0 de Repetier como mínimo." #, boost-format @@ -17764,7 +17755,7 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" -"Falló el análisis de la respuesta del host. \n" +"Falló el análisis de la respuesta del host.\n" "Cuerpo del mensaje: \"%1%\" \n" "Error: \"%2%\"" @@ -17774,13 +17765,13 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" -"Fallo en la enumeración de impresoras host. \n" +"Fallo en la enumeración de impresoras host.\n" "Cuerpo del mensaje: \"%1%\" \n" "Error: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Tiene una altura de capa pequeña, y da como resultado unas líneas de capa " "casi inapreciables y una alta calidad de impresión. Es adecuado para la " @@ -17788,8 +17779,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,2 mm, tiene " "velocidades y aceleraciones más bajas, y el patrón de relleno de baja " @@ -17798,8 +17789,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "Comparado con el perfil por defecto de una boquilla de 0,2 mm, tiene una " "altura de capa ligeramente mayor, y da como resultado líneas de capa casi " @@ -17807,8 +17798,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,2 mm, tiene " "una mayor altura de capa. Esto se traduce en líneas de capa ligeramente " @@ -17816,8 +17806,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,2 mm, tiene " "una altura de capa menor. Esto da como resultado líneas de capa casi " @@ -17827,8 +17817,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,2 mm, tiene " "unas líneas de capa más pequeñas, velocidades y aceleraciones más bajas, y " @@ -17837,9 +17827,9 @@ msgstr "" "un tiempo de impresión mucho más largo." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "En comparación con el perfil predeterminado de boquilla de 0,2 mm, tiene una " "altura de capa menor, y da como resultado líneas de capa mínimas y una mayor " @@ -17848,8 +17838,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,2 mm, tiene " "unas líneas de capa más pequeñas, velocidades y aceleraciones más bajas, y " @@ -17858,8 +17848,8 @@ msgstr "" "pero un tiempo de impresión mucho más largo." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Tiene una altura de capa normal, y da como resultado unas líneas de capa y " "una calidad de impresión medias. Es adecuado para la mayoría de los casos de " @@ -17867,8 +17857,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "más perímetros y un mayor relleno de baja densidad. Esto se traduce en una " @@ -17877,8 +17867,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una mayor altura de capa. Esto da lugar a líneas de capa más visibles y a " @@ -17887,8 +17877,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una mayor altura de capa, y da como resultado líneas de capa más visibles y " @@ -17896,8 +17886,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una altura de capa menor. Esto se traduce en menos líneas de capa visibles y " @@ -17906,8 +17896,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una altura de capa menor, velocidades y aceleraciones más bajas, y el patrón " @@ -17917,8 +17907,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una altura de capa menor. Esto se traduce en unas líneas de capa casi " @@ -17928,8 +17918,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una altura de capa menor, velocidades y aceleraciones más bajas, y el patrón " @@ -17939,24 +17929,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,4 mm, tiene " "una altura de capa menor. Esto se traduce en unas líneas de capa casi " "inapreciables y un mayor tiempo de impresión." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Tiene una gran altura de capa, y da lugar a líneas de capa visibles y a una " "calidad y tiempo de impresión ordinarios." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,6 mm, tiene " "más bucles de perímetro y una mayor relleno de baja densidad. Esto se " @@ -17965,8 +17954,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,6 mm, tiene " "una mayor altura de capa. Esto da lugar a líneas de capa más visibles y a " @@ -17975,8 +17964,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,6 mm, tiene " "una mayor altura de capa. Esto da lugar a líneas de capa mucho más visibles " @@ -17985,8 +17974,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,6 mm, tiene " "una altura de capa menor. Esto se traduce en menos líneas de capa visibles y " @@ -17995,24 +17984,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,6 mm, tiene " "una altura de capa menor, y da como resultado líneas de capa menos visibles " "y una mayor calidad de impresión, pero un tiempo de impresión más largo." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Tiene una altura de capa muy grande, y da lugar a líneas de capa muy " "visibles, baja calidad de impresión y menor tiempo de impresión." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,8 mm, tiene " "una mayor altura de capa. Esto da lugar a líneas de capa muy visibles y a " @@ -18021,8 +18010,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,8 mm, tiene " "una altura de capa mucho mayor. Esto da lugar a líneas de capa " @@ -18031,9 +18020,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,8 mm, tiene " "una altura de capa ligeramente menor. Esto se traduce en líneas de capa " @@ -18042,8 +18030,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "En comparación con el perfil predeterminado de una boquilla de 0,8 mm, tiene " "una altura de capa menor. Esto se traduce en menos líneas de capa, aunque " @@ -18073,7 +18061,7 @@ msgstr "" "La cuenta SimplyPrint no está vinculada. Vaya a Opciones de conexión para " "configurarla." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "La conexión con Flashforge funciona correctamente." msgid "Could not connect to Flashforge" @@ -18090,7 +18078,7 @@ msgid "Something unexpected happened when trying to log in, please try again." msgstr "" "Ha ocurrido algo inesperado al intentar iniciar sesión, inténtelo de nuevo." -msgid "User cancelled." +msgid "User canceled." msgstr "Cancelador por el usuario." msgid "Head diameter" @@ -18121,21 +18109,21 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" msgstr "" msgid " invalid brim ears" -msgstr "" +msgstr " orejas de borde invalidos" msgid "Brim Ears" -msgstr "" +msgstr "Orejas de borde" msgid "Please select single object." -msgstr "Please select single object." +msgstr "" #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -18143,7 +18131,7 @@ msgid "" "Did you know that turning on precise wall can improve precision and layer " "consistency?" msgstr "" -"Perímetro preciso. \n" +"Perímetro preciso.\n" "¿Sabías que activar el perímetro precisa puede mejorar la precisión y la " "uniformidad de las capas?" @@ -18208,7 +18196,7 @@ msgid "" "You can switch between Prepare and Preview workspaces by " "pressing the Tab key." msgstr "" -"Cambiar de espacio de trabajo. \n" +"Cambiar de espacio de trabajo.\n" "Puede cambiar entre los espacios de trabajo Preparar y Ver " "pulsando la tecla Tab." @@ -18216,11 +18204,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Cómo utilizar los atajos de teclado \n" "¿Sabías que Orca Slicer ofrece una amplia gama de atajos de teclado y " -"operaciones de escenas 3D?." +"operaciones de escenas 3D?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -18263,7 +18251,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Auto-organizar\n" "¿Sabías que puedes ordenar automáticamente todos los objetos de tu proyecto?" @@ -18272,7 +18260,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Orientación automática\n" "¿Sabía que puede girar los objetos a una orientación óptima para la " @@ -18453,7 +18441,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Borde de adherencia\n" @@ -18465,7 +18453,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Establecer parámetros para varios objetos\n" "¿Sabías que puedes establecer parámetros de laminado para todos los objetos " @@ -18482,7 +18470,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Descarga en soporte/objetos/relleno\n" @@ -18499,18 +18487,19 @@ msgstr "" "¿Sabías que puedes utilizar más bucles de perímetro y mayor densidad de " "relleno de baja densidad para mejorar la resistencia del modelo?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" -"Cuando es necesario imprimir con la puerta de la impresora abierta \n" +"¿Cuando es necesario imprimir con la puerta de la impresora abierta?\n" "¿Sabías que la apertura de la puerta de la impresora puede reducir la " "probabilidad de obstrucción del extrusor / cabezal al imprimir filamento de " -"baja temperatura con una temperatura más alta de la cubierta. Más " +"baja temperatura con una temperatura más alta de la cubierta? Más " "información sobre esto en la Wiki." #: resources/data/hints.ini: [hint:Avoid warping] @@ -18518,12 +18507,12 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Evite la deformación\n" -"Sabías que al imprimir materiales propensos a la deformación como el ABS, " +"¿Sabías que al imprimir materiales propensos a la deformación como el ABS, " "aumentar adecuadamente la temperatura de la cama térmica puede reducir la " -"probabilidad de deformaciones." +"probabilidad de deformaciones?" #~ msgid "" #~ "We have added an experimental style \"Tree Slim\" that features smaller " @@ -18545,7 +18534,7 @@ msgstr "" #~ "distancia superior en z o usar materiales de soporte en la interfaz." #~ msgid "" -#~ "When using support material for the support interface, We recommend the " +#~ "When using support material for the support interface, we recommend the " #~ "following settings:\n" #~ "0 top z distance, 0 interface spacing, concentric pattern and disable " #~ "independent support layer height" @@ -18705,7 +18694,7 @@ msgstr "" #~ msgstr "" #~ "Mejore la precisión de la cubierta ajustando la separación entre " #~ "perímetros exteriores. Esto también mejora la consistencia de las " -#~ "capas. \n" +#~ "capas.\n" #~ "Nota: Este ajuste sólo tendrá efecto si la secuencia de perímetros está " #~ "configurada como Interior-Exterior" @@ -18722,7 +18711,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -18781,21 +18770,21 @@ msgstr "" #~ msgstr "" #~ "Esta velocidad de ventilador se fuerza cuando se imprimen todas las " #~ "interfaces de soporte, con el objetivo de debilitar la unión con la " -#~ "pieza.Sólo puede ser anulado por disable_fan_first_layers." +#~ "pieza. Sólo puede ser anulado por disable_fan_first_layers." #~ msgid "" #~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" +#~ "this results in a significantly larger G-code file and more instructions " +#~ "for the printer to process.\n" #~ "\n" #~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" +#~ "stuttering, increase this value to reduce the number of adjustments made.\n" #~ "\n" #~ "Allowed values: 1-5" #~ msgstr "" #~ "Un valor más bajo resulta en transiciones de velocidad de extrusión más " #~ "suaves. Sin embargo, esto resulta en un archivo G-Code significativamente " -#~ "más grande y más instrucciones para que la impresora procese. \n" +#~ "más grande y más instrucciones para que la impresora procese.\n" #~ "\n" #~ "El valor por defecto de 3 funciona bien en la mayoría de los casos. Si su " #~ "impresora está tartamudeando, aumente este valor para reducir el número " @@ -18813,15 +18802,6 @@ msgstr "" #~ "cuando la ralentización para un mejor enfriamiento de la capa está " #~ "activada." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "normal (auto) y Árbol (auto) se utilizan para generar los soportes " -#~ "automáticamente. Si se selecciona normal (manual) o árbol (manual), sólo " -#~ "se generan los soportes forzados" - #~ msgid "ShiftLeft mouse button" #~ msgstr "Mayúsculas + Botón izquierdo del ratón" @@ -18832,16 +18812,10 @@ msgstr "" #~ msgid "Scale" #~ msgstr "Escala" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "Bandeja Fría" - #~ msgid "Lift Z Enforcement" #~ msgstr "Forzar elevación Z" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Salto en Z al retraer" #, no-c-format, no-boost-format @@ -18873,7 +18847,7 @@ msgstr "" #~ "debido a la reducción de tensiones en los perímetros de la pieza." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -18887,7 +18861,7 @@ msgstr "" #~ "directions on odd layers irrespective of their overhang degree." #~ msgstr "" #~ "Aplicar la lógica de perímetros inversos sólo en los perímetros " -#~ "internos. \n" +#~ "internos.\n" #~ "\n" #~ "Esta configuración reduce en gran medida las tensiones de la pieza, ya " #~ "que ahora se distribuyen en direcciones alternas. Esto debería reducir " @@ -18940,41 +18914,10 @@ msgstr "" #~ "Cuando se imprime por objeto, el extrusor puede chocar contra la falda.\n" #~ "En ese caso, reinicie la capa de falda a 1 para evitarlo." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "La geometría se verá diezmada antes de detectar angulos agudos. Este " -#~ "parámetro indica la longitud mínima de desviación para el diezmado\n" -#~ "0 para desactivar" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Arranca el ventilador este número de segundos antes que su tiempo de " -#~ "arranque objetivo (se pueden usar fracciones de segundo). Se asume una " -#~ "aceleración infinita para esta estimación de tiempo, y solo se tendrán en " -#~ "cuenta los movimientos G1 y G0 (no compatible con ajuste de arco).\n" -#~ "Esto no moverá comandos de ventilador desde G-Codes personalizados (estos " -#~ "actúan como un tipo de 'barrera').\n" -#~ "Esto no moverá comandos de ventilador en el G-Code inicial si 'usar sólo " -#~ "G-Code inicial personalizado' está activado\n" -#~ "Usar 0 para desactivar." - #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " #~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "with open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -19002,19 +18945,6 @@ msgstr "" #~ msgid "Limited" #~ msgstr "Limitado" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "Longitud mínima de extrusión de filamento en mm al imprimir la falda. " -#~ "Cero significa que esta función está desactivada.\n" -#~ "\n" -#~ "El uso de un valor distinto de cero es útil si la impresora está " -#~ "configurada para imprimir sin una línea de purga." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -19049,7 +18979,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19076,7 +19006,7 @@ msgstr "" #~ "Por defecto, los pequeños puentes internos se filtran y el relleno sólido " #~ "interno se imprime directamente sobre el relleno de baja densidad. Esto " #~ "funciona bien en la mayoría de los casos, acelerando la impresión sin " -#~ "comprometer demasiado la calidad de la superficie superior. \n" +#~ "comprometer demasiado la calidad de la superficie superior.\n" #~ "\n" #~ "Sin embargo, en modelos muy inclinados o curvados, especialmente cuando " #~ "se utiliza una densidad de relleno de baja densidad demasiado baja, esto " @@ -19136,11 +19066,11 @@ msgstr "" #~ "1. En todas partes: Aplica el relleno de huecos a las superficies sólidas " #~ "superior, inferior e interna \n" #~ "2. Superficies superior e inferior: Aplica el relleno de huecos sólo a " -#~ "las superficies superior e inferior. \n" +#~ "las superficies superior e inferior.\n" #~ "3. En ninguna parte: Desactiva el relleno de huecos\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Disminuya este valor ligeramente (por ejemplo 0,9) para reducir la " @@ -19186,13 +19116,13 @@ msgstr "" #~ "Velocidad del puente interno. Si el valor es expresado como porcentaje, " #~ "será calculado en base a bridge_speed. El valor por defecto es 150%." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Tiempo para cargar un nuevo filamento cuando se cambia de filamento. Sólo " #~ "para estadísticas" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Tiempo para descargar el filamento viejo cuando se cambia de filamento. " #~ "Sólo para las estadísticas" @@ -19234,8 +19164,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19271,17 +19201,6 @@ msgstr "" #~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de " #~ "Purga\"." -#~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "To add preset for more printers, Please go to printer selection" -#~ msgstr "" -#~ "Cambiaríamos el nombre de los preajustes a \"Número de serie del Vendedor " -#~ "@impresora que ha seleccionado\". \n" -#~ "Para añadir preajustes para más impresoras, vaya a selección de impresoras" - #~ msgid "Current association: " #~ msgstr "Asociación actual:" @@ -19341,9 +19260,6 @@ msgstr "" #~ msgid "PrintingPause" #~ msgstr "Impresión Pausada" -#~ msgid "Printer local connection failed, please try again." -#~ msgstr "Printer local connection failed; please try again." - #~ msgid "" #~ "Please find the details of Flow Dynamics Calibration from our wiki.\n" #~ "\n" @@ -19408,12 +19324,6 @@ msgstr "" #~ msgstr "" #~ "Por favor, encuentre la esquina con ángulo perfecto para la extrusión" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Order of wall/infill. When the tickbox is unchecked the walls are printed " #~ "first, which works best in most cases.\n" @@ -19435,12 +19345,9 @@ msgstr "" #~ "También puede hacer que el relleno brille a través de las superficies " #~ "externas de la pieza." -#~ msgid "V" -#~ msgstr "V" - #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer está basado en BambuStudio por Bambulab, el cual está basado " @@ -19474,37 +19381,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Descargar" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Elija una ranura AMS y pulse el botón \"Cargar\" o \"Descargar\" para " -#~ "cargar o descargar automáticamente el filamento." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Placa Base" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- ℃" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "active" #~ msgstr "activo" @@ -19545,7 +19424,7 @@ msgstr "" #~ "indicador no represente la cámara con precisión." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Nota: si se inserta un nuevo filamento durante la impresión, el AMS no " @@ -19563,7 +19442,7 @@ msgstr "" #~ msgstr "¡Inicialización fallida (No hay Cámara)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "La impresora está ocupada descargando. Por favor, espere a que finalice." @@ -19585,20 +19464,6 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "¡La carga ha fallado [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "No files [%d]" - -#, c-format, boost-format -#~ msgid "Load failed [%d]" -#~ msgstr "Load failed [%d]" - -#~ msgid "Failed to fetching model information from printer." -#~ msgstr "Failed to fetch model information from printer." - -#~ msgid "Failed to parse model informations." -#~ msgstr "Fallo al analizar la información de modelado." - #~ msgid "Connection lost. Please retry." #~ msgstr "Conexión perdida. Por favor, reinténtelo." @@ -19607,20 +19472,20 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Has modificado algunos ajustes del perfil \"%1%\". \n" +#~ "Has modificado algunos ajustes del perfil \"%1%\".\n" #~ "¿Deseas mantener estas modificaciones en los ajustes (nuevo valor) " #~ "después de cambiar de perfil?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Has cambiado algunos ajustes de perfil. \n" +#~ "Has cambiado algunos ajustes de perfil.\n" #~ "¿Deseas mantener estas modificaciones en los ajustes (nuevo valor) " #~ "después de cambiar de perfil?" @@ -19704,12 +19569,12 @@ msgstr "" #~ "asegurar el grosor del perímetro vertical. " #~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " #~ "wall\n" #~ "No - Don't use alternate extra wall" #~ msgstr "" -#~ "¿Cambiar estos ajustes automáticamente? \n" +#~ "¿Cambiar estos ajustes automáticamente?\n" #~ "Sí - Desactivar el grosor del perímetro vertical y activar la pared " #~ "adicional alternativa No - No utilizar la pared adicional alternativa" @@ -19720,9 +19585,6 @@ msgstr "" #~ "Añadir relleno sólido al lado de capas inclinadas para garantizar el " #~ "grosor de carcasa vertical (capas sólidas superior+inferior)" -#~ msgid " " -#~ msgstr " " - #~ msgid "Text-Rotate" #~ msgstr "Rotación de texto" @@ -19745,7 +19607,7 @@ msgstr "" #~ "se imprimen voladizos y cuando las velocidades de las características no " #~ "se especifican explícitamente." -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "La Configuración no será cargada." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -19753,18 +19615,6 @@ msgstr "" #~ "El 3mf está generado por un Orca Slicer antiguo, cargar solo datos de " #~ "geometría." -#~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" -#~ msgstr "" -#~ "Se recomienda la extrusión relativa cuando se utiliza la opción " -#~ "\"label_objects\". Algunos extrusores funcionan mejor con esta opción " -#~ "desactivada (modo de extrusión absoluta). La torre de purga sólo es " -#~ "compatible con el modo relativo. Siempre activa en las impresoras " -#~ "BambuLab. Marcada por defecto" - #~ msgid "Fan Speed: " #~ msgstr "Velocidad del ventilador:" @@ -19815,10 +19665,10 @@ msgstr "" #~ msgstr "los conectores están fuera del objeto" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Estado inválido. \n" +#~ "Estado inválido.\n" #~ "No se ha seleccionado ninguna pieza para conservar después del corte" #~ msgid " search results" @@ -19897,9 +19747,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "Elige el archivo SLA:" -#~ msgid "Import file" -#~ msgstr "Importar archivo" - #~ msgid "Import model and profile" #~ msgstr "Importar modelo y perfil" @@ -19964,14 +19811,14 @@ msgstr "" #~ "Sí - cambiar a patrón rectilíneo automaticamente\n" #~ "No - reiniciar a valor de densidad no 100% por defecto automáticamente" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "" -#~ "Caliente la boquilla a más de 170 grados antes de cargar el filamento." +#~ "Caliente la boquilla a más de 170°C antes de cargar el filamento." -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "Mostrar la ventana de G-Code" -#~ msgid "If enabled, g-code window will be displayed." +#~ msgid "If enabled, G-code window will be displayed." #~ msgstr "Si está activado, se mostrará la ventana de G-Code." #, c-format @@ -19992,18 +19839,12 @@ msgstr "" #~ msgid " doesn't work at 100%% density " #~ msgstr " no funciona con una densidad del 100%% " -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "Herramienta-Tumbar Boca Abajo" #~ msgid "Export as STL" #~ msgstr "Exportar como STL" -#~ msgid "Check cloud service status" -#~ msgstr "Check cloud service status" - #~ msgid "Please input a valid value (K in 0~0.5)" #~ msgstr "Por favor, introduce un valor válido (K en 0~0.5)" @@ -20074,7 +19915,7 @@ msgstr "" #~ msgstr "El ángulo de rotación alrededor del eje X en grados." #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "El ajuste seleccionado: %1% no encontrado." #~ msgid "" @@ -20086,26 +19927,6 @@ msgstr "" #~ "¿Sabías cómo controlar la vista y la selección de objetos/partes con el " #~ "ratón y el panel táctil en la escena 3D?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Fijar modelo\n" -#~ "¿Sabías que puedes arreglar un modelo 3D dañado para evitar muchos " -#~ "problemas de corte?" - -#~ msgid "" -#~ "When need to print with the printer door opened\n" -#~ "Opening the printer door can reduce the probability of extruder/hotend " -#~ "clogging when printing lower temperature filament with a higher enclosure " -#~ "temperature. More info about this in the Wiki." -#~ msgstr "" -#~ "Cuando es necesario imprimir con la puerta de la impresora abierta\n" -#~ "Abrir la puerta de la impresora puede reducir la probabilidad de atasco " -#~ "del extrusor/hotend al imprimir filamento de baja temperatura con una " -#~ "temperatura de carcasa más alta. Más información sobre esto en la Wiki." - #~ msgid "The minimum printing speed when slow down for cooling" #~ msgstr "" #~ "La velocidad mínima de impresión cuando se ralentiza para el refrigeración" @@ -20115,7 +19936,7 @@ msgstr "" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "El archivo de configuración de OrcaSlicer puede estar dañado y no puede " #~ "ser procesado. Por favor borre el archivo e inténtelo otra vez." @@ -20138,12 +19959,12 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" #~ "Actualmente no se dispone de consumibles de repuesto idénticos, por lo " -#~ "que la reposición automática no es posible. \n" +#~ "que la reposición automática no es posible.\n" #~ "(Actualmente admite el suministro automático de consumibles con la misma " #~ "marca, tipo de material y color)." @@ -20182,25 +20003,19 @@ msgstr "" #~ "funcionará a esta velocidad durante la impresión, excepto en las primeras " #~ "capas, que se define por la ausencia de capas de refrigeración" -#~ msgid "Cali" -#~ msgstr "Cali" - #~ msgid "Calibration of extrusion" #~ msgstr "Calibración de extrusión" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Push new filament into the extruder" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "La temperatura del lecho de la otra capa es inferior a la temperatura del " #~ "lecho de la primera capa durante más de %d grados centígrados.\n" #~ "Esto puede hacer que el modelo se desprenda de la bandeja durante la " -#~ "impresión" +#~ "impresión." #~ msgid "" #~ "Bed temperature is higher than vitrification temperature of this " @@ -20210,7 +20025,7 @@ msgstr "" #~ "circulation or reduce the temperature of the hot bed" #~ msgstr "" #~ "La temperatura de capa es superior que la temperatura de vitrificación de " -#~ "este filamento. \n" +#~ "este filamento.\n" #~ " Esto podría causar que la boquilla se bloquee y produzca un fallo de " #~ "impresión. Por favor, mantenga la impresora abierta durante el proceso " #~ "para garantizar la circulación de aire o reducir la temperatura de la " @@ -20222,15 +20037,6 @@ msgstr "" #~ msgid "Resonance frequency identification" #~ msgstr "Identificación de frecuencia de resonancia" -#~ msgid "Immediately score" -#~ msgstr "Immediately score" - -#~ msgid "Please give a score for your favorite Bambu Market model." -#~ msgstr "Please give a score for your favorite Bambu Market model." - -#~ msgid "Score" -#~ msgstr "Score" - #~ msgid "Bambu High Temperature Plate" #~ msgstr "Bandeja de Alta Temperatura Bambú" @@ -20244,8 +20050,8 @@ msgstr "" #~ msgstr "Bandeja de Alta Temperatura" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Esta es la temperatura de la cama cuando la bandeja de alta temperatura " #~ "está instalada. Un valor de 0 significa que el filamento no admite la " @@ -20256,9 +20062,9 @@ msgstr "" #~ msgid "" #~ "If enabled, support loops will be generated under the contours of " -#~ "internal bridges.These support loops could prevent internal bridges from " +#~ "internal bridges. These support loops could prevent internal bridges from " #~ "extruding over the air and improve the top surface quality, especially " -#~ "when the sparse infill density is low.This value determines the thickness " +#~ "when the sparse infill density is low. This value determines the thickness " #~ "of the support loops. 0 means disable this feature" #~ msgstr "" #~ "Si está activado, los bucles de soporte generarán debajo de los contornos " @@ -20268,12 +20074,6 @@ msgstr "" #~ "el grosor de los bucles de soporte. 0 significa deshabilitar esta " #~ "característica" -#, c-format, boost-format -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "" -#~ "El max_accel_to_decel de Klipper se ajustará a este % o de aceleración" - #~ msgid "" #~ "Style and shape of the support. For normal support, projecting the " #~ "supports into a regular grid will create more stable supports (default), " @@ -20343,9 +20143,6 @@ msgstr "" #~ msgid "Set Printable" #~ msgstr "Hacer Imprimible" -#~ msgid "Ams filament backup" -#~ msgstr "Copia de Seguridad del Filamento AMS" - #~ msgid "Feed new filament from external spool" #~ msgstr "Cargar nuevo filamento en el carrete externo" @@ -20378,13 +20175,6 @@ msgstr "" #~ "No se ha encontrado el archivo de impresión, por favor, vuelva a " #~ "procesarlo" -#~ msgid "" -#~ "The print file exceeds the maximum allowable size (1GB). Please simplify " -#~ "the model and slice again" -#~ msgstr "" -#~ "El archivo de impresión supera el tamaño máximo permitido (1GB). Por " -#~ "favor, simplifique el modelo y vuelva a procesarlo" - #~ msgid "Failed uploading print file" #~ msgstr "Fallo al cargar el archivo de impresión" @@ -20397,7 +20187,7 @@ msgstr "" #~ msgid "No space left on Printer SD card" #~ msgstr "Sin espacio disponible en la tarjeta SD de la impresora" -#~ msgid "Sending gcode file through cloud service" +#~ msgid "Sending G-code file through cloud service" #~ msgstr "Enviando el archivo de G-Code a través del servicio en la nube" #~ msgid "Please log out and login to the printer again." @@ -20436,7 +20226,7 @@ msgstr "" #, c-format, boost-format #~ msgid "" -#~ "Disconnected from printer [%s] due to LAN mode disabled.Please reconnect " +#~ "Disconnected from printer [%s] due to LAN mode disabled. Please reconnect " #~ "the printer by logging in with your user account." #~ msgstr "" #~ "Desconectado de la impresora [%s] debido a modo de red deshabilitado. Por " @@ -20444,7 +20234,7 @@ msgstr "" #, c-format, boost-format #~ msgid "" -#~ "Disconnected from printer [%s] due to LAN mode enabled.Please reconnect " +#~ "Disconnected from printer [%s] due to LAN mode enabled. Please reconnect " #~ "the printer by inputting Access Code which can be gotten from printer " #~ "screen." #~ msgstr "" @@ -20473,7 +20263,7 @@ msgstr "" #~ msgstr "Versión interna" #~ msgid "" -#~ "BambuStudio will terminate because of running out of memory.It may be a " +#~ "BambuStudio will terminate because of running out of memory. It may be a " #~ "bug. It will be appreciated if you report the issue to our team." #~ msgstr "" #~ "BambuStudio terminará porque se está quedando sin memoria. Le " @@ -20494,7 +20284,7 @@ msgstr "" #~ msgid "" #~ "BambuStudio configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "El archivo de configuración de BambuStudio puede estar dañado y no puede " #~ "ser procesado." @@ -20546,20 +20336,6 @@ msgstr "" #~ "comunidad, por lo que no podemos enumerarlas una por una, sino que se " #~ "atribuirán en los comentarios del código correspondientes." -#~ msgid "Layer Time (s)" -#~ msgstr "Layer Time (s)" - -#, c-format, boost-format -#~ msgid "" -#~ "Conflicts of gcode paths have been found at layer %d. Please separate the " -#~ "conflicted objects farther (%s <-> %s)." -#~ msgstr "" -#~ "Conflicts of gcode paths have been found at layer %d. Please separate the " -#~ "conflicting objects further (%s <-> %s)." - -#~ msgid "Report issue" -#~ msgstr "Report issue" - #~ msgid "The 3mf is generated by old Bambu Studio, load geometry data only." #~ msgstr "" #~ "3mf generado con versión antigua de Bambu Studio, se cargan datos de " @@ -20602,25 +20378,9 @@ msgstr "" #~ "Si se activa, ajusta BambuStudio como aplicación por defecto para abrir " #~ "archivos .step" -#~ msgid "Post-processing scripts" -#~ msgstr "Post-processing scripts" - -#~ msgid "Cool Plate / PLA Plate" -#~ msgstr "Cool Plate / PLA Plate" - -#~ msgid "" -#~ "The following object(s) have empty initial layer and can't be printed. " -#~ "Please Cut the bottom or enable supports." -#~ msgstr "" -#~ "The following object(s) have an empty initial layer and can't be printed. " -#~ "Please cut the bottom or enable supports." - #~ msgid "Bridge direction" #~ msgstr "Dirección del puente" -#~ msgid "Use only one wall on the first layer of model" -#~ msgstr "Use only one wall on the first layer of models" - #~ msgid "Max Radius" #~ msgstr "Radio máximo" @@ -20631,79 +20391,9 @@ msgstr "" #~ "Radio máximo de separación alrededor del extrusor. Se utiliza para evitar " #~ "colisiones en la impresión por objetos." -#~ msgid "Object flow ratio" -#~ msgstr "Object flow ratio" - -#~ msgid "The flow ratio set by object, the meaning is the same as flow ratio." -#~ msgstr "" -#~ "The flow ratio set by object; the meaning is the same as flow ratio." - -#~ msgid "Length of sparse infill anchor" -#~ msgstr "Length of sparse infill anchor" - -#~ msgid "" -#~ "Connect a sparse infill line to an internal perimeter with a short " -#~ "segment of an additional perimeter. If expressed as percentage (example: " -#~ "15%) it is calculated over sparse infill line width. Slicer tries to " -#~ "connect two close infill lines to a short perimeter segment. If no such " -#~ "perimeter segment shorter than infill_anchor_max is found, the infill " -#~ "line is connected to a perimeter segment at just one side and the length " -#~ "of the perimeter segment taken is limited to this parameter, but no " -#~ "longer than anchor_length_max. Set this parameter to zero to disable " -#~ "anchoring perimeters connected to a single infill line." -#~ msgstr "" -#~ "This connects a sparse infill line to an internal perimeter with a short " -#~ "segment of an additional perimeter. If expressed as percentage (example: " -#~ "15%) it is calculated over sparse infill line width. Bambu Studio tries " -#~ "to connect two close infill lines to a short perimeter segment. If no " -#~ "such perimeter segment shorter than infill_anchor_max is found, the " -#~ "infill line is connected to a perimeter segment at just one side and the " -#~ "length of the perimeter segment taken is limited to this parameter, but " -#~ "no longer than anchor_length_max. Set this parameter to zero to disable " -#~ "anchoring perimeters connected to a single infill line." - -#~ msgid "Maximum length of sparse infill anchor" -#~ msgstr "Maximum length of sparse infill anchor" - -#~ msgid "" -#~ "Connect a sparse infill line to an internal perimeter with a short " -#~ "segment of an additional perimeter. If expressed as percentage (example: " -#~ "15%) it is calculated over sparse infill line width. Slicer tries to " -#~ "connect two close infill lines to a short perimeter segment. If no such " -#~ "perimeter segment shorter than this parameter is found, the infill line " -#~ "is connected to a perimeter segment at just one side and the length of " -#~ "the perimeter segment taken is limited to infill_anchor, but no longer " -#~ "than this parameter. Set this parameter to zero to disable anchoring." -#~ msgstr "" -#~ "This connects a sparse infill line to an internal perimeter with a short " -#~ "segment of an additional perimeter. If expressed as percentage (example: " -#~ "15%) it is calculated over sparse infill line width. Bambu Studio tries " -#~ "to connect two close infill lines to a short perimeter segment. If no " -#~ "such perimeter segment shorter than this parameter is found, the infill " -#~ "line is connected to a perimeter segment at just one side and the length " -#~ "of the perimeter segment taken is limited to infill_anchor, but no longer " -#~ "than this parameter. Set this parameter to zero to disable anchoring." - -#~ msgid "0 (not anchored)" -#~ msgstr "0 (not anchored)" - -#~ msgid "" -#~ "If you want to process the output G-code through custom scripts, just " -#~ "list their absolute paths here. Separate multiple scripts with a " -#~ "semicolon. Scripts will be passed the absolute path to the G-code file as " -#~ "the first argument, and variables of settings also can be read" -#~ msgstr "" -#~ "If you want to process the output G-code through custom scripts, just " -#~ "list their absolute paths here. Separate multiple scripts with a " -#~ "semicolon. Scripts will be passed via the absolute path to the G-code " -#~ "file as the first argument, and variables of settings can also be read" - -#~ msgid "Z Hop Type" +#~ msgid "Z-Hop Type" #~ msgstr "Tipo de salto Z" -#~ msgid "The brim width around tree support. 0 means auto." -#~ msgstr "The brim width around tree support. 0 means auto." - #~ msgid "" #~ "Subtract a Part\n" #~ "Did you know that you can subtract one mesh from another using the " @@ -20729,9 +20419,6 @@ msgstr "" #~ "Bambu Studio admite el corte de archivos STEP, lo que proporciona " #~ "resultados más suaves que un archivo STL de menor resolución. ¡Pruébalo!" -#~ msgid "ERROR:" -#~ msgstr "ERROR:" - #~ msgid "Bed temperatures for the used filaments differ significantly." #~ msgstr "" #~ "Las temperaturas de la cama para los filamentos usados difieren bastante." @@ -20802,10 +20489,6 @@ msgstr "" #~ msgid "Export." #~ msgstr "Exportar." -#~ msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files." -#~ msgstr "" -#~ "Importación de datos geométricos desde archivos STL/STEP/3MF/OBJ/AMF." - #, boost-format #~ msgid "Copying directory %1% to %2% failed: %3%" #~ msgstr "La copia del directorio %1% a %2% ha fallado: %3%" @@ -20850,7 +20533,7 @@ msgstr "" #~ msgstr "0%" #~ msgid "" -#~ "An object is layed over the boundary of plate.\n" +#~ "An object is laid over the plate boundaries.\n" #~ "Please solve the problem by moving it totally inside or outside plate." #~ msgstr "" #~ "Un objeto está colocado sobre el límite de la bandeja.\n" @@ -20866,15 +20549,6 @@ msgstr "" #~ msgid "Auto arrange" #~ msgstr "Auto posicionamiento" -#~ msgid "" -#~ "Auto orientates selected objects or all objects.If there are selected " -#~ "objects, it just orientates the selected ones.Otherwise, it will " -#~ "orientates all objects in the project." -#~ msgstr "" -#~ "Orienta automáticamente los objetos seleccionados o todos los objetos.Si " -#~ "hay objetos seleccionados, sólo orienta los seleccionados.En caso " -#~ "contrario, orienta todos los objetos del proyecto." - #~ msgid "Aux Cooling" #~ msgstr "Enfriamiento Auxiliar" @@ -20931,14 +20605,14 @@ msgstr "" #~ msgid "Device:" #~ msgstr "Dispositivo:" -#~ msgid "Display printable box" -#~ msgstr "Caja de visualización imprimible " +#~ msgid "Display printable box." +#~ msgstr "Caja de visualización imprimible." -#~ msgid "Display shadow of objects" -#~ msgstr "Mostrar la sombra de los objetos" +#~ msgid "Display shadow of objects." +#~ msgstr "Mostrar la sombra de los objetos." -#~ msgid "Display triangles of models" -#~ msgstr "Mostrar los triángulos de los modelos" +#~ msgid "Display triangles of models." +#~ msgstr "Mostrar los triángulos de los modelos." #~ msgid "" #~ "Do not recommand bed temperature of other layer to be lower than initial " @@ -20951,20 +20625,20 @@ msgstr "" #~ "la bandeja de impresión." #~ msgid "" -#~ "Do you want to synchronize your personal data from Bambu Cloud? \n" +#~ "Do you want to synchronize your personal data from Bambu Cloud?\n" #~ "Contains the following information:\n" #~ "1. The Process presets\n" #~ "2. The Filament presets\n" #~ "3. The Printer presets\n" #~ msgstr "" -#~ "¿Quieres sincronizar tus datos personales desde Bambu Cloud? \n" +#~ "¿Quieres sincronizar tus datos personales desde Bambu Cloud?\n" #~ "Contiene la siguiente información:\n" #~ "1. Preajustes del proceso\n" #~ "2. Preajustese de filamentos\n" #~ "3. Preajustes de la impresora\n" #~ msgid "" -#~ "Do you want to synchronize your personal data from Bambu Cloud? \n" +#~ "Do you want to synchronize your personal data from Bambu Cloud?\n" #~ "It contains the following information:\n" #~ "1. The Process presets\n" #~ "2. The Filament presets\n" @@ -21117,7 +20791,7 @@ msgstr "" #~ msgid "" #~ "Maximum detour distance for avoiding crossing wall. Don't detour if the " -#~ "detour distance is large than this value" +#~ "detour distance is larger than this value" #~ msgstr "" #~ "Distancia máxima de desvío para evitar cruzar el muro. No se desvía si la " #~ "distancia de desvío es mayor que este valor" @@ -21273,21 +20947,11 @@ msgstr "" #~ msgid "Spiral mode" #~ msgstr "Modo espiral" -#~ msgid "Successfully sent.Will automatically jump to the device page in %s s" +#~ msgid "Successfully sent. Will automatically jump to the device page in %s s" #~ msgstr "" #~ "Enviado con éxito. Saltará automáticamente a la página del dispositivo en " #~ "%s s" -#~ msgid "" -#~ "Support layer uses layer height independent with object layer. This is to " -#~ "support custom support gap,but may cause extra filament switches if " -#~ "support is specified as different extruder with object" -#~ msgstr "" -#~ "La capa de soporte utiliza la altura de la capa independientemente de la " -#~ "capa del objeto. Esto es para soportar la brecha de soporte " -#~ "personalizada, pero puede causar cambios de filamento adicionales si el " -#~ "soporte se especifica como un extrusor diferente con el objeto" - #~ msgid "" #~ "Switch to rectilinear pattern?\n" #~ "Yes - switch to rectilinear pattern automaticlly\n" @@ -21304,26 +20968,19 @@ msgstr "" #~ "No - restablecer automáticamente la densidad al valor por defecto que no " #~ "es del 100%.\n" -#~ msgid "Swith cloud environment, Please login again!" +#~ msgid "Swith cloud environment, please login again!" #~ msgstr "Cambiar el entorno de la nube, ¡Por favor, inicie sesión de nuevo!" -#~ msgid "" -#~ "The 3mf's version %s is newer than %s's version %s, Found following keys " -#~ "unrecognized:\n" -#~ msgstr "" -#~ "La versión %s de 3mf es más reciente que la versión %s de %s, se han " -#~ "encontrado las siguientes claves no reconocidas:\n" - #~ msgid "" #~ "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade " #~ "your software.\n" #~ msgstr "\n" -#~ msgid "The Config is not compatible and can not be loaded." +#~ msgid "The Config is not compatible and cannot be loaded." #~ msgstr "La configuración no es compatible y no se puede cargar." #~ msgid "" -#~ "The firmware versions of printer and AMS are too low.Please update to the " +#~ "The firmware versions of printer and AMS are too low. Please update to the " #~ "latest version before sending the print job" #~ msgstr "" #~ "Las versiones del firmware de la impresora y del AMS son demasiado " @@ -21347,7 +21004,7 @@ msgstr "" #~ msgid "" #~ "This object will be used to purge the nozzle after a filament change to " -#~ "save filament and decrease the print time. Colours of the objects will be " +#~ "save filament and decrease the print time. Colors of the objects will be " #~ "mixed as a result" #~ msgstr "" #~ "Este objeto se utilizará para purgar la boquilla después de un cambio de " @@ -21380,15 +21037,12 @@ msgstr "" #~ msgstr "Esperando" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings after switching preset?" #~ msgstr "" -#~ "Has cambiado algunos ajustes de preajuste. \n" +#~ "Has cambiado algunos ajustes de preajuste.\n" #~ "¿Desea mantener estos ajustes cambiados después de cambiar de preajuste?" -#~ msgid "Zig zag" -#~ msgstr "Zig zag" - #~ msgid " Object:" #~ msgstr "Objeto" @@ -21402,57 +21056,25 @@ msgstr "" #~ " está demasiado cerca del área de exclusión, habrá colisiones al " #~ "imprimir.\n" -#~ msgid " is too close to others, there may be collisions when printing.\n" -#~ msgstr "\n" - #~ msgid " is too close to others, there will be collisions when printing.\n" #~ msgstr " está demasiado cerca de otros, habrá colisiones al imprimir.\n" #~ msgid "hybrid(auto)" #~ msgstr "híbrido(auto)" -#~ msgid "normal" -#~ msgstr "normal" - -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal or tree is selected, only support enforcers are generated" -#~ msgstr "" -#~ "normal(auto) y tree(auto) se utiliza para generar soporte " -#~ "automáticamente. Si se selecciona normal o árbol, sólo se generan los " -#~ "soportes" - #~ msgid "the 3mf is not compatible, load geometry data only!" #~ msgstr "el 3mf no es compatible, ¡cargue sólo los datos geométricos!" #~ msgid "tree" #~ msgstr "árbol" -#~ msgid "Pause Print" -#~ msgstr "Pause Print" - -#~ msgid "Edit Pause Print Message" -#~ msgstr "Edit Pause Print Message" - -#~ msgid "Delete Pause Print" -#~ msgstr "Delete Pause Print" - -#~ msgid "\\u2103" -#~ msgstr "\\ u2103" - -#~ msgid "mm\\u00B3" -#~ msgstr "mm\\ u00b3" - -#~ msgid "&Edit" -#~ msgstr "Editar" - #~ msgid "AMSMaterialsSetting" #~ msgstr "Configuración de materiales AMS" #~ msgid "AMS auto switch filament" #~ msgstr "Cambio automático de filamento AMS" -#~ msgid "AMS settings are not supported for external spool" +#~ msgid "AMS settings are not supported for external spool." #~ msgstr "" #~ "La configuración actual de AMS no admite el uso de una bobina externa." @@ -21478,9 +21100,6 @@ msgstr "" #~ "Esto puede provocar una disminución en la calidad de los voladizos al " #~ "imprimir rápidamente." -#~ msgid "Auto refill" -#~ msgstr "Auto refill" - #~ msgid "" #~ "Bed exclude area that can't used as printable area in X-Y plane. For " #~ "example, the bottom left area which is used to cut filament in X1 when " @@ -21525,7 +21144,7 @@ msgstr "" #~ "mejor)" #~ msgid "" -#~ "Disable overhang slowing down automatically? \n" +#~ "Disable overhang slowing down automatically?\n" #~ "Yes - Enable arachne and disable overhang slowing down\n" #~ "No - Give up using arachne this time" #~ msgstr "" @@ -21536,9 +21155,6 @@ msgstr "" #~ msgid "Downloading Bambu Network plug-in" #~ msgstr "Descargando el complemento Bambu Network" -#~ msgid "Edit plate setitngs" -#~ msgstr "Edit plate settings" - #~ msgid "" #~ "Extrusion compensation calibration is not supported when using Textured " #~ "PEI Plate" @@ -21553,9 +21169,6 @@ msgstr "" #~ "No se pudo conectar a la impresora a través de LAN. Introduzca la " #~ "dirección IP de la impresora y el código de acceso correctos." -#~ msgid "Failed to parse login report reason111" -#~ msgstr "Failed to parse login report reason" - #~ msgid "Failed uploading print file. Please enter ip address again." #~ msgstr "" #~ "Error al cargar el archivo de impresión. Vuelva a introducir la dirección " @@ -21593,17 +21206,11 @@ msgstr "" #~ msgid "" #~ "Filament to print support and raft. \"Default\" means no specific " -#~ "filament for support and current filament is used" +#~ "filament for support and current filament is used." #~ msgstr "" #~ "Filamento para imprimir soportes y balsas. «Predeterminado» significa que " #~ "no se utiliza un filamento específico como soporte y se utiliza un " -#~ "filamento actual" - -#~ msgid "Filaments Auto refill" -#~ msgstr "Filament Auto-refill" - -#~ msgid "G-code" -#~ msgstr "G-code" +#~ "filamento actual." #~ msgid "" #~ "Green represents that AMS humidity is normal, orange and red represent " @@ -21664,9 +21271,6 @@ msgstr "" #~ msgid "Modify" #~ msgstr "Modificar" -#~ msgid "NO AMS" -#~ msgstr "NO AMS" - #~ msgid "Not supported." #~ msgstr "No soportado" @@ -21684,12 +21288,6 @@ msgstr "" #~ msgid "Plate %d: %s does not support filament %s (%s)." #~ msgstr "Placa %d: %s no admite el filamento %s (%s)." -#~ msgid "Plate type" -#~ msgstr "Plate type" - -#~ msgid "Plate types supported by the printer" -#~ msgstr "Plate types supported by the printer" - #~ msgid "Please Fill Task Report." #~ msgstr "Por favor rellene el informe de tareas." @@ -21702,13 +21300,13 @@ msgstr "" #~ msgid "" #~ "Preview only mode:\n" -#~ "The loaded file contains gcode only." +#~ "The loaded file contains G-code only." #~ msgstr "" #~ "Modo de vista previa solamente:\n" -#~ "El archivo cargado sólo contiene gcode." +#~ "El archivo cargado sólo contiene G-code." -#~ msgid "Preview only mode for gcode file." -#~ msgstr "Modo de vista previa sólo para el archivo gcode." +#~ msgid "Preview only mode for G-code file." +#~ msgstr "Modo de vista previa sólo para el archivo G-code." #~ msgid "" #~ "Prime tower is required by timelapse. Do you want to enable both of them?" @@ -21751,26 +21349,12 @@ msgstr "" #~ msgid "Stop printing when spaghetti detected" #~ msgstr "Detener la impresión cuando se detecten hilos" -#~ msgid "" -#~ "Successfully sent. Will automatically jump to the device page in %s s" -#~ msgstr "" -#~ "Enviado con éxito. Saltará automáticamente a la página del dispositivo en " -#~ "%s s" - #~ msgid "Suggestion: Actual Volume in range [%d, %d]" #~ msgstr "Sugerencia: Volumen real dentro del rango [%d, %d]" #~ msgid "Support base" #~ msgstr "Base de soporte" -#~ msgid "" -#~ "Support layer uses layer height independent with object layer. This is to " -#~ "support customizing z-gap and save print time." -#~ msgstr "" -#~ "La capa de soporte utiliza la altura de la capa independientemente de la " -#~ "capa de objetos. Esto es para permitir la personalización de z-gap y " -#~ "ahorrar tiempo de impresión." - #~ msgid "Sync material list from AMS" #~ msgstr "Sincronizar la lista de materiales de AMS" @@ -21799,9 +21383,9 @@ msgstr "" #~ "currently selected physical printer. It is recommend to re-slice by " #~ "selecting the same printer type." #~ msgstr "" -#~ "El tipo de impresora que se utiliza para generar el g-code no es el mismo " +#~ "El tipo de impresora que se utiliza para generar el G-code no es el mismo " #~ "que el de la impresora física actualmente seleccionada. Se recomienda " -#~ "volver a generar el g-code después de seleccionar el tipo de impresora " +#~ "volver a generar el G-code después de seleccionar el tipo de impresora " #~ "correcto." #~ msgid "" @@ -21836,14 +21420,7 @@ msgstr "" #~ "los puentes internos. 0 significa desactivar esta función" #~ msgid "" -#~ "When the current material run out,the printer will continue to print in " -#~ "the following order." -#~ msgstr "" -#~ "When the current material runs out, the printer will continue to print in " -#~ "the following order." - -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " +#~ "When using support material for the support interface, we recommend the " #~ "following settings:\n" #~ "0 top z distance, 0 interface spacing, concentric pattern." #~ msgstr "" @@ -21857,12 +21434,6 @@ msgstr "" #~ "Configuración general de X1: configuración de red en la barra lateral de " #~ "la pantalla principal del X1." -#~ msgid "" -#~ "You are going to delete %u files from printer. Are you sure to continue?" -#~ msgstr "" -#~ "You are going to delete %u files from the printer. Are you sure you want " -#~ "to continue?" - #~ msgid "(Sort)" #~ msgstr "Ordenar" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 021efd24b4..2b692617fd 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -15,9 +15,9 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==0 || n==1) ? 0 : 1;\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.6\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Peindre les supports" msgid "Alt + Mouse wheel" @@ -114,7 +114,7 @@ msgstr "Poser sur une face" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Le nombre de filaments dépasse le nombre maximum pris en charge par l'outil " @@ -212,8 +212,9 @@ msgstr "Gizmo-Redimensionner" msgid "Error: Please close all toolbar menus first" msgstr "Erreur : Veuillez d'abord fermer tous les menus de la barre d'outils" +#. inches msgid "in" -msgstr "dans" +msgstr "" msgid "mm" msgstr "mm" @@ -601,10 +602,10 @@ msgstr "Afficher le maillage" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Ne peut pas s'appliquer lors du processus de prévisualisation." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Opération déjà annulée. Veuillez patienter quelques secondes." msgid "Face recognition" @@ -799,7 +800,7 @@ msgid "Change Text Type" msgstr "Changer le type de texte" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Renommer le style (%1%) pour le texte embossé" msgid "Name can't be empty." @@ -1026,8 +1027,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Impossible de charger exactement la même police (« %1% »). L’application a " "sélectionné une police similaire (« %2% »). Vous devez spécifier la police " @@ -1159,7 +1160,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "La forme est marquée comme invisible (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1342,7 +1343,7 @@ msgid "Measure" msgstr "Mesurer" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Veuillez confirmer le rapport d’explosion = 1 et sélectionner au moins un " "objet" @@ -1402,14 +1403,14 @@ msgstr "" "La fonction 1 a été réinitialisée, \n" "la fonction 2 a été la fonction 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Avertissement : veuillez sélectionner la fonction du plan." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "" "Avertissement : veuillez sélectionner la fonction du Point ou du Cercle." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Attention : veuillez sélectionner deux maillages différents." msgid "Copy to clipboard" @@ -1433,7 +1434,7 @@ msgstr "Parallèle" msgid "Center coincidence" msgstr "Coïncidence du centre" -msgid "Featue 1" +msgid "Feature 1" msgstr "Fonction 1" msgid "Reverse rotation" @@ -1491,7 +1492,7 @@ msgstr "" "n'ont pas été reconnues." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "Orca Slicer va s'arrêter à cause d'un manque de mémoire. Il peut s'agir d'un " @@ -1632,7 +1633,7 @@ msgstr "Ouvrir un projet" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "La version de OrcaSlicer est trop ancienne et doit être mise à jour vers la " "dernière version afin qu’il puisse être utilisé normalement" @@ -1845,7 +1846,7 @@ msgstr "Orca String Hell" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1943,16 +1944,16 @@ msgstr "Purger dans les supports de l'objet" msgid "Edit in Parameter Table" msgstr "Modifier dans la Table des Paramètres" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Convertir en pouce" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Restaurer en pouces" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Convertir en mètre" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Restaurer au compteur" msgid "Assemble" @@ -2213,7 +2214,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2230,7 +2231,7 @@ msgstr "Supprimer tous les connecteurs" msgid "Deleting the last solid part is not allowed." msgstr "La suppression de la dernière partie pleine n'est pas autorisée." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "" "L'objet cible ne contient qu'une seule partie et ne peut pas être divisé." @@ -2274,14 +2275,14 @@ msgid "Selection conflicts" msgstr "Conflits de sélection" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Si le premier élément sélectionné est un objet, le second doit également " "être un objet." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Si le premier élément sélectionné est une partie, le second doit faire " "partie du même objet." @@ -2347,7 +2348,7 @@ msgstr "" "une cellule ne peut être copiée que dans une ou plusieurs cellules de la " "même colonne" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "la copie de plusieurs cellules n'est pas prise en charge" msgid "Outside" @@ -2609,8 +2610,8 @@ msgid "Edit" msgstr "Éditer" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Tous les objets sélectionnés sont sur la plaque verrouillée,\n" "nous ne pouvons pas faire d'auto-arrangement sur ces objets." @@ -2619,8 +2620,8 @@ msgid "No arrangeable objects are selected." msgstr "Aucun objet réorganisable n'est sélectionné." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Cette plaque est verrouillée,\n" "nous ne pouvons pas faire d'auto-arrangement sur cette plaque." @@ -2660,15 +2661,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Tous les objets sélectionnés sont sur la plaque verrouillée,\n" "on ne peut pas faire d'auto-orientation sur ces objets." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Cette plaque est verrouillée, on ne peut pas faire d'auto-orientation sur " "cette plaque." @@ -2724,7 +2725,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "La connexion au service cloud a échoué. Veuillez réessayer." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Fichier d'impression introuvable, veuillez le redécouvre." msgid "" @@ -2753,7 +2754,7 @@ msgstr "" "La taille du fichier d'impression est trop importante. Ajustez la taille du " "fichier et réessayez." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Fichier d'impression introuvable, redécoupez-le et renvoyez-le pour " "impression." @@ -2795,10 +2796,10 @@ msgstr "Envoyée avec succès. Bascule automatique sur la page suivante dans %ss msgid "An SD card needs to be inserted before printing via LAN." msgstr "Une carte SD doit être insérée avant d'imprimer via le réseau local." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Envoi d'un fichier G-code via le réseau local" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Envoi du fichier G-code sur la carte SD" #, c-format, boost-format @@ -2848,10 +2849,10 @@ msgstr "Téléchargement" msgid "Download failed" msgstr "Échec du téléchargement" -msgid "Cancelled" +msgid "Canceled" msgstr "Annulé" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Installé avec succès." msgid "Installing" @@ -2920,9 +2921,6 @@ msgstr "Confirmer" msgid "Close" msgstr "Fermer" -msgid "Colour" -msgstr "Couleur" - msgid "" "Nozzle\n" "Temperature" @@ -3088,8 +3086,8 @@ msgstr "Humidité actuelle de l’AMS" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Veuillez changer le déshydratant lorsqu’il est trop humide. L’indicateur " @@ -3099,7 +3097,7 @@ msgstr "" "également le processus." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Configurez l'emplacement AMS qui doit être utilisé pour un filament utilisé " "dans la tâche d'impression" @@ -3119,7 +3117,7 @@ msgstr "Ne pas activer l'AMS" msgid "Print using materials mounted on the back of the case" msgstr "Imprimez en utilisant le filament de la bobine externe" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Imprimer avec du filament de l'AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3147,7 +3145,7 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -3179,7 +3177,7 @@ msgstr "" "20 secondes." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Remarque : si un nouveau filament est inséré pendant l’impression, l’AMS ne " @@ -3199,8 +3197,8 @@ msgstr "Mise à jour de la mise sous tension" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "Au démarrage, l'AMS lit automatiquement les informations relatives au " "filament inséré. Cela prend environ 1 minute et ce processus fait tourner " @@ -3231,8 +3229,8 @@ msgid "AMS filament backup" msgstr "Filament de secours AMS" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "L'AMS passera automatiquement à une autre bobine avec les mêmes propriétés " "de filament lorsque la bobine actuelle est épuisé" @@ -3297,7 +3295,7 @@ msgstr "Une erreur fatale s’est produite : « %1% »" msgid "Please save project and restart the program." msgstr "Veuillez enregistrer le projet et redémarrer le programme." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Traitement du G-Code du fichier précédent…" msgid "Slicing complete" @@ -3385,12 +3383,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Fichier G-code exporté vers %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Erreur inconnue lors de l'exportation du G-code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3569,7 +3567,7 @@ msgstr "Utiliser l’AMS" msgid "Select Printers" msgstr "Sélectionner des imprimantes" -msgid "Ams Status" +msgid "AMS Status" msgstr "Statut de l’AMS" msgid "Printing Options" @@ -3591,7 +3589,7 @@ msgid "Send to" msgstr "Envoyer à" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "imprimantes en même temps. (Cela dépend du nombre d’appareils qui peuvent " @@ -3601,7 +3599,7 @@ msgid "Wait" msgstr "Attendre" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "minute par lot. (Cela dépend du temps nécessaire pour terminer le chauffage.)" @@ -3704,11 +3702,11 @@ msgid "Bed Shape" msgstr "Forme du plateau" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"La température minimale recommandée est inférieure à 190 degrés ou la " -"température maximale recommandée est supérieure à 300 degrés.\n" +"La température minimale recommandée est inférieure à 190°C ou la " +"température maximale recommandée est supérieure à 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3731,11 +3729,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "La température de buse recommandée pour ce type de filament est de [%d, %d] " -"degrés centigrades" +"degrés Celsius." msgid "" "Too small max volumetric speed.\n" @@ -3746,9 +3744,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "La température actuelle du caisson est supérieure à la température de " "sécurité du matériau, ce qui peut entraîner un ramollissement et un bouchage " @@ -3806,12 +3804,12 @@ msgstr "" "Assurer l’épaisseur de la coque verticale est réglée sur Tous." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" msgstr "" -"Modifier ces paramètres automatiquement ? \n" +"Modifier ces paramètres automatiquement ?\n" "Oui - Modifier l’épaisseur de la coque verticale pour qu’elle soit modérée " "et activer la paroi supplémentaire\n" "Non - Ne pas utiliser la paroi supplémentaire alternée" @@ -3823,10 +3821,10 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgstr "" -"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative " -"ou la hauteur de couche de support indépendante est activée. \n" -"Que souhaitez-vous conserver ? \n" -"OUI - Conserver la tour de purge \n" +"La tour d’amorçage 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 d’amorçage \n" "NON - Conserver la hauteur de la couche adaptative et la hauteur de la " "couche de support indépendante" @@ -3836,10 +3834,10 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height" msgstr "" -"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative " -"est activée. \n" -"Que souhaitez-vous conserver ? \n" -"OUI - Conserver la tour de purge \n" +"La tour d’amorçage ne fonctionne pas lorsque la hauteur de couche adaptative " +"est activée.\n" +"Que souhaitez-vous conserver ?\n" +"OUI - Conserver la tour d’amorçage \n" "NON - Conserver la hauteur de la couche adaptative" msgid "" @@ -3848,7 +3846,7 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Independent Support Layer Height" msgstr "" -"La tour de purge ne fonctionne pas lorsque la hauteur de la couche de " +"La tour d’amorçage ne fonctionne pas lorsque la hauteur de la couche de " "support indépendante est activée.\n" "Que souhaitez-vous conserver ?\n" "OUI - Garder la tour de purge\n" @@ -3875,11 +3873,11 @@ msgstr "" "timelapse." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Modifier ces paramètres automatiquement ? \n" +"Modifier ces paramètres automatiquement ?\n" "Oui - Modifiez ces paramètres et activez automatiquement le mode spirale/" "vase\n" "Non - Annuler l'activation du mode spirale" @@ -3935,7 +3933,7 @@ msgstr "L’impression a été suspendue par l’utilisateur" msgid "Pause of front cover falling" msgstr "Pause de la chute de la couverture avant" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Calibrage du micro-Lidar" msgid "Calibrating extrusion flow" @@ -3974,7 +3972,7 @@ msgstr "" msgid "Cooling chamber" msgstr "Refroidissement du caisson" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Mise en pause par le G-code inséré par l’utilisateur" msgid "Motor noise showoff" @@ -4018,7 +4016,7 @@ msgstr "Mise à jour a échoué." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "La température actuelle du caisson ou la température cible du caisson " @@ -4026,8 +4024,8 @@ msgstr "" "température (PLA/PETG/TPU) ne doit pas être chargé." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Un filament basse température (PLA/PETG/TPU) est chargé dans l’extrudeur. " @@ -4036,7 +4034,7 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Lorsque vous réglez la température du caisson en dessous de 40℃, le contrôle " @@ -4059,7 +4057,7 @@ msgid "Selected diameter and machine diameter do not match" msgstr "" "Le diamètre sélectionné et le diamètre de la machine ne correspondent pas" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Échec de la génération du G-code de calibration" msgid "Calibration error" @@ -4072,14 +4070,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF n’est pas pris en charge par l’AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Le PVA humide deviendra flexible et restera coincé à l’intérieur de l’AMS, " "veuillez prendre soin de le sécher avant utilisation." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "Les filaments CF/GF sont durs et cassants, ils peuvent se casser ou se " @@ -4096,7 +4094,7 @@ msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" "Placeholders intégrés (double-cliquez sur l’élément pour l’ajouter au G-code)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Rechercher les placeholders de G-code" msgid "Add selected placeholder to G-code" @@ -4155,7 +4153,7 @@ msgid "parameter name" msgstr "nom du paramètre" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s ne peut pas être un pourcentage" #, c-format, boost-format @@ -4243,7 +4241,7 @@ msgstr "Ventilation: " msgid "Temperature: " msgstr "Température: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Chargement des G-codes" msgid "Generating geometry vertex data" @@ -4357,10 +4355,7 @@ msgstr "Imprimer" msgid "Printer" msgstr "Imprimante" -msgid "Custom g-code" -msgstr "G-code personnalisé" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Changement d'outil" msgid "Time Estimation" @@ -4486,8 +4481,11 @@ msgstr "Aligner sur l’axe Y" msgid "Add plate" msgstr "Ajouter un plateau" -msgid "Auto orient" -msgstr "Orientation automatique" +msgid "Auto orient all/selected objects" +msgstr "Orientation automatique tous/sélectionnés objets" + +msgid "Auto orient all objects on current plate" +msgstr "Orientation automatique tous les objets sur la plaque actuelle" msgid "Arrange all objects" msgstr "Organiser tous les objets" @@ -4510,8 +4508,8 @@ msgstr "Sélectionner le plateau" msgid "Assembly Return" msgstr "Retour d'assemblage" -msgid "return" -msgstr "retour" +msgid "Return" +msgstr "Retour" msgid "Paint Toolbar" msgstr "Barre d'outils de peinture" @@ -4539,26 +4537,26 @@ msgstr "Taille:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Des conflits de chemins G-code ont été trouvés au niveau de la couche %d, z " "= %.2lf mm. Veuillez séparer davantage les objets en conflit (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Un objet est posé sur la limite du plateau." msgid "A G-code path goes beyond the max print height." msgstr "Un chemin du G-code dépasse la hauteur d’impression maximale." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Un chemin du G-code va au-delà de la limite du plateau." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Seul l'objet en cours d'édition est visible." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4638,7 +4636,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Connecter l'imprimante (LAN)" msgid "Please input the printer access code:" @@ -4940,7 +4938,7 @@ msgstr "Perspective Automatique" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Passage automatique de la vue en plan à la vue en perspective lorsque l’on " "passe d’une vue de haut en bas ou de côté à une vue orthographique." @@ -4948,15 +4946,15 @@ msgstr "" msgid "Show &G-code Window" msgstr "Afficher la fenêtre du &G-code" -msgid "Show g-code window in Preview scene" -msgstr "Afficher la fenêtre du G-code dans la scène précédente" +msgid "Show G-code window in Preview scene." +msgstr "Afficher la fenêtre du G-code dans la scène précédente." msgid "Show 3D Navigator" msgstr "Afficher le navigateur 3D" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" -"Afficher le navigateur 3D dans la scène de préparation et de prévisualisation" +"Afficher le navigateur 3D dans la scène de préparation et de prévisualisation." msgid "Reset Window Layout" msgstr "Réinitialiser la présentation de la fenêtre" @@ -4967,20 +4965,20 @@ msgstr "Rétablissement de la disposition par défaut des fenêtres" msgid "Show &Labels" msgstr "Afficher &les étiquettes" -msgid "Show object labels in 3D scene" -msgstr "Afficher les étiquettes des objets dans la scène 3D" +msgid "Show object labels in 3D scene." +msgstr "Afficher les étiquettes des objets dans la scène 3D." msgid "Show &Overhang" msgstr "Montrer les &surplombs" -msgid "Show object overhang highlight in 3D scene" -msgstr "Afficher la surbrillance des surplombs d'un objet dans la scène 3D" +msgid "Show object overhang highlight in 3D scene." +msgstr "Afficher la surbrillance des surplombs d'un objet dans la scène 3D." msgid "Show Selected Outline (beta)" msgstr "Afficher le contour sélectionné (expérimental)" -msgid "Show outline around selected object in 3D scene" -msgstr "Afficher le tracé contour de l’objet sélectionné dans la scène 3D" +msgid "Show outline around selected object in 3D scene." +msgstr "Afficher le tracé contour de l’objet sélectionné dans la scène 3D." msgid "Preferences" msgstr "Préférences" @@ -5019,7 +5017,7 @@ msgid "Flow rate" msgstr "Débit" msgid "Pressure advance" -msgstr "Pressure Advance" +msgstr "" msgid "Retraction test" msgstr "Test de rétraction" @@ -5159,7 +5157,7 @@ msgid "Filament Settings" msgstr "Réglages du filament" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -5202,7 +5200,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "La caméra de l’imprimante ne fonctionne pas correctement." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Un problème s’est produit. Veuillez mettre à jour le micrologiciel de " "l’imprimante et réessayer." @@ -5223,7 +5221,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Échec de la connexion. Veuillez vérifier le réseau et réessayer" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Veuillez vérifier le réseau et réessayer, Vous pouvez redémarrer ou mettre à " @@ -5392,8 +5390,8 @@ msgid "Failed to parse model information." msgstr "Échec de l’analyse des informations sur le modèle." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Le fichier G-code .3mf ne contient pas de données G-code. Veuillez le " "découper avec OrcaSlicer et exporter un nouveau fichier G-code .3mf." @@ -5588,11 +5586,10 @@ msgid "Layer: %d/%d" msgstr "Couche : %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Veuillez chauffer la buse à plus de 170 degrés avant de charger ou de " -"décharger le filament." +"Veuillez chauffer la buse à plus de 170°C avant de charger ou de décharger " +"le filament." msgid "Still unload" msgstr "Décharger encore" @@ -5600,7 +5597,7 @@ msgstr "Décharger encore" msgid "Still load" msgstr "Charger encore" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Veuillez sélectionner un emplacement AMS avant la calibration" msgid "" @@ -5649,9 +5646,6 @@ msgstr "Envoyer" msgid "Please click on the star first." msgstr "Veuillez d’abord cliquer sur l’étoile." -msgid "InFo" -msgstr "Info" - msgid "Get oss config failed." msgstr "Échec de l’obtention de la configuration du système d’exploitation." @@ -5670,7 +5664,7 @@ msgstr " échec de l’analyse de la configuration de l’envoi\n" msgid " No corresponding storage bucket\n" msgstr " Aucun compartiment de stockage correspondant\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " ne peut pas être ouvert\n" msgid "" @@ -5697,7 +5691,7 @@ msgid "obtaining instance_id failed\n" msgstr "échec de l’obtention de l’instance_id\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5712,7 +5706,7 @@ msgstr "message d’erreur : " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5720,7 +5714,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Certaines de vos images n’ont pas pu être envoyées. Souhaitez-vous être " "redirigé vers la page Web pour l’évaluation ?" @@ -5730,7 +5724,7 @@ msgstr "Vous pouvez sélectionner jusqu’à 16 images." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Au moins un enregistrement d’impression réussi de ce profil\n" "d’impression est requis pour donner une note positive (4 ou 5 étoiles)." @@ -5775,7 +5769,7 @@ msgid "Newer 3mf version" msgstr "Nouvelle version 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "La version du fichier 3mf est en bêta et est plus récente que la version " @@ -5891,9 +5885,9 @@ msgstr[1] "%1$d L'objets sont mis en couleur." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" -msgstr[0] "%1$d objet a été chargé en tant que partie de l’objet coupé" -msgstr[1] "%1$d objets ont été chargés en tant que partie de l’objet coupé" +msgid_plural "%1$d objects were loaded as parts of cut object." +msgstr[0] "%1$d objet a été chargé en tant que partie de l’objet coupé." +msgstr[1] "%1$d objets ont été chargés en tant que partie de l’objet coupé." msgid "ERROR" msgstr "ERREUR" @@ -5916,7 +5910,7 @@ msgstr "Erreur:" msgid "Warning:" msgstr "Avertissement:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Exportation réussie." msgid "Model file downloaded." @@ -5934,11 +5928,11 @@ msgstr " Cliquez ici pour l'installer." msgid "WARNING:" msgstr "ATTENTION :" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "Votre modèle a besoin de supports ! Veuillez activer le matériau de support." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Chevauchement de chemin G-code" msgid "Support painting" @@ -6184,7 +6178,7 @@ msgstr "Voulez-vous enregistrer les modifications apportées à \"%1%\" ?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Démonté avec succès. Le périphérique %s(%s) peut maintenant être retiré en " @@ -6245,8 +6239,8 @@ msgstr "Charger 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "La version %s du 3mf est plus récente que la version %s de %s. Les clés " "suivantes ne sont pas reconnues:" @@ -6268,27 +6262,30 @@ msgstr "Valeurs invalides trouvées dans le 3mf :" msgid "Please correct them in the param tabs" msgstr "Veuillez les corriger dans les onglets de paramètres" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "Le 3mf a les G-codes modifiés suivants dans le filament ou les préréglages " "de l'imprimante :" +#, fuzzy msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Veuillez vous assurer que ces G-codes modifiés sont sûrs afin d'éviter tout " "dommage à la machine !" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "G-codes modifiés" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "Le 3mf dispose de filaments personnalisés ou de préréglages d'imprimante :" +#, fuzzy msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Veuillez vous assurer que les G-codes de ces préréglages sont sûrs afin " @@ -6354,8 +6351,8 @@ msgid "The file does not contain any geometry data." msgstr "Le fichier ne contient pas de données géométriques." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Votre objet semble trop grand. Voulez-vous le réduire pour l'adapter " "automatiquement au plateau d'impression ?" @@ -6464,11 +6461,11 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Mode de prévisualisation:\n" "Le fichier chargé contient uniquement du G-code, impossible d'accéder à la " -"page de Préparation" +"page de Préparation." msgid "You can keep the modified presets to the new project or discard them" msgstr "" @@ -6502,7 +6499,7 @@ msgstr "préparation du fichier 3mf..." msgid "Download failed, unknown file format." msgstr "Échec du téléchargement, format de fichier inconnu." -msgid "downloading project ..." +msgid "downloading project..." msgstr "téléchargement du projet..." msgid "Download failed, File size exception." @@ -6547,7 +6544,7 @@ msgstr "Importer les archives SLA" msgid "The selected file" msgstr "Le fichier sélectionné" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "ne contient pas de G-code valide." msgid "Error occurs while loading G-code file" @@ -6593,11 +6590,11 @@ msgstr "Un seul fichier G-code peut être ouvert à la fois." msgid "G-code loading" msgstr "Chargement du G-code" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "" "Les fichiers G-code ne peuvent pas être chargés avec des modèles ensemble !" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Impossible d'ajouter des modèles en mode aperçu !" msgid "All objects will be removed, continue?" @@ -6768,14 +6765,14 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "La plaque% d : %s n'est pas suggéré pour l'utilisation du filament " "d'impression %s(%s). Si vous souhaitez toujours effectuer ce travail " "d'impression, veuillez régler la température du plateau de ce filament sur " -"un nombre différent de zéro" +"un nombre différent de zéro." msgid "Switching the language requires application restart.\n" msgstr "Le changement de langue nécessite le redémarrage de l'application.\n" @@ -6938,6 +6935,12 @@ msgstr "" "Si activée, utilise la caméra libre. Si désactivée, utilise la caméra " "contrainte." +msgid "Swap pan and rotate mouse buttons" +msgstr "Échanger les boutons de panoramique et de rotation de la souris" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Si cette option est activée, les fonctions de panoramique et de rotation des boutons gauche et droit de la souris sont échangées." + msgid "Reverse mouse zoom" msgstr "Inverser le zoom de la souris" @@ -6986,7 +6989,7 @@ msgstr "" "Si cette option est activée, Orca se souviendra de la configuration du " "filament/processus pour chaque imprimante et la modifiera automatiquement." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Gestion multi-appareils (prend effet après le redémarrage d’Orca)." msgid "" @@ -7005,7 +7008,7 @@ msgstr "Arrangement automatique de la plaque après le clonage de l’objet" msgid "Network" msgstr "Réseau" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Synchronisation automatique des pré-réglages utilisateur (Imprimante/" "Filament/Traitement)" @@ -7084,7 +7087,7 @@ msgstr "Nombre maximal de projets récents" msgid "Clear my choice on the unsaved projects." msgstr "Efface mon choix sur les projets non enregistrés." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "" "Pas d'avertissement lors du chargement de 3MF avec des G-codes modifiés" @@ -7202,10 +7205,10 @@ msgstr "bouton d'enregistrement de débogage" msgid "save debug settings" msgstr "enregistrer les paramètres de débogage" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Les paramètres DEBUG ont été enregistrés avec succès !" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "L'environnement Cloud a changé, veuillez vous reconnecter !" msgid "System presets" @@ -7220,10 +7223,10 @@ msgstr "Préréglages incompatibles" msgid "AMS filaments" msgstr "Filaments AMS" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Cliquez pour choisir la couleur du filament" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Veuillez choisir la couleur du filament" msgid "Add/Remove presets" @@ -7241,7 +7244,7 @@ msgstr "Ajouter/Supprimer filament" msgid "Add/Remove materials" msgstr "Ajouter/Supprimer des matériaux" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Sélectionner/supprimer des imprimantes (préréglages du système)" msgid "Create printer" @@ -7315,14 +7318,14 @@ msgstr "Téléversement 3mf" msgid "Jump to model publish web page" msgstr "Accéder à la page internet de publication des modèles" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Remarque : La préparation peut prendre plusieurs minutes. Veuillez patienter." msgid "Publish" msgstr "Publier" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "La publication a été annulée" msgid "Slicing Plate 1" @@ -7347,7 +7350,7 @@ msgstr "Projeter à l'intérieur du préréglage" msgid "Name is unavailable." msgstr "Le nom n'est pas disponible." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Remplacer un profil système n'est pas autorisé" #, boost-format @@ -7355,12 +7358,14 @@ msgid "Preset \"%1%\" already exists." msgstr "Le préréglage \"%1%\" existe déjà." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "Le préréglage \"%1%\" existe déjà et est incompatible avec l'imprimante " "actuelle." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Veuillez noter que l'action d'enregistrement remplacera ce préréglage" msgid "The name cannot be the same as a preset alias name." @@ -7432,16 +7437,16 @@ msgid "PLA Plate" msgstr "Plaque PLA" msgid "Bambu Engineering Plate" -msgstr "Bambu Engineering Plate" +msgstr "" msgid "Bambu Smooth PEI Plate" -msgstr "Bambu Smooth PEI Plate" +msgstr "" msgid "High temperature Plate" msgstr "Plateau haute température" msgid "Bambu Textured PEI Plate" -msgstr "Bambu Textured PEI Plate" +msgstr "" msgid "Send print job to" msgstr "Envoyer le travail d'impression à" @@ -7589,7 +7594,7 @@ msgid "Please check the following:" msgstr "Veuillez vérifier les points suivants :" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7625,7 +7630,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "L’impression d’un matériau à haute température (matériau %s) avec %s peut " @@ -7749,7 +7754,7 @@ msgstr "La connexion a échoué. Veuillez vérifier le code pin." msgid "Log in printer" msgstr "Connectez-vous à l'imprimante" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "" "Souhaitez-vous vous connecter à cette imprimante avec un compte courant ?" @@ -7763,10 +7768,10 @@ msgid "Terms and Conditions" msgstr "Termes et conditions" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Nous vous remercions d'avoir acheté un produit Bambu Lab. Avant d'utiliser " @@ -7800,7 +7805,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7861,41 +7866,37 @@ msgstr "" "Cliquez pour rétablir tous les paramètres au dernier préréglage enregistré." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" -"Une tour de purge est requise pour le mode Timeplase fluide. Il peut y avoir " -"des défauts sur le modèle sans tour de purge. Êtes-vous sûr de vouloir la " -"désactiver ?" +"Une tour d’amorçage 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 " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Do you want to enable prime tower?" msgstr "" -"Une tour de purge est requise pour un mode timelapse fluide. Il peut y avoir " -"des défauts sur le modèle sans tour de purge. Voulez-vous activer la " +"Une tour d’amorçage est requise pour un mode timelapse fluide. Il peut y " +"avoir des défauts sur le modèle sans tour de purge. Voulez-vous activer la " "désactiver?" msgid "Still print by object?" msgstr "Vous imprimez toujours par objet ?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Vous souhaitez modifier ces paramètres automatiquement ? \n" +"Vous souhaitez modifier ces paramètres automatiquement ?\n" "Oui - Modifiez ces paramètres automatiquement\n" "Non - Ne modifiez pas ces paramètres pour moi" @@ -7922,14 +7923,14 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "La hauteur de la couche dépasse la limite fixée dans Paramètres de " "l’imprimante -> Extrudeur -> Limites de la hauteur de la couche, ce qui peut " "entraîner des problèmes de qualité d’impression." -msgid "Adjust to the set range automatically? \n" -msgstr "S’ajuster automatiquement à la plage définie ? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "S’ajuster automatiquement à la plage définie ?\n" msgid "Adjust" msgstr "Ajuster" @@ -7939,8 +7940,8 @@ msgstr "Ignorer" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Fonction expérimentale : Rétracter et couper le filament à une plus grande " @@ -7951,15 +7952,15 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Fonction expérimentale : Rétracter et couper le filament à une plus grande " "distance lors des changements de filament afin de minimiser " -"l’affleurement.Bien que cela puisse réduire sensiblement l’affleurement, " +"l’affleurement. Bien que cela puisse réduire sensiblement l’affleurement, " "cela peut également augmenter le risque d’obstruction des buses ou d’autres " -"complications d’impression.Veuillez utiliser le dernier micrologiciel de " +"complications d’impression. Veuillez utiliser le dernier micrologiciel de " "l’imprimante." msgid "" @@ -8124,7 +8125,7 @@ msgid "Multimaterial" msgstr "Multi-matériaux" msgid "Prime tower" -msgstr "Tour de purge" +msgstr "Tour d’amorçage" msgid "Filament for Features" msgstr "Filament pour les caractéristiques" @@ -8207,8 +8208,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Cool Plate (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Température du plateau lorsque la Cool Plate est installée. La valeur 0 " "signifie que le filament ne peut pas être imprimé sur la plaque Cool Plate " @@ -8218,30 +8219,30 @@ msgid "Cool Plate" msgstr "Cool Plate/Plaque PLA" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Il s'agit de la température du plateau lorsque la plaque \"Cool plate\" est " "installée. Une valeur à 0 signifie que ce filament ne peut pas être imprimé " "sur la plaque Cool Plate" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "Plaque Cool plate texturée" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Température du plateau lorsque la plaque Cool plate est installée. La valeur " "0 signifie que le filament ne peut pas être imprimé sur la plaque Cool Plate " "texturée" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "Plaque Engineering" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Il s'agit de la température du plateau lorsque la plaque Engineering est " "installée. Une valeur à 0 signifie que ce filament ne peut pas être imprimé " @@ -8251,9 +8252,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Plateau PEI lisse / Plateau haute température" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Température du plateau lorsque le Plateau PEI lisse / haute température est " "installé. Une valeur à 0 signifie que le filament ne prend pas en charge " @@ -8263,8 +8264,8 @@ msgid "Textured PEI Plate" msgstr "Plaque PEI texturée" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Température du plateau lorsque la plaque PEI texturée est installée. La " "valeur 0 signifie que le filament n'est pas supporté par la plaque PEI " @@ -8329,14 +8330,14 @@ msgstr "G-code de fin de filament" msgid "Wipe tower parameters" msgstr "Paramètres de la tour d’essuyage" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "" "Paramètres de changement d'outil avec les imprimantes MM à extrudeur unique" msgid "Ramming settings" msgstr "Paramètres de pilonnage" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" "Paramètres de changement d'outil pour les imprimantes MM à extrudeurs " "multiples" @@ -8350,7 +8351,7 @@ msgstr "Dépendances du profil" msgid "Printable space" msgstr "Espace imprimable" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Valeur non valide fournie pour le réglage %1% : %2%" @@ -8373,7 +8374,7 @@ msgstr "Maillage du plateau adaptatif" msgid "Accessory" msgstr "Accessoire" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-code de la machine" msgid "Machine start G-code" @@ -8391,7 +8392,7 @@ msgstr "G-Code avant changement de couche" msgid "Layer change G-code" msgstr "G-code de changement de couche" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "G-code de Timelapse" msgid "Change filament G-code" @@ -8489,7 +8490,7 @@ msgstr "" "à cette imprimante. Ces préréglages seront supprimés si l’imprimante est " "supprimée." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" "Les préréglages hérités d’autres préréglages ne peuvent pas être supprimés !" @@ -8509,11 +8510,11 @@ msgstr[0] "Le préréglage suivant sera également supprimé." msgstr[1] "Les préréglages suivants seront également supprimés." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Êtes-vous sûr de vouloir supprimer le préréglage sélectionné ? \n" +"Êtes-vous sûr de vouloir supprimer le préréglage sélectionné ?\n" "Si le préréglage correspond à un filament actuellement utilisé sur votre " "imprimante, veuillez réinitialiser les informations sur le filament pour cet " "emplacement." @@ -8737,7 +8738,7 @@ msgstr "Une nouvelle version est disponible" msgid "Configuration update" msgstr "Mise à jour de la configuration" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "" "Un nouveau package de configuration disponible, Voulez-vous l'installer ?" @@ -8747,14 +8748,14 @@ msgstr "La description:" msgid "Configuration incompatible" msgstr "Configuration incompatible" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "" "le package de configuration est incompatible avec l'application actuelle." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Le package de configuration est incompatible avec l'application actuelle. %s " "mettra à jour le package de configuration, sinon il ne pourra pas démarrer" @@ -8763,7 +8764,7 @@ msgstr "" msgid "Exit %s" msgstr "Sortir de %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" "le package de configuration est incompatible avec l'application actuelle." @@ -8777,58 +8778,54 @@ msgid "The configuration is up to date." msgstr "La configuration est à jour." msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "" msgid "Recommended " -msgstr "Recommended " +msgstr "" msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "" msgid "Quick set:" -msgstr "Quick set:" +msgstr "" msgid "Color match" -msgstr "Color match" +msgstr "" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "" msgid "Append" -msgstr "Append" +msgstr "" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "" msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "" msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "" msgid "Map Filament" -msgstr "Map Filament" +msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" msgid "Ramming customization" msgstr "Personnalisation du pilonnage" @@ -8949,11 +8946,11 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Il manque à votre système les codecs H.264 pour GStreamer, qui sont " -"nécessaires pour lire la vidéo. (Essayez d’installer les paquets " +"nécessaires pour lire la vidéo. (Essayez d’installer les paquets " "gstreamer1.0-plugins-bad ou gstreamer1.0-libav, puis redémarrez Orca Slicer)." msgid "Bambu Network plug-in not detected." @@ -9024,14 +9021,18 @@ msgstr "Maj+A" msgid "Shift+R" msgstr "Maj+R" +#, fuzzy msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Oriente automatiquement les objets sélectionnés ou tous les objets. S'il y a " "des objets sélectionnés, il oriente uniquement ceux qui sont sélectionnés. " -"Sinon, il oriente tous les objets du disque actuel." +"Sinon, il oriente tous les objets du projet en cours." + +msgid "Auto orients all objects on the active plate." +msgstr "Oriente automatiquement tous les objets du plaque actuelle." msgid "Shift+Tab" msgstr "Maj+Tab" @@ -9141,8 +9142,11 @@ msgstr "Gizmo pivoter" msgid "Gizmo cut" msgstr "Gizmo couper" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Placer la face sur le plateau" +msgid "Gizmo place face on bed" +msgstr "Gizmo placer la face sur le plateau" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo booléennes" msgid "Gizmo SLA support points" msgstr "Gizmo Point de support SLA" @@ -9150,8 +9154,17 @@ msgstr "Gizmo Point de support SLA" msgid "Gizmo FDM paint-on seam" msgstr "Gizmo Peinture de la couture FDM" -msgid "Gizmo Text emboss / engrave" -msgstr "Gizmo Embosser / graver du texte" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo embosser/graver du texte" + +msgid "Gizmo measure" +msgstr "Gizmo mesurer" + +msgid "Gizmo assemble" +msgstr "Gizmo assembler" + +msgid "Gizmo brim ears" +msgstr "Gizmo bordure à oreilles" msgid "Zoom in" msgstr "Zoom avant" @@ -9192,8 +9205,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Définir le numéro d'extrudeur pour les objets et les pièces" -msgid "Delete objects, parts, modifiers " -msgstr "Supprimer des objets, des pièces, des modificateurs " +msgid "Delete objects, parts, modifiers" +msgstr "Supprimer des objets, des pièces, des modificateurs" msgid "Select the object/part and press space to change the name" msgstr "" @@ -9226,7 +9239,7 @@ msgstr "" msgid "On/Off one layer mode of the vertical slider" msgstr "On/Off mode couche unique de la barre de défilement verticale" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "On/Off Fenêtre G-code" msgid "Move slider 5x faster" @@ -9245,7 +9258,7 @@ msgid "Release Note" msgstr "Note de version" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "informations de mise à jour de la version %s :" msgid "Network plug-in update" @@ -9258,7 +9271,7 @@ msgstr "" "démarrage de OrcaSlicer." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "" "Un nouveau plug-in réseau (%s) est disponible. Voulez-vous l'installer ?" @@ -9277,10 +9290,10 @@ msgstr "reprendre" msgid "Resume Printing" msgstr "Reprendre l’impression" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Reprendre l’impression (des défauts sont acceptables)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Reprendre l’impression (problème résolu)" msgid "Stop Printing" @@ -9404,10 +9417,10 @@ msgstr "Dernière version" msgid "Updating" msgstr "Mise à jour" -msgid "Updating failed" +msgid "Update failed" msgstr "La mise à jour a échoué" -msgid "Updating successful" +msgid "Update successful" msgstr "Mise à jour réussie" msgid "" @@ -9541,7 +9554,7 @@ msgstr "" "n’y a pas de collision." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Échec de la génération du G-code pour un G-code personnalisé non valide.\n" @@ -9592,7 +9605,7 @@ msgid "Multiple" msgstr "Plusieurs" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Échec du calcul de la largeur de ligne de %1%. Impossible d'obtenir la " "valeur de \"%2%\" " @@ -9724,7 +9737,7 @@ msgstr "" "de l'impression." msgid "Prime Tower" -msgstr "Tour de purge" +msgstr "Tour d’amorçage" msgid " is too close to others, and collisions may be caused.\n" msgstr "" @@ -9735,9 +9748,9 @@ msgstr "" " est trop proche d'une zone d'exclusion. Cela va entraîner des collisions.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Impossible d'imprimer plusieurs filaments qui ont une grande différence de " "température ensemble. Sinon, l'extrudeur et la buse peuvent être bloquées ou " @@ -9827,57 +9840,58 @@ msgid "" "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " "RepRapFirmware and Repetier G-code flavors." msgstr "" -"La tour principale n’est actuellement prise en charge que pour les versions " +"La tour d’amorçage n’est actuellement prise en charge que pour les versions " "Marlin, RepRap/Sprinter, RepRapFirmware et Repetier G-code." msgid "The prime tower is not supported in \"By object\" print." msgstr "" -"La tour de purge n'est pas prise en charge dans l'impression \"Par objet\"." +"La tour d’amorçage n'est pas prise en charge dans l'impression \"Par objet\"." msgid "" "The prime tower is not supported when adaptive layer height is on. It " "requires that all objects have the same layer height." msgstr "" -"La tour de purge n'est pas prise en charge lorsque la hauteur de couche " +"La tour d’amorçage 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" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" -"La tour de purge nécessite que \"l'écart de support\" soit un multiple de la " -"hauteur de la couche" +"La tour d’amorçage 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" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" -"La tour de purge nécessite que tous les objets aient la même hauteur de " +"La tour d’amorçage 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" +"of raft layers." msgstr "" -"La tour de purge nécessite que tous les objets soient imprimés sur le même " +"La tour d’amorçage nécessite que tous les objets soient imprimés sur le même " "nombre de couche de radeau" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" -"La tour de purge n’est prise en charge pour plusieurs objets que s’ils sont " -"imprimés avec la même valeur de support_top_z_distance." +"La tour d’amorçage n’est prise en charge pour plusieurs objets que s’ils " +"sont imprimés avec la même valeur de support_top_z_distance." msgid "" "The prime tower requires that all objects are sliced with the same layer " "heights." msgstr "" -"La tour de purge nécessite que tous les objets soient découpés avec la même " -"hauteur de couche." +"La tour d’amorçage 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" +"layer height." msgstr "" -"La tour de purge n'est prise en charge que si tous les objets ont la même " +"La tour d’amorçage n'est prise en charge que si tous les objets ont la même " "hauteur de couche variable" msgid "" @@ -9906,8 +9920,8 @@ msgstr "" msgid "" "The prime tower requires that support has the same layer height with object." msgstr "" -"La tour de purge nécessite que le support ait la même hauteur de couche avec " -"l'objet." +"La tour d’amorçage 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 " @@ -9936,7 +9950,7 @@ msgstr "" "Les forceurs de support sont utilisés mais le support n'est pas activé. " "Veuillez activer les supports." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "La hauteur de la couche ne peut pas dépasser le diamètre de la buse" msgid "" @@ -10065,8 +10079,8 @@ msgid "Elephant foot compensation" msgstr "Compensation de l'effet patte d'éléphant" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Rétrécissez la couche initiale sur le plateau pour compenser l'effet de " "patte d'éléphant" @@ -10090,7 +10104,7 @@ msgstr "couches" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Hauteur de découpe pour chaque couche. Une hauteur de couche plus petite " "signifie plus de précision et plus de temps d'impression" @@ -10098,13 +10112,13 @@ msgstr "" msgid "Printable height" msgstr "Hauteur imprimable" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "Hauteur imprimable maximale limitée par le mécanisme de l'imprimante" msgid "Preferred orientation" msgstr "Orientation préférée" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "Orienter automatiquement les stls sur l’axe Z lors de l’importation initiale" @@ -10114,7 +10128,7 @@ msgstr "Noms des préréglages de l'imprimante" msgid "Use 3rd-party print host" msgstr "Utiliser un hôte d’impression tiers" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Permettre le contrôle de l’imprimante de BambuLab par des hôtes d’impression " "tiers" @@ -10140,7 +10154,7 @@ msgid "Device UI" msgstr "Interface utilisateur de l’appareil" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Spécifiez l’URL de l’interface utilisateur de votre appareil si elle n’est " "pas identique à print_host" @@ -10156,7 +10170,7 @@ msgstr "" "champ doit contenir la clé API ou le mot de passe requis pour " "l'authentification." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Nom de l'imprimante" msgid "HTTPS CA File" @@ -10189,7 +10203,7 @@ msgstr "" "de distribution manquants ou hors ligne. Il peut être utile d'activer cette " "option pour les certificats auto-signés en cas d'échec de la connexion." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Noms des préréglages associés à l'imprimante physique" msgid "Authorization Type" @@ -10201,22 +10215,23 @@ msgstr "Clé API" msgid "HTTP digest" msgstr "Résumé HTTP" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Évitez de traverser les parois" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Faire un détour et éviter de traverser la paroi, ce qui pourrait causer des " "dépôts sur la surface" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Évitez de traverser les parois - Longueur maximale du détour" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Distance de détour maximale pour éviter de traverser une paroi: l'imprimante " "ne fera pas de détour si la distance de détour est supérieure à cette " @@ -10231,46 +10246,46 @@ msgid "Other layers" msgstr "Autres couches" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Il s'agit de la température du plateau pour toutes les couches à l'exception " "de la première. Une valeur à 0 signifie que ce filament ne peut pas être " -"imprimé sur la plaque \"Cool plate\"" +"imprimé sur la plaque \"Cool plate\"." msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Température du plateau pour les couches à l’exception de la couche initiale. " "La valeur 0 signifie que le filament ne peut pas être imprimé sur la plaque " -"Cool Plate texturée" +"Cool Plate texturée." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Il s'agit de la température du plateau pour toutes les couches à l'exception " "de la première. Une valeur à 0 signifie que ce filament ne peut pas être " -"imprimé sur la plaque Engineering" +"imprimé sur la plaque Engineering." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Il s'agit de la température du plateau pour toutes les couches à l'exception " "de la première. Une valeur à 0 signifie que ce filament ne peut pas être " -"imprimé sur le plateau haute température (\"High Temp plate\")" +"imprimé sur le plateau haute température (\"High Temp plate\")." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Température du plateau après la première couche. 0 signifie que le filament " -"n'est pas supporté par la plaque PEI texturée" +"n'est pas supporté par la plaque PEI texturée." msgid "Initial layer" msgstr "Couche initiale" @@ -10279,64 +10294,58 @@ msgid "Initial layer bed temperature" msgstr "Température du plateau lors de la couche initiale" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Température du plateau de la couche initiale. La valeur 0 signifie que le " "filament n’est pas compatible avec l’impression sur la Cool Plate SuperTack" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Il s'agit de la température du plateau pour la première couche. Une valeur à " "0 signifie que ce filament ne peut pas être imprimé sur la plaque \"Cool " "plate\"" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Température du plateau de la couche initiale. La valeur 0 signifie que le " "filament ne peut pas être imprimé sur la plaque Cool Plate texturée" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Il s'agit de la température du plateau pour la première couche. Une valeur à " "0 signifie que ce filament ne peut pas être imprimé sur la plaque Engineering" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Il s'agit de la température du plateau pour la première couche. Une valeur à " "0 signifie que ce filament ne peut pas être imprimé sur le plateau haute " "température (\"High Temp plate\")" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "La température du plateau à la première couche. La valeur 0 signifie que le " "filament n'est pas supporté sur la plaque PEI texturée" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Types de plateaux pris en charge par l'imprimante" msgid "Smooth Cool Plate" msgstr "Plaque Cool plate lisse" -msgid "Engineering Plate" -msgstr "Plaque Engineering" - msgid "Smooth High Temp Plate" msgstr "Plaque lisse haute température" -msgid "Textured Cool Plate" -msgstr "Plaque Cool plate texturée" - msgid "First layer print sequence" msgstr "Séquence d’impression de la première couche" @@ -10349,7 +10358,7 @@ msgstr "Le nombre d’autres couches de la séquence d’impression" msgid "Other layers filament sequence" msgstr "Séquence de filament des autres couches" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" "Ce G-code est inséré à chaque changement de couche avant le levage du Z" @@ -10359,7 +10368,7 @@ msgstr "Couches inférieures de la coque" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Il s'agit du nombre de couches pleines de coque inférieure, y compris la " "couche de surface inférieure. Lorsque l'épaisseur calculée par cette valeur " @@ -10374,7 +10383,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Le nombre de couches pleines inférieures est augmenté lors du découpage si " "l'épaisseur calculée par les couches de coque inférieures est inférieure à " @@ -10396,22 +10405,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Active le remplissage des espaces pour les surfaces solides sélectionnées. " "La longueur minimale de l'espace qui sera comblé peut être contrôlée à " @@ -10426,16 +10435,16 @@ msgstr "" "remplissage solide et de s'assurer que les faces supérieure et inférieure ne " "présentent pas de trous d'épingle.\n" "3. Nulle part : Désactive le remplissage de l'espace pour toutes les zones " -"de remplissage solide. \n" +"de remplissage solide.\n" "\n" "Notez que si vous utilisez le générateur de périmètre classique, le " "remplissage de l’espace peut également être généré entre les périmètres, si " "une ligne de largeur complète ne peut pas tenir entre eux. Ce remplissage du " -"périmètre n’est pas contrôlé par ce paramètre. \n" +"périmètre n’est pas contrôlé par ce paramètre.\n" "\n" "Si vous souhaitez que tous les espaces, y compris ceux générés par le " "périmètre classique, soient supprimés, définissez la valeur de filtrage des " -"petits espaces sur un grand nombre, comme 999999. \n" +"petits espaces sur un grand nombre, comme 999999.\n" "\n" "Il n’est toutefois pas conseillé de procéder ainsi, car le remplissage des " "espaces entre les périmètres contribue à la solidité du modèle. Pour les " @@ -10569,9 +10578,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10583,7 +10592,7 @@ msgstr "" " Des ponts internes moins denses peuvent contribuer à réduire le gonflement " "de la surface supérieure et à améliorer la fiabilité des ponts internes, car " "l’air a plus de place pour circuler autour du pont extrudé, ce qui améliore " -"sa vitesse de refroidissement. \n" +"sa vitesse de refroidissement.\n" "\n" "Cette option fonctionne particulièrement bien lorsqu’elle est combinée avec " "la deuxième option de pont interne sur le remplissage, ce qui permet " @@ -10594,14 +10603,14 @@ msgid "Bridge flow ratio" msgstr "Débit des ponts" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" "Diminuez légèrement cette valeur (par exemple 0,9) pour réduire la quantité " -"de matériau pour le pont, afin d’améliorer l’affaissement. \n" +"de matériau pour le pont, afin d’améliorer l’affaissement.\n" "\n" "Le débit réel du pont utilisé est calculé en multipliant cette valeur par le " "rapport de débit du filament et, s’il est défini, par le rapport de débit de " @@ -10633,14 +10642,14 @@ msgstr "Ratio du débit des surfaces supérieures" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Ce facteur affecte la quantité de matériau pour le remplissage du massif " "supérieur. Vous pouvez le réduire légèrement pour obtenir une finition de " -"surface lisse. \n" +"surface lisse.\n" "\n" "Le débit réel de la surface supérieure utilisé est calculé en multipliant " "cette valeur par le rapport de débit du filament et, s’il est défini, par le " @@ -10650,13 +10659,13 @@ msgid "Bottom surface flow ratio" msgstr "Ratio du débit des surfaces inférieures" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Ce facteur affecte la quantité de matériau pour le remplissage solide du " -"fond. \n" +"fond.\n" "\n" "Le débit réel du remplissage solide inférieur utilisé est calculé en " "multipliant cette valeur par le rapport de débit du filament et, s’il est " @@ -10676,8 +10685,8 @@ msgid "Only one wall on top surfaces" msgstr "Une seule paroi sur les surfaces supérieures" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "N'utilisez qu'une seule paroi sur les surfaces supérieures planes, afin de " "donner plus d'espace au motif de remplissage supérieur" @@ -10711,7 +10720,7 @@ msgstr "Une seule paroi sur la première couche" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Utiliser qu’une seule paroi sur la première couche, pour donner plus " "d’espace au motif de remplissage inférieur" @@ -10751,7 +10760,7 @@ msgid "Reverse only internal perimeters" msgstr "Inverser uniquement les périmètres internes" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10765,7 +10774,7 @@ msgid "" "directions on even layers irrespective of their overhang degree." msgstr "" "Appliquer la logique d’inversion des périmètres uniquement sur les " -"périmètres internes. \n" +"périmètres internes.\n" "\n" "Ce paramètre réduit considérablement les contraintes exercées sur les " "pièces, car elles sont désormais réparties dans des directions alternées. " @@ -10786,9 +10795,9 @@ msgstr "Trous d'alésage pour le pont" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Cette option crée des ponts pour les trous d'alésage, ce qui permet de les " "imprimer sans support. Les modes disponibles sont les suivants\n" @@ -10827,13 +10836,13 @@ msgstr "" msgid "Classic mode" msgstr "Classique" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Activer cette option pour utiliser le mode classique" msgid "Slow down for overhang" msgstr "Ralentir pour le surplomb" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Activez cette option pour ralentir l'impression pour différents degrés de " "surplomb" @@ -10844,11 +10853,11 @@ msgstr "Ralentir lors des périmètres courbés" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10887,14 +10896,14 @@ msgid "External" msgstr "Externe" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " "are supported by less than 13%, whether they are part of a bridge or an " "overhang." msgstr "" -"Vitesse des extrusions de pont visible de l’extérieur. \n" +"Vitesse des extrusions de pont visible de l’extérieur.\n" "\n" "En outre, si la fonction Ralentir pour les périmètres courbés est désactivée " "ou si le mode Surplomb classique est activé, il s’agira de la vitesse " @@ -10915,7 +10924,7 @@ msgstr "" msgid "Brim width" msgstr "Largeur de la bordure" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Distance du modèle à la ligne de bord la plus externe" msgid "Brim type" @@ -10937,7 +10946,7 @@ msgstr "Écart bord-objet" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Un espace entre la ligne de bord la plus interne et l'objet peut faciliter " "le retrait du bord" @@ -10952,8 +10961,8 @@ msgid "Brim ear max angle" msgstr "Angle maximum de la bordure à oreilles" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Angle maximum pour laisser apparaître la bordure à oreilles.\n" @@ -10967,7 +10976,7 @@ msgstr "Rayon de détection de la bordure à oreilles" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "La géométrie sera décimée avant de détecter les angles vifs. Ce paramètre " "indique la longueur minimale de l’écart pour la décimation.\n" @@ -11006,7 +11015,7 @@ msgstr "" "d’impression actif. Si cette expression vaut true, ce profil est considéré " "comme compatible avec le profil d’impression actif." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Séquence d'impression, couche par couche ou objet par objet" msgid "By layer" @@ -11018,7 +11027,7 @@ msgstr "Par objet" msgid "Intra-layer order" msgstr "Ordre intra-couche" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Ordre d’impression au sein d’une même couche" msgid "As object list" @@ -11031,7 +11040,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Activez cette option pour ralentir la vitesse d'impression afin que le temps " "de couche final ne soit pas plus court que le seuil de temps de couche dans " @@ -11044,7 +11053,7 @@ msgstr "Impression normale" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "L'accélération par défaut de l'impression normale et du déplacement à " "l'exception de la couche initiale" @@ -11052,13 +11061,13 @@ msgstr "" msgid "Default filament profile" msgstr "Profil de filament par défaut" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Profil de filament par défaut lors du passage à ce profil de machine" msgid "Default process profile" msgstr "Profil de traitement par défaut" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Profil de traitement par défaut lors du passage à ce profil de machine" msgid "Activate air filtration" @@ -11073,21 +11082,21 @@ msgid "Fan speed" msgstr "Vitesse du ventilateur" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Vitesse du ventilateur d’extraction pendant l’impression. Cette vitesse " -"écrasera la vitesse dans le G-code personnalisé du filament" +"écrasera la vitesse dans le G-code personnalisé du filament." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Vitesse du ventilateur d’extraction après l’impression" msgid "No cooling for the first" msgstr "Pas de refroidissement pour" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Éteignez tous les ventilateurs de refroidissement pour les premières " "couches. Cela peut être utilisé pour améliorer l'adhérence à la plaque" @@ -11096,8 +11105,8 @@ msgid "Don't support bridges" msgstr "Ne pas supporter les ponts" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Cela désactive le support des ponts, ce qui diminue le nombre de supports " "requis. Les ponts peuvent généralement être imprimés directement sans " @@ -11147,20 +11156,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11217,58 +11226,46 @@ msgstr "Filtrer les petits ponts internes" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Cette option peut aider à réduire le gonflement des surfaces supérieures " "dans les modèles fortement inclinés ou courbés.\n" -"\n" "Par défaut, les petits ponts internes sont filtrés et le remplissage solide " "interne est imprimé directement sur le remplissage peu dense. Cela " "fonctionne bien dans la plupart des cas, accélérant l'impression sans trop " -"compromettre la qualité de la surface supérieure. \n" -"\n" +"compromettre la qualité de la surface supérieure.\n" "Cependant, dans les modèles fortement inclinés ou courbés, en particulier " "lorsqu'une densité de remplissage trop faible est utilisée, il peut en " "résulter un enroulement du remplissage solide non soutenu, ce qui provoque " "un effet de pilonnage.\n" -"\n" "L’activation d’un filtrage limité ou l’absence de filtrage entraîne " "l’impression d’une couche de pont interne sur un remplissage solide interne " "légèrement non soutenu. Les options ci-dessous contrôlent la sensibilité du " "filtrage, c’est-à-dire qu’elles contrôlent l’endroit où les ponts internes " "sont créés.\n" -"\n" "1. Filtre - active cette option. C’est le comportement par défaut et il " "fonctionne bien dans la plupart des cas.\n" -"\n" "2. Filtrage limité - crée des ponts internes sur les surfaces fortement " "inclinées tout en évitant les ponts inutiles. Cette option fonctionne bien " "pour la plupart des modèles difficiles.\n" -"\n" "3. Pas de filtrage - crée des ponts internes sur chaque surplomb interne " "potentiel. Cette option est utile pour les modèles à surface supérieure " "fortement inclinée ; cependant, dans la plupart des cas, elle crée trop de " @@ -11299,20 +11296,20 @@ msgstr "" msgid "End G-code" msgstr "G-code de fin" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "G-code de fin lorsque vous avez terminé toute l'impression" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "G-code entre objet" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Insérer le G-code entre les objets. Ce paramètre n’entrera en vigueur que " -"lorsque vous imprimerez vos modèles objet par objet" +"lorsque vous imprimerez vos modèles objet par objet." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "G-code de fin lorsque l'impression de ce filament est terminée" msgid "Ensure vertical shell thickness" @@ -11351,7 +11348,7 @@ msgstr "Modéré" msgid "Top surface pattern" msgstr "Motif de surface supérieure" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Motif de ligne du remplissage de la surface supérieure" msgid "Concentric" @@ -11381,7 +11378,7 @@ msgstr "Spirale Octagramme" msgid "Bottom surface pattern" msgstr "Motif de surface inférieure" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Motif de ligne du remplissage de la surface inférieure, pas du remplissage " "du pont" @@ -11430,7 +11427,7 @@ msgid "Small perimeters threshold" msgstr "Seuil des petits périmètres" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Cela définit le seuil pour une petite longueur de périmètre. Le seuil par " "défaut est de 0 mm" @@ -11439,7 +11436,7 @@ msgid "Walls printing order" msgstr "Ordre d’impression des parois" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11453,7 +11450,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11463,7 +11460,7 @@ msgid "" " " msgstr "" "Séquence d'impression des parois internes (intérieures) et externes " -"(extérieures). \n" +"(extérieures).\n" "\n" "Utilisez Intérieur/Extérieur pour obtenir les meilleurs surplombs. En effet, " "les parois en surplomb peuvent adhérer à un périmètre voisin lors de " @@ -11480,7 +11477,7 @@ msgstr "" "elle imprime d’abord les parois internes à partir du troisième périmètre, " "puis le périmètre externe et, enfin, le premier périmètre interne. Cette " "option est recommandée par rapport à l’option Extérieur/intérieur dans la " -"plupart des cas. \n" +"plupart des cas.\n" "\n" "Utilisez l’option Extérieur/intérieur pour bénéficier de la même qualité de " "paroi externe et de la même précision dimensionnelle que l’option Intérieur/" @@ -11658,7 +11655,7 @@ msgstr "" msgid "Extruder Color" msgstr "Couleur de l'extrudeur" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Utilisé uniquement comme aide visuelle sur l'interface utilisateur" msgid "Extruder offset" @@ -11668,35 +11665,35 @@ msgid "Flow ratio" msgstr "Rapport de débit" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Le matériau peut avoir un changement volumétrique après avoir basculé entre " "l'état fondu et l'état cristallin. Ce paramètre modifie proportionnellement " "tout le débit d'extrusion de ce filament dans le G-code. La plage de valeurs " "recommandée est comprise entre 0,95 et 1,05. Vous pouvez peut-être ajuster " "cette valeur pour obtenir une belle surface plane en cas de léger " -"débordement ou sous-dépassement" +"débordement ou sous-dépassement." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" "Le matériau peut présenter un changement volumétrique après le passage de " "l’état fondu à l’état cristallin. Ce paramètre modifie proportionnellement " -"tous les débits d’extrusion de ce filament dans le gcode. La valeur " +"tous les débits d’extrusion de ce filament dans le G-code. La valeur " "recommandée est comprise entre 0,95 et 1,05. Vous pouvez peut-être ajuster " "cette valeur pour obtenir une belle surface plate lorsqu’il y a un léger " -"débordement ou un sous-débordement. \n" +"débordement ou un sous-débordement.\n" "\n" "Le ratio de débit de l’objet final est cette valeur multipliée par le ratio " "de débit du filament." @@ -11711,7 +11708,7 @@ msgstr "" "Activer le Pressure Advance, le résultat de l’auto calibration sera écrasé " "une fois activé." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "Pressure Advance (Klipper) AKA Linear Advance (Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -11780,19 +11777,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Ajouter des séries de valeurs d'avance de pression (PA), les vitesses de " "débit volumétrique et les accélérations auxquelles elles ont été mesurées, " @@ -11820,8 +11816,9 @@ msgstr "" "que votre extrudeur fonctionne correctement. Plus vous imprimez lentement et " "avec peu d’accélération, plus la plage des valeurs PA acceptables est " "grande. Si aucune différence n’est visible, utilisez la valeur PA du test le " -"plus rapide.3 Entrez les triplets de valeurs PA, de débit et d’accélérations " -"dans la zone de texte ici et sauvegardez votre profil de filament.\n" +"plus rapide.\n" +"3 Entrez les triplets de valeurs PA, de débit et d’accélérations dans la " +"zone de texte ici et sauvegardez votre profil de filament." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "" @@ -11842,14 +11839,14 @@ msgid "Pressure advance for bridges" msgstr "Avance de pression pour les ponts" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" -"Valeur de l’avance de pression pour les ponts. Régler à 0 pour désactiver. \n" +"Valeur de l’avance de pression pour les ponts. Régler à 0 pour désactiver.\n" "\n" " Une valeur PA plus faible lors de l’impression de ponts permet de réduire " "l’apparition d’une légère sous-extrusion immédiatement après les ponts. Ce " @@ -11867,8 +11864,9 @@ msgid "Keep fan always on" msgstr "Garder le ventilateur toujours actif" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Si ce paramètre est activé, le ventilateur de refroidissement des pièces ne " "sera jamais arrêté et fonctionnera au moins à la vitesse minimale pour " @@ -11877,28 +11875,26 @@ msgstr "" msgid "Don't slow down outer walls" msgstr "Ne pas ralentir sur les parois extérieures" +#, fuzzy msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "S’il est activé, ce paramètre garantit que les périmètres externes ne sont " "pas ralentis pour respecter la durée minimale de la couche. Ceci est " "particulièrement utile dans les scénarios suivants :\n" -"\n" -" 1. Pour éviter les changements de brillance lors de l’impression de " -"filaments brillants \n" +"1. Pour éviter les changements de brillance lors de l’impression de " +"filaments brillants\n" "2. Pour éviter les changements de vitesse des parois externes qui peuvent " -"créer de légers artefacts de paroi qui apparaissent comme des bandes en z. \n" +"créer de légers artefacts de paroi qui apparaissent comme des bandes en z.\n" "3. Pour éviter d’imprimer à des vitesses qui provoquent des VFA (artefacts " -"fins) sur les parois externes.\n" +"fins) sur les parois externes." msgid "Layer time" msgstr "Temps de couche" @@ -11906,7 +11902,7 @@ msgstr "Temps de couche" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Le ventilateur de refroidissement des pièces sera activé pour les couches " "dont le temps estimé est inférieur à cette valeur. La vitesse du ventilateur " @@ -11938,7 +11934,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Ce paramètre correspond au volume de filament qui peut être fondu et extrudé " "par seconde. La vitesse d'impression sera limitée par la vitesse " @@ -11954,7 +11950,7 @@ msgstr "Temps de chargement du filament" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Temps nécessaire pour charger un nouveau filament lors d’un changement de " "filament. Ce paramètre s’applique généralement aux machines multi-matériaux " @@ -11967,7 +11963,7 @@ msgstr "Temps de déchargement du filament" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Temps nécessaire pour décharger l’ancien filament lors du changement de " "filament. Ce paramètre s’applique généralement aux machines multi-matériaux " @@ -11980,7 +11976,7 @@ msgstr "Délais nécessaire au changement d’outil" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Durée nécessaire pour changer d’outil. Il s’applique généralement aux " "changeurs d’outils ou aux machines multi-outils. Pour les machines multi-" @@ -11988,11 +11984,11 @@ msgstr "" "statistiques uniquement" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Le diamètre du filament est utilisé pour calculer les variables d'extrusion " -"dans le G-code, il est donc important qu'il soit exact et précis" +"dans le G-code, il est donc important qu'il soit exact et précis." msgid "Pellet flow coefficient" msgstr "Coefficient d’écoulement des pellets" @@ -12061,7 +12057,7 @@ msgid "Unloading speed" msgstr "Vitesse de déchargement" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Vitesse utilisée pour le déchargement du filament sur la tour d’essuyage " @@ -12080,8 +12076,8 @@ msgid "Delay after unloading" msgstr "Délai après déchargement" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Délai une fois le filament déchargé. Peut aider à obtenir des changements " @@ -12109,7 +12105,7 @@ msgstr "" "Distance de marquage mesurée à partir du centre du tube de refroidissement" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -12168,7 +12164,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Effectuez un pilonnage lorsque vous utilisez une imprimante multi-outils " "(c’est-à-dire lorsque l’option ‘Multi-matériau à extrudeur unique’ dans les " @@ -12180,32 +12176,32 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Volume du pilonnage multi-outils" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Volume à pilonner avant le changement d’outil." msgid "Multi-tool ramming flow" msgstr "Débit du pilonnage multi-outils" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Débit utilisé pour pilonner le filament avant le changement d’outil." msgid "Density" msgstr "Densité" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Densité des filaments. Pour les statistiques uniquement" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Le type de matériau du filament" msgid "Soluble material" msgstr "Matériau soluble" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Le matériau soluble est couramment utilisé pour imprimer le support et " "l'interface de support" @@ -12214,7 +12210,7 @@ msgid "Support material" msgstr "Supports" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Le matériau de support est généralement utilisé pour imprimer le support et " "les interfaces de support" @@ -12224,8 +12220,8 @@ msgstr "Température de vitrification" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Température où le matériau se ramollit. Lorsque la température du plateau " "est égale ou supérieure à celle-ci, il est fortement recommandé d’ouvrir la " @@ -12235,7 +12231,7 @@ msgstr "" msgid "Price" msgstr "Tarif" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Coût ​​du filament. Pour les statistiques uniquement" msgid "money/kg" @@ -12244,7 +12240,7 @@ msgstr "argent/kg" msgid "Vendor" msgstr "Fabriquant" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Vendeur du filament. Pour affichage uniquement" msgid "(Undefined)" @@ -12255,7 +12251,7 @@ msgstr "Direction du remplissage" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Angle pour le motif de remplissage qui contrôle le début ou la direction " "principale de la ligne" @@ -12265,7 +12261,7 @@ msgstr "Direction du remplissage" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Angle pour le motif de remplissage, qui contrôle le début ou la direction " "principale de la ligne" @@ -12283,7 +12279,7 @@ msgstr "Densité de remplissage" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Densité du remplissage interne, 100% transforme tous les remplissages en " "remplissages pleins et le modèle de remplissage interne sera utilisé" @@ -12291,7 +12287,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Motif de remplissage" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Motif de ligne du remplissage interne" msgid "Grid" @@ -12364,7 +12360,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12395,7 +12391,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12414,24 +12410,24 @@ msgstr "" msgid "0 (Simple connect)" msgstr "0 (connexions simples)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Accélération des parois extérieures" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Accélération des parois intérieures" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Accélération des déplacements" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Il s'agit de l'accélération de la surface supérieure du remplissage. " "Utiliser une valeur plus petite pourrait améliorer la qualité de la surface " "supérieure" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Accélération de la paroi extérieur : l'utilisation d'une valeur inférieure " "peut améliorer la qualité" @@ -12445,7 +12441,7 @@ msgstr "" "extérieure." msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "mm/s² ou %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " @@ -12466,7 +12462,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Accélération de la couche initiale. L'utilisation d'une valeur plus basse " "peut améliorer l'adhérence sur le plateau" @@ -12474,7 +12470,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Activer l’accélération à la décélération" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Le paramètre max_accel_to_decel de Klipper sera ajusté automatiquement" msgid "accel_to_decel" @@ -12482,26 +12478,26 @@ msgstr "ajuster l’accélération à la décélération" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" "Le paramètre max_accel_to_decel de Klipper sera ajusté à %% d'accélération" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk des parois extérieures" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk des parois intérieures" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Jerk des surfaces supérieures" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Jerk du remplissage" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Jerk de la couche initiale" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Jerk des déplacements" msgid "" @@ -12516,24 +12512,24 @@ msgstr "Hauteur de couche initiale" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Il s'agit de la hauteur de la première couche. L'augmentation de la hauteur " "de la première couche peut améliorer l'adhérence sur le plateau" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Vitesse de la couche initiale à l'exception du remplissage" msgid "Initial layer infill" msgstr "Remplissage de la couche initiale" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Vitesse du remplissage à la couche initiale" msgid "Initial layer travel speed" msgstr "Déplacements" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Vitesse de déplacement de la couche initiale" msgid "Number of slow layers" @@ -12550,7 +12546,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Température de la buse de couche initiale" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Température de la buse pour imprimer la couche initiale lors de " "l'utilisation de ce filament" @@ -12580,7 +12576,7 @@ msgstr "Vitesse du ventilateur" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12616,7 +12612,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Gigue aléatoire lors de l'impression de la paroi, de sorte que la surface " "ait un aspect rugueux. Ce réglage contrôle la position irrégulière" @@ -12635,7 +12631,7 @@ msgstr "Épaisseur de la surface Irrégulière" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "La largeur à l'intérieur de laquelle jitter. Il est déconseillé d'être en " "dessous de la largeur de la ligne de la paroi extérieure" @@ -12645,7 +12641,7 @@ msgstr "Distance de point de la surface irrégulière" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "La distance moyenne entre les points aléatoires introduits sur chaque " "segment de ligne" @@ -12653,14 +12649,14 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "Appliquer la surface irrégulière sur la première couche" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Application ou non d’une surface irrégulière sur la première couche" msgid "Fuzzy skin noise type" msgstr "Type de bruit de surface irrégulière" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12741,7 +12737,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Vitesse de remplissage des espaces. L’espace a généralement une largeur de " "ligne irrégulière et doit être imprimé plus lentement" @@ -12763,7 +12759,7 @@ msgstr "Tracer des arcs" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12773,7 +12769,7 @@ msgid "" msgstr "" "Activez cette option pour obtenir un fichier G-code contenant les " "déplacements G2 et G3. La tolérance d’ajustement est la même que la " -"résolution. \n" +"résolution.\n" "\n" "Note : Pour les machines Klipper, il est recommandé de désactiver cette " "option. Klipper ne bénéficie pas des commandes d’arc car celles-ci sont à " @@ -12784,17 +12780,18 @@ msgstr "" msgid "Add line number" msgstr "Ajouter un numéro de ligne" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Activez cette option pour ajouter un numéro de ligne (Nx) au début de chaque " -"ligne G-Code" +"ligne G-Code." msgid "Scan first layer" msgstr "Analyser la première couche" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Activez cette option pour permettre à l'appareil photo de l'imprimante de " "vérifier la qualité de la première couche" @@ -12804,7 +12801,7 @@ msgstr "Type de buse" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Le matériau métallique de la buse. Cela détermine la résistance à l'abrasion " "de la buse et le type de filament pouvant être imprimé" @@ -12837,7 +12834,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Structure de l’imprimante" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Disposition physique et les composants du périphérique d’impression" msgid "CoreXY" @@ -12872,10 +12869,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Démarrer le ventilateur plus tôt de ce nombre de secondes par rapport au " @@ -12916,7 +12913,7 @@ msgstr "" msgid "Time cost" msgstr "Coût horaire" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Coût horaire de l’imprimante" msgid "money/h" @@ -12946,8 +12943,8 @@ msgstr "" msgid "G-code flavor" msgstr "Version du G-code" -msgid "What kind of gcode the printer is compatible with" -msgstr "Avec quel type de G-code l'imprimante est-elle compatible" +msgid "What kind of G-code the printer is compatible with." +msgstr "Avec quel type de G-code l'imprimante est-elle compatible." msgid "Klipper" msgstr "Klipper" @@ -12955,7 +12952,7 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Imprimante à pellets" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Activez cette option si votre imprimante utilise des pellets au lieu de " "filaments" @@ -12963,7 +12960,7 @@ msgstr "" msgid "Support multi bed types" msgstr "Prise en charge de plusieurs types de plateaux" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" "Activez cette option si vous souhaitez utiliser plusieurs types de plateaux" @@ -12971,7 +12968,7 @@ msgid "Label objects" msgstr "Label Objects" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12985,9 +12982,9 @@ msgstr "" msgid "Exclude objects" msgstr "Exclure des objets" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" -"Activer cette option pour ajouter la commande EXCLUDE OBJECT dans le G-code" +"Activer cette option pour ajouter la commande EXCLUDE OBJECT dans le G-code." msgid "Verbose G-code" msgstr "G-code commenté" @@ -13016,7 +13013,7 @@ msgid "Infill combination - Max layer height" msgstr "Combinaison de remplissage - Hauteur maximale de la couche" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -13027,7 +13024,7 @@ msgid "" "Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " "(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Hauteur maximale de la couche pour le remplissage peu dense combiné. \n" +"Hauteur maximale de la couche pour le remplissage peu dense combiné.\n" "\n" "Réglez cette valeur à 0 ou 100% pour utiliser le diamètre de la buse (pour " "une réduction maximale du temps d’impression) ou une valeur de ~80% pour " @@ -13076,7 +13073,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "La zone de remplissage solide supérieure est légèrement élargie pour " "chevaucher la paroi afin d’améliorer l’adhérence et de minimiser " @@ -13085,13 +13082,13 @@ msgstr "" "minimisant l’apparition de trous d’épingle. La valeur en pourcentage est " "relative à la largeur de ligne du remplissage" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Vitesse de remplissage interne" msgid "Inherits profile" msgstr "Hérite du profil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Nom du profil parent" msgid "Interface shells" @@ -13100,7 +13097,7 @@ msgstr "Coque des interfaces" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Forcer la génération de coques solides entre matériaux/volumes adjacents. " "Utile pour les impressions multi-extrudeuses avec des matériaux translucides " @@ -13119,7 +13116,7 @@ msgstr "Profondeur d’emboîtement d’une région segmentée" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Profondeur d’imbrication d’une région segmentée. Elle sera ignorée si " @@ -13210,7 +13207,7 @@ msgstr "Toutes les couches pleines" msgid "Ironing Pattern" msgstr "Modèle de lissage" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Motif qui sera utilisé lors du lissage" msgid "Ironing flow" @@ -13218,7 +13215,7 @@ msgstr "Débit de lissage" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "La quantité de matière à extruder lors du lissage. Relatif au débit de la " "hauteur de couche normale. Une valeur trop élevée entraîne une surextrusion " @@ -13227,7 +13224,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Espacement des lignes de lissage" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "La distance entre les lignes de lissage" msgid "Ironing inset" @@ -13235,7 +13232,7 @@ msgstr "Encastrement du repassage" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "Distance à respecter par rapport aux bords. La valeur 0 correspond à la " "moitié du diamètre de la buse" @@ -13243,8 +13240,8 @@ msgstr "" msgid "Ironing speed" msgstr "Vitesse de lissage" -msgid "Print speed of ironing lines" -msgstr "Vitesse d'impression des lignes de lissage" +msgid "Print speed of ironing lines." +msgstr "Vitesse d'impression des lignes de lissage." msgid "Ironing angle" msgstr "Angle de lissage" @@ -13256,17 +13253,17 @@ msgstr "" "Angle auquel le lissage se fait. Un nombre négatif désactive cette fonction " "et utilise la méthode par défaut." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Cette partie G-code est insérée à chaque changement de couche après le " -"levage du Z" +"levage du Z." msgid "Supports silent mode" msgstr "Prend en charge le mode silencieux" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Si la machine prend en charge le mode silencieux dans lequel la machine " "utilise une accélération plus faible pour imprimer" @@ -13279,26 +13276,27 @@ msgstr "Limites de la machine" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Si cette option est activée, les limites de la machine seront émises dans un " "fichier G-code.\n" "Cette option sera ignorée si la version du G-code est définie sur Klipper." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Ce G-code sera utilisé comme code pour la pause d'impression. Les " -"utilisateurs peuvent insérer un G-code de pause dans la visionneuse de G-code" +"utilisateurs peuvent insérer un G-code de pause dans la visionneuse de " +"G-code." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Ce G-code sera utilisé comme code personnalisé" msgid "Small area flow compensation (beta)" msgstr "Compensation du débit des petites zones (beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" "Activer la compensation des débits pour les petites zones de remplissage" @@ -13416,14 +13414,14 @@ msgstr "Accélération maximale pour la rétraction (M204 R)" msgid "Maximum acceleration for travel" msgstr "Accélération maximale pour le déplacement" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" "Accélération maximale de déplacement (M204 T), cela ne s’applique qu’à " "Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "La vitesse du ventilateur de refroidissement des pièces peut être augmentée " "lorsque le refroidissement automatique est activé. Il s'agit de la " @@ -13433,8 +13431,8 @@ msgid "Max" msgstr "Maximum" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "La plus grande hauteur de couche imprimable pour l'extrudeur. Utilisé tp " "limite la hauteur de couche maximale lorsque la hauteur de couche adaptative " @@ -13449,23 +13447,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13476,7 +13474,7 @@ msgstr "" "élevée / largeur de ligne plus grande) à une extrusion à débit plus faible " "(vitesse plus faible / largeur de ligne plus petite) et vice versa.\n" "\n" -"Il définit le taux maximum auquel le débit volumétrique extrudé en mm3/sec " +"Il définit le taux maximum auquel le débit volumétrique extrudé en mm³/s² " "peut varier dans le temps. Des valeurs plus élevées signifient que des " "changements du taux d’extrusion plus élevés sont autorisés, ce qui entraîne " "des transitions de vitesse plus rapides.\n" @@ -13488,13 +13486,13 @@ msgstr "" "Cependant, cela peut apporter un avantage marginal dans certains cas où les " "vitesses varient considérablement. Par exemple, en cas de ralentissements " "agressifs dus à des surplombs. Dans ces cas, une valeur élevée d’environ " -"300-350 mm3/s2 est recommandée car elle permet un lissage juste suffisant " +"300-350 mm³/s² est recommandée car elle permet un lissage juste suffisant " "pour aider l’augmentation de la pression pour obtenir une transition de " "débit plus douce.\n" "\n" "Pour les imprimantes plus lentes sans fonction de pressure advance, la " -"valeur doit être réglée beaucoup plus bas. Une valeur de 10-15 mm3/s2 est un " -"bon point de départ en direct drive et de 5-10 mm3/s2 en Bowden.\n" +"valeur doit être réglée beaucoup plus bas. Une valeur de 10-15 mm³/s² est un " +"bon point de départ en direct drive et de 5-10 mm³/s² en Bowden.\n" "\n" "Cette fonctionnalité est connue sous le nom de Pressure Equalizer dans Prusa " "Slicer.\n" @@ -13509,17 +13507,17 @@ msgstr "Longueur du segment de lissage" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" "Une valeur plus faible permet d’obtenir des transitions de taux d’extrusion " "plus douces. Cependant, cela se traduit par un fichier gcode beaucoup plus " -"volumineux et plus d’instructions à traiter par l’imprimante. \n" +"volumineux et plus d’instructions à traiter par l’imprimante.\n" "\n" "La valeur par défaut de 3 fonctionne bien dans la plupart des cas. Si votre " "imprimante a des ratés, augmentez cette valeur pour réduire le nombre " @@ -13542,7 +13540,7 @@ msgstr "" "sans affecter la vitesse d’impression des éléments qui ne seront pas " "visibles par l’utilisateur." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Vitesse minimale du ventilateur de refroidissement des pièces" msgid "" @@ -13562,8 +13560,8 @@ msgid "Min" msgstr "Minimum" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "La hauteur de couche imprimable la plus basse pour l'extrudeur. Utilisé tp " "limite la hauteur de couche minimale lorsque la hauteur de couche adaptative " @@ -13607,7 +13605,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Volume de la buse" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "" "Volume de la buse entre le coupeur de filament et l'extrémité de la buse" @@ -13657,7 +13655,7 @@ msgstr "Distance de chargement supplémentaire" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Lorsqu’il est réglé sur zéro, la distance à laquelle le filament est déplacé " @@ -13680,7 +13678,7 @@ msgstr "Réduire la rétraction du remplissage" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Ne pas effectuer de rétraction lors de déplacement en zone de remplissage " "car même si l’extrudeur suinte, les coulures ne seraient pas visibles. Cela " @@ -13697,7 +13695,7 @@ msgstr "" msgid "Filename format" msgstr "Format du nom de fichier" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" "L'utilisateur peut définir lui-même le nom du fichier de projet lors de " "l'exportation" @@ -13726,7 +13724,7 @@ msgstr "Rendre les surplombs imprimables - Zone de trous" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Aire maximale d’un trou dans la base du modèle avant qu’il ne soit rempli " "par un matériau conique. Une valeur de 0 remplira tous les trous dans la " @@ -13757,10 +13755,10 @@ msgstr "" "Largeur de ligne de la paroi intérieure. Si elle est exprimée en %, elle " "sera calculée sur le diamètre de la buse." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Vitesse de la paroi intérieure" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Nombre de parois de chaque couche" msgid "Alternate extra wall" @@ -13768,20 +13766,20 @@ msgstr "Paroi supplémentaire alternée" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" "Ce paramètre ajoute une paroi supplémentaire à chaque couche. De cette " "manière, le remplissage est coincé verticalement entre les parois, ce qui " -"permet d’obtenir des impressions plus solides. \n" +"permet d’obtenir des impressions plus solides.\n" "\n" "Lorsque cette option est activée, l’option « assurer l’épaisseur verticale " -"de la coque » doit être désactivée. \n" +"de la coque » doit être désactivée.\n" "\n" "Il n’est pas recommandé d’utiliser le remplissage par éclairs avec cette " "option, car il y a peu de remplissage pour ancrer les périmètres " @@ -13818,25 +13816,25 @@ msgstr "Variante de l’imprimante" msgid "Raft contact Z distance" msgstr "Distance Z de contact du radeau" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "Écart en Z entre l'objet et le radeau. Ignoré pour l'interface soluble" msgid "Raft expansion" msgstr "Agrandissement du radeau" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Développer toutes les couches de radeau dans le plan XY" msgid "Initial layer density" msgstr "Densité de couche initiale" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Densité du premier radeau ou couche de support" msgid "Initial layer expansion" msgstr "Extension de la couche initiale" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Développez le premier radeau ou couche de support pour améliorer l'adhérence " "du plateau" @@ -13846,27 +13844,27 @@ msgstr "Couches du radeau" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "L'objet sera élevé par ce nombre de couches de support. Utilisez cette " "fonction pour éviter l'emballage lors de l'impression ABS" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Le chemin du G-code est généré après avoir simplifié le contour du modèle " "pour éviter trop de points et de lignes G-code dans le fichier G-code. Une " "valeur plus petite signifie une résolution plus élevée et plus de temps pour " -"découper" +"découper." msgid "Travel distance threshold" msgstr "Seuil de distance parcourue" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Ne déclencher la rétraction que lorsque la distance parcourue est supérieure " "à ce seuil" @@ -13875,7 +13873,7 @@ msgid "Retract amount before wipe" msgstr "Quantité de rétraction avant essuyage" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "La longueur de la rétraction rapide avant l’essuyage, par rapport à la " "longueur de la rétraction" @@ -13883,7 +13881,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Rétracter lors de changement de couche" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Cela force une rétraction sur les changements de couche" msgid "Retract on top layer" @@ -13891,7 +13889,7 @@ msgstr "Rétracter sur la couche supérieure" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Force la rétraction de la couche supérieure. La désactivation pourrait " "empêcher le bouchage des motifs très lents avec de petits mouvements, comme " @@ -13908,12 +13906,12 @@ msgstr "" "le suintement pendant les longs trajets. Définir zéro pour désactiver la " "rétraction" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Longue rétraction lors de la coupe (expérimental)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -13926,8 +13924,8 @@ msgid "Retraction distance when cut" msgstr "Distance de rétraction lors de la coupe" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" "Fonction expérimentale : longueur de rétraction avant la coupure lors du " "changement de filament" @@ -13938,40 +13936,37 @@ msgstr "Hauteur du saut en Z" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Chaque fois que la rétraction est effectuée, la buse est légèrement soulevée " "pour créer un espace entre la buse et l'impression. Il empêche la buse de " "toucher l'impression lors du déplacement. L'utilisation d'une ligne en " "spirale pour soulever z peut empêcher l'enfilage" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Limite inférieure du saut de Z" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Le saut de Z ne sera effectif que si Z est supérieur à cette valeur et " -"inférieur au paramètre : « Limite supérieure du saut de Z »" +"inférieur au paramètre : « Limite supérieure du saut de Z »." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Limite supérieure du saut de Z" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Si cette valeur est positive, le saut de Z ne sera effectif que si Z est " "supérieur au paramètre : « Limite inférieure de Z hop » et qu’il est " -"inférieur à cette valeur" +"inférieur à cette valeur." msgid "Z-hop type" msgstr "Type de saut en Z" -msgid "Z hop type" -msgstr "Type de décalage en Z" - msgid "Slope" msgstr "Pente" @@ -13982,11 +13977,11 @@ msgid "Traveling angle" msgstr "Angle de déplacement" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Angle de déplacement pour les sauts en Z en pente et en spirale. En le " -"réglant sur 90°, on obtient une levée normale" +"réglant sur 90°, on obtient une levée normale." msgid "Only lift Z above" msgstr "Décalage en Z au-dessus uniquement" @@ -14012,7 +14007,7 @@ msgid "On surfaces" msgstr "Sur les surfaces" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Appliquer le comportement du décalage en Z. Ce paramètre est impacté par les " @@ -14051,15 +14046,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Vitesse de Rétraction" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Vitesse de rétraction" msgid "De-retraction Speed" msgstr "Vitesse de réinsertion" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Vitesse de rechargement du filament dans l'extrudeur. Zéro signifie même " "vitesse avec rétraction" @@ -14082,15 +14077,15 @@ msgid "Disable set remaining print time" msgstr "Désactiver le réglage du temps d’impression restant" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Désactiver la génération du M73 : Définir le temps d’impression restant dans " -"le gcode final" +"le gcode final." msgid "Seam position" msgstr "Position de la couture" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "" "La position de départ pour imprimer chaque partie de la paroi extérieure" @@ -14187,7 +14182,7 @@ 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 " +"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 " @@ -14197,7 +14192,7 @@ msgid "" 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 " +"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 " @@ -14257,7 +14252,7 @@ msgid "Role base wipe speed" msgstr "Vitesse d’essuyage basée sur la vitesse d’extrusion" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14285,7 +14280,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14296,7 +14291,7 @@ msgstr "" "extérieure/intérieure ou intérieure/extérieure/intérieure, la dérétraction " "est effectuée légèrement sur l’intérieur à partir du début du périmètre " "extérieur. De cette manière, toute sur-extrusion potentielle est cachée de " -"la surface extérieure. \n" +"la surface extérieure.\n" "\n" "Ceci est utile lors de l’impression avec l’ordre d’impression de la paroi " "extérieure/intérieure ou intérieure/extérieure/intérieure, car dans ces " @@ -14308,9 +14303,9 @@ msgstr "Vitesse d’essuyage" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "La vitesse d’essuyage est déterminée par le paramètre de vitesse spécifié " "dans cette configuration. Si la valeur est exprimée en pourcentage (par " @@ -14337,7 +14332,7 @@ msgstr "" msgid "Skirt height" msgstr "Hauteur de la jupe" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Nombre de couches de jupe, généralement une seule" msgid "Single loop draft shield" @@ -14358,7 +14353,7 @@ msgstr "Paravent" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14369,7 +14364,7 @@ msgstr "" "Un paravent est utile pour protéger une impression ABS ou ASA contre la " "déformation et le détachement du plateau d’impression en raison des courants " "d’air. Il n’est généralement nécessaire que pour les imprimantes à structure " -"ouverte, c’est-à-dire sans boîtier. \n" +"ouverte, c’est-à-dire sans boîtier.\n" "\n" "Activé = la hauteur de la jupe est égale à celle de l’objet imprimé le plus " "haut. Sinon, c’est la « hauteur de la jupe » qui est utilisée.\n" @@ -14400,7 +14395,7 @@ msgstr "Par objet" msgid "Skirt loops" msgstr "Boucles de la jupe" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Nombre de boucles pour la jupe. Zéro signifie désactiver la jupe" msgid "Skirt speed" @@ -14418,9 +14413,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Longueur minimale d’extrusion du filament en mm lors de l’impression de la " @@ -14433,19 +14428,20 @@ msgstr "" "nombre de boucles." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "La vitesse d'impression dans le G-code exporté sera ralentie, lorsque le " "temps de couche estimé est plus court que cette valeur, pour obtenir un " -"meilleur refroidissement pour ces couches" +"meilleur refroidissement pour ces couches." msgid "Minimum sparse infill threshold" msgstr "Seuil minimum de remplissage" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "La zone de remplissage inférieure à la valeur seuil est remplacée par un " "remplissage plein interne" @@ -14463,7 +14459,7 @@ msgstr "" "Largeur de ligne du remplissage plein interne. Si elle est exprimée en %, " "elle sera calculée sur le diamètre de la buse." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Vitesse du remplissage plein interne, pas de la surface supérieure et " "inférieure" @@ -14471,7 +14467,7 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Spiralize lisse les mouvements z du contour extérieur. Et transforme un " "modèle plein en une impression à paroi unique avec des couches inférieures " @@ -14482,7 +14478,7 @@ msgstr "Spirale lisse" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "« Spirale lisse » lisse également les mouvements X et Y, de sorte qu’aucune " "couture n’est visible, même dans les directions XY sur des parois qui ne " @@ -14494,7 +14490,7 @@ msgstr "Lissage Max XY" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Distance maximale pour déplacer les points dans l’axe XY afin d’obtenir une " "spirale lisse. Si elle est exprimée en %, elle sera calculée par rapport au " @@ -14546,7 +14542,7 @@ 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 purge est " +"peut s'échapper de la buse pendant la prise de vue, une tour d’amorçage est " "requise en mode lisse pour essuyer la buse." msgid "Traditional" @@ -14558,8 +14554,8 @@ msgstr "Variation de température" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Différence de température à appliquer lorsqu’un extrudeur n’est pas actif. " "La valeur n’est pas utilisée lorsque ‘idle_temperature’ dans les paramètres " @@ -14584,7 +14580,7 @@ msgid "Preheat steps" msgstr "Étapes de préchauffage" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Insérer plusieurs commandes de préchauffage (par exemple M104.1). Uniquement " @@ -14594,16 +14590,16 @@ msgstr "" msgid "Start G-code" msgstr "G-code de démarrage" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "G-code de démarrage lors du démarrage de l'ensemble de l'impression" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "G-code de démarrage au démarrage de l'impression de ce filament" msgid "Single Extruder Multi Material" msgstr "Multi-matériaux pour extrudeur unique" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Utiliser une seule buse pour imprimer plusieurs filaments" msgid "Manual Filament Change" @@ -14623,20 +14619,20 @@ msgstr "" "PAUSE pour déclencher l’action de changement manuel de filament." msgid "Purge in prime tower" -msgstr "Purge dans la tour de purge" +msgstr "Purge dans la tour d’amorçage" -msgid "Purge remaining filament into prime tower" -msgstr "Purger le filament restant dans la tour de purge" +msgid "Purge remaining filament into prime tower." +msgstr "Purger le filament restant dans la tour d’amorçage" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Activer le pilonnage du filament" msgid "No sparse layers (beta)" msgstr "Pas de couches éparses (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14709,9 +14705,9 @@ msgid "Enable support generation." msgstr "Activer la génération de support." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Les options Normal (auto) et Arbre (auto) sont utilisées pour générer " "automatiquement des supports. Si l’option Normal (manuel) ou Arbre (manuel) " @@ -14732,14 +14728,14 @@ msgstr "Arbre (manuel)" msgid "Support/object xy distance" msgstr "Distance support/objet xy" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Séparation XY entre un objet et ses supports" msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" msgstr "Angle du motif" @@ -14752,7 +14748,7 @@ msgstr "" msgid "On build plate only" msgstr "Sur plateau uniquement" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "" "Ce paramètre génère uniquement les supports qui commencent sur le plateau" @@ -14776,13 +14772,13 @@ msgstr "" msgid "Top Z distance" msgstr "Distance Z supérieure" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "L'écart z entre l'interface de support supérieure et l'objet" msgid "Bottom Z distance" msgstr "Distance Z inférieure" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "L'écart Z entre l'interface du support inférieur et l'objet" msgid "Support/raft base" @@ -14790,7 +14786,7 @@ msgstr "Support/base du radeau" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament pour imprimer les supports et radeaux. « Par défaut » signifie " "qu'aucun filament spécifique n'est utilisé comme support et que le filament " @@ -14826,7 +14822,7 @@ msgstr "Support/base d'interface" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament pour l'impression des interfaces de support. \"Défaut\" signifie " "qu'il n'y a pas de filament spécifique pour l'interface de support et que le " @@ -14835,13 +14831,13 @@ msgstr "" msgid "Top interface layers" msgstr "Couches d'interface supérieures" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Nombre de couches d'interface supérieures" msgid "Bottom interface layers" msgstr "Couches d'interface inférieures" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Nombre de couches d’interface inférieures" msgid "Same as top" @@ -14850,24 +14846,24 @@ msgstr "Identique au sommet" msgid "Top interface spacing" msgstr "Espacement de l'interface supérieure" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "Espacement des lignes d'interface. Zéro signifie une interface solide" msgid "Bottom interface spacing" msgstr "Espacement de l'interface inférieure" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Espacement des lignes d'interface inférieures. Zéro signifie une interface " "solide" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Vitesse pour l'interface des supports" msgid "Base pattern" msgstr "Motif de base" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Motif de ligne de support" msgid "Rectilinear grid" @@ -14882,7 +14878,7 @@ msgstr "Motif d'interface" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Modèle de ligne de l'interface de support. Le modèle par défaut pour " "l'interface de support non soluble est rectiligne, tandis que le modèle par " @@ -14894,16 +14890,16 @@ msgstr "Rectiligne Entrelacé" msgid "Base pattern spacing" msgstr "Espacement du motif de base" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Espacement entre les lignes de support" msgid "Normal Support expansion" msgstr "Expansion normale du support" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Augmenter (+) ou réduire (-) la portée horizontale du support normal" -msgid "Speed of support" +msgid "Speed of support." msgstr "Vitesse pour les supports" msgid "" @@ -14947,13 +14943,13 @@ msgstr "Hauteur de la couche de support indépendante" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "La couche de support utilise la hauteur de la couche indépendamment de la " "couche objet. Cela permet de personnaliser l’écart de Z et de gagner du " -"temps d'impression. Cette option ne sera pas valide lorsque la tour de purge " -"sera activée." +"temps d'impression. Cette option ne sera pas valide lorsque la tour " +"d’amorçage sera activée." msgid "Threshold angle" msgstr "Angle de seuil" @@ -14981,8 +14977,8 @@ msgid "Tree support branch angle" msgstr "Angle de branche support arborescent" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Ce paramètre détermine l'angle des surplombs maximum que les branches du " @@ -15034,8 +15030,8 @@ msgid "Adaptive layer height" msgstr "Hauteur de couche adaptative" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "L’activation de cette option signifie que la hauteur de couche des supports " "arborescents, à l’exception de la première, sera automatiquement calculée " @@ -15045,7 +15041,7 @@ msgstr "Largeur de la bordure automatique" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "L’activation de cette option signifie que la largeur de la bordure des " "supports arborescents sera automatiquement calculée" @@ -15053,7 +15049,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Largeur de bordure du support arborescent" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" "Distance entre la branche du support arborescent et la ligne la plus externe " "de la bordure" @@ -15102,7 +15098,7 @@ msgstr "Support arborescent avec remplissage" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Ce paramètre spécifie s'il faut ajouter un remplissage à l'intérieur des " "grands creux du support arborescent" @@ -15116,7 +15112,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -15126,7 +15122,7 @@ msgstr "" "caisson. Cette option active le lancement d’une commande M191 avant le code " "« machine_start_gcode », qui fixe la température de la chambre et attend " "qu’elle soit atteinte. En outre, elle déclenche une commande M141 à la fin " -"de l’impression pour éteindre le chauffage de la chambre, le cas échéant. \n" +"de l’impression pour éteindre le chauffage de la chambre, le cas échéant.\n" "\n" "Cette option repose sur la prise en charge des commandes M191 et M141 par le " "micrologiciel, soit via des macros, soit de manière native, et est " @@ -15140,13 +15136,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -15159,7 +15155,7 @@ msgstr "" "réduire la déformation et, éventuellement, à augmenter la force de liaison " "entre les couches. Cependant, dans le même temps, une température de chambre " "plus élevée réduira l’efficacité de la filtration de l’air pour l’ABS et " -"l’ASA. \n" +"l’ASA.\n" "\n" "Pour le PLA, le PETG, le TPU, le PVA et d’autres matériaux à basse " "température, cette option doit être désactivée (réglée sur 0) car la " @@ -15176,7 +15172,7 @@ msgstr "" "le préchauffage dans la macro de démarrage de l’impression si aucun " "chauffage de chambre actif n’est installé." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Température de la buse pour les couches après la première" msgid "Detect thin wall" @@ -15184,21 +15180,21 @@ msgstr "Détecter les parois fines" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Détecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne. " "Et utilisez une seule ligne pour imprimer. Peut ne pas être très bien " "imprimé, car ce n'est pas en boucle fermée" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Ce G-code est inséré lors du changement de filament, y compris la commande T " -"pour déclencher le changement d'outil" +"pour déclencher le changement d'outil." -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "Ce G-code est inséré lorsque le rôle d’extrusion est modifié" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "Ce G-code est inséré lorsque le rôle d’extrusion est modifié." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -15207,7 +15203,7 @@ msgstr "" "Largeur de ligne pdes surfaces supérieures. Si elle est exprimée en %, elle " "sera calculée sur le diamètre de la buse." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Vitesse de remplissage de la surface supérieure qui est solide" msgid "Top shell layers" @@ -15216,7 +15212,7 @@ msgstr "Couches supérieures de la coque" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Il s'agit du nombre de couches solides de la coque supérieure, y compris la " "couche de surface supérieure. Lorsque l'épaisseur calculée par cette valeur " @@ -15234,7 +15230,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Le nombre de couches solides supérieures est augmenté lors du découpage si " "l'épaisseur calculée par les couches de coque supérieures est inférieure à " @@ -15243,15 +15239,16 @@ msgstr "" "que l'épaisseur de la coque supérieure est absolument déterminée par les " "couches de coque supérieures" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Vitesse de déplacement plus rapide et sans extrusion" msgid "Wipe while retracting" msgstr "Essuyer lors des rétractions" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Déplacez la buse le long du dernier chemin d'extrusion lors de la rétraction " "pour nettoyer la fuite de matériau sur la buse. Cela peut minimiser les " @@ -15262,21 +15259,21 @@ msgstr "Distance d’essuyage" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Décrire la durée pendant laquelle la buse se déplacera le long de la " -"dernière trajectoire lors de la rétraction. \n" +"dernière trajectoire lors de la rétraction.\n" "\n" "En fonction de la durée de l’opération d’essuyage, de la vitesse et de la " "longueur des réglages de rétraction de l’extrudeuse/filament, un mouvement " -"de rétraction peut être nécessaire pour rétracter le filament restant. \n" +"de rétraction peut être nécessaire pour rétracter le filament restant.\n" "\n" "Le réglage d’une valeur dans le paramètre de quantité de rétraction avant " "essuyage ci-dessous permet d’effectuer toute rétraction excédentaire avant " @@ -15305,13 +15302,13 @@ msgstr "" "purge multiplié par les volumes de purge dans le tableau." msgid "Prime volume" -msgstr "Premier volume" +msgstr "Volume d’amorçage" msgid "The volume of material to prime extruder on tower." msgstr "Le volume de matériau pour amorcer l'extrudeur sur la tour." -msgid "Width of prime tower" -msgstr "Largeur de la tour de purge" +msgid "Width of the prime tower." +msgstr "Largeur de la tour d’amorçage" msgid "Wipe tower rotation angle" msgstr "Angle de rotation de la tour d’essuyage" @@ -15332,6 +15329,7 @@ msgstr "" msgid "Maximum wipe tower print speed" msgstr "Vitesse maximale d’impression de la tour d’essuyage" +#, fuzzy msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " "tower sparse layers. When purging, if the sparse infill speed or calculated " @@ -15346,7 +15344,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15367,7 +15365,7 @@ msgstr "" "augmenter la force avec laquelle la buse entre en collision avec les blobs " "qui peuvent s’être formés sur la tour d’essuyage.\n" "\n" -"Avant d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/sec, " +"Avant d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/s, " "assurez-vous que votre imprimante peut effectuer un pontage fiable à des " "vitesses élevées et que le suintement lors du changement d’outil est bien " "contrôlé.\n" @@ -15405,7 +15403,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 purge est activée." +"Cela ne prendra effet que si la tour d’amorçage est activée." msgid "" "Purging after filament change will be done inside objects' support. This may " @@ -15414,17 +15412,17 @@ 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 purge est activée." +"d'impression. Cela ne prendra effet que si une tour d’amorçage est activée." msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Cet objet sera utilisé pour purger la buse après un changement de filament " "afin d'économiser du filament et de réduire le temps d'impression. Les " "couleurs des objets seront mélangées en conséquence. Cela ne prendra effet " -"que si la tour de purge est activée." +"que si la tour d’amorçage est activée." msgid "Maximal bridging distance" msgstr "Distance de pont maximale" @@ -15454,9 +15452,9 @@ msgid "Idle temperature" msgstr "Température au repos" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Température de la buse lorsque l’outil n’est pas utilisé dans les " "configurations multi-outils. Cette fonction n’est utilisée que lorsque la " @@ -15466,10 +15464,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Compensation de trou X-Y" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Les trous de l'objet seront agrandis ou rétrécis dans le plan XY par la " "valeur configurée. Une valeur positive agrandit les trous. Une valeur " @@ -15479,11 +15479,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Compensation de contour X-Y" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Le contour de l'objet sera agrandi ou rétréci dans le plan XY par la valeur " "configurée. Une valeur positive agrandit le contour. Une valeur négative " @@ -15542,7 +15543,7 @@ msgstr "Format des vignettes G-code" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Format des vignettes G-code : PNG pour la meilleure qualité, JPG pour la " "plus petite taille, QOI pour les firmwares à faible mémoire" @@ -15551,10 +15552,10 @@ msgid "Use relative E distances" msgstr "Utiliser l’extrusion relative" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "L’extrusion relative est recommandée lors de l’utilisation de l’option " "« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option " @@ -15565,7 +15566,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Le générateur de paroi classique produit des parois avec une largeur " "d’extrusion constante et, pour les zones très fines, il utilise le " @@ -15581,7 +15582,7 @@ msgstr "Longueur de la paroi de transition" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Lorsque vous passez d'un nombre différent de parois à un autre lorsque la " "pièce s'amincit, un certain espace est alloué pour séparer ou joindre les " @@ -15598,7 +15599,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Empêchez les allers-retours entre une paroi supplémentaire et une paroi de " "moins. Cette marge étend la plage de largeurs d'extrusion qui suit jusqu'à " @@ -15617,7 +15618,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Quand créer des transitions entre les nombres pairs et impairs de parois. " "Une forme cunéiforme dont l'angle est supérieur à ce paramètre n'aura pas de " @@ -15631,7 +15632,7 @@ msgstr "Nombre de parois distribuées" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Nombre de parois, comptées à partir du centre, sur lesquelles la variation " "doit être répartie. Des valeurs plus faibles signifient que la largeur des " @@ -15640,11 +15641,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Taille minimale de l'élément" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Épaisseur minimale des éléments fins. Les caractéristiques du modèle qui " "sont plus fines que cette valeur ne seront pas imprimées, tandis que les " @@ -15696,7 +15698,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Largeur de la paroi qui remplacera les éléments fins (selon la taille " "minimale des éléments) du modèle. Si la largeur minimale de la paroi est " @@ -15708,9 +15710,9 @@ msgid "Detect narrow internal solid infill" msgstr "Détecter un remplissage plein interne étroit" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Cette option détectera automatiquement la zone de remplissage plein interne " "étroite. S'il est activé, un motif concentrique sera utilisé pour la zone " @@ -15744,7 +15746,7 @@ msgstr "Exporter les données de tranchage vers un dossier." msgid "Load slicing data" msgstr "Charger les données de tranchage" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Charger les données de tranchage mises en cache à partir du répertoire" msgid "Export STL" @@ -15756,7 +15758,7 @@ msgstr "Exporter les objets en tant que STL unique." msgid "Export multiple STLs" msgstr "Exporter plusieurs STL" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Exporter les objets sous forme de STLs multiples dans un répertoire" msgid "Slice" @@ -15780,14 +15782,14 @@ msgstr "contrôle des machines descendantes" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" "vérifier si la machine actuelle est compatible avec les machines de la liste" msgid "Load default filaments" msgstr "Charger les filaments par défaut" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "" "Charger le premier filament comme défaut pour ceux qui ne sont pas chargés" @@ -15812,7 +15814,7 @@ msgstr "temps de tranchage maximal par plaque en secondes." msgid "No check" msgstr "Pas de vérification" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Ne pas effectuer de contrôle de validité, tel que le contrôle des conflits " "de parcours de G-code." @@ -15847,17 +15849,17 @@ msgstr "Options d'organisation" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Options d'organisation : 0-désactiver, 1-activer, autres-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Nombre de répétitions" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Nombre de répétitions de l'ensemble du modèle" msgid "Ensure on bed" msgstr "Assurer sur le plateau" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Placer l’objet sur le plateau lorsqu’il est partiellement en dessous. " "Désactivé par défaut" @@ -15872,7 +15874,7 @@ msgstr "" msgid "Convert Unit" msgstr "Convertir l'unité" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Convertir les unités du modèle" msgid "Orient Options" @@ -15890,69 +15892,69 @@ msgstr "Rotation autour de l’axe Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Angle de rotation autour de l’axe Y en degrés." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Mettre à l'échelle le modèle par un facteur flottant" msgid "Load General Settings" msgstr "Charger les paramètres généraux" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "" "Charger les paramètres de processus/machine à partir du fichier spécifié" msgid "Load Filament Settings" msgstr "Charger les paramètres de filament" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "" "Charger les paramètres de filament à partir de la liste de fichiers spécifiée" msgid "Skip Objects" msgstr "Ignorer les Objets" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Ignorer certains objets de cette impression" msgid "Clone Objects" msgstr "Cloner des objets" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "Cloner des objets dans la liste de chargement" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" "charger les paramètres actualisés du processus/de la machine lors de " "l'utilisation de la mise à jour automatique" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "charger les paramètres actualisés du processus/de la machine à partir du " "fichier spécifié lors de l'utilisation de la mise à jour" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" "charger les réglages du filament actualisés lors de l’utilisation d’un " "filament actualisé" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" "charger les paramètres de filament actualisés à partir du fichier spécifié " "lors de l’utilisation de l’actualisation" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "si l’option est activée, vérifier si la machine actuelle est compatible avec " "les machines de la liste." -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "réglages des machines descendantes" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" "la liste des paramètres de la machine doit faire l’objet d’une vérification " "descendante" @@ -15960,7 +15962,7 @@ msgstr "" msgid "Load assemble list" msgstr "Charger la liste d’assemblage" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" "Chargement de la liste des objets assemblés à partir du fichier de " "configuration" @@ -15996,16 +15998,16 @@ msgstr "" msgid "Enable timelapse for print" msgstr "Activer le timelapse pour l’impression" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" "Si cette option est activée, cette découpe sera prise en charge en utilisant " "un timelapse" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Charger un G-code personnalisé" -msgid "Load custom gcode from json" -msgstr "Charger un G-code personnalisé à partir de json" +msgid "Load custom G-code from json." +msgstr "Charger un G-code personnalisé à partir de json." msgid "Load filament ids" msgstr "Chargement des identifiants de filaments" @@ -16013,39 +16015,39 @@ msgstr "Chargement des identifiants de filaments" msgid "Load filament ids for each object" msgstr "Chargement des identifiants de filaments pour chaque objet" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Permettre l’utilisation de plusieurs couleurs sur une même plaque" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" "Si cette option est activée, l’arrangement permettra d’utiliser plusieurs " "couleurs sur une même plaque" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Autoriser des rotations dans le cadre d’un réagencement" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" "Si cette option est activée, l’arrangement autorisera les rotations lors du " "placement de l’objet" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Éviter la région d’étalonnage de l’extrusion lors de l’arrangement" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Si cette option est activée, l’arrangement évitera la région d’étalonnage de " "l’extrusion lorsqu’il placera l’objet" -msgid "Skip modified gcodes in 3mf" -msgstr "Ignorer les gcodes modifiés dans le 3mf" +msgid "Skip modified G-code in 3mf" +msgstr "Ignorer les G-codes modifiés dans le 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" -"Sauter les gcodes modifiés dans le 3mf à partir des préréglages de " -"l’imprimante ou du filament" +"Sauter les G-codes modifiés dans le 3mf à partir des préréglages de " +"l’imprimante ou du filament." msgid "MakerLab name" msgstr "Nom dans MakerLab" @@ -16071,13 +16073,13 @@ msgstr "liste des valeurs des métadonnées" msgid "metadata value list added into 3mf" msgstr "liste des valeurs de métadonnées ajoutée au 3mf" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Autoriser la découpe de 3mf avec une version plus récente" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Saut en z actuel" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Contient le saut en z présent au début du bloc de G-code personnalisé." msgid "" @@ -16184,10 +16186,10 @@ msgstr "" "Volume total de filament extrudé par extrudeur pendant toute la durée de " "l’impression." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Nombre total de changements d’outils" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Nombre de changements d’outils pendant l’impression." msgid "Total volume" @@ -16437,7 +16439,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "La compensation de la taille XY d'un objet ne sera pas utilisée parce qu'il " "est également peint en couleur.\n" @@ -16464,9 +16466,6 @@ msgstr "" "Format de fichier inconnu : le fichier d'entrée doit porter l'extension " ".3mf, .zip ou .amf." -msgid "Canceled" -msgstr "Annulé" - msgid "load_obj: failed to parse" msgstr "load_obj : échec de l'analyse" @@ -16571,7 +16570,7 @@ msgid "The name cannot be empty." msgstr "Le nom ne peut pas être vide." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Le préréglage sélectionné : %s est introuvable." msgid "The name cannot be the same as the system preset name." @@ -16605,13 +16604,13 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Ce type de machine ne peut contenir que 16 résultats historiques par buse. " "Vous pouvez supprimer les résultats historiques existants, puis lancer " "l’étalonnage. Vous pouvez également poursuivre l’étalonnage, mais vous ne " -"pouvez pas créer de nouveaux résultats historiques d’étalonnage. \n" +"pouvez pas créer de nouveaux résultats historiques d’étalonnage.\n" "Souhaitez-vous toujours poursuivre le calibrage ?" msgid "Connecting to printer..." @@ -16620,7 +16619,7 @@ msgstr "Connexion à l’imprimante…" msgid "The failed test result has been dropped." msgstr "Le résultat du test ayant échoué a été supprimé." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "" "Le résultat de la calibration dynamique du débit a été enregistré sur " "l’imprimante" @@ -16649,11 +16648,11 @@ msgstr "Erreur interne" msgid "Please select at least one filament for calibration" msgstr "Veuillez sélectionner au moins un filament pour la calibration" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" "Le résultat de la calibration du débit a été enregistré dans le préréglage" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Le résultat de la calibration de la vitesse volumétrique maximale a été " "enregistré dans le préréglage" @@ -16666,10 +16665,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Nous avons maintenant ajouté l'auto-calibration pour différents filaments, " "qui est entièrement automatisée et le résultat sera enregistré dans " @@ -16733,12 +16732,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Après avoir utilisé la calibration dynamique du débit, il peut encore y " "avoir des problèmes d'extrusion, tels que :\n" @@ -16863,7 +16862,7 @@ msgstr "Le nom ne peut pas dépasser 40 caractères." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Seul un des résultats portant le même nom sera enregistré. Êtes-vous sûr de " "vouloir annuler les autres résultats ?" @@ -16919,9 +16918,6 @@ msgstr "Ignorer la Calibration 2" msgid "flow ratio : %s " msgstr "ratio du débit : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Veuillez choisir un bloc avec la surface supérieure la plus lisse" - msgid "Please choose a block with smoothest top surface." msgstr "Veuillez choisir un bloc avec la surface supérieure la plus lisse." @@ -16966,7 +16962,7 @@ msgstr "Filament pour la calibration" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Conseils pour le matériau de calibration :\n" "- Matériaux pouvant partager la même température du plateau\n" @@ -17231,7 +17227,7 @@ msgstr "Longueur de rétraction de fin: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Envoyer le G-code à l’imprimante" msgid "Upload to Printer Host with the following filename:" @@ -17282,7 +17278,7 @@ msgstr "Annuler la sélection" msgid "Show error message" msgstr "Afficher le message d’erreur" -msgid "Enqueued" +msgid "Queued" msgstr "En file d’attente" msgid "Uploading" @@ -17374,14 +17370,14 @@ msgstr "Version du système :" msgid "DNS Server:" msgstr "Serveur DNS :" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "OrcaSlicer Test (GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "OrcaSlicer Test (GitHub) :" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test bing.com" +msgstr "Test bing.com" msgid "Test bing.com:" msgstr "Test bing.com :" @@ -17449,7 +17445,7 @@ msgstr "" "personnalisé." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "« Bambu » ou « Générique » ne peuvent pas être utilisés comme fournisseur de " "filaments personnalisés." @@ -17476,7 +17472,7 @@ msgstr "" "Toutes les entrées dans le vendeur ou le numéro de série personnalisé sont " "des espaces. Veuillez les saisir à nouveau." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "Le vendeur ne peut pas être un numéro. Veuillez le saisir à nouveau." msgid "" @@ -17487,11 +17483,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Le nom de filament %s que vous avez créé existe déjà. \n" +"Le nom de filament %s que vous avez créé existe déjà.\n" "Si vous continuez la création, le réglage créé sera affiché avec son nom " "complet. Voulez-vous continuer ?" @@ -17507,11 +17503,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Nous renommerions les préréglages en « Vendor Type Serial @printer you " -"selected ». \n" +"selected ».\n" "Pour ajouter des préréglages pour d’autres imprimantes, veuillez aller à la " "sélection de l’imprimante" @@ -17536,7 +17532,7 @@ msgstr "Importer un préréglage" msgid "Create Type" msgstr "Créer un type" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "Le modèle n’est pas trouvé, il faut resélectionner le fournisseur." msgid "Select Model" @@ -17581,7 +17577,7 @@ msgstr "" "Exception dans l’obtention de la taille du fichier, veuillez importer à " "nouveau." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" "Le chemin d’accès prédéfini n’est pas trouvé, veuillez resélectionner le " "vendeur." @@ -17589,10 +17585,10 @@ msgstr "" msgid "The printer model was not found, please reselect." msgstr "Le modèle d’imprimante n’a pas été trouvé, veuillez resélectionner." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Le diamètre de la buse n’est pas bon, resélectionner l’emplacement." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "Le préréglage de l’imprimante n’est pas bon, placez le préréglage." msgid "Printer Preset" @@ -17641,7 +17637,7 @@ msgstr "" "portant le même nom. Voulez-vous l’écraser ?\n" "\tOui : écraser le préréglage d’imprimante portant le même nom, et les " "préréglages de filament et de traitement portant le même nom de préréglage " -"seront recréés. \n" +"seront recréés.\n" "et les préréglages de filament et de processus sans le même nom de " "préréglage seront réservés.\n" "\tAnnuler : Ne pas créer de préréglage, revenir à l’interface de création." @@ -17658,7 +17654,7 @@ msgstr "La création de préréglages de filaments a échoué. Comme suit :\n" msgid "Create process presets failed. As follows:\n" msgstr "La création de préréglages de traitement a échoué. Comme suit :\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Le vendeur n’est pas trouvé, veuillez resélectionner." msgid "Current vendor has no models, please reselect." @@ -17695,10 +17691,10 @@ msgstr "" "Vous n’avez pas encore sélectionné l’imprimante pour remplacer la buse, " "veuillez choisir." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Création d’une imprimante réussie" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Créer un filament réussi" msgid "Printer Created" @@ -17729,14 +17725,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" "Studio a détecté que la fonction de synchronisation des réglages utilisateur " "n’est pas activée, ce qui peut entraîner l’échec des réglages du filament " -"sur la page Device. \n" +"sur la page Device.\n" "Cliquez sur «  Synchroniser les réglages prédéfinis de l’utilisateur «  pour " "activer la fonction de synchronisation." @@ -17789,18 +17785,18 @@ msgstr "" "modifier le nom après la création." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Imprimante et tous les préréglages de filament et de traitement qui " -"appartiennent à l’imprimante. \n" +"appartiennent à l’imprimante.\n" "Peut être partagé avec d’autres." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Préréglage du remplissage par l’utilisateur. \n" +"Préréglage du remplissage par l’utilisateur.\n" "Peut être partagé avec d’autres." msgid "" @@ -17867,7 +17863,7 @@ msgstr "" "Remarque : si le seul préréglage sous ce filament est supprimé, le filament " "sera supprimé après avoir quitté la boîte de dialogue." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" "Les préréglages hérités d’autres préréglages ne peuvent pas être supprimés" @@ -17892,12 +17888,12 @@ msgid "Delete Filament" msgstr "Supprimer le filament" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Tous les préréglages de filaments appartenant à ce filament seront " -"supprimés. \n" +"supprimés.\n" "Si vous utilisez ce filament sur votre imprimante, veuillez réinitialiser " "les informations relatives au filament pour cet emplacement." @@ -18029,16 +18025,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Type d’hôte d’impression non compatible : %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "La connexion à l’AstroBox fonctionne correctement." msgid "Could not connect to AstroBox" msgstr "Impossible de se connecter à AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Note : La version 1.1.0 d’AstroBox est requise." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "La connexion à Duet fonctionne correctement." msgid "Could not connect to Duet" @@ -18056,7 +18052,7 @@ msgstr "Impossible d’obtenir des ressources pour créer une nouvelle connexion msgid "Upload not enabled on FlashAir card." msgstr "Le téléchargement n’est pas activé sur la carte FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" "La connexion à FlashAir fonctionne correctement et le téléchargement est " "activé." @@ -18071,28 +18067,28 @@ msgstr "" "Note : FlashAir avec le firmware 2.00.02 ou plus récent et la fonction de " "téléchargement activée sont nécessaires." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "La connexion à MKS fonctionne correctement." msgid "Could not connect to MKS" msgstr "Impossible de se connecter à MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "La connexion à OctoPrint fonctionne correctement." msgid "Could not connect to OctoPrint" msgstr "Impossible de se connecter à OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Note : La version 1.1.0 d’OctoPrint est requise." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "La connexion à Prusa SL1 / SL1S fonctionne correctement." msgid "Could not connect to Prusa SLA" msgstr "Impossible de se connecter à Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "La connexion à PrusaLink fonctionne correctement." msgid "Could not connect to PrusaLink" @@ -18118,19 +18114,19 @@ msgstr "" "Le téléchargement a échoué. Aucun espace de stockage approprié n’a été " "trouvé à %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "La connexion à Prusa Connect fonctionne correctement." msgid "Could not connect to Prusa Connect" msgstr "Impossible de se connecter à Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "La connexion à Repetier fonctionne correctement." msgid "Could not connect to Repetier" msgstr "Impossible de se connecter à Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Note : La version 0.90.0 de Repetier est requise." #, boost-format @@ -18162,8 +18158,8 @@ msgstr "" "Erreur : « %2% »" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Sa faible hauteur de couche permet d’obtenir des lignes de couche presque " "négligeables et une grande qualité d’impression. Il convient à la plupart " @@ -18171,8 +18167,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,2 mm, la vitesse et " "l’accélération sont plus faibles, et le motif de remplissage épars est " @@ -18181,8 +18177,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,2 mm, il présente une " "hauteur de couche légèrement supérieure, ce qui se traduit par des lignes de " @@ -18190,8 +18186,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,2 mm, il présente une " "hauteur de couche plus importante, ce qui se traduit par des lignes de " @@ -18199,8 +18194,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,2 mm, il présente une " "hauteur de couche plus petite, ce qui permet d’obtenir des lignes de couche " @@ -18210,8 +18205,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,2 mm, il présente des " "lignes de couche plus petites, des vitesses et des accélérations plus " @@ -18220,9 +18215,9 @@ msgstr "" "bien supérieure, mais un temps d’impression bien plus long." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "Par rapport au profil par défaut de la buse de 0,2 mm, il présente une " "hauteur de couche plus petite, ce qui se traduit par des lignes de couche " @@ -18232,8 +18227,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,2 mm, il présente des " "lignes de couche plus petites, des vitesses et des accélérations plus " @@ -18242,8 +18237,8 @@ msgstr "" "supérieure, mais un temps d’impression beaucoup plus long." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Il présente une hauteur de couche générale, ce qui se traduit par des lignes " "de couche et une qualité d’impression générales. Il convient à la plupart " @@ -18251,8 +18246,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente plus de " "boucles de paroi et une densité de remplissage clairsemée plus élevée. Il en " @@ -18261,8 +18256,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus importante, ce qui se traduit par des lignes de " @@ -18271,8 +18266,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus importante, ce qui se traduit par des lignes de " @@ -18281,8 +18276,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus petite, ce qui se traduit par des lignes de couche " @@ -18292,8 +18287,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus petite, des vitesses et des accélérations plus " @@ -18303,8 +18298,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus petite, ce qui permet d’obtenir des lignes de couche " @@ -18314,8 +18309,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus petite, des vitesses et des accélérations plus " @@ -18325,24 +18320,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,4 mm, il présente une " "hauteur de couche plus petite, ce qui se traduit par des lignes de couche " "presque négligeables et un temps d’impression plus long." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "La hauteur de couche est importante, ce qui se traduit par des lignes de " "couche apparentes et une qualité et un temps d’impression ordinaires." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,6 mm, il présente plus de " "boucles de paroi et une densité de remplissage clairsemée plus élevée. Il en " @@ -18351,8 +18345,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " "hauteur de couche plus importante, ce qui se traduit par des lignes de " @@ -18361,8 +18355,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " "hauteur de couche plus importante, ce qui se traduit par des lignes de " @@ -18371,8 +18365,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " "hauteur de couche plus petite, ce qui se traduit par des lignes de couche " @@ -18381,8 +18375,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Par rapport au profil par défaut d’une buse de 0,6 mm, il présente une " "hauteur de couche plus petite, ce qui se traduit par des lignes de couche " @@ -18390,8 +18384,8 @@ msgstr "" "d’impression plus long." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "La hauteur des couches est très importante, ce qui se traduit par des lignes " "de couche très apparentes, une qualité d’impression médiocre et un temps " @@ -18399,8 +18393,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " "hauteur de couche plus importante, ce qui se traduit par des lignes de " @@ -18409,8 +18403,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " "hauteur de couche beaucoup plus importante, ce qui se traduit par des lignes " @@ -18420,9 +18414,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " "hauteur de couche légèrement inférieure, ce qui se traduit par des lignes de " @@ -18432,8 +18425,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "Par rapport au profil par défaut d’une buse de 0,8 mm, il présente une " "hauteur de couche plus petite, ce qui se traduit par des lignes de couche " @@ -18464,7 +18457,7 @@ msgstr "" "Le compte SimplyPrint n’est pas lié. Allez dans les options de connexion " "pour le configurer." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "La connexion à Flashforge fonctionne correctement." msgid "Could not connect to Flashforge" @@ -18483,7 +18476,7 @@ msgstr "" "Un événement inattendu s’est produit lors de la connexion, veuillez " "réessayer." -msgid "User cancelled." +msgid "User canceled." msgstr "L’utilisateur a annulé." msgid "Head diameter" @@ -18514,8 +18507,8 @@ msgid "Adjust section view" msgstr "Ajuster la vue de section" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Attention : Si le type de bord n’est pas réglé sur « peint », les bordures " "en oreilles ne seront pas prises en compte !" @@ -18530,7 +18523,7 @@ msgid "Brim Ears" msgstr "Bordure à oreilles" msgid "Please select single object." -msgstr "Please select single object." +msgstr "" #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -18613,11 +18606,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Comment utiliser les raccourcis clavier\n" "Saviez-vous qu’Orca Slicer offre une large gamme de raccourcis clavier et " -"d’opérations sur les scènes 3D." +"d’opérations sur les scènes 3D?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -18662,7 +18655,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Agencement Automatique\n" "Saviez-vous que vous pouvez agencement automatiquement tous les objets de " @@ -18672,7 +18665,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Orientation Automatique\n" "Saviez-vous que vous pouvez faire pivoter des objets dans une orientation " @@ -18856,7 +18849,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Bordure pour une meilleure adhésion\n" @@ -18868,7 +18861,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Définir les paramètres de plusieurs objets\n" "Saviez-vous que vous pouvez définir des paramètres de découpe pour tous les " @@ -18885,7 +18878,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Purger dans les supports/les objets/le remplissage\n" @@ -18902,18 +18895,19 @@ msgstr "" "Saviez-vous que vous pouvez définir un plus grand nombre de périmètre et une " "densité de remplissage plus élevée pour améliorer la résistance du modèle ?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Quand il faut imprimer avec la porte de l’imprimante ouverte\n" "Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire la " "probabilité de blocage de l’extrudeuse/du réchauffeur lors de l’impression " -"de filament à basse température avec une température de boîtier plus élevée. " +"de filament à basse température avec une température de boîtier plus élevée? " "Plus d’informations à ce sujet dans le Wiki." #: resources/data/hints.ini: [hint:Avoid warping] @@ -18921,12 +18915,12 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Éviter la déformation\n" "Saviez-vous que lors de l’impression de matériaux susceptibles de se " "déformer, tels que l’ABS, une augmentation appropriée de la température du " -"plateau chauffant peut réduire la probabilité de déformation." +"plateau chauffant peut réduire la probabilité de déformation?" #~ msgid "" #~ "We have added an experimental style \"Tree Slim\" that features smaller " @@ -18949,7 +18943,7 @@ msgstr "" #~ "matériaux de support sur l'interface." #~ msgid "" -#~ "When using support material for the support interface, We recommend the " +#~ "When using support material for the support interface, we recommend the " #~ "following settings:\n" #~ "0 top z distance, 0 interface spacing, concentric pattern and disable " #~ "independent support layer height" @@ -18958,7 +18952,7 @@ msgstr "" #~ "nous vous recommandons d'utiliser les paramètres suivants :\n" #~ "Distance Z supérieure nulle, espacement d'interface nul, motif " #~ "concentrique et désactivation de la hauteur indépendante de la couche de " -#~ "support" +#~ "support." #~ msgid "Branch Diameter with double walls" #~ msgstr "Diamètre des branches à double parois" @@ -19128,7 +19122,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19155,7 +19149,7 @@ msgstr "" #~ "Par défaut, les petits ponts internes sont filtrés et le remplissage " #~ "solide interne est imprimé directement sur le remplissage peu dense. Cela " #~ "fonctionne bien dans la plupart des cas, accélérant l'impression sans " -#~ "trop compromettre la qualité de la surface supérieure. \n" +#~ "trop compromettre la qualité de la surface supérieure.\n" #~ "\n" #~ "Cependant, dans les modèles fortement inclinés ou courbés, en particulier " #~ "lorsque la densité de remplissage est trop faible, il peut en résulter un " @@ -19191,26 +19185,6 @@ msgstr "" #~ "Réglez sur -1 pour désactiver ce remplacement.\n" #~ "Ne peut être remplacé que par disable_fan_first_layers." -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "Une valeur inférieure entraîne des transitions du taux d’extrusion plus " -#~ "douces. Cependant, cela entraîne un fichier G-code beaucoup plus " -#~ "volumineux et davantage d’instructions à traiter par l’imprimante.\n" -#~ "\n" -#~ "La valeur 3 par défaut fonctionne bien dans la plupart des cas. Si votre " -#~ "imprimante a du mal à suivre, augmentez cette valeur pour réduire le " -#~ "nombre de réglages effectués\n" -#~ "\n" -#~ "Valeurs autorisées : 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -19221,16 +19195,6 @@ msgstr "" #~ "fonction de ralentissement pour un meilleur refroidissement de la couche " #~ "est activée." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "Normaux (auto) et Arborescents (auto) sont utilisés pour générer " -#~ "automatiquement un support. Si vous sélectionnez Normaux (manuel) ou " -#~ "Arborescents (manuel), seuls les générateurs de support manuels sont " -#~ "générés" - #~ msgid "ShiftLeft mouse button" #~ msgstr "ShiftLeft mouse button" @@ -19241,16 +19205,10 @@ msgstr "" #~ msgid "Scale" #~ msgstr "Redimensionner" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "Plaque Cool plate" - #~ msgid "Lift Z Enforcement" #~ msgstr "Exécution du décalage en Z" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Décalage du Z lors de la rétraction" #, no-c-format, no-boost-format @@ -19284,7 +19242,7 @@ msgstr "" #~ "pièce." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -19298,7 +19256,7 @@ msgstr "" #~ "directions on odd layers irrespective of their overhang degree." #~ msgstr "" #~ "Appliquer la logique d’inversion des périmètres uniquement sur les " -#~ "périmètres internes. \n" +#~ "périmètres internes.\n" #~ "\n" #~ "Ce paramètre réduit considérablement les contraintes exercées sur les " #~ "pièces, car elles sont désormais réparties dans des directions alternées. " @@ -19353,42 +19311,10 @@ msgstr "" #~ "une jupe.\n" #~ "Il faut donc remettre la couche de la jupe à 1 pour éviter les collisions." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "La géométrie sera décimée avant de détecter les angles vifs. Ce paramètre " -#~ "indique la longueur minimale de l’écart pour la décimation.\n" -#~ "0 pour désactiver" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Démarrer le ventilateur plus tôt de ce nombre de secondes par rapport au " -#~ "démarrage cible (vous pouvez utiliser des fractions de secondes). Cela " -#~ "suppose une accélération infinie pour cette estimation de durée et ne " -#~ "prend en compte que les mouvements G1 et G0 (l’ajustement arc n’est pas " -#~ "pris en charge).\n" -#~ "Cela ne déplacera pas les commandes de ventilateur des G-codes " -#~ "personnalisés (ils agissent comme une sorte de \"barrière\").\n" -#~ "Cela ne déplacera pas les commandes de ventilateur dans le G-code de " -#~ "démarrage si seul le ‘G-code de démarrage personnalisé’ est activé.\n" -#~ "Utiliser 0 pour désactiver." - #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " #~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "with open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -19401,7 +19327,7 @@ msgstr "" #~ "Un paravent est utile pour protéger une impression ABS ou ASA contre les " #~ "risques de déformation et de détachement du plateau d’impression en " #~ "raison des courants d’air. Il n’est généralement nécessaire que pour les " -#~ "imprimantes à cadre ouvert, c’est-à-dire sans caisson. \n" +#~ "imprimantes à cadre ouvert, c’est-à-dire sans caisson.\n" #~ "\n" #~ "Options :\n" #~ "Activé = la hauteur de la jupe est égale à celle de l’objet imprimé le " @@ -19417,19 +19343,6 @@ msgstr "" #~ msgid "Limited" #~ msgstr "Limité" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "Longueur minimale d’extrusion du filament en mm lors de l’impression de " -#~ "la jupe. Zéro signifie que cette fonction est désactivée.\n" -#~ "\n" -#~ "L’utilisation d’une valeur non nulle est utile si l’imprimante est " -#~ "configurée pour imprimer sans ligne d’amorce." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -19462,7 +19375,7 @@ msgstr "" #~ "printing overhangs on sharp corners like the front of the Benchy hull, " #~ "reducing curling which compounds over multiple layers.\n" #~ "\n" -#~ " It is generally recommended to have this option switched on unless your " +#~ "It is generally recommended to have this option switched on unless your " #~ "printer cooling is powerful enough or the print speed slow enough that " #~ "perimeter curling does not happen. If printing with a high external " #~ "perimeter speed, this parameter may introduce slight artifacts when " @@ -19506,7 +19419,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19533,7 +19446,7 @@ msgstr "" #~ "Par défaut, les petits ponts internes sont filtrés et le remplissage " #~ "plein interne est imprimé directement sur le remplissage peu dense. Cela " #~ "fonctionne bien dans la plupart des cas, accélérant l'impression sans " -#~ "trop compromettre la qualité de la surface supérieure. \n" +#~ "trop compromettre la qualité de la surface supérieure.\n" #~ "\n" #~ "Cependant, dans les modèles fortement inclinés ou courbés, en particulier " #~ "lorsque la densité de remplissage est trop faible, il peut en résulter un " @@ -19651,7 +19564,7 @@ msgstr "" #~ "3. Nulle part : Désactive le remplissage des trous\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Diminuez légèrement cette valeur (par exemple 0,9) pour réduire la " @@ -19699,13 +19612,13 @@ msgstr "" #~ "elle sera calculée en fonction de bridge_speed. La valeur par défaut est " #~ "150%." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Il est temps de charger un nouveau filament lors du changement de " #~ "filament. Pour les statistiques uniquement" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Il est temps de décharger l'ancien filament lorsque vous changez de " #~ "filament. Pour les statistiques uniquement" @@ -19745,8 +19658,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19872,7 +19785,7 @@ 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 " +#~ "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 " @@ -19898,12 +19811,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Veuillez trouver le coin avec un degré d’extrusion parfait" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " #~ "PrusaSlicer links from Printable.com" @@ -19932,9 +19839,6 @@ msgstr "" #~ "bonne finition de la surface extérieure. Cela peut également faire " #~ "briller le remplissage à travers les surfaces externes de la pièce." -#~ msgid "V" -#~ msgstr "V" - #~ msgid "Maximum print speed when purging" #~ msgstr "Vitesse d’impression maximale lors de la purge" @@ -19944,7 +19848,7 @@ msgstr "" #~ "is lower, the lowest speed will be used instead.\n" #~ "Increasing this speed may affect the tower's stability, as purging can be " #~ "performed over sparse layers. Before increasing this parameter beyond the " -#~ "default of 90mm/sec, make sure your printer can reliably bridge at the " +#~ "default of 90 mm/s, make sure your printer can reliably bridge at the " #~ "increased speeds." #~ msgstr "" #~ "Vitesse d’impression maximale lors de la purge dans la tour d’essuyage. " @@ -19953,13 +19857,13 @@ msgstr "" #~ "vitesse la plus basse qui sera utilisée.\n" #~ "L’augmentation de cette vitesse peut affecter la stabilité de la tour, " #~ "car la purge peut être effectuée sur des couches peu épaisses. Avant " -#~ "d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/sec, " +#~ "d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/s, " #~ "assurez-vous que votre imprimante peut effectuer un pontage fiable aux " #~ "vitesses accrues." #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer est basé sur Bambu Studio de Bambulab qui a été développé sur " @@ -20085,47 +19989,12 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Déchargement" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Choisissez un emplacement AMS puis appuyez sur le bouton correspondant " -#~ "pour Charger ou Décharger le filament." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Carte mère" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- ℃" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "New Flow Dynamics Calibration" #~ msgstr "Nouvelle calibration de la dynamique du flux" -#~ msgid "" -#~ "The 3mf file version is in Beta and it is newer than the current " -#~ "OrcaSlicer version." -#~ msgstr "" -#~ "La version du fichier 3mf est en Beta et est plus récente que la version " -#~ "actuelle d’OrcaSlicer." - #~ msgid "active" #~ msgstr "actif" @@ -20167,7 +20036,7 @@ msgstr "" #~ "dans l'AMS avec précision." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Remarque : si un nouveau filament est inséré pendant l'impression, l'AMS " @@ -20184,7 +20053,7 @@ msgstr "" #~ msgstr "L'initialisation a échoué (Pas de caméra)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "L'imprimante est occupée à télécharger, veuillez attendre la fin du " #~ "téléchargement." @@ -20220,9 +20089,6 @@ msgstr "" #~ msgstr "" #~ "Impossible de récupérer les informations du modèle depuis l'imprimante." -#~ msgid "Failed to parse model informations." -#~ msgstr "Impossible d'analyser les informations du modèle." - #~ msgid "Connection lost. Please retry." #~ msgstr "Connexion perdue. Veuillez réessayer." @@ -20231,20 +20097,20 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Vous avez modifié certains paramètres du préréglage \"%1%\". \n" +#~ "Vous avez modifié certains paramètres du préréglage \"%1%\".\n" #~ "Souhaitez-vous conserver ces paramètres modifiés (nouvelle valeur) après " #~ "avoir changé de préréglage ?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Vous avez modifié certains paramètres prédéfinis. \n" +#~ "Vous avez modifié certains paramètres prédéfinis.\n" #~ "Souhaitez-vous conserver ces paramètres modifiés (nouvelle valeur) après " #~ "avoir changé de préréglage ?" @@ -20325,12 +20191,12 @@ msgstr "" #~ "l’épaisseur verticale de la coque » est désactivé. " #~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " #~ "wall\n" #~ "No - Don't use alternate extra wall" #~ msgstr "" -#~ "Modifier ces paramètres automatiquement ? \n" +#~ "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 »" @@ -20384,9 +20250,6 @@ msgstr "" #~ "surplombs et lorsque les fonctionnalités de vitesses ne sont pas " #~ "spécifiées explicitement." -#~ msgid " " -#~ msgstr " " - #~ msgid "Small Area Infill Flow Compensation (beta)" #~ msgstr "" #~ "Compensation des débits de remplissage des petites zones (expérimental)" @@ -20400,7 +20263,7 @@ msgstr "" #~ msgid "End end: " #~ msgstr "Temp. de fin: " -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "La configuration ne peut pas être chargée." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -20408,18 +20271,6 @@ msgstr "" #~ "Le fichier 3mf a été généré par une ancienne version de Orca Slicer, " #~ "chargement des données de géométrie uniquement." -#~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" -#~ msgstr "" -#~ "L’extrusion relative est recommandée lors de l’utilisation de l’option " -#~ "\"label_objects\". Certains extrudeurs fonctionnent mieux avec cette " -#~ "option décochée (mode d’extrusion absolu). La tour d’essuyage n’est " -#~ "compatible qu’avec le mode relatif. Il est toujours activé sur les " -#~ "imprimantes BambuLab. La valeur par défaut est cochée" - #~ msgid "Movement:" #~ msgstr "Mouvement:" @@ -20448,10 +20299,10 @@ msgstr "" #~ msgstr "connecteurs sont hors de l'objet" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "État non valide. \n" +#~ "État non valide.\n" #~ "Aucune pièce n'est sélectionnée pour être conservée après la découpe" #~ msgid "Recalculate" @@ -20473,7 +20324,7 @@ msgstr "" #~ "d'impression. Vérifiez que le réseau fonctionne correctement et relancez " #~ "l'impression." -#~ msgid "The beginning of the vendor can not be a number. Please re-enter." +#~ msgid "The beginning of the vendor cannot be a number. Please re-enter." #~ msgstr "" #~ "Le début du nom du vendeur ne peut pas être un numéro. Veuillez les " #~ "saisir à nouveau." @@ -20490,9 +20341,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "Choisissez l'archive SLA:" -#~ msgid "Import file" -#~ msgstr "Importer un fichier" - #~ msgid "Import model and profile" #~ msgstr "Importer modèle et profil" @@ -20558,15 +20406,14 @@ msgstr "" #~ "Oui - Passez automatiquement au modèle rectiligne\n" #~ "Non - Réinitialise automatiquement la densité à la valeur par défaut" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "" -#~ "Veuillez chauffer la buse à plus de 170 degrés avant de charger le " -#~ "filament." +#~ "Veuillez chauffer la buse à plus de 170°C avant de charger le filament." -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "Afficher la fenêtre G-code" -#~ msgid "If enabled, g-code window will be displayed." +#~ msgid "If enabled, G-code window will be displayed." #~ msgstr "Si activé, la fenêtre avec les commandes G-code sera affichée." #, c-format @@ -20659,21 +20506,12 @@ msgstr "" #~ "Savez-vous comment contrôler la vue et la sélection des objets/pièces " #~ "avec la souris et l'écran tactile dans la scène 3D ?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Réparer le Modèle\n" -#~ "Saviez-vous que vous pouvez réparer un modèle 3D corrompu pour éviter de " -#~ "nombreux problèmes de découpage ?" - #~ msgid "Embedded" #~ msgstr "Intégré" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "Le fichier de configuration de Orca Slicer est peut-être corrompu et ne " #~ "peut pas être analysé. Veuillez supprimer le fichier et réessayer." @@ -20693,12 +20531,12 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" #~ "Il n'existe actuellement aucun consommable de rechange identique, et le " -#~ "réapprovisionnement automatique n'est actuellement pas possible. \n" +#~ "réapprovisionnement automatique n'est actuellement pas possible.\n" #~ "(Prise en charge actuelle de la fourniture automatique de consommables de " #~ "la même marque, du même type de matériau et de la même couleur)" @@ -20738,14 +20576,6 @@ msgstr "" #~ "à l'exception des premières couches qui sont définies par aucune couche " #~ "de refroidissement" -#~ msgid "" -#~ "Bed temperature for layers except the initial one. Value 0 means the " -#~ "filament does not support to print on the High Temp" -#~ msgstr "" -#~ "Température du plateau de toutes les couches à l'exception de la " -#~ "première. La valeur 0 signifie que le filament ne prend pas en charge " -#~ "l'impression sur le plateau High Temperature" - #~ msgid "" #~ "Filter out gaps smaller than the threshold specified. This setting won't " #~ "affect top/bottom layers" @@ -20767,18 +20597,15 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "Calibration de l'extrusion" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Poussez le nouveau filament dans l'extrudeur" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "La température du plateau des autres couches est inférieure à la " #~ "température du plateau de la couche initiale de plus de %d degrés. Cela " -#~ "peut entraîner la séparation du modèle du plateau pendant l'impression" +#~ "peut entraîner la séparation du modèle du plateau pendant l'impression." #~ msgid "" #~ "Bed temperature is higher than vitrification temperature of this " @@ -20823,8 +20650,8 @@ msgstr "" #~ msgstr "Plaque haute température" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Il s'agit de la température du plateau lorsque le plateau haute " #~ "température (\"Cool plate\") est installé. Une valeur à 0 signifie que ce " @@ -20833,13 +20660,6 @@ msgstr "" #~ msgid "Internal bridge support thickness" #~ msgstr "Épaisseur du support interne du pont" -#, fuzzy, c-format, boost-format -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "" -#~ "Le paramètre max_accel_to_decel de Klipper sera ajusté à ce pourcentage " -#~ "d’accélération" - #~ msgid "" #~ "Style and shape of the support. For normal support, projecting the " #~ "supports into a regular grid will create more stable supports (default), " diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index d708309afa..39139e3a59 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -11,7 +11,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" "X-Generator: Localazy (https://localazy.com)\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Támaszok festése" msgid "Alt + Mouse wheel" @@ -100,14 +100,14 @@ msgid "Support Generated" msgstr "Támasz legenerálva" msgid "Gizmo-Place on Face" -msgstr "Gizmo- Felület Tárgyasztalra Illesztése" +msgstr "Gizmo-Felület Tárgyasztalra Illesztése" msgid "Lay on face" msgstr "Felületre fektetés" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "A filamentek száma meghaladja a festés által támogatott maximális " @@ -181,13 +181,13 @@ msgid "Move" msgstr "Mozgatás" msgid "Gizmo-Move" -msgstr "Gizmo-Mozgatása" +msgstr "Gizmo-Mozgatás" msgid "Rotate" msgstr "Forgatás" msgid "Gizmo-Rotate" -msgstr "Gizmo-Forgatása" +msgstr "Gizmo-Forgatás" msgid "Optimize orientation" msgstr "Orientáció optimalizálása" @@ -199,7 +199,7 @@ msgid "Scale" msgstr "Átméretezés" msgid "Gizmo-Scale" -msgstr "Gizmo-Skála" +msgstr "Gizmo-Átméretezés" msgid "Error: Please close all toolbar menus first" msgstr "Hiba: Kérjük, először zárd be az összes eszköztár menüt" @@ -281,10 +281,10 @@ msgid "Manual" msgstr "Manuális" msgid "Plug" -msgstr "Plug" +msgstr "" msgid "Dowel" -msgstr "Dowel" +msgstr "" msgid "Snap" msgstr "Csatlakoztatás" @@ -296,22 +296,22 @@ msgid "Frustum" msgstr "Frustum" msgid "Square" -msgstr "Square" +msgstr "" msgid "Hexagon" -msgstr "Hexagon" +msgstr "" msgid "Keep orientation" msgstr "Tájolás megtartása" msgid "Place on cut" -msgstr "Place on cut" +msgstr "" msgid "Flip upside down" msgstr "" msgid "Connectors" -msgstr "Connectors" +msgstr "" msgid "Type" msgstr "Típus" @@ -367,7 +367,7 @@ msgid "Change cut mode" msgstr "" msgid "Tolerance" -msgstr "Tolerance" +msgstr "" msgid "Drag" msgstr "Drag" @@ -376,28 +376,28 @@ msgid "Draw cut line" msgstr "" msgid "Left click" -msgstr "Left click" +msgstr "" msgid "Add connector" -msgstr "Add connector" +msgstr "" msgid "Right click" -msgstr "Right click" +msgstr "" msgid "Remove connector" -msgstr "Remove connector" +msgstr "" msgid "Move connector" -msgstr "Move connector" +msgstr "" msgid "Add connector to selection" -msgstr "Add connector to selection" +msgstr "" msgid "Remove connector from selection" -msgstr "Remove connector from selection" +msgstr "" msgid "Select all connectors" -msgstr "Select all connectors" +msgstr "" msgid "Cut" msgstr "Vágás" @@ -406,7 +406,7 @@ msgid "Rotate cut plane" msgstr "" msgid "Remove connectors" -msgstr "Remove connectors" +msgstr "" msgid "Bulge" msgstr "Kidudorodás" @@ -421,7 +421,7 @@ msgid "Space proportion related to radius" msgstr "" msgid "Confirm connectors" -msgstr "Confirm connectors" +msgstr "" msgid "Cancel" msgstr "Mégse" @@ -449,10 +449,10 @@ msgid "Reset cutting plane" msgstr "" msgid "Edit connectors" -msgstr "Edit connectors" +msgstr "" msgid "Add connectors" -msgstr "Add connectors" +msgstr "" msgid "Reset cut" msgstr "" @@ -461,10 +461,10 @@ msgid "Reset cutting plane and remove connectors" msgstr "" msgid "Upper part" -msgstr "Upper part" +msgstr "" msgid "Lower part" -msgstr "Lower part" +msgstr "" msgid "Keep" msgstr "Keep" @@ -473,7 +473,7 @@ msgid "Flip" msgstr "Flip" msgid "After cut" -msgstr "After cut" +msgstr "" msgid "Cut to parts" msgstr "Részekre darabolás" @@ -485,7 +485,7 @@ msgid "Warning" msgstr "Figyelmeztetés" msgid "Invalid connectors detected" -msgstr "Invalid connectors detected" +msgstr "" #, c-format, boost-format msgid "%1$d connector is out of cut contour" @@ -500,7 +500,7 @@ msgstr[0] "" msgstr[1] "" msgid "Some connectors are overlapped" -msgstr "Some connectors are overlapped" +msgstr "" msgid "Select at least one object to keep after cutting." msgstr "" @@ -586,10 +586,10 @@ msgstr "Drótváz megjelenítése" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Nem használható folyamat előnézetben." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "" "A művelet törlése már folyamatban van. Kérjük, várj néhány másodpercet." @@ -635,30 +635,30 @@ msgid "Thickness" msgstr "Vastagság" msgid "Text Gap" -msgstr "Text Gap" +msgstr "" msgid "Angle" -msgstr "Angle" +msgstr "" msgid "" "Embedded\n" "depth" -msgstr "Embedded depth" +msgstr "" msgid "Input text" msgstr "Szöveg" msgid "Surface" -msgstr "Surface" +msgstr "" msgid "Horizontal text" -msgstr "Horizontal text" +msgstr "" msgid "Shift + Mouse move up or down" -msgstr "Shift + Mouse move up or down" +msgstr "" msgid "Rotate text" -msgstr "Rotate text" +msgstr "" msgid "Text shape" msgstr "Szöveg alakja" @@ -778,7 +778,7 @@ msgid "Change Text Type" msgstr "" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "" msgid "Name can't be empty." @@ -991,8 +991,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" msgid "No symbol" @@ -1117,7 +1117,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1193,7 +1193,7 @@ msgid "Lock/unlock the aspect ratio of the SVG." msgstr "" msgid "Reset scale" -msgstr "Skála visszaállítása" +msgstr "Méretezés visszaállítása" msgid "Distance of the center of the SVG to the model surface." msgstr "" @@ -1244,64 +1244,63 @@ msgid "No feature" msgstr "" msgid "Vertex" -msgstr "Vertex" +msgstr "" msgid "Edge" -msgstr "Edge" +msgstr "" msgid "Plane" -msgstr "Plane" +msgstr "" msgid "Point on edge" -msgstr "Point on edge" +msgstr "" msgid "Point on circle" -msgstr "Point on circle" +msgstr "" msgid "Point on plane" -msgstr "Point on plane" +msgstr "" msgid "Center of edge" -msgstr "Center of edge" +msgstr "" msgid "Center of circle" -msgstr "Center of circle" +msgstr "" msgid "Select feature" -msgstr "Select feature" +msgstr "" msgid "Select point" -msgstr "Select point" +msgstr "" msgid "Delete" msgstr "Törlés" msgid "Restart selection" -msgstr "Restart selection" +msgstr "" msgid "Esc" msgstr "Esc" msgid "Cancel a feature until exit" -msgstr "Cancel a feature until exit" +msgstr "" msgid "Measure" -msgstr "Measure" +msgstr "Mérés" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" -"Please confirm explosion ratio = 1, and please select at least one object" msgid "Please select at least one object." -msgstr "Please select at least one object." +msgstr "" msgid "Edit to scale" -msgstr "Edit to scale" +msgstr "" msgctxt "Verb" msgid "Scale all" -msgstr "Scale all" +msgstr "" msgid "None" msgstr "Sehol" @@ -1313,24 +1312,20 @@ msgid "Length" msgstr "Hossz" msgid "Selection" -msgstr "Selection" +msgstr "" msgid " (Moving)" -msgstr " (Moving)" +msgstr "" msgid "" "Select 2 faces on objects and \n" " make objects assemble together." msgstr "" -"Select 2 faces on objects and \n" -" make objects assemble together." msgid "" "Select 2 points or circles on objects and \n" " specify distance between them." msgstr "" -"Select 2 points or circles on objects and \n" -" specify distance between them." msgid "Face" msgstr "Face" @@ -1345,53 +1340,51 @@ msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"Feature 1 has been reset, \n" -"feature 2 has been feature 1" -msgid "Warning:please select Plane's feature." -msgstr "Warning: please select Plane's feature." +msgid "Warning: please select Plane's feature." +msgstr "" -msgid "Warning:please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." +msgstr "" -msgid "Warning:please select two different mesh." -msgstr "Warning: please select two different meshes." +msgid "Warning: please select two different meshes." +msgstr "" msgid "Copy to clipboard" msgstr "Másolás a vágólapra" msgid "Perpendicular distance" -msgstr "Perpendicular distance" +msgstr "" msgid "Distance" -msgstr "Distance" +msgstr "" msgid "Direct distance" -msgstr "Direct distance" +msgstr "" msgid "Distance XYZ" -msgstr "Distance XYZ" +msgstr "" msgid "Parallel" -msgstr "Parallel" +msgstr "" msgid "Center coincidence" -msgstr "Center coincidence" +msgstr "" -msgid "Featue 1" +msgid "Feature 1" msgstr "Feature 1" msgid "Reverse rotation" -msgstr "Reverse rotation" +msgstr "" msgid "Rotate around center:" -msgstr "Rotate around center:" +msgstr "" msgid "Parallel distance:" msgstr "" msgid "Flip by Face 2" -msgstr "Flip by Face 2" +msgstr "" msgid "Ctrl+" msgstr "Ctrl+" @@ -1434,7 +1427,7 @@ msgstr "" "sikerült felismerni." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" @@ -1559,13 +1552,13 @@ msgstr "Projekt megnyitása" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell " "frissíteni, mielőtt rendesen használható lenne" msgid "Privacy Policy Update" -msgstr "Privacy Policy Update" +msgstr "" msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " @@ -1610,16 +1603,16 @@ msgid "" msgstr "" msgid "Import File" -msgstr "Import File" +msgstr "" msgid "Choose files" msgstr "Fájlok kiválasztása" msgid "New Folder" -msgstr "New Folder" +msgstr "" msgid "Open" -msgstr "Open" +msgstr "" msgid "Rename" msgstr "Átnevezés" @@ -1768,7 +1761,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1778,7 +1771,7 @@ msgid "Text" msgstr "" msgid "Height range Modifier" -msgstr "Height Range Modifier" +msgstr "" msgid "Add settings" msgstr "Beállítások hozzáadása" @@ -1793,10 +1786,10 @@ msgid "Set as individual objects" msgstr "Beállítás különálló objektumokként" msgid "Fill bed with copies" -msgstr "Fill bed with copies" +msgstr "" msgid "Fill the remaining area of bed with copies of the selected object" -msgstr "Fill the remaining area of bed with copies of the selected object" +msgstr "" msgid "Printable" msgstr "Nyomtatható" @@ -1859,16 +1852,16 @@ msgstr "Öblítés a tárgyak támaszába" msgid "Edit in Parameter Table" msgstr "Szerkesztés a paramétertáblában" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Átváltás hüvelykről" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Visszaállítás hüvelykre" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Átváltás méterről" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Visszaállítás méterre" msgid "Assemble" @@ -1878,16 +1871,13 @@ msgid "Assemble the selected objects to an object with multiple parts" msgstr "Összeállítja a kijelölt objektumot egy több részből álló objektummá" msgid "Assemble the selected objects to an object with single part" -msgstr "" -"Összeállítja a kijelölt objektumokat egy egyetlen részből álló objektummá" +msgstr "Összeállítja a kijelölt objektumokat egy egyetlen részből álló objektummá" msgid "Mesh boolean" -msgstr "Mesh boolean" +msgstr "Modellháló logikai műveletek" msgid "Mesh boolean operations including union and subtraction" -msgstr "" -"Olyan modellhálóval kapcsolatos logikai műveletek, mint például az egyesítés " -"és kivonás" +msgstr "Modellhálóval kapcsolatos logikai műveletek, mint például az egyesítés és kivonás" msgid "Along X axis" msgstr "X-tengely mentén" @@ -1923,7 +1913,7 @@ msgid "Change SVG source file, projection, size, ..." msgstr "" msgid "Invalidate cut info" -msgstr "Invalidate cut info" +msgstr "" msgid "Add Primitive" msgstr "Primitív hozzáadása" @@ -1993,7 +1983,7 @@ msgid "auto rotate current plate" msgstr "aktuális tálca automatikus forgatása" msgid "Delete Plate" -msgstr "Delete Plate" +msgstr "" msgid "Remove the selected plate" msgstr "Kiválasztott tálca eltávolítása" @@ -2068,9 +2058,7 @@ msgid "Click the icon to reset all settings of the object" msgstr "Kattints az ikonra az objektum összes beállításának visszaállításához" msgid "Right button click the icon to drop the object printable property" -msgstr "" -"Kattints jobb gombbal az ikonra az objektum nyomtatható tulajdonságának " -"elvetéséhez" +msgstr "Kattints jobb gombbal az ikonra az objektum nyomtatható tulajdonságának elvetéséhez" msgid "Click the icon to toggle printable property of the object" msgstr "" @@ -2083,7 +2071,7 @@ msgid "Click the icon to edit color painting of the object" msgstr "Kattints az ikonra az objektum színfestésének szerkesztéséhez" msgid "Click the icon to shift this object to the bed" -msgstr "Click the icon to shift this object to the bed" +msgstr "" msgid "Loading file" msgstr "Fájl betöltése" @@ -2101,9 +2089,7 @@ msgid "Add Modifier" msgstr "Módosító hozzáadása" msgid "Switch to per-object setting mode to edit modifier settings." -msgstr "" -"Válts át objektumonkénti beállítási módba a módosító beállításainak " -"szerkesztéséhez." +msgstr "Válts át objektumonkénti beállítási módba a módosító beállításainak szerkesztéséhez." msgid "" "Switch to per-object setting mode to edit process settings of selected " @@ -2113,41 +2099,34 @@ msgstr "" "folyamatbeállításainak szerkesztéséhez." msgid "Delete connector from object which is a part of cut" -msgstr "Delete connector from object which is a part of cut" +msgstr "" msgid "Delete solid part from object which is a part of cut" -msgstr "Delete solid part from object which is a part of cut" +msgstr "" msgid "Delete negative volume from object which is a part of cut" -msgstr "Delete negative volume from object which is a part of cut" +msgstr "" msgid "" "To save cut correspondence you can delete all connectors from all related " "objects." msgstr "" -"To save cut correspondence you can delete all connectors from all related " -"objects." msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." msgstr "" -"This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed .\n" -"\n" -"To manipulate with solid parts or negative volumes you have to invalidate " -"cut information first." msgid "Delete all connectors" -msgstr "Delete all connectors" +msgstr "" msgid "Deleting the last solid part is not allowed." msgstr "Az utolsó szilárd rész törlése nem megengedett." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "" "A kijelölt objektum csak egy tárgyat tartalmaz, ezért nem lehet tovább " "bontani." @@ -2156,34 +2135,34 @@ msgid "Assembly" msgstr "Összeállítás" msgid "Cut Connectors information" -msgstr "Cut Connectors information" +msgstr "" msgid "Object manipulation" -msgstr "Object manipulation" +msgstr "" msgid "Group manipulation" -msgstr "Group manipulation" +msgstr "" msgid "Object Settings to modify" -msgstr "Object Settings to Modify" +msgstr "" msgid "Part Settings to modify" -msgstr "Part Settings to Modify" +msgstr "" msgid "Layer range Settings to modify" -msgstr "Layer Range Settings to Modify" +msgstr "" msgid "Part manipulation" -msgstr "Part manipulation" +msgstr "" msgid "Instance manipulation" -msgstr "Instance manipulation" +msgstr "" msgid "Height ranges" -msgstr "Height ranges" +msgstr "" msgid "Settings for height range" -msgstr "Settings for height range" +msgstr "" msgid "Layer" msgstr "Réteg" @@ -2192,14 +2171,14 @@ msgid "Selection conflicts" msgstr "Kijelölési ütközések" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Ha az első kiválasztott elem egy objektum, akkor a másodiknak is objektumnak " "kell lennie." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Ha az első kiválasztott elem egy tárgy, akkor a másodiknak is tárgynak kell " "lennie." @@ -2251,10 +2230,10 @@ msgid "to" msgstr "eddig" msgid "Remove height range" -msgstr "Remove height range" +msgstr "" msgid "Add height range" -msgstr "Add height range" +msgstr "" msgid "Invalid numeric." msgstr "Érvénytelen számjegy." @@ -2264,7 +2243,7 @@ msgstr "" "egy cellát csak az ugyanabban az oszlopban lévő egy vagy több cellába lehet " "másolni" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "a több cellás másolás nem támogatott" msgid "Outside" @@ -2286,13 +2265,13 @@ msgid "Mouse ear" msgstr "" msgid "Outer brim only" -msgstr "Outer brim only" +msgstr "" msgid "Inner brim only" -msgstr "Inner brim only" +msgstr "" msgid "Outer and inner brim" -msgstr "Outer and inner brim" +msgstr "" msgid "No-brim" msgstr "Nincs perem" @@ -2343,13 +2322,13 @@ msgid "Custom" msgstr "Egyéni" msgid "Pause:" -msgstr "Pause:" +msgstr "" msgid "Custom Template:" -msgstr "Custom Template:" +msgstr "" msgid "Custom G-code:" -msgstr "Custom G-code:" +msgstr "" msgid "Custom G-code" msgstr "Egyedi G-kód" @@ -2367,40 +2346,40 @@ msgid "Add Pause" msgstr "Szünet hozzáadása" msgid "Insert a pause command at the beginning of this layer." -msgstr "Insert a pause command at the beginning of this layer." +msgstr "" msgid "Add Custom G-code" msgstr "Egyedi G-kód hozzáadása" msgid "Insert custom G-code at the beginning of this layer." -msgstr "Insert custom G-code at the beginning of this layer." +msgstr "" msgid "Add Custom Template" msgstr "Egyéni sablon hozzáadása" msgid "Insert template custom G-code at the beginning of this layer." -msgstr "Insert template custom G-code at the beginning of this layer." +msgstr "" msgid "Filament " msgstr "Filament " msgid "Change filament at the beginning of this layer." -msgstr "Change filament at the beginning of this layer." +msgstr "" msgid "Delete Pause" msgstr "Szünet törlése" msgid "Delete Custom Template" -msgstr "Delete Custom Template" +msgstr "" msgid "Edit Custom G-code" -msgstr "Edit Custom G-code" +msgstr "" msgid "Delete Custom G-code" -msgstr "Delete Custom G-code" +msgstr "" msgid "Delete Filament Change" -msgstr "Delete Filament Change" +msgstr "" msgid "No printer" msgstr "Nincs nyomtató" @@ -2412,25 +2391,25 @@ msgid "Failed to connect to the server" msgstr "Nem sikerült csatlakozni a szerverhez" msgid "Check the status of current system services" -msgstr "Check the status of current system services" +msgstr "" msgid "code" -msgstr "code" +msgstr "" msgid "Failed to connect to cloud service" -msgstr "Failed to connect to cloud service" +msgstr "" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "Please click on the hyperlink above to view the cloud service status" +msgstr "" msgid "Failed to connect to the printer" msgstr "Nem sikerült csatlakozni a nyomtatóhoz" msgid "Connection to printer failed" -msgstr "Connection to printer failed" +msgstr "" msgid "Please check the network connection of the printer and Orca." -msgstr "Please check the network connection of the printer and Orca." +msgstr "" msgid "Connecting..." msgstr "Csatlakozás..." @@ -2448,13 +2427,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "Auto Refill" +msgstr "" msgid "AMS not connected" msgstr "Az AMS nincs csatlakoztatva" msgid "Load" -msgstr "Load" +msgstr "" msgid "Unload" msgstr "Kitöltés" @@ -2513,7 +2492,7 @@ msgid "Check filament location" msgstr "Ellenőrizd a filament helyzetét" msgid "Grab new filament" -msgstr "Grab new filament" +msgstr "" msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " @@ -2526,8 +2505,8 @@ msgid "Edit" msgstr "Szerkesztés" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Az összes kijelölt objektum egy zárolt tálcán van,\n" "nem lehet automatikus elrendezést használni rajtuk." @@ -2536,8 +2515,8 @@ msgid "No arrangeable objects are selected." msgstr "Nincsenek elrendezhető objektumok kijelölve." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Ez a tálca zárolva van.\n" "Nem lehetséges az automatikus elrendezés ezen a tálcán." @@ -2577,15 +2556,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Az összes kijelölt objektum egy zárolt tálcán van,\n" "nem lehet automatikus orientációt használni rajtuk." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Ez a tálca zárolva van.\n" "Nem lehetséges az automatikus orientáció ezen a tálcán." @@ -2603,10 +2582,10 @@ msgid "Filling" msgstr "Kitöltés" msgid "Bed filling canceled." -msgstr "Bed filling canceled." +msgstr "" msgid "Bed filling done." -msgstr "Bed filling done." +msgstr "" msgid "Searching for optimal orientation" msgstr "Az optimális tájolás keresése" @@ -2627,56 +2606,48 @@ msgid "Please check the printer network connection." msgstr "Kérjük, ellenőrizd a nyomtató hálózati kapcsolatát." msgid "Abnormal print file data. Please slice again." -msgstr "Abnormal print file data: please slice again." +msgstr "" msgid "Task canceled." -msgstr "Task canceled." +msgstr "" msgid "Upload task timed out. Please check the network status and try again." -msgstr "Upload task timed out. Please check the network status and try again." +msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "" "A felhőszolgáltatáshoz való csatlakozás sikertelen. Kérjük, próbáld újra." -msgid "Print file not found. please slice again." -msgstr "Print file not found; please slice again." +msgid "Print file not found. Please slice again." +msgstr "" msgid "" "The print file exceeds the maximum allowable size (1GB). Please simplify the " "model and slice again." msgstr "" -"The print file exceeds the maximum allowable size (1GB). Please simplify the " -"model and slice again." msgid "Failed to send the print job. Please try again." msgstr "Nem sikerült elküldeni a nyomtatási feladatot. Kérlek próbáld újra." msgid "Failed to upload file to ftp. Please try again." -msgstr "Failed to upload file to ftp. Please try again." +msgstr "" msgid "" "Check the current status of the bambu server by clicking on the link above." msgstr "" -"Check the current status of the Bambu Lab server by clicking on the link " -"above." msgid "" "The size of the print file is too large. Please adjust the file size and try " "again." msgstr "" -"The size of the print file is too large. Please adjust the file size and try " -"again." -msgid "Print file not found, Please slice it again and send it for printing." -msgstr "Print file not found; please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." +msgstr "" msgid "" "Failed to upload print file to FTP. Please check the network status and try " "again." msgstr "" -"Failed to upload print file via FTP. Please check the network status and try " -"again." msgid "Sending print job over LAN" msgstr "Nyomtatási munka küldése LAN-on keresztül" @@ -2709,10 +2680,10 @@ msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "A LAN-on keresztüli nyomtatáshoz helyezz be egy SD kártyát." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "G-kód fájl küldése LAN-on keresztül" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "G-kód fájl küldése MicroSD-kártyára" #, c-format, boost-format @@ -2723,33 +2694,29 @@ msgid "An SD card needs to be inserted before sending to printer." msgstr "A nyomtatóra való küldés előtt be kell helyezned egy MicroSD-kártyát." msgid "Importing SLA archive" -msgstr "Importing SLA archive" +msgstr "" msgid "" "The SLA archive doesn't contain any presets. Please activate some SLA " "printer preset first before importing that SLA archive." msgstr "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer presets first before importing that SLA archive." msgid "Importing canceled." -msgstr "Importing canceled." +msgstr "" msgid "Importing done." -msgstr "Importing done." +msgstr "" msgid "" "The imported SLA archive did not contain any presets. The current SLA " "presets were used as fallback." msgstr "" -"The imported SLA archive did not contain any presets. The current SLA " -"presets were used as fallback." msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "You cannot load an SLA project with a multi-part object on the bed" +msgstr "" msgid "Please check your object list before preset changing." -msgstr "Please check your object list before preset changing." +msgstr "" msgid "Attention!" msgstr "Figyelem!" @@ -2760,10 +2727,10 @@ msgstr "Letöltés" msgid "Download failed" msgstr "Letöltés sikertelen" -msgid "Cancelled" +msgid "Canceled" msgstr "Megszakítva" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Sikeresen telepítve" msgid "Installing" @@ -2785,7 +2752,7 @@ msgid "Orca Slicer is licensed under " msgstr "A Orca Slicer a következő licencet használja " msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, version 3" +msgstr "" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" @@ -2833,9 +2800,6 @@ msgstr "Megerősítés" msgid "Close" msgstr "Bezárás" -msgid "Colour" -msgstr "Szín" - msgid "" "Nozzle\n" "Temperature" @@ -2873,13 +2837,13 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "Nyomtatás közben nem változtathatóak meg a AMS férőhelyek adatai" msgid "Setting Virtual slot information while printing is not supported" -msgstr "Setting Virtual slot information while printing is not supported" +msgstr "" msgid "Are you sure you want to clear the filament information?" -msgstr "Are you sure you want to clear the filament information?" +msgstr "" msgid "You need to select the material type and color first." -msgstr "You need to select the material type and color first." +msgstr "" #, c-format, boost-format msgid "Please input a valid value (K in %.1f~%.1f)" @@ -2890,10 +2854,10 @@ msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)" msgstr "" msgid "Other Color" -msgstr "Other Color" +msgstr "" msgid "Custom Color" -msgstr "Custom Color" +msgstr "" msgid "Dynamic flow calibration" msgstr "Dinamikus anyagáramlás kalibráció" @@ -2999,17 +2963,13 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" -"Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases: when the lid is open or the " -"desiccant pack is changed. It takes a few hours to absorb the moisture, and " -"low temperatures also slow down the process." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Add meg, hogy melyik AMS-férőhely legyen legyen hozzárendelve a nyomtatásnál " "használt filamenthez." @@ -3029,7 +2989,7 @@ msgstr "Ne engedélyezd az AMS-t" msgid "Print using materials mounted on the back of the case" msgstr "Nyomtatás külső tartón lévő filamenttel." -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Nyomtatás az AMS-ben lévő filamentekkel" msgid "Print with filaments mounted on the back of the chassis" @@ -3051,18 +3011,13 @@ msgstr "A nyomtató jelenleg nem támogatja az automatikus újratöltést." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" -"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" -"If there are two identical filaments in an AMS, AMS filament backup will be " -"enabled. \n" -"(This currently supports automatic supply of consumables with the same " -"brand, material type, and color)" msgid "DRY" msgstr "DRY" @@ -3084,7 +3039,7 @@ msgstr "" "filament tekercs behelyezésekor. Ez körülbelül 20 másodpercet vesz igénybe." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Megjegyzés: ha nyomtatás során új filament kerül behelyezésre, az AMS nem " @@ -3102,8 +3057,8 @@ msgstr "Frissítés bekapcsoláskor" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "Az AMS indításkor automatikusan kiolvassa a behelyezett filament adatait. Ez " "körülbelül 1 percet vesz igénybe. A leolvasási folyamat során a " @@ -3131,24 +3086,22 @@ msgstr "" "maradék mennyiség automatikusan frissül." msgid "AMS filament backup" -msgstr "AMS filament backup" +msgstr "" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "Az AMS automatikusan egy másik, azonos tulajdonságú filamentre vált, ha az " "aktuális filament kifogy." msgid "Air Printing Detection" -msgstr "Air Printing Detection" +msgstr "" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" -"Detects clogging and filament grinding, halting printing immediately to " -"conserve time and filament." msgid "File" msgstr "Fájl" @@ -3199,7 +3152,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Kérjük, mentsd el a projektet és indítsd újra a programot." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "G-kód feldolgozása egy előző fájlból..." msgid "Slicing complete" @@ -3230,7 +3183,7 @@ msgid "Running post-processing scripts" msgstr "Utófeldolgozási szkriptek futtatása" msgid "Successfully executed post-processing script" -msgstr "Successfully executed post-processing script" +msgstr "" msgid "Unknown error occurred during exporting G-code." msgstr "Ismeretlen hiba történt a G-kód exportálása közben." @@ -3283,12 +3236,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "G-kód fájl exportálva ide: %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Ismeretlen hiba a G-kód exportálásakor." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3308,10 +3261,10 @@ msgid "Device" msgstr "Nyomtató" msgid "Task Sending" -msgstr "Task Sending" +msgstr "" msgid "Task Sent" -msgstr "Task Sent" +msgstr "" msgid "Edit multiple printers" msgstr "" @@ -3328,10 +3281,10 @@ msgid "The maximum number of printers that can be selected is %d" msgstr "" msgid "Offline" -msgstr "Offline" +msgstr "" msgid "No task" -msgstr "No task" +msgstr "" msgid "View" msgstr "Nézet" @@ -3343,16 +3296,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "Device Name" +msgstr "" msgid "Task Name" -msgstr "Task Name" +msgstr "" msgid "Device Status" -msgstr "Device Status" +msgstr "" msgid "Actions" -msgstr "Actions" +msgstr "" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3371,7 +3324,7 @@ msgid "Upgrading" msgstr "" msgid "Incompatible" -msgstr "Incompatible" +msgstr "" msgid "syncing" msgstr "" @@ -3422,25 +3375,25 @@ msgid "Stop" msgstr "Állj" msgid "Task Status" -msgstr "Task Status" +msgstr "" msgid "Sent Time" -msgstr "Sent Time" +msgstr "" msgid "There are no tasks to be sent!" -msgstr "There are no tasks to be sent!" +msgstr "" msgid "No historical tasks!" -msgstr "No historical tasks!" +msgstr "" msgid "Loading..." msgstr "Betöltés…" msgid "No AMS" -msgstr "No AMS" +msgstr "" msgid "Send to Multi-device" -msgstr "Send to Multi-device" +msgstr "" msgid "Preparing print job" msgstr "Nyomtatási feladat előkészítése" @@ -3455,19 +3408,19 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "Use External Spool" +msgstr "" msgid "Use AMS" -msgstr "Use AMS" +msgstr "" msgid "Select Printers" -msgstr "Select Printers" +msgstr "" -msgid "Ams Status" -msgstr "AMS Status" +msgid "AMS Status" +msgstr "" msgid "Printing Options" -msgstr "Printing Options" +msgstr "" msgid "Bed Leveling" msgstr "Asztalszintezés" @@ -3479,25 +3432,22 @@ msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "Send Options" +msgstr "" msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" "printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" +msgstr "" msgid "Wait" -msgstr "Wait" +msgstr "" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" -"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Send" msgstr "Küldés" @@ -3521,7 +3471,7 @@ msgid "The name is not allowed to end with space character." msgstr "A név nem végződhet szóközzel." msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." +msgstr "" msgid "Origin" msgstr "Origó" @@ -3591,9 +3541,10 @@ msgstr "Válassz egy STL fájlt az asztal textúrájának importálásához:" msgid "Bed Shape" msgstr "Asztal alakja" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" "Az ajánlott minimum hőmérséklet kevesebb, mint 190 fok, vagy az ajánlott " "maximális hőmérséklet nagyobb, mint 300 fok.\n" @@ -3602,8 +3553,6 @@ msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" -"The recommended minimum temperature cannot be higher than the recommended " -"maximum temperature.\n" msgid "Please check.\n" msgstr "Kérjük, ellenőrizd.\n" @@ -3620,8 +3569,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Az ajánlott fúvóka hőmérséklet ehhez a filament típushoz [%d, %d] Celsius-fok" @@ -3634,13 +3583,10 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" -msgstr "" -"Current chamber temperature is higher than the material's safe temperature; " -"this may result in material softening and nozzle clogs.The maximum safe " +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " "temperature for the material is %d" +msgstr "" msgid "" "Too small layer height.\n" @@ -3699,7 +3645,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3750,15 +3696,13 @@ msgid "" "Spiral mode only works when wall loops is 1, support is disabled, top shell " "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgstr "" -"Spiral mode only works when wall loops is 1, support is disabled, top shell " -"layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." msgstr "" " Az I3-szerkezetű gépek azonban nem fognak timelapse videókat készíteni." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3818,7 +3762,7 @@ msgstr "Nyomtatás szüneteltetve a felhasználó által" msgid "Pause of front cover falling" msgstr "Szünet az előlap leesése miatt" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Micro Lidar kalibrálása" msgid "Calibrating extrusion flow" @@ -3854,7 +3798,7 @@ msgstr "Szüneteltetve a kamra hőmérséklet-szabályzó hibája miatt" msgid "Cooling chamber" msgstr "Kamra hűtése" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Szüneteltetve a felhasználó által beillesztett G-kód miatt" msgid "Motor noise showoff" @@ -3898,32 +3842,23 @@ msgstr "A frissítés sikertelen." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." -msgstr "" -"The current chamber temperature or the target chamber temperature exceeds " "45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." +msgstr "" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " -"above 45℃." -msgstr "" "Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " "to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." +msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " -"automatically be set to 0℃." -msgstr "" -"When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." +msgstr "" -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Nem sikerült elindítani a nyomtatási feladatot" msgid "" @@ -3936,7 +3871,7 @@ msgstr "Az anyagáramlás kalibrációs paramétere érvénytelen" msgid "Selected diameter and machine diameter do not match" msgstr "A kiválasztott átmérő és a nyomtatóban megadott átmérő nem egyezik" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Nem sikerült létrehozni a kalibrációs G-kódot" msgid "Calibration error" @@ -3949,14 +3884,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "A Bambu PET-CF/PA6-CF filament nem használható az AMS-sel." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "A nedves PVA rugalmassá válik és elakadhat az AMS belsejében; kérjük, " "használat előtt alaposan szárítsd ki." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "A CF/GF filament rideg és törékeny, ezért könnyen eltörhet vagy elakadhat az " @@ -3972,7 +3907,7 @@ msgstr "" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -4013,7 +3948,7 @@ msgid "Specific for %1%" msgstr "" msgid "Presets" -msgstr "Presets" +msgstr "" msgid "Print settings" msgstr "Nyomtatási beállítások" @@ -4031,7 +3966,7 @@ msgid "parameter name" msgstr "paraméter neve" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s nem lehet százalék" #, c-format, boost-format @@ -4043,7 +3978,7 @@ msgstr "Paraméter validáció" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Value %s is out of range. The valid range is from %d to %d." +msgstr "" msgid "Value is out of range." msgstr "Az érték tartományon kívül esik." @@ -4121,7 +4056,7 @@ msgstr "Ventilátor-fordulatszám:" msgid "Temperature: " msgstr "Hőmérséklet:" -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "G-kódok betöltése" msgid "Generating geometry vertex data" @@ -4131,7 +4066,7 @@ msgid "Generating geometry index data" msgstr "Geometriai index adatok generálása" msgid "Statistics of All Plates" -msgstr "Statistics of All Plates" +msgstr "" msgid "Display" msgstr "Megjelenítés" @@ -4152,7 +4087,7 @@ msgid "Total time" msgstr "Teljes idő" msgid "Total cost" -msgstr "Total cost" +msgstr "" msgid "up to" msgstr "legfeljebb" @@ -4218,7 +4153,7 @@ msgid "travel" msgstr "mozgás" msgid "Extruder" -msgstr "Extruder" +msgstr "" msgid "Filament change times" msgstr "Filamentcserék száma" @@ -4235,10 +4170,7 @@ msgstr "Nyomtatás" msgid "Printer" msgstr "Nyomtató" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4248,10 +4180,10 @@ msgid "Normal mode" msgstr "Normál mód" msgid "Total Filament" -msgstr "Total Filament" +msgstr "" msgid "Model Filament" -msgstr "Model Filament" +msgstr "" msgid "Prepare time" msgstr "Előkészítési idő" @@ -4323,7 +4255,7 @@ msgid "Tool Move" msgstr "Fej mozgatása" msgid "Tool Rotate" -msgstr "Tool Rotate" +msgstr "" msgid "Move Object" msgstr "Objektum mozgatása" @@ -4347,7 +4279,7 @@ msgid "Spacing" msgstr "Térköz" msgid "0 means auto spacing." -msgstr "0 means auto spacing." +msgstr "" msgid "Auto rotate for arrangement" msgstr "Automatikus forgatás az elrendezéshez" @@ -4364,8 +4296,11 @@ msgstr "Igazítás az Y-tengelyhez" msgid "Add plate" msgstr "Tálca hozzáadása" -msgid "Auto orient" -msgstr "Automatikus orientáció" +msgid "Auto orient all/selected objects" +msgstr "Összes/kiválasztott objektum automatikus orientációja" + +msgid "Auto orient all objects on current plate" +msgstr "Aktuális tálca összes objektumának automatikus orientációja" msgid "Arrange all objects" msgstr "Összes objektum elrendezése" @@ -4388,8 +4323,8 @@ msgstr "Tálca kiválasztása" msgid "Assembly Return" msgstr "Vissza az összeszereléshez" -msgid "return" -msgstr "vissza" +msgid "Return" +msgstr "Vissza" msgid "Paint Toolbar" msgstr "Festés eszköztár" @@ -4417,24 +4352,24 @@ msgstr "Méret:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Egy objektum a tálca határvonalán túlra került." msgid "A G-code path goes beyond the max print height." msgstr "A G-kód útvonala túlmegy a maximális nyomtatási magasságon." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "A G-kód útvonala túlmegy a tálca peremén." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Csak az éppen szerkesztett objektum látható." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4515,7 +4450,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Nyomtató csatlakoztatása (LAN)" msgid "Please input the printer access code:" @@ -4562,7 +4497,7 @@ msgid "No" msgstr "Nem" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "will be closed before creating a new model. Do you want to continue?" +msgstr "" msgid "Slice plate" msgstr "Tálca szeletelése" @@ -4703,13 +4638,13 @@ msgid "Load models contained within a zip archive" msgstr "" msgid "Import Configs" -msgstr "Import Configs" +msgstr "" msgid "Load configs" -msgstr "Load configs" +msgstr "" msgid "Import" -msgstr "Import" +msgstr "" msgid "Export all objects as one STL" msgstr "Az összes objektum exportálása egy STL-ként" @@ -4718,10 +4653,10 @@ msgid "Export all objects as STLs" msgstr "Az összes objektum exportálása STL-ként" msgid "Export Generic 3MF" -msgstr "Export Generic 3MF" +msgstr "" msgid "Export 3mf file without using some 3mf-extensions" -msgstr "Export 3mf file without using some 3mf-extensions" +msgstr "" msgid "Export current sliced file" msgstr "Aktuális szeletelt fájl exportálása" @@ -4815,19 +4750,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4839,19 +4774,19 @@ msgstr "" msgid "Show &Labels" msgstr "Címkék megjelenítése" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Objektumcímkék megjelenítése a 3D-térben" msgid "Show &Overhang" -msgstr "Show &Overhang" +msgstr "" -msgid "Show object overhang highlight in 3D scene" -msgstr "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." +msgstr "" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" @@ -4897,7 +4832,7 @@ msgid "Retraction test" msgstr "Visszahúzás teszt" msgid "Orca Tolerance Test" -msgstr "Orca Tolerance Test" +msgstr "" msgid "Max flowrate" msgstr "Max. anyagáramlás" @@ -4972,10 +4907,10 @@ msgid "Overwrite config" msgstr "" msgid "Yes to All" -msgstr "Yes to All" +msgstr "" msgid "No to All" -msgstr "No to All" +msgstr "" msgid "Choose a directory" msgstr "Válassz egy mappát" @@ -4987,7 +4922,7 @@ msgstr[0] "" msgstr[1] "" msgid "Export result" -msgstr "Export Result" +msgstr "" msgid "Select profile to load:" msgstr "Válaszd ki a betölteni kívánt profilt:" @@ -5006,7 +4941,7 @@ msgid "" msgstr "" msgid "Import result" -msgstr "Import result" +msgstr "" msgid "File is missing" msgstr "Hiányzik a fájl" @@ -5018,7 +4953,7 @@ msgid "Filament Settings" msgstr "Filament beállítások" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -5057,7 +4992,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "A nyomtató kamerája hibásan működik." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Probléma merült fel. Kérjük, frissítsd a nyomtató firmware-ét, és próbáld " "meg újra." @@ -5065,7 +5000,6 @@ msgstr "" msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." msgstr "A csatlakozáshoz add meg a nyomtató IP-címét." @@ -5078,7 +5012,7 @@ msgstr "" "Csatlakozás sikertelen. Kérjük, ellenőrizd a hálózatot, és próbáld újra" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Kérjük, ellenőrizd a hálózatot, és próbáld újra. Ha a probléma továbbra is " @@ -5126,10 +5060,10 @@ msgid "Playing..." msgstr "Lejátszás..." msgid "Year" -msgstr "Year" +msgstr "" msgid "Month" -msgstr "Month" +msgstr "" msgid "All Files" msgstr "Minden fájl" @@ -5153,7 +5087,7 @@ msgid "Switch to video files." msgstr "Váltás a videófájlokra." msgid "Switch to 3mf model files." -msgstr "Switch to 3mf model files." +msgstr "" msgid "Delete selected files from printer." msgstr "Kijelölt fájlok törlése a nyomtatóról." @@ -5174,26 +5108,24 @@ msgid "Refresh" msgstr "Frissítés" msgid "Reload file list from printer." -msgstr "Reload file list from printer." +msgstr "" msgid "No printers." -msgstr "No printers." +msgstr "" msgid "Loading file list..." -msgstr "Loading file list..." +msgstr "" msgid "No files" msgstr "Nincs fájl" msgid "Load failed" -msgstr "Load failed" +msgstr "" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" -"Browsing file in SD card is not supported in current firmware. Please update " -"the printer firmware." msgid "" "Please check if the SD card is inserted into the printer.\n" @@ -5203,10 +5135,10 @@ msgstr "" "Ha továbbra sem olvasható, próbáld meg formázni az SD-kártyát." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN Connection Failed (Failed to view sdcard)" +msgstr "" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "Browsing file in SD card is not supported in LAN Only Mode." +msgstr "" #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" @@ -5216,17 +5148,17 @@ msgstr[0] "" msgstr[1] "" msgid "Delete files" -msgstr "Delete files" +msgstr "" #, c-format, boost-format msgid "Do you want to delete the file '%s' from printer?" -msgstr "Do you want to delete the file '%s' from printer?" +msgstr "" msgid "Delete file" -msgstr "Delete file" +msgstr "" msgid "Fetching model information..." -msgstr "Fetching model information..." +msgstr "" msgid "Failed to fetch model information from printer." msgstr "Nem sikerült letölteni a modellinfomációt a nyomtatóról." @@ -5235,8 +5167,8 @@ msgid "Failed to parse model information." msgstr "Nem sikerült feldolgozni a modellinformációkat" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" #, c-format, boost-format @@ -5248,8 +5180,6 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" -"File: %s\n" -"Title: %s\n" msgid "Download waiting..." msgstr "Várakozás letöltésre..." @@ -5271,8 +5201,6 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Reconnecting the printer, the operation cannot be completed immediately, " -"please try again later." msgid "File does not exist." msgstr "A fájl nem létezik." @@ -5336,7 +5264,7 @@ msgid "0" msgstr "0" msgid "Layer: N/A" -msgstr "Layer: N/A" +msgstr "" msgid "Clear" msgstr "Törlés" @@ -5345,8 +5273,6 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" -"You have completed printing the mall model, \n" -"but synchronizing rating information has failed." msgid "How do you like this printing file?" msgstr "Hogy tetszik ez a nyomtatási fájl?" @@ -5375,7 +5301,7 @@ msgid "Control" msgstr "Vezérlés" msgid "Printer Parts" -msgstr "Printer Parts" +msgstr "" msgid "Print Options" msgstr "Nyomtatási lehetőségek" @@ -5422,15 +5348,15 @@ msgstr "In Cloud Slicing Queue, there are %s tasks ahead of you." #, c-format, boost-format msgid "Layer: %s" -msgstr "Layer: %s" +msgstr "" #, c-format, boost-format msgid "Layer: %d/%d" -msgstr "Layer: %d/%d" +msgstr "" +#, fuzzy msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" "Kérjük, melegítsd a fúvókát 170 fok fölé a filament betöltése vagy kihúzása " "előtt." @@ -5441,7 +5367,7 @@ msgstr "Még kitöltődik" msgid "Still load" msgstr "Még töltődik" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Válassz egy AMS-helyet a kalibrálás előtt" msgid "" @@ -5490,14 +5416,11 @@ msgstr "Elküldés" msgid "Please click on the star first." msgstr "Kérjük, először kattints a csillagokra." -msgid "InFo" -msgstr "Infó" - msgid "Get oss config failed." msgstr "OSS-konfiguráció letöltése sikertelen." msgid "Upload Pictures" -msgstr "Upload Pictures" +msgstr "" msgid "Number of images successfully uploaded" msgstr "Sikeresen feltöltött képek száma" @@ -5506,13 +5429,13 @@ msgid " upload failed" msgstr " feltöltés sikertelen" msgid " upload config prase failed\n" -msgstr " upload config prase failed\n" +msgstr "" msgid " No corresponding storage bucket\n" msgstr " Nincs megfelelő tárolóhely\n" -msgid " can not be opened\n" -msgstr " cannot be opened\n" +msgid " cannot be opened\n" +msgstr "" msgid "" "The following issues occurred during the process of uploading images. Do you " @@ -5536,13 +5459,10 @@ msgid "obtaining instance_id failed\n" msgstr "Az instance_id beszerzése sikertelen\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" -"\n" -" error code: " -msgstr "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " +msgstr "" msgid "error message: " msgstr "hibaüzenet: " @@ -5550,15 +5470,12 @@ msgstr "hibaüzenet: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" -msgstr "" -"\n" -"\n" "Would you like to redirect to the webpage to give a rating?" +msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Néhány képet nem sikerült feltölteni. Szeretnéd, ha átirányítanánk a " "weboldalra az értékelés beküldéséhez?" @@ -5568,7 +5485,7 @@ msgstr "Legfeljebb 16 képet választhatsz ki." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "At least one successful print record of this print profile is required \n" "to give a positive rating (4 or 5 stars)." @@ -5613,7 +5530,7 @@ msgid "Newer 3mf version" msgstr "Újabb 3mf verzió" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5636,7 +5553,7 @@ msgid "Latest Version: " msgstr "Legújabb verzió: " msgid "Not for now" -msgstr "Not for now" +msgstr "" msgid "Server Exception" msgstr "" @@ -5703,7 +5620,7 @@ msgid "Open Folder." msgstr "Mappa megnyitása." msgid "Safely remove hardware." -msgstr "Safely remove hardware." +msgstr "" #, c-format, boost-format msgid "%1$d Object has custom supports." @@ -5719,7 +5636,7 @@ msgstr[1] "%1$d objektum színfestést tartalmaz." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "" msgstr[1] "" @@ -5744,7 +5661,7 @@ msgstr "Hiba:" msgid "Warning:" msgstr "Figyelem:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Sikeresen exportálva" msgid "Model file downloaded." @@ -5762,11 +5679,11 @@ msgstr " Kattints ide a telepítéshez." msgid "WARNING:" msgstr "FIGYELEM:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "A modellnek támaszra van szüksége! Kérjük, engedélyezd a támasz generálását." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "G-kód útvonal átfedés" msgid "Support painting" @@ -5776,7 +5693,7 @@ msgid "Color painting" msgstr "Színfestés" msgid "Cut connectors" -msgstr "Cut connectors" +msgstr "" msgid "Layers" msgstr "Rétegek" @@ -5842,16 +5759,16 @@ msgid "Allow Prompt Sound" msgstr "Hangjelzés engedélyezése" msgid "Filament Tangle Detect" -msgstr "Filament Tangle Detection" +msgstr "" msgid "Nozzle Clumping Detection" -msgstr "Nozzle Clumping Detection" +msgstr "" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Check if the nozzle is clumping by filament or other foreign objects." +msgstr "" msgid "Nozzle Type" -msgstr "Nozzle Type" +msgstr "Fúvóka Típus" msgid "Stainless Steel" msgstr "Rozsdamentes acél" @@ -5983,8 +5900,6 @@ msgid "" "Already did a synchronization, do you want to sync only changes or resync " "all?" msgstr "" -"Already did a synchronization; do you want to sync only changes or resync " -"all?" msgid "Sync" msgstr "Sync" @@ -6007,7 +5922,7 @@ msgstr "Szeretnéd elmenteni \"%1%\" változásait?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Sikeresen leválasztva. A(z) %s(%s) eszköz most már biztonságosan " @@ -6066,8 +5981,8 @@ msgstr "3mf betöltése" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "A 3mf fájl %s verziója újabb, mint a(z) %s verziója %s, a következő " "ismeretlen kulcsokat találtuk:" @@ -6084,30 +5999,31 @@ msgstr "" "frissítése." msgid "Invalid values found in the 3mf:" -msgstr "Invalid values found in the 3mf:" +msgstr "" msgid "Please correct them in the param tabs" -msgstr "Please correct them in the Param tabs" - -msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "The 3mf has following modified G-code in filament or printer presets:" +msgstr "" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"The 3mf has the following modified G-code in filament or printer presets:" +msgstr "" + +msgid "" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Kérjük, győződj meg arról, hogy ezek a módosított G-kódok biztonságosak, " "hogy elkerüld a nyomtató esetleges károsodását!" -msgid "Modified G-codes" -msgstr "Modified G-code" +msgid "Modified G-code" +msgstr "" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "A 3mf a következő egyedi filament- vagy nyomtatóbeállításokat tartalmazza:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Kérjük, győződj meg arról, hogy a beállításokban található G-kódok " @@ -6124,7 +6040,7 @@ msgstr "" "A nem támogatott szövegkódolás miatt helytelen karakterek jelenhetnek meg!" msgid "Remember my choice." -msgstr "Remember my choice." +msgstr "" #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." @@ -6167,9 +6083,10 @@ msgstr "Több részből álló objektumot észleltünk" msgid "The file does not contain any geometry data." msgstr "A fájl nem tartalmaz geometriai adatokat." +#, fuzzy msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Úgy tűnik, hogy az objektum túl nagy. Szeretnéd átméretezni, hogy " "illeszkedjen a nyomtatótér méretéhez?" @@ -6201,16 +6118,13 @@ msgid "Confirm Save As" msgstr "Mentés másként megerősítése" msgid "Delete object which is a part of cut object" -msgstr "Delete object which is a part of cut object" +msgstr "" msgid "" "You try to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed." msgstr "" -"You are trying to delete an object which is a part of a cut object.\n" -"This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed." msgid "The selected object couldn't be split." msgstr "A kijelölt objektumot nem lehet feldarabolni." @@ -6278,7 +6192,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Csak előnézeti mód:\n" "A betöltött fájl csak G-kódot tartalmaz, nem lehet továbblépni az " @@ -6313,13 +6227,13 @@ msgid "prepare 3mf file..." msgstr "3mf fájl előkészítése..." msgid "Download failed, unknown file format." -msgstr "Download failed; unknown file format." +msgstr "" -msgid "downloading project ..." +msgid "downloading project..." msgstr "projekt letöltése ..." msgid "Download failed, File size exception." -msgstr "Download failed; File size exception." +msgstr "" #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6352,7 +6266,7 @@ msgstr "SLA archívum importálása" msgid "The selected file" msgstr "A kiválasztott fájl" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "nem tartalmaz érvényes G-kódot." msgid "Error occurs while loading G-code file" @@ -6394,10 +6308,10 @@ msgstr "Egyszerre csak egy G-kód fájl nyitható meg." msgid "G-code loading" msgstr "G-code betöltése" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "A G-code fájlokat nem lehet a modellekkel együtt betölteni!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Előnézeti módban nem lehet modelleket hozzáadni!" msgid "All objects will be removed, continue?" @@ -6440,31 +6354,27 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try again." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try again." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "Reason: part \"%1%\" is empty." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "Reason: part \"%1%\" does not bound a volume." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "Reason: part \"%1%\" has self intersection." +msgstr "" #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "Reason: \"%1%\" and another part have no intersection." +msgstr "" msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be exported." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be exported." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6506,11 +6416,11 @@ msgid "Invalid number" msgstr "Érvénytelen szám" msgid "Plate Settings" -msgstr "Plate Settings" +msgstr "" #, boost-format msgid "Number of currently selected parts: %1%\n" -msgstr "Number of currently selected parts: %1%\n" +msgstr "" #, boost-format msgid "Number of currently selected objects: %1%\n" @@ -6554,8 +6464,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" @@ -6689,14 +6599,12 @@ msgid "" msgstr "" msgid "Zoom to mouse position" -msgstr "Zoom to mouse position" +msgstr "" msgid "" "Zoom in towards the mouse pointer's position in the 3D view, rather than the " "2D window center." msgstr "" -"Zoom in towards the mouse pointer's position in the 3D view, rather than the " -"2D window center." msgid "Use free camera" msgstr "Szabad kamera használata" @@ -6706,6 +6614,12 @@ msgstr "" "Ha engedélyezve van, szabad kamerát használ. Ha nincs engedélyezve, akkor " "kötött kamerát használ." +msgid "Swap pan and rotate mouse buttons" +msgstr "Felcserélt pásztázás és forgatás egérgombok" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Ha engedélyezve van, felcseréli a bal és jobb egérgomb pásztázási és forgatási funkcióit." + msgid "Reverse mouse zoom" msgstr "" @@ -6748,15 +6662,13 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." msgid "Auto arrange plate after cloning" msgstr "" @@ -6767,7 +6679,7 @@ msgstr "" msgid "Network" msgstr "" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/" "Folyamat)" @@ -6776,13 +6688,13 @@ msgid "User Sync" msgstr "Felhasználó szinkronizálás" msgid "Update built-in Presets automatically." -msgstr "Update built-in presets automatically." +msgstr "" msgid "System Sync" -msgstr "System Sync" +msgstr "" msgid "Clear my choice on the unsaved presets." -msgstr "Clear my choice on the unsaved presets." +msgstr "" msgid "Associate files to OrcaSlicer" msgstr "Fájlok társítása a OrcaSlicerhoz" @@ -6836,16 +6748,16 @@ msgid "Should printer/filament/process settings be loaded when opening a .3mf?" msgstr "" msgid "Maximum recent projects" -msgstr "Maximum recent projects" +msgstr "" msgid "Maximum count of recent projects" -msgstr "Maximum count of recent projects" +msgstr "" msgid "Clear my choice on the unsaved projects." -msgstr "Clear my choice on the unsaved projects." +msgstr "" -msgid "No warnings when loading 3MF with modified G-codes" -msgstr "No warnings when loading 3MF with modified G-code" +msgid "No warnings when loading 3MF with modified G-code" +msgstr "" msgid "Auto-Backup" msgstr "Automatikus biztonsági mentés" @@ -6853,14 +6765,12 @@ msgstr "Automatikus biztonsági mentés" msgid "" "Backup your project periodically for restoring from the occasional crash." msgstr "" -"Backup your project periodically to help with restoring from an occasional " -"crash." msgid "every" -msgstr "every" +msgstr "" msgid "The period of backup in seconds." -msgstr "The period of backup in seconds." +msgstr "" msgid "Downloads" msgstr "Letöltések" @@ -6875,7 +6785,7 @@ msgid "Develop mode" msgstr "Fejlesztői mód" msgid "Skip AMS blacklist check" -msgstr "Skip AMS blacklist check" +msgstr "" msgid "Home page and daily tips" msgstr "Kezdőoldal és napi tippek" @@ -6914,13 +6824,13 @@ msgid "Mouse wheel reverses when zooming" msgstr "Görgetési irány megfordítása nagyítás közben" msgid "Enable SSL(MQTT)" -msgstr "Enable SSL(MQTT)" +msgstr "" msgid "Enable SSL(FTP)" -msgstr "Enable SSL(FTP)" +msgstr "" msgid "Internal developer mode" -msgstr "Internal developer mode" +msgstr "" msgid "Log Level" msgstr "Naplózási szint" @@ -6961,10 +6871,10 @@ msgstr "debug mentés gomb" msgid "save debug settings" msgstr "hibakeresési beállítások mentése" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "DEBUG beállítások sikeresen elmentve!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Felhőkörnyezet megváltozott, kérjük, jelentkezz be újra!" msgid "System presets" @@ -6979,11 +6889,11 @@ msgstr "Nem kompatibilis beállítások" msgid "AMS filaments" msgstr "AMS filamentek" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Kattints a filament szín kiválasztásához" -msgid "Please choose the filament colour" -msgstr "Please choose the filament color" +msgid "Please choose the filament color" +msgstr "" msgid "Add/Remove presets" msgstr "Beállítások hozzáadása/eltávolítása" @@ -7000,7 +6910,7 @@ msgstr "Filament hozzáadása/eltávolítása" msgid "Add/Remove materials" msgstr "Anyagok hozzáadása/eltávolítása" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Nyomtatók kiválasztása/eltávolítása (rendszerbeállítások)" msgid "Create printer" @@ -7010,31 +6920,31 @@ msgid "The selected preset is null!" msgstr "A kiválasztott beállítás nulla!" msgid "End" -msgstr "End" +msgstr "" msgid "Customize" msgstr "Testreszabás" msgid "Other layer filament sequence" -msgstr "Other layer filament sequence" +msgstr "" msgid "Please input layer value (>= 2)." -msgstr "Please input layer value (>= 2)." +msgstr "" msgid "Plate name" -msgstr "Plate name" +msgstr "" msgid "Same as Global Print Sequence" -msgstr "Same as Global Print Sequence" +msgstr "" msgid "Print sequence" msgstr "Nyomtatás sorrendje" msgid "Same as Global" -msgstr "Same as Global" +msgstr "" msgid "Disable" -msgstr "Disable" +msgstr "" msgid "Spiral vase" msgstr "Spirál (váza)" @@ -7043,7 +6953,7 @@ msgid "First layer filament sequence" msgstr "Kezdőréteg filament sorrendje" msgid "Same as Global Plate Type" -msgstr "Same as Global Plate Type" +msgstr "" msgid "Same as Global Bed Type" msgstr "Ugyanaz, mint a globális tálca típusa" @@ -7072,13 +6982,13 @@ msgstr "3mf feltöltése" msgid "Jump to model publish web page" msgstr "Ugrás a modell közzététele weboldalra" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "Megjegyzés: Az előkészítés több percig is eltarthat. Kérjük várj." msgid "Publish" msgstr "Közzététel" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "A közzététel törlésre került" msgid "Slicing Plate 1" @@ -7103,7 +7013,7 @@ msgstr "Projekt a beállításon belül" msgid "Name is unavailable." msgstr "A név nem elérhető." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "A rendszerprofil felülírása nem engedélyezett" #, boost-format @@ -7111,10 +7021,12 @@ msgid "Preset \"%1%\" already exists." msgstr "A(z) \"%1%\" már létezik." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "A(z) \"%1%\" már létezik és nem kompatibilis a jelenlegi nyomtatóval." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Figyelem, a mentési művelet lecseréli ezt a beállítást" msgid "The name cannot be the same as a preset alias name." @@ -7178,19 +7090,19 @@ msgid "Busy" msgstr "Elfoglalt" msgid "Bambu Cool Plate" -msgstr "Bambu Cool Plate" +msgstr "" msgid "PLA Plate" -msgstr "PLA Plate" +msgstr "" msgid "Bambu Engineering Plate" -msgstr "Bambu Engineering Plate" +msgstr "" msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "High Temperature Plate" +msgstr "" msgid "Bambu Textured PEI Plate" msgstr "" @@ -7208,7 +7120,7 @@ msgid "send completed" msgstr "küldés befejezve" msgid "Error code" -msgstr "Error code" +msgstr "" msgid "No login account, only printers in LAN mode are displayed" msgstr "" @@ -7296,8 +7208,6 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" -"The selected printer (%s) is incompatible with the chosen printer profile in " -"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "A timelapse rögzítéséhez egy microSD kártyára van szükség." @@ -7332,16 +7242,13 @@ msgid "Errors" msgstr "Hibák" msgid "Please check the following:" -msgstr "Please check the following:" +msgstr "" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"The printer type selected when generating G-Code is not consistent with the " -"currently selected printer. It is recommended that you use the same printer " -"type for slicing." msgid "" "There are some unknown filaments in the AMS mappings. Please check whether " @@ -7365,25 +7272,19 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" -"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " -"If you changed your nozzle lately, please go to Device > Printer Parts to " -"change settings." #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" -"Printing high temperature material(%s material) with %s may cause nozzle " -"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Please fix the error above, otherwise printing cannot continue." +msgstr "" msgid "" "Please click the confirm button if you still want to proceed with printing." msgstr "" -"Please click the confirm button if you still want to proceed with printing." msgid "" "Connecting to the printer. Unable to cancel during the connection process." @@ -7399,13 +7300,13 @@ msgstr "" "miatt hamis eredményeket adhat." msgid "Automatic flow calibration using Micro Lidar" -msgstr "Automatic flow calibration using the Micro Lidar" +msgstr "" msgid "Modifying the device name" msgstr "Eszköz nevének módosítása" msgid "Bind with Pin Code" -msgstr "Bind with Pin Code" +msgstr "" msgid "Bind with Access Code" msgstr "" @@ -7423,7 +7324,6 @@ msgstr "A nyomtató nem kompatibilis a kiválasztott nyomtatóbeállításokkal. msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" -"A MicroSD card needs to be inserted before sending to the printer SD card." msgid "The printer is required to be in the same LAN as Orca Slicer." msgstr "" @@ -7439,28 +7339,28 @@ msgid "View all Daily tips" msgstr "Napi tippek megtekintése" msgid "Failed to create socket" -msgstr "Failed to create socket" +msgstr "" msgid "Failed to connect socket" -msgstr "Failed to connect socket" +msgstr "" msgid "Failed to publish login request" -msgstr "Failed to publish login request" +msgstr "" msgid "Get ticket from device timeout" -msgstr "Timeout getting ticket from device" +msgstr "" msgid "Get ticket from server timeout" -msgstr "Timeout getting ticket from server" +msgstr "" msgid "Failed to post ticket to server" -msgstr "Failed to post ticket to server" +msgstr "" msgid "Failed to parse login report reason" -msgstr "Failed to parse login report reason" +msgstr "" msgid "Receive login report timeout" -msgstr "Receive login report timeout" +msgstr "" msgid "Unknown Failure" msgstr "Ismeretlen hiba" @@ -7469,63 +7369,56 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" -"Please Find the Pin Code in Account page on printer screen,\n" -" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "Can't find Pin Code?" +msgstr "" msgid "Pin Code" -msgstr "Pin Code" +msgstr "" msgid "Binding..." -msgstr "Binding..." +msgstr "" msgid "Please confirm on the printer screen" -msgstr "Please confirm on the printer screen" +msgstr "" msgid "Log in failed. Please check the Pin Code." -msgstr "Log in failed. Please check the Pin Code." +msgstr "" msgid "Log in printer" msgstr "Bejelentkezés a nyomtatóra" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Szeretnél bejelentkezni a nyomtatóra a jelenlegi fiókkal?" msgid "Check the reason" -msgstr "Check the reason" +msgstr "" msgid "Read and accept" -msgstr "Read and accept" +msgstr "" msgid "Terms and Conditions" -msgstr "Terms and Conditions" +msgstr "" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " -"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " -"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "" "Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " "device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " "Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" msgid "and" -msgstr "and" +msgstr "" msgid "Privacy Policy" -msgstr "Privacy Policy" +msgstr "" msgid "We ask for your help to improve everyone's printer" -msgstr "We ask for your help to improve everyone's printer" +msgstr "" msgid "Statement about User Experience Improvement Program" -msgstr "Statement about User Experience Improvement Program" +msgstr "" #, c-format, boost-format msgid "" @@ -7535,26 +7428,15 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" -"In the 3D Printing community, we learn from each other's successes and " -"failures to adjust our own slicing parameters and settings. %s follows the " -"same principle and uses machine learning to improve its performance from the " -"successes and failures of the vast number of prints by our users. We are " -"training %s to be smarter by feeding them the real-world data. If you are " -"willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " -"not collect any Personal Data by which an individual can be identified " -"directly or indirectly, including without limitation names, addresses, " -"payment information, or phone numbers. By enabling this service, you agree " -"to these terms and the statement about Privacy Policy." msgid "Statement on User Experience Improvement Plan" -msgstr "Statement on User Experience Improvement Plan" +msgstr "" msgid "Log in successful." msgstr "Sikeres bejelentkezés." @@ -7590,14 +7472,14 @@ msgstr "" "Kattints az összes beállítás utolsó mentett változatának visszaállításához." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "A sima timelapse miatt szükség van a törlőtoronyra. Nélküle előfordulhatnak " "hibák a nyomtatott tárgyon. Biztos, hogy kikapcsolod a törlőtornyot?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "A sima timelapse miatt szükség van a törlőtoronyra. Nélküle előfordulhatnak " @@ -7607,18 +7489,14 @@ msgid "Still print by object?" msgstr "Továbbra is tárgyanként szeretnél nyomtatni?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7642,15 +7520,15 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "A rétegmagasság meghaladja a Nyomtatóbeállítások -> Extruder -> " "Rétegmagasság limitek menüpontban megadott értéket, ez minőségbeli " "problémákat okozhat a nyomtatás során." -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "" -"Szeretnéd az értéket automatikusan a beállított tartományhoz igazítani? \n" +"Szeretnéd az értéket automatikusan a beállított tartományhoz igazítani?\n" msgid "Adjust" msgstr "Módosítás" @@ -7660,25 +7538,17 @@ msgstr "Mellőzés" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush. Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " -"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." -msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications. Please use with the latest printer firmware." +msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7856,10 +7726,10 @@ msgid "G-code output" msgstr "G-kód kimenet" msgid "Post-processing Scripts" -msgstr "Post-processing Scripts" +msgstr "" msgid "Notes" -msgstr "Notes" +msgstr "" msgid "Frequent" msgstr "Gyakori" @@ -7921,56 +7791,56 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" -msgstr "Cool Plate" +msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Asztalhőmérséklet a hideg tálca használatával. A 0 érték azt jelenti, hogy a " "filament nem támogatja a Cool Plate-re történő nyomtatást" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -msgid "Engineering plate" -msgstr "Engineering plate" +msgid "Engineering Plate" +msgstr "" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Asztalhőmérséklet a mérnöki tálca használatával. A 0 érték azt jelenti, hogy " "a filament nem támogatja az Engineering Plate-re történő nyomtatást" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Smooth PEI Plate / High Temp Plate" +msgstr "" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Az asztal hőmérséklete Smooth PEI / High Temperature tálca használatakor. A " "0 érték azt jelenti, hogy a filament nem támogatja Smooth PEI / High " "Temperature tálcára történő nyomtatást" msgid "Textured PEI Plate" -msgstr "Textured PEI Plate" +msgstr "" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Asztalhőmérséklet a texturált PEI tálca használatával. A 0 érték azt " "jelenti, hogy a filament nem támogatja a High Temp Plate-re történő " @@ -8034,14 +7904,14 @@ msgstr "Filament befejező G-kód" msgid "Wipe tower parameters" msgstr "Törlőtorony paraméterek" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "" "Szerszámváltási paraméterek egy extruderes Több Anyagos (MM) nyomtatónál" msgid "Ramming settings" msgstr "Tömörítési beállítások" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" msgid "Dependencies" @@ -8053,7 +7923,7 @@ msgstr "Profilfüggőségek" msgid "Printable space" msgstr "Nyomtatási terület" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "" @@ -8076,7 +7946,7 @@ msgstr "" msgid "Accessory" msgstr "Tartozékok" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "Gép G-kód" msgid "Machine start G-code" @@ -8094,7 +7964,7 @@ msgstr "Rétegváltás előtti G-kód" msgid "Layer change G-code" msgstr "Rétegváltás G-kód" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "Timelapse G-kód" msgid "Change filament G-code" @@ -8183,7 +8053,7 @@ msgstr "" "A(z) %d filamentbeállítás és a(z) %d folyamatbeállítás ehhez a nyomtatóhoz " "kapcsolódik. Ha törlöd a nyomtatót, akkor ezek a beállítások is törlődnek." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "A más beállítások által örökölt beállítások nem törölhetők!" msgid "The following presets inherit this preset." @@ -8202,11 +8072,11 @@ msgstr[0] "A következő beállítás szintén törlődni fog." msgstr[1] "A következő beállítások szintén törlődni fognak." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Biztosan törlöd a kiválasztott beállítást? \n" +"Biztosan törlöd a kiválasztott beállítást?\n" "Ha ez a filament jelenleg használatban van a nyomtatón, kérjük, töröld az " "adott férőhelyen a filamentadatokat." @@ -8313,14 +8183,12 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "You have changed some settings of preset \"%1%\"." +msgstr "" msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" -"\n" -"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8329,7 +8197,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "You have previously modified your settings." +msgstr "" msgid "" "\n" @@ -8350,7 +8218,7 @@ msgid "Show all presets (including incompatible)" msgstr "Minden beállítás megjelenítése (beleértve az inkompatibiliseket is)" msgid "Select presets to compare" -msgstr "Select presets to compare" +msgstr "" msgid "" "You can only transfer to current active profile because it has been modified." @@ -8411,7 +8279,7 @@ msgstr "Új verzió érhető el" msgid "Configuration update" msgstr "Konfiguráció frissítés" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Új konfigurációs csomag elérhető, szeretnéd telepíteni?" msgid "Description:" @@ -8420,13 +8288,13 @@ msgstr "Leírás:" msgid "Configuration incompatible" msgstr "Nem kompatibilis konfiguráció" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "a konfigurációs csomag nem kompatibilis a jelenlegi alkalmazással." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "A konfigurációs csomag nem kompatibilis a jelenlegi alkalmazással.\n" "%s frissíti a konfigurációs csomagot, hogy az alkalmazás elindulhasson." @@ -8435,7 +8303,7 @@ msgstr "" msgid "Exit %s" msgstr "Kilépés %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" "A konfigurációs csomag nem kompatibilis a Orca Slicer jelenlegi verziójával." @@ -8449,58 +8317,54 @@ msgid "The configuration is up to date." msgstr "A konfiguráció naprakész." msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "" msgid "Recommended " -msgstr "Recommended " +msgstr "" msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "" msgid "Quick set:" -msgstr "Quick set:" +msgstr "" msgid "Color match" -msgstr "Color match" +msgstr "" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "" msgid "Append" -msgstr "Append" +msgstr "" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "" msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "" msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "" msgid "Map Filament" -msgstr "Map Filament" +msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" msgid "Ramming customization" msgstr "Tömörítés testreszabása" @@ -8607,7 +8471,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" @@ -8633,7 +8497,7 @@ msgid "Objects list" msgstr "Objektumok listája" msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files" -msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files" +msgstr "" msgid "⌘+Shift+G" msgstr "⌘+Shift+G" @@ -8675,13 +8539,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Automatikusan beállítja a kijelölt objektumok vagy az összes objektum " "tájolását. Ha vannak kijelölt objektumok, akkor csak a kijelölteket, " -"ellenkező esetben az aktuális tálcán lévő összes objektumot orientálja." +"ellenkező esetben pedig a projektben levő összes objektumot orientálja." + +msgid "Auto orients all objects on the active plate." +msgstr "Automatikusan orientálja az aktuális tálcán levő összes objektumot." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8780,28 +8647,40 @@ msgid "Select all objects" msgstr "Összes objektum kijelölése" msgid "Gizmo move" -msgstr "Gizmo move" +msgstr "Gizmo mozgatás" msgid "Gizmo scale" -msgstr "Gizmo scale" +msgstr "Gizmo átméretezés" msgid "Gizmo rotate" -msgstr "Gizmo rotate" +msgstr "Gizmo forgatás" msgid "Gizmo cut" -msgstr "Gizmo cut" +msgstr "Gizmo vágás" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Place face on bed" +msgid "Gizmo place face on bed" +msgstr "Gizmo felület tárgyasztalra illesztése" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo modellháló logikai műveletek" msgid "Gizmo SLA support points" -msgstr "Gizmo SLA support points" +msgstr "Gizmo SLA támaszpontok" msgid "Gizmo FDM paint-on seam" -msgstr "Gizmo FDM paint-on seam" +msgstr "Gizmo FDM varrat festés" -msgid "Gizmo Text emboss / engrave" -msgstr "" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo szöveg dombornyomás/gravírozás" + +msgid "Gizmo measure" +msgstr "Gizmo mérés" + +msgid "Gizmo assemble" +msgstr "Gizmo összeállítás" + +msgid "Gizmo brim ears" +msgstr "Gizmo karimás fülek" msgid "Zoom in" msgstr "Zoom közelítés" @@ -8810,13 +8689,13 @@ msgid "Zoom out" msgstr "Zoom távolítás" msgid "Switch between Prepare/Preview" -msgstr "" +msgstr "Váltás előkészítés/előnézet között" msgid "Plater" -msgstr "Plater" +msgstr "" msgid "Move: press to snap by 1mm" -msgstr "Move: press to snap by 1mm" +msgstr "" msgid "⌘+Mouse wheel" msgstr "⌘+Egérgörgő" @@ -8842,8 +8721,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Extruder szám beállítása az objektumok és tárgyak számára" -msgid "Delete objects, parts, modifiers " -msgstr "Objektumok, tárgyak, módosítók törlése " +msgid "Delete objects, parts, modifiers" +msgstr "Objektumok, tárgyak, módosítók törlése" msgid "Select the object/part and press space to change the name" msgstr "" @@ -8876,7 +8755,7 @@ msgstr "Vízszintes csúszka - Az aktív csúszka jobbra mozgatása" msgid "On/Off one layer mode of the vertical slider" msgstr "Függőleges csúszka egyréteges módjának ki/bekapcsolása" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "" msgid "Move slider 5x faster" @@ -8895,7 +8774,7 @@ msgid "Release Note" msgstr "Verzióinformáció" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "%s verzió frissítési információi:" msgid "Network plug-in update" @@ -8908,7 +8787,7 @@ msgstr "" "következő indításakor." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Új hálózati bővítmény (%s) érhető el. Szeretnéd telepíteni?" msgid "New version of Orca Slicer" @@ -8918,43 +8797,43 @@ msgid "Skip this Version" msgstr "Verzió kihagyása" msgid "Done" -msgstr "Done" +msgstr "" msgid "resume" -msgstr "resume" +msgstr "" msgid "Resume Printing" -msgstr "Resume Printing" +msgstr "" -msgid "Resume Printing(defects acceptable)" -msgstr "Resume Printing (defects acceptable)" +msgid "Resume Printing (defects acceptable)" +msgstr "" -msgid "Resume Printing(problem solved)" -msgstr "Resume Printing (problem solved)" +msgid "Resume Printing (problem solved)" +msgstr "" msgid "Stop Printing" -msgstr "Stop Printing" +msgstr "" msgid "Check Assistant" -msgstr "Check Assistant" +msgstr "" msgid "Filament Extruded, Continue" -msgstr "Filament Extruded, Continue" +msgstr "" msgid "Not Extruded Yet, Retry" -msgstr "Not Extruded Yet, Retry" +msgstr "" msgid "Finished, Continue" -msgstr "Finished, Continue" +msgstr "" msgid "Load Filament" msgstr "Filament betöltés" msgid "Filament Loaded, Resume" -msgstr "Filament Loaded, Resume" +msgstr "" msgid "View Liveview" -msgstr "View Liveview" +msgstr "" msgid "Confirm and Update Nozzle" msgstr "Fúvóka lecserélésének megerősítése" @@ -9047,10 +8926,10 @@ msgstr "Legfrissebb verzió" msgid "Updating" msgstr "Frissítés" -msgid "Updating failed" +msgid "Update failed" msgstr "A frissítés nem sikerült" -msgid "Updating successful" +msgid "Update successful" msgstr "Sikeres frissítés" msgid "" @@ -9181,7 +9060,7 @@ msgstr "" "nincs ütközés." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Nem sikerült a G-kód generálása érvénytelen egyedi G-kód miatt.\n" @@ -9233,7 +9112,7 @@ msgid "Multiple" msgstr "Többszörös" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Nem sikerült kiszámítani %1% vonalszélességét. “%2%” értéke nem érhető el " @@ -9374,9 +9253,9 @@ msgstr "" "ütközések.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Nem nyomtathatsz több, nagy hőmérséklet-különbséggel rendelkező filamentet " "egyidőben. Ellenkező esetben az extruder és a fúvóka eltömődhet vagy " @@ -9456,44 +9335,38 @@ msgstr "" "Repetier G-kód szoftverekkel használható." msgid "The prime tower is not supported in \"By object\" print." -msgstr "A prime tower is not supported in “By object” print." +msgstr "" msgid "" "The prime tower is not supported when adaptive layer height is on. It " "requires that all objects have the same layer height." msgstr "" -"A prime tower is not supported when adaptive layer height is on. It requires " -"that all objects have the same layer height." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" -"A prime tower requires any “support gap” to be a multiple of layer height." -msgid "The prime tower requires that all objects have the same layer heights" -msgstr "A prime tower requires that all objects have the same layer height." +msgid "The prime tower requires that all objects have the same layer heights." +msgstr "" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" -"A prime tower requires that all objects are printed over the same number of " -"raft layers." msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" "The prime tower requires that all objects are sliced with the same layer " "heights." msgstr "" -"A prime tower requires that all objects are sliced with the same layer " -"height." msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "A törlőtorony használatához minden objektumnak azonos változó " "rétegmagassággal kell rendelkeznie." @@ -9518,7 +9391,7 @@ msgstr "" msgid "" "The prime tower requires that support has the same layer height with object." msgstr "" -"A prime tower requires that support has the same layer height as the object." +"The prime tower requires that support has the same layer height as the object." msgid "" "Organic support tree tip diameter must not be smaller than support material " @@ -9541,7 +9414,7 @@ msgstr "" "Támasz kényszerítőket használtál, de a támaszok nincsenek engedélyezve. " "Kérjük, engedélyezd a támaszokat." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "A rétegmagasság nem lehet nagyobb a fúvóka átmérőjénél." msgid "" @@ -9640,8 +9513,8 @@ msgid "Elephant foot compensation" msgstr "Elefántláb kompenzáció" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Zsugorítja a kezdőréteget a tárgyasztalon, hogy kompenzálja az elefántláb-" "hatást" @@ -9661,7 +9534,7 @@ msgstr "réteg" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Az egyes rétegek szeletelési magassága. A kisebb rétegmagasság pontosabb " "nyomtatást és több időt jelent" @@ -9669,7 +9542,7 @@ msgstr "" msgid "Printable height" msgstr "Nyomtatási magasság" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "Ez a maximális nyomtatható magasság, amelyet a nyomtatótér magassága " "korlátoz." @@ -9677,7 +9550,7 @@ msgstr "" msgid "Preferred orientation" msgstr "" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" @@ -9686,7 +9559,7 @@ msgstr "Nyomtató beállítások neve" msgid "Use 3rd-party print host" msgstr "" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" msgid "Hostname, IP or URL" @@ -9709,7 +9582,7 @@ msgid "Device UI" msgstr "Eszköz UI" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Add meg az eszköz felhasználói felületének URL-címét, ha az nem azonos a " "print_host címével." @@ -9724,7 +9597,7 @@ msgstr "" "A Orca Slicer képes G-kód fájlokat feltölteni a nyomtatóra. Ennek a mezőnek " "tartalmaznia kell a hitelesítéshez szükséges API-kulcsot vagy jelszót." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "A nyomtató neve" msgid "HTTPS CA File" @@ -9757,7 +9630,7 @@ msgstr "" "HTTPS-tanúsítványok visszavonásának ellenőrzését. Ez az opció akkor lehet " "segítségedre, ha nem sikerül csatlakoznod egy általad aláírt tanúsítvánnyal." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "A fizikai nyomtatóhoz kapcsolódó beállítások nevei" msgid "Authorization Type" @@ -9769,21 +9642,22 @@ msgstr "API-kulcs" msgid "HTTP digest" msgstr "HTTP digest" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Kerülje a falak keresztezését" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Kerülje a falon keresztül való áthaladást, ami nyomot hagyhat a felületen" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Kerülje a falak keresztezését - Max kitérő hossza" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "A kitérő maximális hossza a fal keresztezésének elkerüléséhez: a nyomtató " "figyelmen kívül hagyja a kitérést, ha az ehhez szükséges távolság nagyobb, " @@ -9798,8 +9672,8 @@ msgid "Other layers" msgstr "Többi réteg" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Az asztal hőmérséklete a kezdőréteg kivételével. A 0 érték azt jelenti, hogy " "a filament nem támogatja a Cool Plate-re történő nyomtatást" @@ -9808,27 +9682,27 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Az asztal hőmérséklete a kezdeti réteg kivételével. A 0 érték azt jelenti, " "hogy a szál nem támogatja az Engineering Plate-re történő nyomtatást" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Az asztal hőmérséklete a kezdeti réteg kivételével. A 0 érték azt jelenti, " "hogy a szál nem támogatja a High Temp Plate-re történő nyomtatást" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Asztalhőmérséklet az első réteg után. A 0 érték azt jelenti, hogy a filament " "nem támogatja texturált PEI tálcára történő nyomtatást." @@ -9840,71 +9714,65 @@ msgid "Initial layer bed temperature" msgstr "Első réteg asztalhőmérséklete" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "A kezdőréteg asztalhőmérséklete. A 0 érték azt jelenti, hogy a filament nem " "támogatja a Cool Plate-re történő nyomtatást" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "A kezdőréteg asztalhőmérséklete. A 0 érték azt jelenti, hogy a filament nem " "támogatja a Engineering Plate-re történő nyomtatást" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "A kezdőréteg asztalhőmérséklete. A 0 érték azt jelenti, hogy a filament nem " "támogatja a High Temp Plate-re történő nyomtatást" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Az első réteg asztalhőmérsékletének beállított 0 érték azt jelenti, hogy a " "filament nem támogatja texturált PEI tálcára történő nyomtatást." -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Nyomtató által támogatott asztaltípusok" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "Engineering Plate" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" -msgstr "" - msgid "First layer print sequence" msgstr "Az első réteg nyomtatási sorrendje" msgid "Other layers print sequence" -msgstr "Other layers print sequence" +msgstr "" msgid "The number of other layers print sequence" -msgstr "The number of other layers print sequence" +msgstr "" msgid "Other layers filament sequence" -msgstr "Other layers filament sequence" +msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Ez a G-kód minden rétegváltáshoz bekerül a Z tengely emelése előtt." msgid "Bottom shell layers" @@ -9913,7 +9781,7 @@ msgstr "Alsó héj rétegek" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Ez az alsó héj szilárd rétegeinek száma, beleértve az alsó felületi réteget " "is. Ha az ezzel az értékkel számított vastagság kisebb, mint az alsó héj " @@ -9927,7 +9795,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Az alsó szilárd rétegek száma szeleteléskor megnő, ha az alsó héjrétegek " "vastagsága kisebb ennél az értéknél. Ezzel elkerülhető, hogy túl vékony " @@ -9948,22 +9816,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -10057,9 +9925,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10070,8 +9938,8 @@ msgid "Bridge flow ratio" msgstr "Áthidalás áramlási sebessége" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10095,7 +9963,7 @@ msgstr "Felső felület anyagáramlása" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10105,7 +9973,7 @@ msgid "Bottom surface flow ratio" msgstr "" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10123,8 +9991,8 @@ msgid "Only one wall on top surfaces" msgstr "Csak egy fal a felső felületeken" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Csak egy falat használ a sík felső felületeken, hogy több hely maradjon a " "felső kitöltési mintának" @@ -10145,11 +10013,11 @@ msgid "" msgstr "" msgid "Only one wall on first layer" -msgstr "Only one wall on first layer" +msgstr "" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" msgid "Extra perimeters on overhangs" @@ -10179,7 +10047,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10199,9 +10067,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -10228,13 +10096,13 @@ msgstr "" msgid "Classic mode" msgstr "" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "" msgid "Slow down for overhang" msgstr "Lassítás túlnyúlásoknál" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Engedélyezd ezt az opciót a nyomtatási sebesség lassításához különböző " "túlnyúlási szögeknél" @@ -10245,11 +10113,11 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10270,7 +10138,7 @@ msgid "External" msgstr "" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10289,7 +10157,7 @@ msgstr "" msgid "Brim width" msgstr "Perem szélessége" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "A modell és a legkülső peremvonal közötti távolság" msgid "Brim type" @@ -10299,8 +10167,6 @@ msgid "" "This controls the generation of the brim at outer and/or inner side of " "models. Auto means the brim width is analyzed and calculated automatically." msgstr "" -"This controls the generation of the brim at outer and/or inner side of " -"models. Auto means the brim width is analyzed and calculated automatically." msgid "Painted" msgstr "" @@ -10310,13 +10176,13 @@ msgstr "Perem-tárgy közötti rés" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "A legbelső peremvonal és a tárgy közötti rés, ami megkönnyítheti a perem " "eltávolítását" msgid "Brim ears" -msgstr "" +msgstr "Karimás fülek" msgid "Only draw brim over the sharp edges of the model." msgstr "" @@ -10325,8 +10191,8 @@ msgid "Brim ear max angle" msgstr "" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" @@ -10336,7 +10202,7 @@ msgstr "" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" msgid "Compatible machine" @@ -10372,7 +10238,7 @@ msgstr "" "használja. Ha ez a kifejezés igaz, akkor ez a profil kompatibilis az aktív " "nyomtatási profillal." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Nyomtatási sorrend, rétegenként vagy tárgyanként" msgid "By layer" @@ -10384,7 +10250,7 @@ msgstr "Tárgyanként" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" @@ -10397,7 +10263,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Engedélyezd ezt az opciót a nyomtatási sebesség lassításához, hogy a " "rétegidő ne lehessen kevesebb, mint a \"Max. ventilátor fordulatszám\"-nál " @@ -10410,7 +10276,7 @@ msgstr "Normál nyomtatás" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Ez az alapértelmezett gyorsulás mind a normál nyomtatáshoz, mind az első " "réteg utáni mozgáshoz." @@ -10418,17 +10284,17 @@ msgstr "" msgid "Default filament profile" msgstr "Alapértelmezett filament profil" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Alapértelmezett filament profil, ha erre a gép profilra váltasz" msgid "Default process profile" msgstr "Alapértelmezett folyamat profil" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Alapértelmezett folyamat profil, ha erre a gép profilra váltasz" msgid "Activate air filtration" -msgstr "Activate air filtration" +msgstr "" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -10437,21 +10303,21 @@ msgid "Fan speed" msgstr "Ventilátor fordulatszám" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Az elszívó ventilátor sebessége nyomtatás közben: ez a sebesség felülírja a " "sebességet a filament egyéni G-kódjában." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "" msgid "No cooling for the first" msgstr "Nincs hűtés az első" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Kikapcsolja a hűtést a megadott első pár rétegnél. A hűtés kikapcsolása " "segítheti a jobb tárgyasztalhoz való tapadást" @@ -10460,8 +10326,8 @@ msgid "Don't support bridges" msgstr "Ne támassza alá az áthidalásokat" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Nem támasztja alá az áthidalásokat, ezáltal támaszanyagot spórolva. Az " "áthidalások általában támasz nélkül is jól nyomtathatók, ha nem túl hosszúak" @@ -10507,20 +10373,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10543,31 +10409,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10595,20 +10455,20 @@ msgstr "" msgid "End G-code" msgstr "Befejező G-kód" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Befejező G-kód az egész nyomtatás befejezésekor" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "Objektumok közötti G-kód" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "A tárgyak nyomtatása között használt G-kód. Ez a paraméter csak akkor " "működik, ha a nyomtatás tárgyankénti sorrendben történik." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Befejező G-kód a filament nyomtatásának befejezésekor" msgid "Ensure vertical shell thickness" @@ -10634,7 +10494,7 @@ msgstr "" msgid "Top surface pattern" msgstr "Felső felület mintázata" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Ez a felső felület kitöltésének mintája." msgid "Concentric" @@ -10664,7 +10524,7 @@ msgstr "Nyolcágú spirál" msgid "Bottom surface pattern" msgstr "Alsó felület mintázata" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Ez az alsó felület kitöltésének mintája, kivéve az áthidalásokat." msgid "Internal solid infill pattern" @@ -10701,7 +10561,7 @@ msgid "Small perimeters threshold" msgstr "" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett " "érték 0 mm" @@ -10710,7 +10570,7 @@ msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10724,7 +10584,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10857,7 +10717,7 @@ msgstr "" msgid "Extruder Color" msgstr "Extruder szín" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Csak vizuális segédként használatos a felhasználói felületen" msgid "Extruder offset" @@ -10867,11 +10727,11 @@ msgid "Flow ratio" msgstr "Anyagáramlás" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Az anyag térfogata megváltozhat az olvadt és a kristályos állapot közötti " "átmenet során. Ez a beállítás arányosan megváltoztatja az anyagáramlást a G-" @@ -10880,11 +10740,11 @@ msgstr "" "hogy túl sok vagy kevés az anyagáramlás." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -10898,7 +10758,7 @@ msgid "" "enabled." msgstr "" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" msgid "Enable adaptive pressure advance (beta)" @@ -10945,19 +10805,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10974,9 +10833,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10991,8 +10850,9 @@ msgid "Keep fan always on" msgstr "Ventilátor mindig bekapcsolva" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Ezen beállítás engedélyezése esetén a tárgyhűtő ventilátor soha nem áll le, " "és legalább a minimális fordulatszámon fog járni, hogy csökkentse az indítás " @@ -11005,13 +10865,11 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" @@ -11020,7 +10878,7 @@ msgstr "Rétegidő" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "A tárgyhűtő ventilátor azon rétegek esetében lesz engedélyezve, amelyek " "becsült ideje rövidebb ennél az értéknél. A ventilátor fordulatszáma a " @@ -11034,10 +10892,10 @@ msgid "Default filament color" msgstr "Alapértelmezett filament szín" msgid "Filament notes" -msgstr "Filament notes" +msgstr "" msgid "You can put your notes regarding the filament here." -msgstr "You can put your notes regarding the filament here." +msgstr "" msgid "Required nozzle HRC" msgstr "Szükséges fúvóka HRC-érték" @@ -11052,7 +10910,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Ezzel a beállítással adhatod meg a másodpercenként megolvasztható és " "extrudálható maximális filamentmennyiséget. A nyomtatási sebességet a " @@ -11068,7 +10926,7 @@ msgstr "Filament betöltési idő" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -11077,7 +10935,7 @@ msgstr "Filament kitöltési idő" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -11086,12 +10944,12 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "A filament átmérő a G-kódban az extrudálás kiszámításához szükséges, ezért " "fontos, hogy pontos legyen" @@ -11147,7 +11005,7 @@ msgid "Unloading speed" msgstr "Kiürítési sebesség" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "A filament törlőtoronynál való kiürítéséhez használt sebesség (nem " @@ -11164,8 +11022,8 @@ msgid "Delay after unloading" msgstr "Várakozás a kiürítés után" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "A várakozási idő az filament kiürítése után. Segíthet megbízható " @@ -11192,7 +11050,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11237,38 +11095,38 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" msgid "Multi-tool ramming volume" msgstr "" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "" msgid "Multi-tool ramming flow" msgstr "" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" msgid "Density" msgstr "Sűrűség" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Filament sűrűsége. Csak statisztikákhoz kerül felhasználásra" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Filament anyagának típusa" msgid "Soluble material" msgstr "Oldható anyag" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Az oldható anyagot általában a támaszok és érintkező felületek nyomtatására " "használják" @@ -11277,7 +11135,7 @@ msgid "Support material" msgstr "Támaszanyag" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "A támaszanyag a támaszok és a támasz érintkező felületeinek nyomtatásához " "van használva." @@ -11287,17 +11145,14 @@ msgstr "Lágyulási hőmérséklet" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." -msgstr "" -"The material softens at this temperature, so when the bed temperature is " "equal to or greater than this, it's highly recommended to open the front " -"door and/or remove the upper glass to avoid clogs." +"door and/or remove the upper glass to avoid clogging." +msgstr "" msgid "Price" msgstr "Költség" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Filament költsége. Csak statisztikákhoz kerül felhasználásra" msgid "money/kg" @@ -11306,7 +11161,7 @@ msgstr "pénz/kg" msgid "Vendor" msgstr "Gyártó" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Filamentgyártó." msgid "(Undefined)" @@ -11317,7 +11172,7 @@ msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "A ritkás kitöltési minta szöge, amely a vonal kezdő- vagy fő irányát " "szabályozza" @@ -11327,7 +11182,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -11342,13 +11197,13 @@ msgstr "Kitöltés sűrűsége" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "Kitöltési mintázat" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Ez a belső ritkás kitöltés mintája." msgid "Grid" @@ -11417,16 +11272,16 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" msgid "0 (no open anchors)" -msgstr "0 (no open anchors)" +msgstr "" msgid "1000 (unlimited)" -msgstr "1000 (unlimited)" +msgstr "" msgid "Maximum length of the infill anchor" msgstr "A kitöltőhorgony maximális hossza" @@ -11439,7 +11294,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11447,23 +11302,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "A felső felületi kitöltés gyorsulása. Alacsonyabb érték használata " "javíthatja a felső felület minőségét" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Gyorsulás a külső falnál: alacsonyabb érték használata javíthatja a " "minőséget." @@ -11474,7 +11329,7 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "mm/s² vagy %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " @@ -11491,7 +11346,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "A kezdőréteg gyorsulása. Alacsonyabb érték használata javíthatja a " "tárgyasztalhoz való tapadást" @@ -11499,7 +11354,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "accel_to_decel engedélyezése" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "" "A Klipper max_accel_to_decel értékét a rendszer automatikusan beállítja" @@ -11508,25 +11363,25 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk a külső falaknál" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk a belső falaknál" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "" msgid "" @@ -11539,24 +11394,24 @@ msgstr "Kezdő rétegmagasság" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Kezdőréteg magassága. A vastagabb kezdőréteg javíthatja a tárgy asztalhoz " "való tapadását" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "A kezdőréteg nyomtatási sebessége a szilárd kitöltési rész kivételével" msgid "Initial layer infill" msgstr "Kezdőréteg kitöltése" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "A kezdőréteg szilárd kitöltési részének sebessége" msgid "Initial layer travel speed" msgstr "" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "" msgid "Number of slow layers" @@ -11570,7 +11425,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Az első réteg fúvóka hőmérséklete" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "A fúvóka hőmérséklete az első réteg nyomtatásakor ezzel a filamenttel" msgid "Full fan speed at layer" @@ -11592,7 +11447,7 @@ msgstr "" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11613,16 +11468,16 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "A nyomtató véletlenszerűen vibrál a fal nyomtatása közben, így a felület " "durva megjelenésű lesz" msgid "Contour" -msgstr "Contour" +msgstr "" msgid "Contour and hole" -msgstr "Contour and hole" +msgstr "" msgid "All walls" msgstr "Összes fal" @@ -11632,7 +11487,7 @@ msgstr "Fuzzy skin vastagsága" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "A rezgés szélessége: ezt ajánlott kisebbre állítani, mint a külső fal " "szélessége." @@ -11642,21 +11497,21 @@ msgstr "Fuzzy skin pontok távolsága" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Az egyes vonalszakaszokon használt véletlen pontok közötti átlagos távolság" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11719,29 +11574,26 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "A hézagkitöltés nyomtatási sebessége. A rés általában szabálytalan " "vonalszélességű, és lassabban kell nyomtatni" msgid "Precise Z height" -msgstr "Precise Z height" +msgstr "" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" -"Enable this to get precise z height of object after slicing. It will get the " -"precise object height by fine-tuning the layer heights of the last few " -"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Íves illesztés" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11753,7 +11605,8 @@ msgstr "" msgid "Add line number" msgstr "Vonalszám hozzáadása" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Ha engedélyezed ezt a beállítást, minden G-kód sor elejére sorszám (Nx) " "kerül." @@ -11763,7 +11616,7 @@ msgstr "Az első réteg szkennelése" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Engedélyezd ezt az opciót, hogy a nyomtató kamerája ellenőrizze az első " "réteg minőségét" @@ -11773,7 +11626,7 @@ msgstr "Fúvóka típus" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "A fúvóka anyaga: Ez határozza meg a fúvóka kopásállóságát és azt, hogy " "milyen filamentekkel képes nyomtatni." @@ -11806,7 +11659,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Nyomtató szerkezete" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "A nyomtató fizikai felépítése és alkatrészei" msgid "CoreXY" @@ -11839,10 +11692,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" @@ -11866,7 +11719,7 @@ msgstr "" msgid "Time cost" msgstr "" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "" msgid "money/h" @@ -11891,7 +11744,7 @@ msgstr "" msgid "G-code flavor" msgstr "G-kód változat" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "Milyen G-kóddal kompatibilis a nyomtató." msgid "Klipper" @@ -11900,20 +11753,20 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "Objektumok címkézése" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11922,7 +11775,7 @@ msgstr "" msgid "Exclude objects" msgstr "Tárgyak kizárása" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" msgid "Verbose G-code" @@ -11953,7 +11806,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11993,29 +11846,26 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "A belső ritkás kitöltés sebessége" msgid "Inherits profile" msgstr "Örököli a profilt" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" -msgstr "Interface shells" +msgstr "" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" -"Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" msgid "Maximum width of a segmented region" msgstr "Szegmentált régió maximális szélessége" @@ -12030,7 +11880,7 @@ msgstr "Szegmentált régió összekapcsolódási mélysége" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" @@ -12102,9 +11952,9 @@ msgid "All solid layer" msgstr "Összes szilárd réteg" msgid "Ironing Pattern" -msgstr "Ironing Pattern" +msgstr "" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "" msgid "Ironing flow" @@ -12112,7 +11962,7 @@ msgstr "Vasalás áramlási sebesség" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "A vasalás során extrudálandó anyag mennyisége a normál anyagáramláshoz " "viszonyítva. A túl magas érték a felületen túlextrudálást eredményez." @@ -12120,7 +11970,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Vasalási vonalak közötti távolság" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "A vasaláshoz használt vonalak közötti távolság." msgid "Ironing inset" @@ -12128,13 +11978,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "Vasalás sebessége" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "A vasalási vonalak nyomtatási sebessége" msgid "Ironing angle" @@ -12145,7 +11995,7 @@ msgid "" "uses the default method." msgstr "" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Ez a G-kód minden rétegváltásnál beillesztésre kerül a Z tengely megemelése " "után." @@ -12155,7 +12005,7 @@ msgstr "Csendes mód" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Csendes üzemmód támogatása, amelyben a gép kisebb gyorsulást használ a " "csendesebb nyomtatáshoz" @@ -12168,23 +12018,23 @@ msgstr "Géplimitek" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Ez a G-kód lesz használva a nyomtatás szüneteltetéséhez. A felhasználók a " "szünet G-kódot a G-kódnézőben illeszthetik be." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Ezt a G-kód egyedi kódként lesz használva." msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -12296,12 +12146,12 @@ msgstr "Maximális gyorsulás a visszahúzáshoz (M204 R)" msgid "Maximum acceleration for travel" msgstr "Maximális gyorsulás a mozgáshoz" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "A tárgyhűtő ventilátor fordulatszáma növelhető, ha az automatikus hűtés " "engedélyezve van. Ez a tárgyhűtő ventilátor maximális fordulatszám-határa" @@ -12310,8 +12160,8 @@ msgid "Max" msgstr "Max" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Az extruder által nyomtatható legnagyobb rétegmagasság: ez a maximális " "rétegmagasság korlátozására szolgál, ha az adaptív rétegmagasság " @@ -12326,23 +12176,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12357,11 +12207,11 @@ msgstr "" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12376,7 +12226,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Tárgyhűtő ventilátor minimum fordulatszáma" msgid "" @@ -12391,8 +12241,8 @@ msgid "Min" msgstr "Min" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Az extruder által nyomtatható legkisebb rétegmagasság: ez a minimum " "rétegmagasság korlátozására szolgál, ha az adaptív rétegmagasság " @@ -12433,7 +12283,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Fúvóka térfogata" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "A fúvóka térfogata a filamentvágó és a fúvóka vége között" msgid "Cooling tube position" @@ -12478,7 +12328,7 @@ msgstr "Extra betöltési hossz" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Ha nullára van állítva, akkor a filamentet a betöltés során a " @@ -12498,7 +12348,7 @@ msgstr "Csökkentett visszahúzás kitöltésnél" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Nem történik visszahúzás, amikor a fej csak kitöltés felett halad el, mert " "az itt történő szivárgás egyébként sem látható.\n" @@ -12514,7 +12364,7 @@ msgstr "" msgid "Filename format" msgstr "Fájlnév formátum" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "A felhasználó dönthet a projektfájlok nevéről exportáláskor." msgid "Make overhangs printable" @@ -12537,7 +12387,7 @@ msgstr "" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" msgid "mm²" @@ -12563,10 +12413,10 @@ msgid "" "nozzle diameter." msgstr "" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "A belső fal nyomtatási sebessége" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Ez a falak száma rétegenként." msgid "Alternate extra wall" @@ -12574,10 +12424,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12598,10 +12448,10 @@ msgid "Type of the printer" msgstr "" msgid "Printer notes" -msgstr "Printer notes" +msgstr "" msgid "You can put your notes regarding the printer here." -msgstr "You can put your notes regarding the printer here." +msgstr "" msgid "Printer variant" msgstr "Nyomtató változat" @@ -12609,7 +12459,7 @@ msgstr "Nyomtató változat" msgid "Raft contact Z distance" msgstr "Tutaj érintkezés Z távolság" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "This is the Z gap between an object and a raft. It is ignored for soluble " "interfaces." @@ -12617,19 +12467,19 @@ msgstr "" msgid "Raft expansion" msgstr "Tutaj kibővítése" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Összes tutaj réteg kiterjesztése az XY síkban" msgid "Initial layer density" msgstr "Első réteg sűrűsége" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Az első tutaj vagy támasz réteg sűrűsége" msgid "Initial layer expansion" msgstr "First layer expansion" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "This expands the first raft or support layer to improve bed adhesion." msgid "Raft layers" @@ -12637,15 +12487,15 @@ msgstr "Tutaj rétegek" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "A tárgy ennyi támaszréteggel kerül megemelésre. Ezzel a funkcióval " "elkerülheted a vetemedést ABS nyomtatásakor." msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "A G-kód útvonal a modell kontúrjának egyszerűsítése után jön létre, hogy " "elkerüljük a túl sok sort a G-kód fájlban. A kisebb érték nagyobb felbontást " @@ -12656,7 +12506,7 @@ msgstr "Mozgás távolságának küszöbértéke" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Csak akkor indít visszahúzást, ha a mozgási távolság nagyobb, mint ez az " "érték." @@ -12665,7 +12515,7 @@ msgid "Retract amount before wipe" msgstr "Visszahúzott mennyiség törlés előtt" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Ez a törlés előtti gyors visszahúzás hossza a visszahúzási hosszhoz " "viszonyítva." @@ -12673,7 +12523,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Visszahúzás rétegváltáskor" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Kényszeríti a visszahúzást minden rétegváltáskor" msgid "Retract on top layer" @@ -12681,7 +12531,7 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -12695,29 +12545,23 @@ msgstr "" "hosszabb mozgás során történő szivárgást. A visszahúzás kikapcsolásához " "állítsd nullára" -msgid "Long retraction when cut(beta)" -msgstr "Long retraction when cut (beta)" +msgid "Long retraction when cut (beta)" +msgstr "" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Experimental feature: Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " -"significantly, it may also raise the risk of nozzle clogs or other printing " -"problems." msgid "Retraction distance when cut" -msgstr "Retraction distance when cut" +msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Experimental feature. Retraction length before cutting off during filament " -"change" msgid "Z-hop height" msgstr "" @@ -12725,29 +12569,29 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Visszahúzáskor a fúvóka egy kicsit megemelkedik, hogy a fúvóka és a " "nyomtatott tárgy között rés keletkezzen. Ez megakadályozza, hogy a fúvóka " "nagyobb mozgás közben a tárgynak ütközzön. A Z tengely emelésekor használt " "körkörös mozgás megelőzheti a szálazást." -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Z-emelés alsó határa" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "A Z-tengely emelése csak akkor történik meg, ha az emelés mértéke nagyobb " "ennél az értéknél, de kisebb a „Z-emelés felső határánál“" -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Z-emelés felső határa" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Ha ez az érték pozitív, a Z-emelés csak akkor történik meg, ha az emelés " "mértéke a „Z-emelés alsó határánál“ nagyobb, de kisebb ennél az értéknél" @@ -12755,9 +12599,6 @@ msgstr "" msgid "Z-hop type" msgstr "" -msgid "Z hop type" -msgstr "" - msgid "Slope" msgstr "Lejtő" @@ -12768,8 +12609,8 @@ msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12792,7 +12633,7 @@ msgid "On surfaces" msgstr "" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" @@ -12829,15 +12670,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Visszahúzás sebessége" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Visszahúzások sebessége" msgid "De-retraction Speed" msgstr "Betöltési sebesség" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "A filament extruderbe történő visszatöltésének sebessége. A nulla azonos " "sebességet jelent a visszahúzással" @@ -12857,13 +12698,13 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" msgstr "Varrat pozíció" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "A külső fal nyomtatásának kiindulási helyzete." msgid "Nearest" @@ -12901,20 +12742,17 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "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 "" -"Apply scarf joints only to smooth perimeters where traditional seams do not " -"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "Conditional angle threshold" +msgstr "" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -12941,7 +12779,7 @@ 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 " +"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 " @@ -12957,50 +12795,45 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "Scarf start height" +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 "" -"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." msgid "Scarf around entire wall" -msgstr "Scarf around entire wall" +msgstr "" msgid "The scarf extends to the entire length of the wall." -msgstr "The scarf extends to the entire length of the wall." +msgstr "" msgid "Scarf length" -msgstr "Scarf length" +msgstr "" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Length of the scarf. Setting this parameter to zero effectively disables the " -"scarf." msgid "Scarf steps" -msgstr "Scarf steps" +msgstr "" msgid "Minimum number of segments of each scarf." -msgstr "Minimum number of segments of each scarf." +msgstr "" msgid "Scarf joint for inner walls" -msgstr "Scarf joint for inner walls" +msgstr "" msgid "Use scarf joint for inner walls as well." -msgstr "Use scarf joint for inner walls as well." +msgstr "" msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -13021,7 +12854,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -13033,9 +12866,9 @@ msgstr "Törlés sebessége" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "A törlés sebességét az itt megadott beállítás határozza meg. Ha az érték " "százalékban van megadva (pl. 80%), akkor azt a rendszer a mozgási " @@ -13057,10 +12890,10 @@ msgid "" msgstr "" msgid "Skirt height" -msgstr "Skirt height" +msgstr "" -msgid "How many layers of skirt. Usually only one layer" -msgstr "Number of skirt layers: usually only one" +msgid "How many layers of skirt. Usually only one layer." +msgstr "" msgid "Single loop draft shield" msgstr "" @@ -13077,7 +12910,7 @@ msgstr "Huzatvédő" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -13106,7 +12939,7 @@ msgstr "" msgid "Skirt loops" msgstr "Szoknya hurkok száma" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "A szoknya hurkainak száma. A nulla a szoknya kikapcsolását jelenti.\n" "\n" @@ -13128,15 +12961,16 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "A nyomtatási sebesség az exportált G-kódban csökkentésre kerül, ha a becsült " "rétegidő kisebb, mint ez az érték, hogy a rétegek jobb hűtése biztosított " @@ -13147,7 +12981,7 @@ msgstr "Ritkás kitöltés küszöbértéke" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "A küszöbérték alatti ritkás kitöltési terület belső szilárd kitöltéssel " "kerül leváltásra" @@ -13163,7 +12997,7 @@ msgid "" "computed over the nozzle diameter." msgstr "" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "A belső szilárd kitöltés sebessége, de az az érték nem vonatkozik a felső és " "alsó felületre" @@ -13171,29 +13005,27 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "A spirál mód kisimítja a külső kontúr Z mozgásait. A tömör modellt egyfalú " "nyomatokká alakítja, tömör alsó rétegekkel. A végső modellen nincsenek " "varratok" msgid "Smooth Spiral" -msgstr "Smooth Spiral" +msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" -"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "Max XY Smoothing" +msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" msgid "Spiral starting flow ratio" @@ -13245,8 +13077,8 @@ msgstr "Hőmérséklet változás" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -13263,23 +13095,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "Kezdő G-kód" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Kezdő G-kód az egész nyomtatás megkezdésekor" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Kezdő G-kód a filament nyomtatásának megkezdésekor" msgid "Single Extruder Multi Material" msgstr "Egyetlen Extruder Többféle Anyag" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" msgid "Manual Filament Change" @@ -13296,18 +13128,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -13379,11 +13211,15 @@ msgstr "Támasz engedélyezése" msgid "Enable support generation." msgstr "Engedélyezi a támasz generálását." +#, fuzzy msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" +"A normál (auto) és a fa (auto) a támaszok automatikus generálásához van " +"használva. Ha a normál (kézi) vagy a fa (kézi) van kiválasztva, akkor " +"csak a kényszerített támaszok kerülnek generálásra." msgid "Normal (auto)" msgstr "normál (auto)" @@ -13400,14 +13236,14 @@ msgstr "fa (manuális)" msgid "Support/object xy distance" msgstr "Támasz/tárgy XY távolság" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Ez szabályozza a tárgy és a támasz közötti XY elválasztás távolságát." msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" msgstr "Mintázat szöge" @@ -13419,7 +13255,7 @@ msgstr "" msgid "On build plate only" msgstr "Csak a tárgyasztaltól" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Nem generál támaszt a modell felületén, csak a tárgyasztalon" msgid "Support critical regions only" @@ -13443,7 +13279,7 @@ msgstr "" msgid "Top Z distance" msgstr "Z távolság" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "" "Meghatározza a Z távolságot a felső támasz érintkező rétege és az objektum " "között." @@ -13451,15 +13287,15 @@ msgstr "" msgid "Bottom Z distance" msgstr "Alsó Z távolság" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "A Z távolság az alsó támasz érintkező rétege és az objektum között." msgid "Support/raft base" -msgstr "Support/raft base" +msgstr "" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "A támasz alapjához és a tutaj nyomtatásához használt filament. Az " "„Alapértelmezett“ beállítás választásakor a jelenleg használt filament kerül " @@ -13489,11 +13325,11 @@ msgstr "" "letiltva." msgid "Support/raft interface" -msgstr "Support/raft interface" +msgstr "" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament a támasz érintkező felületének nyomtatásához. Az „Alapértelmezett“ " "beállítás választásakor a jelenleg használt filament kerül felhasználásra." @@ -13501,13 +13337,13 @@ msgstr "" msgid "Top interface layers" msgstr "Felső érintkező rétegek" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "A felső érintkező rétegek száma." msgid "Bottom interface layers" msgstr "Alsó érintkező rétegek" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Alsó érintkezőrétegek száma" msgid "Same as top" @@ -13516,24 +13352,24 @@ msgstr "Ugyanaz, mint a felső" msgid "Top interface spacing" msgstr "Felső érintkező felület térköze" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Az érintkező réteg vonalai közötti távolság. A nulla szilárd kitöltést jelent" msgid "Bottom interface spacing" msgstr "Alső érintkező réteg térköz" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Az érintkező réteg vonalai közötti távolság. A nulla szilárd kitöltést jelent" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Támasz érintkező felületek sebessége" msgid "Base pattern" msgstr "Alap mintázata" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "A támasz mintázata." msgid "Rectilinear grid" @@ -13548,28 +13384,28 @@ msgstr "Érintkező felület mintázata" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "A támasz érintkezési felületének vonalmintája. A nem oldható támaszfelület " "alapértelmezett mintázata egyenes vonalú, míg az oldható támaszfelület " "alapértelmezett mintázata koncentrikus" msgid "Rectilinear Interlaced" -msgstr "Rectilinear Interlaced" +msgstr "" msgid "Base pattern spacing" msgstr "Alap mintázatának térköze" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "A támasz vonalai közötti távolság" msgid "Normal Support expansion" msgstr "Normál támasz kibővítése" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Megnöveli (+) vagy összehúzza (-) a normál támaszt vízszintes irányban" -msgid "Speed of support" +msgid "Speed of support." msgstr "Támaszok sebessége" msgid "" @@ -13605,12 +13441,9 @@ msgstr "Független támasz rétegmagassága" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" -"Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " -"when the prime tower is enabled." msgid "Threshold angle" msgstr "Dőlésszög küszöbértéke" @@ -13635,8 +13468,8 @@ msgid "Tree support branch angle" msgstr "Fa típusú támasz ágainak szöge" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Ez a beállítás határozza meg, hogy a fa típusú támasz ágai milyen maximális " @@ -13678,8 +13511,8 @@ msgid "Adaptive layer height" msgstr "Adaptív rétegmagasság" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" msgid "Auto brim width" @@ -13687,13 +13520,13 @@ msgstr "" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" msgid "Tree support brim width" -msgstr "Tree support brim width" +msgstr "" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" msgid "Tip Diameter" @@ -13734,7 +13567,7 @@ msgstr "Fa támasz kitöltéssel" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Ez a beállítás határozza meg, hogy a fa támasz nagyobb üregeiben legyen-e " "kitöltés." @@ -13748,7 +13581,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13763,13 +13596,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13778,7 +13611,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Fúvóka hőmérséklete az első réteg után" msgid "Detect thin wall" @@ -13786,19 +13619,19 @@ msgstr "Vékony fal felismerése" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Felismeri a vékony falat, amit nem lehet két vonalnyi szélességgel " "nyomtatni, és egyetlen vonallal nyomtatja" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Ez a G-kód kerül beillesztésre, amikor a filament csere történik, beleértve " "a szerszámváltást indító T parancsokat is." -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" msgid "" @@ -13806,7 +13639,7 @@ msgid "" "the nozzle diameter." msgstr "" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "A felső felületi kitöltés sebessége, amely szilárd" msgid "Top shell layers" @@ -13815,7 +13648,7 @@ msgstr "Felső héj rétegek" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Ez a felső héj szilárd rétegeinek száma, beleértve a felső felület réteget. " "Ha az ezzel az értékkel számított vastagság vékonyabb, mint a felső héj " @@ -13832,7 +13665,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "A felső szilárd rétegek száma szeleteléskor megnő, ha a felső héjrétegekből " "számított vastagság kisebb ennél az értéknél. Ezzel elkerülhető, hogy túl " @@ -13840,15 +13673,16 @@ msgstr "" "beállítás ki van kapcsolva, és a felső héj vastagságát egyszerűen a felső " "héjrétegek száma határozza meg." -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Mozgási sebesség, amikor nem történik extrudálás" msgid "Wipe while retracting" msgstr "Törlés visszahúzás közben" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Ez visszahúzáskor a fúvókát az utolsó extrudálási útvonal mentén mozgatja, " "hogy a fúvókából szivárgott anyagot eltávolítsa. Ez minimálisra csökkentheti " @@ -13860,11 +13694,11 @@ msgstr "Törlési távolság" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13898,7 +13732,7 @@ msgstr "Tisztítási mennyiség" msgid "The volume of material to prime extruder on tower." msgstr "Ez az az anyagmennyiség, amelyet az extruder a toronyban ürít." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Ez a törlő torony szélessége." msgid "Wipe tower rotation angle" @@ -13932,7 +13766,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -13976,8 +13810,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Ez az objektum lesz használva a fúvóka tisztítására filamentcsere után, a " "nyomtatási idő csökkentése és némi filament megtakarításának érdekében. Az " @@ -14009,18 +13843,20 @@ msgid "Idle temperature" msgstr "" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "X-Y furatkompenzáció" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "A tárgy furatai az XY síkban a beállított értékkel nőnek vagy zsugorodnak. " "Pozitív érték esetén a furatok nagyobbak lesznek, míg a negatív értéktől " @@ -14031,11 +13867,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y körvonal kompenzáció" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Az objektum körvonala az XY síkban a beállított értékkel növekszik vagy " "zsugorodik. Pozitív érték esetén a kontúr nagyobb lesz, negatív érték esetén " @@ -14083,23 +13920,23 @@ msgstr "" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" msgid "Use relative E distances" msgstr "Relatív E távolságok használata" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "A klasszikus falgenerátor állandó szélességű falakat generál, és a nagyon " "vékony területeknél hézagkitöltést használ. Az Arachne engine változó " @@ -14114,7 +13951,7 @@ msgstr "Falátmenet hossza" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "A különböző vastagságú falak közötti átmenetkor, ahogy a tárgy vékonyabbá " "válik, egy bizonyos terület elkülönítésre kerül a falszegmensek " @@ -14131,7 +13968,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Megakadályozza az oda-vissza átmenetet egy extra és eggyel kevesebb fal " "között. Ez a toleranciaérték megnöveli a soron következő extrudálás " @@ -14149,7 +13986,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Mikor legyen átmenetet a páros és páratlan számú falak között. Az ennél " "nagyobb szögű ék formánál nem lesz átmenet és nem kerül közé anyag, hogy " @@ -14161,7 +13998,7 @@ msgstr "Falak elosztása" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "A falak száma, a középponttól számítva, amelyek között a falakat el kell " "osztani. Az alacsonyabb érték azt jelenti, hogy a külső falak szélessége nem " @@ -14170,11 +14007,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minimális méret" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "A vékony elemek minimális vastagsága. Az ennél vékonyabb modellelemek nem " "lesznek kinyomtatva, míg a minimum méretnél nagyobb elemek a minimális " @@ -14210,7 +14048,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "A fal szélessége, amely lecseréli a modell vékony részeit (a Minimális " "méretben megadott érték szerint). Ha a minimális falszélesség vékonyabb, " @@ -14221,9 +14059,9 @@ msgid "Detect narrow internal solid infill" msgstr "Keskeny belső szilárd kitöltés felismerése" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Ez a beállítás automatikusan felismeri a keskeny belső tömör kitöltési " "területeket. Ha engedélyezve van, a nyomtatás felgyorsítása érdekében ezen a " @@ -14231,16 +14069,16 @@ msgstr "" "alapértelmezés szerint az egyenes vonalú mintát használja." msgid "invalid value " -msgstr "invalid value " +msgstr "" msgid "Invalid value when spiral vase mode is enabled: " -msgstr "Invalid value when spiral vase mode is enabled: " +msgstr "" msgid "too large line width " -msgstr "too large line width " +msgstr "" msgid " not in range " -msgstr " not in range " +msgstr "" msgid "Export 3MF" msgstr "3MF exportálása" @@ -14257,7 +14095,7 @@ msgstr "Szeletelési adatok exportálása egy mappába" msgid "Load slicing data" msgstr "Szeletelési adatok betöltése" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Gyorsítótárazott szeletelési adatok betöltése mappából" msgid "Export STL" @@ -14269,7 +14107,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -14292,13 +14130,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "Alapértelmezett filamentek betöltése" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "" "Első filament betöltése alapértelmezettként a nem betöltött filamenteknél" @@ -14312,25 +14150,25 @@ msgid "mtcpp" msgstr "mtcpp" msgid "max triangle count per plate for slicing." -msgstr "max triangle count per plate for slicing" +msgstr "" msgid "mstpp" msgstr "mstpp" msgid "max slicing time per plate in seconds." -msgstr "max slicing time per plate in seconds" +msgstr "" msgid "No check" -msgstr "No check" +msgstr "" -msgid "Do not run any validity checks, such as gcode path conflicts check." -msgstr "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." +msgstr "" msgid "Normative check" -msgstr "Normative check" +msgstr "" msgid "Check the normative items." -msgstr "Check the normative items." +msgstr "" msgid "Output Model Info" msgstr "Kimeneti modell információ" @@ -14356,17 +14194,17 @@ msgstr "Elrendezési lehetőségek" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Elrendezési lehetőségek: 0-letiltás, 1-engedélyezés, egyéb-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Ismétlésszám" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "A teljes modell ismétlésszáma" msgid "Ensure on bed" msgstr "Ágyra igazítás" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" msgid "" @@ -14379,7 +14217,7 @@ msgstr "" msgid "Convert Unit" msgstr "Mértékegység átváltása" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Modell mértékegységének átváltása" msgid "Orient Options" @@ -14397,65 +14235,63 @@ msgstr "Forgatás Y körül" msgid "Rotation angle around the Y axis in degrees." msgstr "Az Y tengely körüli forgatási szög fokban." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "A modell méretezése egy lebegő tényezővel" msgid "Load General Settings" msgstr "Általános beállítások betöltése" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Folyamat/gépbeállítások betöltése a megadott fájlból" msgid "Load Filament Settings" msgstr "Filamentbeállítások betöltése" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Filamentbeállítások betöltése a megadott fájllistából" msgid "Skip Objects" -msgstr "Skip Objects" +msgstr "" -msgid "Skip some objects in this print" -msgstr "Skip some objects in this print" +msgid "Skip some objects in this print." +msgstr "" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" -msgstr "load uptodate process/machine settings when using uptodate" - -msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" -msgstr "" -"load up-to-date process/machine settings from the specified file when using " -"up-to-date" - -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." +msgstr "" + +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" -msgid "downward machines settings" +msgid "" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "Downward machines settings" +msgstr "" + +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14489,13 +14325,13 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "" msgid "Load filament ids" @@ -14504,30 +14340,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14554,13 +14390,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" msgid "" @@ -14644,10 +14480,10 @@ msgstr "" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "" msgid "Total volume" @@ -14835,21 +14671,19 @@ msgid "Checking support necessity" msgstr "Támasz szükségességének ellenőrzése" msgid "floating regions" -msgstr "floating regions" +msgstr "" msgid "floating cantilever" -msgstr "floating cantilever" +msgstr "" msgid "large overhangs" -msgstr "large overhangs" +msgstr "" #, c-format, boost-format msgid "" "It seems object %s has %s. Please re-orient the object or enable support " "generation." msgstr "" -"It seems object %s has %s. Please re-orient the object or enable support " -"generation." msgid "Generating support" msgstr "Támaszok generálása" @@ -14864,17 +14698,12 @@ msgid "" "No layers were detected. You might want to repair your STL file(s) or check " "their size or thickness and retry.\n" msgstr "" -"No layers were detected. You might want to repair your STL file(s) or check " -"their size or thickness and retry.\n" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" -"An object's XY size compensation will not be used because it is also color-" -"painted.\n" -"XY Size compensation can not be combined with color-painting." msgid "Support: generate contact points" msgstr "Támasz: érintkezési pontok generálása" @@ -14882,38 +14711,33 @@ msgstr "Támasz: érintkezési pontok generálása" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Unknown file format: input file must have .stl, .obj, or .amf(.xml) " -"extension." msgid "Loading of a model file failed." -msgstr "Loading of model file failed." +msgstr "" msgid "The supplied file couldn't be read because it's empty" -msgstr "The supplied file couldn't be read because it's empty." +msgstr "" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." -msgstr "Unknown file format: input file must have .3mf or .zip.amf extension." - -msgid "Canceled" -msgstr "Canceled" +msgstr "" msgid "load_obj: failed to parse" -msgstr "load_obj: failed to parse" +msgstr "" msgid "load mtl in obj: failed to parse" -msgstr "load mtl in obj: failed to parse" +msgstr "" msgid "The file contains polygons with more than 4 vertices." -msgstr "The file contains polygons with more than 4 vertices." +msgstr "" msgid "The file contains polygons with less than 2 vertices." -msgstr "The file contains polygons with less than 2 vertices." +msgstr "" msgid "The file contains invalid vertex index." -msgstr "The file contains invalid vertex index." +msgstr "" msgid "This OBJ file couldn't be read because it's empty." -msgstr "This OBJ file couldn't be read because it's empty." +msgstr "" msgid "Flow Rate Calibration" msgstr "Anyagáramlás kalibrálása" @@ -14998,7 +14822,7 @@ msgid "The name cannot be empty." msgstr "A név nem lehet üres." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "A kiválasztott beállítás: %s nem található." msgid "The name cannot be the same as the system preset name." @@ -15013,8 +14837,6 @@ msgstr "Új beállítás létrehozása sikertelen." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" -"Are you sure you want to cancel the current calibration and return to the " -"home page?" msgid "No Printer Connected!" msgstr "Nincs nyomtató csatlakoztatva!" @@ -15032,14 +14854,9 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" -"This machine type can only hold 16 historical results per nozzle. You can " -"delete the existing historical results and then start calibration. Or you " -"can continue the calibration, but you cannot create new calibration " -"historical results. \n" -"Do you still want to continue the calibration?" msgid "Connecting to printer..." msgstr "Csatlakozás a nyomtatóhoz..." @@ -15047,7 +14864,7 @@ msgstr "Csatlakozás a nyomtatóhoz..." msgid "The failed test result has been dropped." msgstr "A sikertelen teszteredményt eltávolítottuk." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Az áramlásdinamikai kalibráció eredményeit elmentette a nyomtató" #, c-format, boost-format @@ -15065,8 +14882,6 @@ msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" -"This machine type can only hold %d historical results per nozzle. This " -"result will not be saved." msgid "Internal Error" msgstr "Belső hiba" @@ -15074,10 +14889,10 @@ msgstr "Belső hiba" msgid "Please select at least one filament for calibration" msgstr "Kérjük, válassz ki legalább egy filamentet a kalibráláshoz." -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "Az anyagáramlás kalibrálásának eredményeit elmentettük a beállításokba" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "A maximális volumetrikus sebesség kalibrálásának eredményét elmentettük a " "beállításokban" @@ -15090,10 +14905,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Mostantól elérhető a különböző filamentek automatikus kalibrálása, amely " "teljesen automatizált, és az eredményt a nyomtató elmenti. A kalibrálást " @@ -15134,22 +14949,13 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"After using Flow Dynamics Calibration, there might still be some extrusion " -"issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" @@ -15194,22 +15000,6 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " -"directly measuring the calibration patterns. However, please be advised that " -"the efficacy and accuracy of this method may be compromised with specific " -"types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only " -"by those who fully understand its purpose and implications. Incorrect usage " -"can lead to sub-par prints or printer damage. Please make sure to carefully " -"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" msgstr "Mikor van szükség a max. volumetrikus sebesség kalibrálására" @@ -15257,7 +15047,7 @@ msgstr "A név nem haladhatja meg a 40 karaktert." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Az azonos nevű eredmények közül csak az egyik kerül elmentésre. Biztos, hogy " "felül akarod írni a többi eredményt?" @@ -15278,7 +15068,7 @@ msgid "Preset" msgstr "Beállítás" msgid "Record Factor" -msgstr "Record Factor" +msgstr "" msgid "We found the best flow ratio for you" msgstr "Megtaláltuk a legjobb anyagáramlást" @@ -15311,9 +15101,6 @@ msgstr "Kalibrálás 2 kihagyása" msgid "flow ratio : %s " msgstr "anyagáramlás: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Kérjük, válaszd a legsimább felülettel rendelkező blokkot" - msgid "Please choose a block with smoothest top surface." msgstr "Kérjük, válaszd ki a legsimább felülettel rendelkező blokkot." @@ -15344,7 +15131,7 @@ msgid "Printing Parameters" msgstr "Nyomtatási paraméterek" msgid "Plate Type" -msgstr "Plate Type" +msgstr "" msgid "filament position" msgstr "filamentpozíció" @@ -15358,7 +15145,7 @@ msgstr "Filament a kalibráláshoz" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Tippek a kalibrációs anyaghoz:\n" "- Anyagok megegyező asztalhőmérséklettel\n" @@ -15403,7 +15190,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Áramlásdinamikai kalibrációs eredmény" msgid "New" -msgstr "New" +msgstr "" msgid "No History Result" msgstr "Nincs előzmény" @@ -15419,25 +15206,25 @@ msgstr "Művelet" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "This machine type can only hold %d historical results per nozzle." +msgstr "" msgid "Edit Flow Dynamics Calibration" msgstr "Áramlásdinamikai kalibráció szerkesztése" msgid "New Flow Dynamic Calibration" -msgstr "New Flow Dynamic Calibration" +msgstr "" msgid "Ok" msgstr "Ok" msgid "The filament must be selected." -msgstr "The filament must be selected." +msgstr "" msgid "Network lookup" msgstr "Hálózati keresés" msgid "Address" -msgstr "Address" +msgstr "" msgid "Hostname" msgstr "Host név:" @@ -15606,7 +15393,7 @@ msgstr "Befejező visszahúzási hossz:" msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "G-kód küldése a nyomtató gazdagépének" msgid "Upload to Printer Host with the following filename:" @@ -15653,7 +15440,7 @@ msgstr "Kiválasztott törlése" msgid "Show error message" msgstr "Hibaüzenet megjelenítése" -msgid "Enqueued" +msgid "Queued" msgstr "Sorban áll" msgid "Uploading" @@ -15686,7 +15473,7 @@ msgid "Unable to perform boolean operation on selected parts" msgstr "Nem lehet logikai műveletet végrehajtani a kiválasztott tárgyakon" msgid "Mesh Boolean" -msgstr "Mesh Boolean" +msgstr "Modellháló logikai műveletek" msgid "Union" msgstr "Egyesítés" @@ -15742,13 +15529,13 @@ msgstr "Rendszerverzió:" msgid "DNS Server:" msgstr "DNS kiszolgáló:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "Bing.com tesztelése" msgid "Test bing.com:" @@ -15812,7 +15599,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "Custom vendor missing; please input custom vendor." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "A „Bambu” vagy „Generic” nem használható gyártóként egyedi filamentek " "esetében." @@ -15833,8 +15620,8 @@ msgstr "" msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "Az egyedi gyártó vagy sorozat értéke üres. Kérjük, írd be újra." -msgid "The vendor can not be a number. Please re-enter." -msgstr "The vendor can not be a number; please re-enter." +msgid "The vendor cannot be a number. Please re-enter." +msgstr "" msgid "" "You have not selected a printer or preset yet. Please select at least one." @@ -15844,7 +15631,7 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -15863,8 +15650,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" @@ -15888,7 +15675,7 @@ msgstr "Beállítás importálása" msgid "Create Type" msgstr "Típus létrehozása" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "The model was not found; please reselect vendor." msgid "Select Model" @@ -15934,16 +15721,16 @@ msgstr "" "Kivétel történt a fájlméret megállapításakor, kérjük ismételd meg az " "importálást." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Útvonal nem található. Kérjük, válaszd ki újra a gyártót." msgid "The printer model was not found, please reselect." msgstr "A nyomtató modellje nem található, kérjük, válaszd ki újra." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "The nozzle diameter was not found; please reselect." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" @@ -16007,7 +15794,7 @@ msgstr "A következő filamentbeállítások létrehozása nem sikerült:\n" msgid "Create process presets failed. As follows:\n" msgstr "A következő folyamatbeállítások létrehozása nem sikerült:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Gyártó nem található. Kérjük, válaszd ki újból." msgid "Current vendor has no models, please reselect." @@ -16039,10 +15826,10 @@ msgid "" msgstr "" "Nem választottál nyomtatót a fúvókacseréhez. Kérjük, válassz egy nyomtatót." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Nyomtató sikeresen létrehozva" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Filament Created Successfully" msgid "Printer Created" @@ -16070,7 +15857,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" @@ -16123,12 +15910,12 @@ msgstr "" "creation." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "Felhasználói filamentbeállítások.\n" @@ -16176,7 +15963,7 @@ msgid "Please select a type you want to export" msgstr "Válaszd ki az exportálandó beállítás típusát" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Failed to create temporary folder, please try Export Configs again." +msgstr "" msgid "Edit Filament" msgstr "Filament szerkesztése" @@ -16191,7 +15978,7 @@ msgstr "" "Megjegyzés: Ha a filamenthez tartozó utolsó beállítás is törlődik, akkor a " "filament szintén törlésre kerül a párbeszédablak bezárása után." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "A más beállítások által örökölt beállítások nem törölhetők" msgid "The following presets inherits this preset." @@ -16215,11 +16002,11 @@ msgid "Delete Filament" msgstr "Filament törlése" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" -"A filamenthez tartozó összes beállítás törölve lesz. \n" +"A filamenthez tartozó összes beállítás törölve lesz.\n" "Ha ez a filament jelenleg használatban van a nyomtatón, kérjük, töröld az " "adott férőhelyen a filamentadatokat." @@ -16348,17 +16135,17 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "A nyomtatóállomás típusa nem egyezik: %s" -msgid "Connection to AstroBox works correctly." -msgstr "Connection to AstroBox is working correctly." +msgid "Connection to AstroBox is working correctly." +msgstr "" msgid "Could not connect to AstroBox" msgstr "Nem sikerült csatlakozni az AstroBoxhoz" -msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "Note: AstroBox version 1.1.0 or higher is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Duet works correctly." -msgstr "Connection to Duet is working correctly." +msgid "Connection to Duet is working correctly." +msgstr "" msgid "Could not connect to Duet" msgstr "Nem sikerült csatlakozni a Duethez" @@ -16375,8 +16162,8 @@ msgstr "Nem sikerült erőforrásokat szerezni új kapcsolat létrehozásához" msgid "Upload not enabled on FlashAir card." msgstr "A feltöltés nincs engedélyezve a FlashAir kártyán." -msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "Connection to FlashAir is working correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." +msgstr "" msgid "Could not connect to FlashAir" msgstr "Nem sikerült csatlakozni a FlashAirhez" @@ -16388,29 +16175,29 @@ msgstr "" "Megjegyzés: FlashAir 2.00.02 vagy újabb firmware és bekapcsolt feltöltési " "funkció szükséges." -msgid "Connection to MKS works correctly." -msgstr "Connection to MKS is working correctly." +msgid "Connection to MKS is working correctly." +msgstr "" msgid "Could not connect to MKS" msgstr "Nem sikerült csatlakozni az MKS-hez" -msgid "Connection to OctoPrint works correctly." -msgstr "Connection to OctoPrint is working correctly." +msgid "Connection to OctoPrint is working correctly." +msgstr "" msgid "Could not connect to OctoPrint" msgstr "Nem sikerült csatlakozni az OctoPrinthez" -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Note: OctoPrint version 1.1.0 or higher is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "Connection to Prusa SL1 / SL1S is working correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." +msgstr "" msgid "Could not connect to Prusa SLA" msgstr "Nem sikerült csatlakozni a Prusa SLA-hoz" -msgid "Connection to PrusaLink works correctly." -msgstr "Connection to PrusaLink is working correctly." +msgid "Connection to PrusaLink is working correctly." +msgstr "" msgid "Could not connect to PrusaLink" msgstr "Nem sikerült csatlakozni a PrusaLinkhez" @@ -16433,20 +16220,20 @@ msgstr "" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "" msgid "Could not connect to Prusa Connect" msgstr "" -msgid "Connection to Repetier works correctly." -msgstr "Connection to Repetier is working correctly." +msgid "Connection to Repetier is working correctly." +msgstr "" msgid "Could not connect to Repetier" msgstr "Nem sikerült csatlakozni a Repetierhez" -msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "Note: Repetier version 0.90.0 or higher is required." +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "" #, boost-format msgid "" @@ -16477,255 +16264,170 @@ msgstr "" "Hiba: „%2%”" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" -"It has a small layer height, and results in almost negligible layer lines " -"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. This results in " "much higher print quality but a much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height. This results in almost negligible layer lines and " -"slightly longer print time." +"slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height. This results in slightly visible layer lines but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height. This results in almost invisible layer lines and higher print " -"quality but longer print time." +"quality but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost invisible layer lines and much higher print " "quality but much longer print time." - -msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." msgstr "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height. This results in minimal layer lines and higher print quality but " -"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" + +msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in minimal layer lines and much higher print quality " "but much longer print time." +msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." -msgstr "" -"It has a normal layer height, and results in average layer lines and print " +"It has a normal layer height. This results in average layer lines and print " "quality. It is suitable for most printing cases." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in less apparent layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost negligible layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and longer print time." +msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height. This results in much more apparent layer lines and much lower print " "quality, but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height. This results in less apparent layer lines and slightly higher print " +"height. This results in less apparent layer lines and slight higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" -"It has a very big layer height, and results in very apparent layer lines, " -"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height. This results in very apparent layer lines and much lower print " "quality but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height. This results in extremely apparent layer lines and much lower " "print quality but much shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " "smaller layer height. This results in slightly less but still apparent layer " -"lines and slightly higher print quality, but longer print time in some cases." +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height. This results in less but still apparent layer lines and slightly " "higher print quality, but longer print time in some cases." +msgstr "" msgid "Connected to Obico successfully!" msgstr "" @@ -16748,7 +16450,7 @@ msgstr "" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -16763,7 +16465,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -msgid "User cancelled." +msgid "User canceled." msgstr "" msgid "Head diameter" @@ -16794,21 +16496,21 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" msgstr "" msgid " invalid brim ears" -msgstr "" +msgstr " érvénytelen karimás fülek" msgid "Brim Ears" -msgstr "" +msgstr "Karimás Fülek" msgid "Please select single object." -msgstr "Please select single object." +msgstr "" #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -16867,7 +16569,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" #: resources/data/hints.ini: [hint:Reverse on odd] @@ -16908,7 +16610,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Automatikus elrendezés\n" "Tudtad, hogy automatikusan elrendezheted a projekt összes objektumát?" @@ -16917,7 +16619,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Automatikus orientáció\n" "Tudtad, hogy az objektumokat egy kattintással elforgathatod a nyomtatáshoz " @@ -17081,7 +16783,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Perem a jobb tapadás érdekében\n" @@ -17092,7 +16794,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Paraméterek beállítása több objektumhoz\n" "Tudtad, hogy egyszerre is beállíthatod a szeletelési paramétereket az összes " @@ -17110,7 +16812,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Öblítés támaszokba/objektumokba/kitöltésbe\n" @@ -17127,13 +16829,14 @@ msgstr "" "Tudtad, hogy több fal vagy nagyobb kitöltés használatával javíthatod a " "modell szilárdságát?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Mikor nyomtass nyitott ajtóval\n" "Tudtad, hogy a nyomtató ajtajának kinyitásával csökkentheted az extruder/" @@ -17145,7 +16848,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Vetemedés elkerülése\n" "Tudtad, hogy a vetemedésre hajlamos anyagok (például ABS) nyomtatásakor a " @@ -17170,17 +16873,6 @@ msgstr "" #~ "javasoljuk: legalább 2 érintkező réteg, legalább 0,1 mm felső Z-távolság " #~ "vagy támaszanyag használata." -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "When using support material for the support interface, we recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" - #~ msgid "This setting specify the count of walls around support" #~ msgstr "A támasz körüli falak száma" @@ -17212,16 +16904,9 @@ msgstr "" #~ msgid "Support: propagate branches at layer %d" #~ msgstr "Támasz: ágak kiterjesztése %d. réteg" -#~ msgid "Current Cabin humidity" -#~ msgstr "Current Cabin humidity" - #~ msgid "Stopped." #~ msgstr "Megállítva." -#, c-format, boost-format -#~ msgid "Connect failed [%d]!" -#~ msgstr "Connection failed [%d]!" - #~ msgid "Initialize failed (Device connection not ready)!" #~ msgstr "Initialization failed (Device connection not ready)!" @@ -17295,37 +16980,18 @@ msgstr "" #~ msgid "Thick bridges" #~ msgstr "Vastag áthidalások" -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "A normál (auto) és a fa (auto) a támaszok automatikus generálásához van " -#~ "használva. Ha a normál (kézi) vagy a fa (kézi) van kiválasztva, akkor " -#~ "csak a kényszerített támaszok kerülnek generálásra." - #~ msgctxt "Verb" #~ msgid "Scale" #~ msgstr "Átméretezés" -#~ msgid "Cool plate" -#~ msgstr "Cool plate" - -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Z-tengely emelés visszahúzáskor" -#~ msgid "" -#~ "While printing by Object, the extruder may collide skirt.\n" -#~ "Thus, reset the skirt layer to 1 to avoid that." -#~ msgstr "" -#~ "While printing by object, the extruder may collide with a skirt.\n" -#~ "Thus, reset the skirt layer to 1 to avoid collisions." - #~ msgid "Limited" #~ msgstr "Korlátozott" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Csökkentsd kicsit ezt az értéket (például 0,9-re), hogy ezzel csökkentsd " @@ -17341,13 +17007,13 @@ msgstr "" #~ msgid "Speed of bridge and completely overhang wall" #~ msgstr "Az áthidalások és a teljesen túlnyúló falak nyomtatási sebessége" -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Az új filament betöltésének ideje filament váltáskor, csak statisztikai " #~ "célokra van használva." #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "A régi filament kitöltésének ideje filament váltáskor, csak statisztikai " #~ "célokra van használva." @@ -17372,23 +17038,6 @@ msgstr "" #~ "végrehajtásakor). Ezt az időt a G-kód időbecslő hozzáadja a teljes " #~ "nyomtatási időhöz." -#~ msgid "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials,the actual chamber " -#~ "temperature should not be high to avoid cloggings, so 0 which stands for " -#~ "turning off is highly recommended" -#~ msgstr "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials, the actual chamber " -#~ "temperature should not be high to avoid clogs, so 0 (turned off) is " -#~ "highly recommended." - #~ msgid "" #~ "Different nozzle diameters and different filament diameters is not " #~ "allowed when prime tower is enabled." @@ -17413,9 +17062,6 @@ msgstr "" #~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" #~ msgstr "Kérjük, adj meg egy érvényes értéket (K 0-0,3; N 0,6-2,0)" -#~ msgid "Printer local connection failed, please try again." -#~ msgstr "Printer local connection failed; please try again." - #~ msgid "" #~ "Please find the details of Flow Dynamics Calibration from our wiki.\n" #~ "\n" @@ -17476,12 +17122,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Keresd meg a tökéletesen extrudált sarkot" -#~ msgid "V" -#~ msgstr "V" - -#~ msgid "Export &Configs" -#~ msgstr "Export &Configs" - #~ msgid "Infill direction" #~ msgstr "Kitöltés iránya" @@ -17503,28 +17143,6 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Filament kitöltése" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Válassz egy AMS rekeszt, majd nyomd meg a \"Load\" vagy \"Unload\" gombot " -#~ "a filament automatikus be- vagy kitöltéséhez." - -#~ msgid "MC" -#~ msgstr "MC" - -#~ msgid "MainBoard" -#~ msgstr "MainBoard" - -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - #~ msgid "active" #~ msgstr "aktív" @@ -17565,7 +17183,7 @@ msgstr "" #~ "hogy a visszajelző nem a pontos értéket mutatja." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Megjegyzés: ha az új tekercs nyomtatás során kerül behelyezésre, az AMS " @@ -17582,7 +17200,7 @@ msgstr "" #~ msgstr "Sikertelen inicializálás (nem található kamera)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "A nyomtató a letöltéssel van elfoglalva; kérjük, várd meg, amíg a " #~ "letöltés befejeződik." @@ -17601,23 +17219,9 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "A betöltés sikertelen [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "No files [%d]" - -#, c-format, boost-format -#~ msgid "Load failed [%d]" -#~ msgstr "Load failed [%d]" - -#~ msgid "Failed to fetching model information from printer." -#~ msgstr "Failed to fetch model information from printer." - -#~ msgid "Failed to parse model informations." -#~ msgstr "Failed to parse model information" - #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -17626,7 +17230,7 @@ msgstr "" #~ "másik beállításra való váltás után?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -17643,7 +17247,7 @@ msgstr "" #~ msgid "Configuration package updated to " #~ msgstr "Konfigurációs csomag frissítve a következőre " -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "A konfiguráció nem tölthető be." #~ msgid "Movement:" @@ -17655,64 +17259,15 @@ msgstr "" #~ msgid "Auto Segment" #~ msgstr "Automatikus szegmentálás" -#~ msgid "Depth ratio" -#~ msgstr "Depth ratio" - #~ msgid "Prizm" #~ msgstr "Prizm" -#~ msgid "connector is out of cut contour" -#~ msgstr "connector is out of cut contour" - -#~ msgid "connectors are out of cut contour" -#~ msgstr "connectors are out of cut contour" - -#~ msgid "connector is out of object" -#~ msgstr "connector is out of object" - -#~ msgid "connectors is out of object" -#~ msgstr "Connectors must be on object surface." - -#~ msgid "" -#~ "Invalid state. \n" -#~ "No one part is selected for keep after cut" -#~ msgstr "" -#~ "Invalid state. \n" -#~ "No one part is selected to keep after cut" - -#~ msgid "Edit Text" -#~ msgstr "Edit Text" - #~ msgid "Error! Unable to create thread!" #~ msgstr "Hiba. Nem sikerült létrehozni a szálat." #~ msgid "Exception" #~ msgstr "Kivétel" -#~ msgid "Choose SLA archive:" -#~ msgstr "Choose SLA archive:" - -#~ msgid "Import file" -#~ msgstr "Import file" - -#~ msgid "Import model and profile" -#~ msgstr "Import model and profile" - -#~ msgid "Import profile only" -#~ msgstr "Import profile only" - -#~ msgid "Import model only" -#~ msgstr "Import model only" - -#~ msgid "Accurate" -#~ msgstr "Accurate" - -#~ msgid "Balanced" -#~ msgstr "Balanced" - -#~ msgid "Quick" -#~ msgstr "Quick" - #~ msgid "" #~ "Discribe how long the nozzle will move along the last path when retracting" #~ msgstr "" @@ -17731,9 +17286,6 @@ msgstr "" #~ "egyszerűsítése lehetőséget. További információ a dokumentációban " #~ "található." -#~ msgid "Filling bed " -#~ msgstr "Filling bed" - #, boost-format #~ msgid "%1% infill pattern doesn't support 100%% density." #~ msgstr "%1% kitöltési mintázat nem támogatja a 100%%-os kitöltés." @@ -17747,9 +17299,6 @@ msgstr "" #~ "Igen - Váltás a vonalak mintázatra\n" #~ "Nem - Sűrűség visszaállítása az alapértelmezett, nem 100%-os értékre" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." -#~ msgstr "A filament betöltése előtt melegítsd fel a fúvókát 170 fok fölé." - #, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" #~ msgstr "" @@ -17762,22 +17311,12 @@ msgstr "" #~ msgid "This setting specify the count of walls around tree support" #~ msgstr "Ez a beállítás határozza meg a falak számát a fa támasz körül." -#, c-format, boost-format -#~ msgid " doesn't work at 100%% density " -#~ msgstr " doesn't work at 100%% density " - -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "Eszköz-Felületre fektetés" #~ msgid "Export as STL" #~ msgstr "Exportálás STL-ként" -#~ msgid "Check cloud service status" -#~ msgstr "Check cloud service status" - #~ msgid "Please input a valid value (K in 0~0.5)" #~ msgstr "Adj meg egy érvényes értéket (K 0-0,5 között)" @@ -17796,10 +17335,6 @@ msgstr "" #~ msgid "Add/Remove printers" #~ msgstr "Nyomtatók hozzáadása/eltávolítása" -#, c-format, boost-format -#~ msgid "%s is not supported by AMS." -#~ msgstr "%s is not supported by the AMS." - #~ msgid "Don't remind me of this version again" #~ msgstr "Ne emlékeztessen újra erre a verzióra." @@ -17836,24 +17371,6 @@ msgstr "" #~ "Tudod, hogyan változtathatod meg a nézetet és hogyan választhatod ki az " #~ "objektumot/tárgyat egérrel és érintőképernyővel a 3D-jelenetben?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Modell javítása\n" -#~ "Tudtad, hogy a sérült 3D-modelleket megjavíthatod, amivel elkerülhetsz " -#~ "sok szeletelési problémát?" - -#~ msgid "Embedded" -#~ msgstr "Embedded" - -#~ msgid "Online Models" -#~ msgstr "Online Models" - -#~ msgid "Show online staff-picked models on the home page" -#~ msgstr "Show online staff-picked models on the home page" - #~ msgid "The minimum printing speed when slow down for cooling" #~ msgstr "A minimum nyomtatási sebesség hűtés miatti lassításkor." @@ -17901,14 +17418,11 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "Extrudálás kalibrálása" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Push new filament into the extruder" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "A többi réteg asztalhőmérséklete több mint %d Celsius-fokkal alacsonyabb, " #~ "mint a kezdőréteg hőmérséklete.\n" @@ -17926,36 +17440,18 @@ msgstr "" #~ "Kérjük, hogy a nyomtatás során tartsd nyitva a nyomtatót, vagy csökkentsd " #~ "az asztalhőmérsékletet." -#~ msgid "Total Time Estimation" -#~ msgstr "Total Time Estimation" - #~ msgid "Resonance frequency identification" #~ msgstr "Rezonanciafrekvencia meghatározása" -#~ msgid "Immediately score" -#~ msgstr "Immediately score" - -#~ msgid "Please give a score for your favorite Bambu Market model." -#~ msgstr "Please give a score for your favorite Bambu Market model." - -#~ msgid "Score" -#~ msgstr "Score" - -#~ msgid "Bambu High Temperature Plate" -#~ msgstr "Bambu High Temperature Plate" - #~ msgid "Can't connect to the printer" #~ msgstr "Nem lehet csatlakozni a nyomtatóhoz" #~ msgid "Recommended temperature range" #~ msgstr "Ajánlott hőmérséklet-tartomány" -#~ msgid "High Temp Plate" -#~ msgstr "High Temp Plate" - #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Asztalhőmérséklet a magas hőmérsékletű tálca használatával. A 0 érték azt " #~ "jelenti, hogy a filament nem támogatja a High Temp Plate-re történő " diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 6805e14f9b..c678181da2 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Dipingi supporti" msgid "Alt + Mouse wheel" @@ -110,7 +110,7 @@ msgstr "Posiziona su faccia" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Il numero di filamenti supera il numero massimo supportato dallo strumento " @@ -233,7 +233,7 @@ msgid "Volume Operations" msgstr "Operazioni volume" msgid "Translate" -msgstr "Traduci" +msgstr "Trasla" msgid "Group Operations" msgstr "Operazioni Gruppo" @@ -486,7 +486,7 @@ msgid "After cut" msgstr "Dopo il taglio" msgid "Cut to parts" -msgstr "Taglia le parti" +msgstr "Taglia in parti" msgid "Perform cut" msgstr "Effettua taglio" @@ -598,14 +598,14 @@ msgstr "Mostra modello reticolato" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Non si può applicare durante la creazione dell'anteprima." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operazione già annullata. Si prega di attendere qualche secondo." msgid "Face recognition" -msgstr "Riconoscimento facciale" +msgstr "Riconoscimento faccia" msgid "Perform Recognition" msgstr "Esegui riconoscimento" @@ -798,7 +798,7 @@ msgid "Change Text Type" msgstr "Cambia tipo di testo" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Rinominare stile(%1%) per il testo in rilievo" msgid "Name can't be empty." @@ -893,13 +893,13 @@ msgid "Style \"%1%\" can't be used and will be removed from a list." msgstr "Lo stile \"%1%\" non può essere usato e sarà rimosso dall'elenco." msgid "Unset italic" -msgstr "Corsivo non impostato" +msgstr "Rimovi corsivo" msgid "Set italic" msgstr "Imposta corsivo" msgid "Unset bold" -msgstr "Grassetto non impostato" +msgstr "Rimuovi rassetto" msgid "Set bold" msgstr "Imposta grassetto" @@ -955,44 +955,44 @@ msgid "Bottom" msgstr "Inferiore" msgid "Revert alignment." -msgstr "Ripristinare l'allineamento." +msgstr "Reimposta l'allineamento." #. TRN EmbossGizmo: font units msgid "points" msgstr "punti" msgid "Revert gap between characters" -msgstr "Ripristina distanza tra i caratteri" +msgstr "Reimposta distanza tra i caratteri" msgid "Distance between characters" msgstr "Distanza tra i caratteri" msgid "Revert gap between lines" -msgstr "Ripristina distanza tra le linee" +msgstr "Reimposta distanza tra le linee" msgid "Distance between lines" msgstr "Distanza tra le linee" msgid "Undo boldness" -msgstr "Annulla grassetto" +msgstr "Reimposta spessore" msgid "Tiny / Wide glyphs" msgstr "Glifi piccoli / larghi" msgid "Undo letter's skew" -msgstr "Annulla l'inclinazione della lettera" +msgstr "Reimposta l'inclinazione della lettera" msgid "Italic strength ratio" msgstr "Fattore intensità corsivo" msgid "Undo translation" -msgstr "Annulla traduzione" +msgstr "Reimposta traslazione" msgid "Distance of the center of the text to the model surface." msgstr "Distanza del centro del testo dalla superficie del modello." msgid "Undo rotation" -msgstr "Annulla rotazione" +msgstr "Reimposta rotazione" msgid "Rotate text Clock-wise." msgstr "Ruota il testo in senso orario." @@ -1024,8 +1024,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Non è possibile caricare esattamente lo stesso tipo di carattere(\"%1%\"). " "L'applicazione ne ha selezionato uno simile(\"%2%\"). È necessario " @@ -1157,7 +1157,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "La forma è segnata come invisibile (%1%)" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1339,7 +1339,7 @@ msgid "Measure" msgstr "Misura" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Si prega di confermare il rapporto di esplosione = 1 e di selezionare almeno " "un oggetto" @@ -1399,13 +1399,13 @@ msgstr "" "L'elemento 1 è stato ripristinato, \n" "l'elemento 2 è stato l'elemento 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Attenzione: selezionare l'elemento del Piano." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Attenzione: selezionare l'elemento del Punto o del Cerchio." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Attenzione: selezionare due maglie poligonali diverse." msgid "Copy to clipboard" @@ -1429,7 +1429,7 @@ msgstr "Parallelo" msgid "Center coincidence" msgstr "Coincidenza centrale" -msgid "Featue 1" +msgid "Feature 1" msgstr "Funzione 1" msgid "Reverse rotation" @@ -1487,7 +1487,7 @@ msgstr "" "sono stati riconosciuti." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer ha esaurito la memoria e verrà chiuso. Questo potrebbe essere un " @@ -1500,7 +1500,7 @@ msgid "" "OrcaSlicer will terminate because of a localization error. It will be " "appreciated if you report the specific scenario this issue happened." msgstr "" -"Si è verificato un errore nella localizzazione e OrcaSlicer verrà chiuso.Si " +"Si è verificato un errore nella localizzazione e OrcaSlicer verrà chiuso. Si " "prega di segnalare questo errore al supporto tecnico." msgid "Critical error" @@ -1625,7 +1625,7 @@ msgstr "Apri Progetto" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione \n" "prima di poter utilizzare normalmente il programma" @@ -1837,7 +1837,7 @@ msgstr "Prova del filo Orca String Hell" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1934,16 +1934,16 @@ msgstr "Spurga nei supporti dell'oggetto" msgid "Edit in Parameter Table" msgstr "Modifica nella tabella dei parametri" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Converti da pollici" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Ripristina in pollici" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Converti da metri" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Ripristina in metri" msgid "Assemble" @@ -2207,7 +2207,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2224,7 +2224,7 @@ msgstr "Elimina tutti i connettori" msgid "Deleting the last solid part is not allowed." msgstr "Non è consentita l'eliminazione dell'ultima parte solida." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "" "L'oggetto di destinazione contiene solo una parte e non può essere diviso." @@ -2268,14 +2268,14 @@ msgid "Selection conflicts" msgstr "Conflitti di selezione" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Se il primo elemento selezionato è un oggetto, anche il secondo deve essere " "un oggetto." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Se il primo elemento selezionato è una parte, il secondo deve far parte " "dello stesso oggetto." @@ -2340,7 +2340,7 @@ msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" "una cella può essere copiata solo in una o più celle della stessa colonna" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "copia di celle multiple non supportata" msgid "Outside" @@ -2605,8 +2605,8 @@ msgid "Edit" msgstr "Modifica" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Tutti gli oggetti selezionati si trovano su una piatto bloccato.\n" "Non è possibile disporre automaticamente questi oggetti." @@ -2615,8 +2615,8 @@ msgid "No arrangeable objects are selected." msgstr "Non sono stati selezionati oggetti ordinabili." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Il piatto è bloccato.\n" "Non è possibile eseguire la disposizione automatica su questo piatto." @@ -2656,15 +2656,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Tutti gli oggetti selezionati si trovano su un piatto bloccato,\n" "Non è possibile orientare automaticamente questi oggetti." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Il piatto è bloccato.\n" "Non puoi orientare automaticamente questo piatto." @@ -2718,7 +2718,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Connessione al servizio cloud non riuscita. Riprovare." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "File di stampa non trovato; eseguire nuovamente l'elaborazione." msgid "" @@ -2747,7 +2747,7 @@ msgstr "" "La dimensione del file di stampa è troppo grande. Modifica la dimensione del " "file e riprova." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "File di stampa non trovato; elabora nuovamente il file e invialo per la " "stampa." @@ -2780,31 +2780,31 @@ msgstr "Invia configurazione di stampa" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the device page in %ss" msgstr "" -"Inviato con successo. Passerà automaticamente alla pagina del dispositivo in " -"%s" +"Inviato con successo. Passaggio automatico alla pagina del dispositivo in %s " +"s" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" msgstr "" -"Inviato con successo. Passerà automaticamente alla pagina successiva in %ss" +"Inviato con successo. Passaggio automatico alla pagina successiva in %s s" msgid "An SD card needs to be inserted before printing via LAN." -msgstr "" -"È necessario inserire una scheda microSD prima di stampare tramite LAN." +msgstr "È necessario inserire una scheda SD prima di stampare tramite LAN." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Invio file G-code tramite LAN" -msgid "Sending gcode file to sdcard" -msgstr "Invia file G-code a scheda microSD" +msgid "Sending G-code file to SD card" +msgstr "Invio file G-code a scheda SD" #, c-format, boost-format msgid "Successfully sent. Close current page in %s s" -msgstr "Inviato con successo. Chiudi la pagina corrente in %s s" +msgstr "Inviato con successo. Chiusura della pagina corrente in %s s" msgid "An SD card needs to be inserted before sending to printer." msgstr "" -"È necessario inserire una scheda microSD prima di inviarla alla stampante." +"È necessario inserire una scheda SD prima di inviare il G-code alla " +"stampante." msgid "Importing SLA archive" msgstr "Importa archivio SLA" @@ -2846,10 +2846,10 @@ msgstr "Scaricamento" msgid "Download failed" msgstr "Scaricamento non riuscito" -msgid "Cancelled" +msgid "Canceled" msgstr "Annullato" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Installato con successo." msgid "Installing" @@ -2918,9 +2918,6 @@ msgstr "Conferma" msgid "Close" msgstr "Chiudi" -msgid "Colour" -msgstr "Colore" - msgid "" "Nozzle\n" "Temperature" @@ -3088,8 +3085,8 @@ msgstr "Umidità AMS attuale" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Si prega di cambiare l'essiccante quando è troppo umido. L'indicatore " @@ -3099,7 +3096,7 @@ msgstr "" "processo." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Configura lo slot AMS da usare per un filamento utilizzato nell'attività di " "stampa" @@ -3119,7 +3116,7 @@ msgstr "AMS non abilitato" msgid "Print using materials mounted on the back of the case" msgstr "Stampa filamento con bobina esterna" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Stampa con filamento nell'AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3146,7 +3143,7 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -3176,7 +3173,7 @@ msgstr "" "richiede circa 20 secondi." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Nota: se durante la stampa viene inserito un nuovo filamento, l'AMS non " @@ -3194,8 +3191,8 @@ msgstr "Aggiorna all'avvio" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "L'AMS leggerà automaticamente le informazioni sul filamento inserito " "all'avvio. Ci vorrà circa 1 minuto. Il processo di lettura farà ruotare le " @@ -3226,8 +3223,8 @@ msgid "AMS filament backup" msgstr "Sostituzione automatica del filamento AMS" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "L'AMS passerà automaticamente a un altro filamento con stesse proprietà " "quando il filamento corrente si esaurisce" @@ -3293,7 +3290,7 @@ msgstr "Si è verificato un errore irreversibile: \"%1%\"" msgid "Please save project and restart the program." msgstr "Salva il progetto e riavvia l'applicazione." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Elaborazione G-Code dal file precedente..." msgid "Slicing complete" @@ -3381,16 +3378,16 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "G-code esportato in %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Errore sconosciuto nell'esportazione del G-code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" -"Impossibile salvare il file del G-code.\n" +"Impossibile salvare il file G-code.\n" "Messaggio di errore: %1%.\n" "File sorgente %2%." @@ -3564,7 +3561,7 @@ msgstr "Utilizza AMS" msgid "Select Printers" msgstr "Seleziona stampanti" -msgid "Ams Status" +msgid "AMS Status" msgstr "Stato AMS" msgid "Printing Options" @@ -3586,7 +3583,7 @@ msgid "Send to" msgstr "Invia a" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "stampanti in contemporanea. (Dipende da quanti dispositivi possono essere " @@ -3596,7 +3593,7 @@ msgid "Wait" msgstr "Attendi" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "minuto per sessione. (Dipende quanto tempo impiega il riscaldamento " "completo.)" @@ -3697,11 +3694,11 @@ msgid "Bed Shape" msgstr "Forma Piano" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"La temperatura minima consigliata è inferiore a 190 gradi o la temperatura " -"massima consigliata è superiore a 300 gradi.\n" +"La temperatura minima consigliata è inferiore a 190°C o la temperatura " +"massima consigliata è superiore a 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3725,11 +3722,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "La temperatura dell'ugello consigliata per questo filamento è [%d, %d] gradi " -"centigradi" +"Celsius." msgid "" "Too small max volumetric speed.\n" @@ -3740,9 +3737,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "L'attuale temperatura della camera è superiore alla temperatura di sicurezza " "del materiale. Potrebbe causare l'ammorbidimento e l'intasamento del " @@ -3809,12 +3806,12 @@ msgstr "" "verticale del guscio\" è impostato su Tutto." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" msgstr "" -"Modificare automaticamente queste impostazioni? \n" +"Modificare automaticamente queste impostazioni?\n" "Sì - Modifica \"Garantisci spessore verticale del guscio\" a Moderato e " "abilita Parete aggiuntiva alternativa\n" "No - Non utilizzare Parete aggiuntiva alternativa" @@ -3876,11 +3873,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Ma le macchine con la struttura I3 non genereranno video timelapse." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Modificare queste impostazioni automaticamente? \n" +"Modificare queste impostazioni automaticamente?\n" "Sì - Modifica queste impostazioni ed abilita la modalità spirale " "automaticamente\n" "No - Annulla l'attivazione della modalità a spirale" @@ -3936,7 +3933,7 @@ msgstr "Stampa messa in pausa dall'utente" msgid "Pause of front cover falling" msgstr "Pausa smontaggio della copertura frontale" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Calibrazione Micro Lidar" msgid "Calibrating extrusion flow" @@ -3973,7 +3970,7 @@ msgstr "" msgid "Cooling chamber" msgstr "Raffreddamento della camera" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Messo in pausa dal G-code inserito dall'utente" msgid "Motor noise showoff" @@ -4017,7 +4014,7 @@ msgstr "Aggiornamento fallito." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "La temperatura attuale della camera o la temperatura obiettivo della camera " @@ -4025,24 +4022,24 @@ msgstr "" "caricare filamenti a bassa temperatura (PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "È stato caricato un filamento a bassa temperatura (PLA/PETG/TPU) " -"nell'estrusore.Per evitare l'intasamento dell'estrusore, non è consentito " +"nell'estrusore. Per evitare l'intasamento dell'estrusore, non è consentito " "impostare una temperatura della camera superiore a 45℃." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Quando si imposta la temperatura della camera al di sotto di 40°C, il " "controllo della temperatura della camera non verrà attivato. La temperatura " "obiettivo della camera sarà automaticamente impostata su 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Impossibile avviare il processo di stampa" msgid "" @@ -4057,7 +4054,7 @@ msgstr "Il parametro di calibrazione del flusso corrente non è valido" msgid "Selected diameter and machine diameter do not match" msgstr "Il diametro selezionato e il diametro della macchina non corrispondono" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Impossibile generare G-code di calibrazione" msgid "Calibration error" @@ -4070,14 +4067,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF non è supportato dall'AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Il PVA umido diventerà flessibile e rimarrà bloccato all'interno dell'AMS, " "si prega di fare attenzione ad asciugarlo prima dell'uso." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "I filamenti CF/GF sono duri e fragili. È facile romperli o creare " @@ -4094,7 +4091,7 @@ msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" "Segnaposto integrati (fai doppio clic sull'elemento per aggiungerlo al G-code" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Cerca segnaposto G-code" msgid "Add selected placeholder to G-code" @@ -4153,7 +4150,7 @@ msgid "parameter name" msgstr "nome parametro" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s non può essere una percentuale" #, c-format, boost-format @@ -4243,7 +4240,7 @@ msgstr "Velocità ventola: " msgid "Temperature: " msgstr "Temperatura: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Caricamento del G-code" msgid "Generating geometry vertex data" @@ -4357,10 +4354,7 @@ msgstr "Stampa" msgid "Printer" msgstr "Stampante" -msgid "Custom g-code" -msgstr "G-code personalizzato" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Cambio testina" msgid "Time Estimation" @@ -4486,8 +4480,11 @@ msgstr "Allinea all'asse Y" msgid "Add plate" msgstr "Aggiungi piatto" -msgid "Auto orient" -msgstr "Orientamento automatico" +msgid "Auto orient all/selected objects" +msgstr "Orientamento automatico tutti/selezionati oggetti" + +msgid "Auto orient all objects on current plate" +msgstr "Orientamento automatico tutti gli oggetti sul piatto corrente" msgid "Arrange all objects" msgstr "Disponi tutti gli oggetti" @@ -4510,8 +4507,8 @@ msgstr "Seleziona Piatto" msgid "Assembly Return" msgstr "Ritorna al montaggio" -msgid "return" -msgstr "indietro" +msgid "Return" +msgstr "Indietro" msgid "Paint Toolbar" msgstr "Barra strumenti di pittura" @@ -4539,26 +4536,26 @@ msgstr "Dimensione:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Sono stati trovati conflitti di percorsi nel G-code sullo strato %d, z = " "%.2lf mm. Si prega di separare gli oggetti in conflitto (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Un oggetto è posizionato oltre il bordo del piatto." msgid "A G-code path goes beyond the max print height." msgstr "Un percorso del G-code supera l'altezza massima di stampa." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Un percorso del G-code supera il limite del piatto." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "È visibile solo l'oggetto da modificare." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4639,7 +4636,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Connetti la stampante (LAN)" msgid "Please input the printer access code:" @@ -4939,22 +4936,22 @@ msgstr "Vista prospettica automatica" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Passa automaticamente dalla vista ortogonale a quella prospettica quando si " -"selezionano le viste dall'alto/dal basso/da destra/da sinistra" +"selezionano le viste dall'alto/dal basso/da destra/da sinistra." msgid "Show &G-code Window" msgstr "Mostra finestra del G-code" -msgid "Show g-code window in Preview scene" -msgstr "Mostra finestra G-code nella scena di anteprima" +msgid "Show G-code window in Preview scene." +msgstr "Mostra finestra G-code nella scena di anteprima." msgid "Show 3D Navigator" msgstr "Mostra navigatore 3D" -msgid "Show 3D navigator in Prepare and Preview scene" -msgstr "Mostra navigatore 3D nella sezione Prepara e Anteprima" +msgid "Show 3D navigator in Prepare and Preview scene." +msgstr "Mostra navigatore 3D nella sezione Prepara e Anteprima." msgid "Reset Window Layout" msgstr "Ripristina disposizione finestra" @@ -4965,20 +4962,20 @@ msgstr "Ripristina la disposizione predefinita della finestra" msgid "Show &Labels" msgstr "Mostra Etichette" -msgid "Show object labels in 3D scene" -msgstr "Mostra etichette oggetti nella scena 3D" +msgid "Show object labels in 3D scene." +msgstr "Mostra etichette oggetti nella scena 3D." msgid "Show &Overhang" msgstr "Mostra Sporgenze" -msgid "Show object overhang highlight in 3D scene" -msgstr "Mostra la sporgenza dell'oggetto evidenziata nella scena 3D" +msgid "Show object overhang highlight in 3D scene." +msgstr "Mostra la sporgenza dell'oggetto evidenziata nella scena 3D." msgid "Show Selected Outline (beta)" msgstr "Mostra contorno selezionato (beta)" -msgid "Show outline around selected object in 3D scene" -msgstr "Mostra il contorno attorno all'oggetto selezionato nella scena 3D" +msgid "Show outline around selected object in 3D scene." +msgstr "Mostra il contorno attorno all'oggetto selezionato nella scena 3D." msgid "Preferences" msgstr "Preferenze" @@ -5153,7 +5150,7 @@ msgid "Filament Settings" msgstr "Impostazioni Filamento" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -5192,7 +5189,7 @@ msgstr "La stampante sta scaricando. Attendi il completamento e riprova." msgid "Printer camera is malfunctioning." msgstr "La telecamera della stampante non funziona correttamente." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Si è verificato un problema. Aggiorna il firmware della stampante e riprova." @@ -5212,7 +5209,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Connessione fallita. Controlla la rete e riprova" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Controlla la rete e riprova. Se il problema persiste prova ad aggiornare o " @@ -5225,7 +5222,7 @@ msgid "Video Stopped." msgstr "Video Interrotto." msgid "LAN Connection Failed (Failed to start liveview)" -msgstr "Connessione LAN non riuscita (impossibile avviare video in diretta)" +msgstr "Connessione LAN non riuscita (impossibile avviare il video in diretta)" msgid "" "Virtual Camera Tools is required for this task!\n" @@ -5373,8 +5370,8 @@ msgid "Failed to parse model information." msgstr "Impossibile analizzare le informazioni del modello." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Il file .gcode.3mf non contiene dati G-code. Elaboralo con OrcaSlicer ed " "esporta un nuovo file .gcode.3mf." @@ -5572,10 +5569,9 @@ msgid "Layer: %d/%d" msgstr "Strato: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Si prega di riscaldare l'ugello a oltre 170 gradi prima di caricare o " +"Si prega di riscaldare l'ugello a oltre 170°C prima di caricare o " "scaricare il filamento." msgid "Still unload" @@ -5584,7 +5580,7 @@ msgstr "Scarica ancora" msgid "Still load" msgstr "Carica ancora" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Seleziona uno slot AMS prima di calibrare" msgid "" @@ -5633,9 +5629,6 @@ msgstr "Invia" msgid "Please click on the star first." msgstr "Fare clic prima sulla stella." -msgid "InFo" -msgstr "Informazioni" - msgid "Get oss config failed." msgstr "Impossibile ottenere la configurazione oss." @@ -5654,7 +5647,7 @@ msgstr " Caricamento della configurazione non riuscita\n" msgid " No corresponding storage bucket\n" msgstr " Nessun secchio di stoccaggio corrispondente\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " non può essere aperto\n" msgid "" @@ -5678,8 +5671,9 @@ msgstr "Caricamento non riuscito\n" msgid "obtaining instance_id failed\n" msgstr "ottenimento di instance_id non riuscito\n" +#, fuzzy msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5694,7 +5688,7 @@ msgstr "messaggio d'errore: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5702,7 +5696,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Alcune delle tue immagini non sono state caricate. Vuoi essere reindirizzato " "alla pagina web per la valutazione?" @@ -5712,7 +5706,7 @@ msgstr "È possibile selezionare fino a 16 immagini." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Per questo profilo di stampa è richiesto almeno un registro di stampa " "riuscito \n" @@ -5758,7 +5752,7 @@ msgid "Newer 3mf version" msgstr "Versione 3mf più recente" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "La versione del file 3mf è in Beta ed è più recente della versione corrente " @@ -5872,9 +5866,9 @@ msgstr[1] "%1$d Gli oggetti hanno una pittura di colore." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d oggetto è stato caricato come parte di un oggetto tagliato." -msgstr[1] "%1$d oggetti sono stati caricati come parti di un oggetto tagliato" +msgstr[1] "%1$d oggetti sono stati caricati come parti di un oggetto tagliato." msgid "ERROR" msgstr "ERRORE" @@ -5897,7 +5891,7 @@ msgstr "Errore:" msgid "Warning:" msgstr "Avviso:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Esportazione riuscita." msgid "Model file downloaded." @@ -5915,10 +5909,10 @@ msgstr " Clicca per installarlo." msgid "WARNING:" msgstr "AVVISO:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Il modello necessita di supporti! Abilita i materiali di supporto." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Sovrapposizione del percorso G-code" msgid "Support painting" @@ -6163,7 +6157,7 @@ msgstr "Vuoi salvare le modifiche a \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Smontato con successo. Il dispositivo %s (%s) può ora essere rimosso dal " @@ -6225,8 +6219,8 @@ msgstr "Carica 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "Il 3mf versione %s è più recente di %s versione %s. Trovate le seguenti " "chiavi non riconosciute:" @@ -6248,26 +6242,27 @@ msgstr "Valori non validi trovati nell'3mf:" msgid "Please correct them in the param tabs" msgstr "Si prega di correggerli nella scheda dei parametri" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "Il 3mf ha i seguenti G-code modificati nei profili del filamento o della " "stampante:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Si prega di confermare che questi G-code modificati sono sicuri per evitare " "danni alla macchina!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "G-code Modificati" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "Il 3mf ha i seguenti profili personalizzati per filamenti o stampanti:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Si prega di confermare che i G-code all'interno di questi profili sono " @@ -6332,8 +6327,8 @@ msgid "The file does not contain any geometry data." msgstr "Il file non contiene dati geometrici." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "L'oggetto sembra troppo grande. Vuoi ridimensionarlo per adattarlo " "automaticamente al piano di stampa?" @@ -6442,10 +6437,10 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Modalità solo anteprima:\n" -"Il file caricato contiene solo G-code, non può accedere alla pagina Prepara" +"Il file caricato contiene solo G-code, non può accedere alla pagina Prepara." msgid "You can keep the modified presets to the new project or discard them" msgstr "" @@ -6478,7 +6473,7 @@ msgstr "preparazione file 3mf..." msgid "Download failed, unknown file format." msgstr "Scaricamento non riuscito; formato file sconosciuto." -msgid "downloading project ..." +msgid "downloading project..." msgstr "scaricamento progetto..." msgid "Download failed, File size exception." @@ -6521,7 +6516,7 @@ msgstr "Importa archivio SLA" msgid "The selected file" msgstr "Il file selezionato" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "non contiene un G-code valido." msgid "Error occurs while loading G-code file" @@ -6567,10 +6562,10 @@ msgstr "È possibile aprire un solo file G-code alla volta." msgid "G-code loading" msgstr "Caricamento G-code" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "I file e i modelli G-code non possono essere caricati insieme!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Impossibile aggiungere modelli in modalità anteprima!" msgid "All objects will be removed, continue?" @@ -6690,7 +6685,7 @@ msgstr "Impostazioni Piatto" #, boost-format msgid "Number of currently selected parts: %1%\n" -msgstr "Numero attuale di parti selezionate: %1%\n" +msgstr "Numero attuale di parti selezionate: %1%\n" #, boost-format msgid "Number of currently selected objects: %1%\n" @@ -6736,8 +6731,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Piatto %d: %s non è consigliato per l’utilizzo del filamento %s (%s). Se " @@ -6899,13 +6894,17 @@ msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "" "Se abilitato, usa la visuale libera. Altrimenti, usa la visuale vincolata." +msgid "Swap pan and rotate mouse buttons" +msgstr "Scambia i pulsanti del mouse per ruotare e spostare" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Se abilitato, inverte le funzioni di panoramica e rotazione dei pulsanti sinistro e destro del mouse." + msgid "Reverse mouse zoom" msgstr "Inverti zoom del mouse" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" -"Se abilitato, inverte la direzione dell'ingrandimento con la rotellina del " -"mouse." +msgstr "Se abilitato, inverte la direzione dell'ingrandimento con la rotellina del mouse." msgid "Show splash screen" msgstr "Mostra schermata iniziale" @@ -6945,7 +6944,7 @@ msgstr "" "Se abilitato, Orca ricorderà e cambierà automaticamente la configurazione " "del filamento/processo per ciascuna stampante." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Gestione multi-dispositivo (avrà effetto dopo il riavvio di Orca)." msgid "" @@ -6964,7 +6963,7 @@ msgstr "Disposizione automatica del piatto dopo la clonazione dell'oggetto" msgid "Network" msgstr "Rete" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Sincronizzazione automatica profili utente (stampante/filamento/processo)" @@ -7042,7 +7041,7 @@ msgstr "Numero massimo di progetti recenti" msgid "Clear my choice on the unsaved projects." msgstr "Cancella la mia scelta sui progetti non salvati." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Nessun avviso durante il caricamento di 3MF con G-code modificati" msgid "Auto-Backup" @@ -7159,10 +7158,10 @@ msgstr "pulsante salvataggio debug" msgid "save debug settings" msgstr "salva impostazioni debug" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Le impostazioni di debug sono state salvate correttamente!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Cambia ambiente cloud; Effettua nuovamente l'accesso!" msgid "System presets" @@ -7177,10 +7176,10 @@ msgstr "Profili incompatibili" msgid "AMS filaments" msgstr "Filamento AMS" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Fai click per selezionare il colore del filamento" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Si prega di scegliere il colore del filamento" msgid "Add/Remove presets" @@ -7198,7 +7197,7 @@ msgstr "Aggiungi/rimuovi filamento" msgid "Add/Remove materials" msgstr "Aggiungi/rimuovi materiali" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Seleziona/Rimuovi stampanti (profili di sistema)" msgid "Create printer" @@ -7270,7 +7269,7 @@ msgstr "Caricamento 3mf" msgid "Jump to model publish web page" msgstr "Vai alla pagina web di pubblicazione del modello" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Nota: la preparazione può richiedere alcuni minuti. Si prega di avere " "pazienza." @@ -7278,7 +7277,7 @@ msgstr "" msgid "Publish" msgstr "Pubblica" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "La pubblicazione è stata annullata" msgid "Slicing Plate 1" @@ -7303,7 +7302,7 @@ msgstr "Profilo interno al progetto" msgid "Name is unavailable." msgstr "Nome non disponibile." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Non è consentito sovrascrivere un profilo di sistema" #, boost-format @@ -7311,11 +7310,12 @@ msgid "Preset \"%1%\" already exists." msgstr "Il profilo \"%1%\" esiste già." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "Il profilo \"%1%\" esiste già ma è incompatibile con la stampante corrente." -msgid "Please note that saving action will replace this preset" +msgid "Please note that saving will overwrite this preset." msgstr "Tieni presente che il salvataggio sovrascriverà Il profilo corrente" msgid "The name cannot be the same as a preset alias name." @@ -7535,7 +7535,7 @@ msgid "Please check the following:" msgstr "Controllare quanto segue:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7571,7 +7571,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "La stampa di materiale ad alta temperatura (materiale %s) con %s può causare " @@ -7626,14 +7626,15 @@ msgstr "" msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" -"È necessario inserire una scheda SD prima di inviare la stampa alla scheda " +"È necessario inserire una scheda SD prima di inviare il G-code alla scheda " "SD della stampante." msgid "The printer is required to be in the same LAN as Orca Slicer." msgstr "La stampante deve essere sulla stessa LAN di OrcaSlicer." msgid "The printer does not support sending to printer SD card." -msgstr "La stampante non supporta l'invio alla scheda SD della stampante." +msgstr "" +"La stampante non supporta l'invio del G-code alla scheda SD della stampante." msgid "Slice ok." msgstr "Elaborazione completa." @@ -7693,7 +7694,7 @@ msgstr "Accesso non riuscito. Controlla il codice PIN." msgid "Log in printer" msgstr "Accesso stampante" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Vuoi accedere alla stampante con il profilo utente corrente?" msgid "Check the reason" @@ -7706,10 +7707,10 @@ msgid "Terms and Conditions" msgstr "Termini e condizioni" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Grazie per aver acquistato un dispositivo Bambu Lab. Prima di utilizzare il " @@ -7740,7 +7741,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7799,7 +7800,7 @@ msgstr "" "Clicca per ripristinare tutte le impostazioni dell'ultimo profilo salvato." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "È necessaria una torre di spurgo per la modalità timeplase fluida. " @@ -7807,7 +7808,7 @@ msgstr "" "di voler disabilitare la torre di spurgo?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "È necessaria una torre di spurgo per una modalità timelapse fluida. " @@ -7818,7 +7819,7 @@ msgid "Still print by object?" msgstr "Stampare ancora per oggetto?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7829,11 +7830,11 @@ msgstr "" "Interlacciato e disabilita altezza strato di supporto indipendente" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Modificare queste impostazioni automaticamente? \n" +"Modificare queste impostazioni automaticamente?\n" "Si - Modifica queste impostazioni automaticamente.\n" "No - Non modificare queste impostatzioni" @@ -7859,14 +7860,14 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "L'altezza dello strato supera il limite in Impostazioni stampante -> " "Estrusore -> Limiti Altezza Strato. Ciò potrebbe causare problemi di qualità " "di stampa." -msgid "Adjust to the set range automatically? \n" -msgstr "Regolare automaticamente l'intervallo impostato? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Regolare automaticamente l'intervallo impostato?\n" msgid "Adjust" msgstr "Regola" @@ -7876,8 +7877,8 @@ msgstr "Ignora" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Funzionalità sperimentale: ritrazione e taglio del filamento a una distanza " @@ -7887,9 +7888,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Funzionalità sperimentale: ritrazione e taglio del filamento a una distanza " "maggiore durante i cambi di filamento per ridurre al minimo lo spurgo. " @@ -8142,8 +8143,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Piatto SuperTack a bassa temperatura" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Indica la temperatura del piano quando è installato il Piatto SuperTack a " "bassa temperatura. Un valore pari a 0 indica che il filamento non è " @@ -8153,8 +8154,8 @@ msgid "Cool Plate" msgstr "Piatto a bassa temperatura" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Indica la temperatura del piano di stampa quando è installato il Piatto a " "bassa temperatura. Un valore pari a 0 indica che il filamento non è " @@ -8164,19 +8165,19 @@ msgid "Textured Cool plate" msgstr "Piatto ruvido a bassa temperatura" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Indica la temperatura del piano di stampa quando è installato il Piatto " "ruvido a bassa temperatura. Un valore pari a 0 indica che il filamento non è " "compatibile con la stampa sul Piatto ruvido a bassa temperatura" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "Piatto ingegneristico" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Indica la temperatura del piano di stampa quando è installato il Piatto " "ingegneristico. Un valore pari a 0 indica che il filamento non è compatibile " @@ -8186,9 +8187,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Piatto PEI liscio / Piatto ad alta temperatura" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Indica la temperatura del piano di stampa quando è installata il Piatto PEI " "liscio/Piatto adalta temperatura. Un valore pari a 0 indica che il filamento " @@ -8199,8 +8200,8 @@ msgid "Textured PEI Plate" msgstr "Piatto PEI ruvido" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Indica la temperatura del piano di stampa quando è installato il Piatto PEI " "ruvido. Un valore pari a 0 indica che il filamento non è compatibile con la " @@ -8265,13 +8266,13 @@ msgstr "G-code finale filamento" msgid "Wipe tower parameters" msgstr "Parametri torre di spurgo" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Parametri cambio filamenti per stampanti MM con estrusore singolo" msgid "Ramming settings" msgstr "Impostazioni modellazione del filamento" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Parametri cambio filamenti per stampanti MM con più estrusori" msgid "Dependencies" @@ -8283,7 +8284,7 @@ msgstr "Dipendenze profilo" msgid "Printable space" msgstr "Spazio di stampa" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Valore non valido fornito per il parametro %1%: %2%" @@ -8306,7 +8307,7 @@ msgstr "Matrice del piatto adattiva" msgid "Accessory" msgstr "Accessori" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-code macchina" msgid "Machine start G-code" @@ -8324,7 +8325,7 @@ msgstr "G-code prima del cambio strato" msgid "Layer change G-code" msgstr "G-code cambio strato" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "G-code timelapse" msgid "Change filament G-code" @@ -8420,7 +8421,7 @@ msgstr "" "%d Profilo Filamento e %d Profilo Processo sono collegati a questa " "stampante. Questi profili verranno eliminati se la stampante viene eliminata." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "I profili ereditati da altri profili non possono essere eliminati!" msgid "The following presets inherit this preset." @@ -8439,11 +8440,11 @@ msgstr[0] "Verrà eliminato anche il seguente profilo." msgstr[1] "Verranno eliminati anche i seguenti profili." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Sei sicuro di voler eliminare il profilo selezionato? \n" +"Sei sicuro di voler eliminare il profilo selezionato?\n" "Se la profilo corrisponde a un filamento attualmente in uso sulla stampante, " "reimpostare le informazioni sul filamento per tale slot." @@ -8662,7 +8663,7 @@ msgstr "È disponibile una nuova versione" msgid "Configuration update" msgstr "Aggiornamento configurazione" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "È disponibile un nuovo pacchetto di configurazione. Vuoi installarlo?" msgid "Description:" @@ -8671,14 +8672,14 @@ msgstr "Descrizione:" msgid "Configuration incompatible" msgstr "Configurazione incompatibile" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "" "il pacchetto di configurazione non è compatibile con l'applicazione corrente." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Pacchetto di configurazione non compatibile con l'applicazione corrente.\n" "%s aggiornerà il pacchetto di configurazione per consentire l'avvio " @@ -8688,7 +8689,7 @@ msgstr "" msgid "Exit %s" msgstr "Chiudi %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" "il pacchetto di configurazione non è compatibile con l'applicazione corrente." @@ -8742,18 +8743,18 @@ msgid "Map Filament" msgstr "Assegna Filamento" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Nota: il colore è stato selezionato, puoi scegliere OK \n" -" per continuare o regolarlo manualmente." +"per continuare o regolarlo manualmente." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Attenzione: il numero di estrusori nuovi \n" -" e attuali supera 16." +"e attuali supera 16." msgid "Ramming customization" msgstr "Personalizzazione modellazione del filamento" @@ -8876,7 +8877,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Nel tuo sistema mancano i codec H.264 per GStreamer, necessari per " @@ -8951,13 +8952,16 @@ msgid "Shift+R" msgstr "Maiusc+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Questo orienta automaticamente gli oggetti selezionati o tutti gli oggetti. " "Se ci sono oggetti selezionati, orienta solo quelli selezionati. Altrimenti, " -"orienterà tutti gli oggetti nel piatto corrente." +"orienterà tutti gli elementi nel progetto corrente." + +msgid "Auto orients all objects on the active plate." +msgstr "Questo orienta tutti gli oggetti nel piatto corrente." msgid "Shift+Tab" msgstr "Maiusc+Tab" @@ -9067,8 +9071,11 @@ msgstr "Strumento Ruota" msgid "Gizmo cut" msgstr "Strumento Taglia" -msgid "Gizmo Place face on bed" -msgstr "Strumento Posiziona faccia sul piatto" +msgid "Gizmo place face on bed" +msgstr "Strumento posiziona faccia sul piatto" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo maglia booleana" msgid "Gizmo SLA support points" msgstr "Strumento Punti di supporto SLA" @@ -9076,8 +9083,17 @@ msgstr "Strumento Punti di supporto SLA" msgid "Gizmo FDM paint-on seam" msgstr "Strumento Dipingi cucitura FDM" -msgid "Gizmo Text emboss / engrave" -msgstr "Strumento Testo in rilievo / incisione" +msgid "Gizmo text emboss/engrave" +msgstr "Strumento testo in rilievo/incisione" + +msgid "Gizmo measure" +msgstr "Gizmo misura" + +msgid "Gizmo assemble" +msgstr "Gizmo assemblaggio" + +msgid "Gizmo brim ears" +msgstr "Gizmo tese ad orecchio" msgid "Zoom in" msgstr "Ingrandisci" @@ -9118,8 +9134,8 @@ msgstr "Strumento" msgid "Set extruder number for the objects and parts" msgstr "Imposta il numero dell'estrusore per gli oggetti e le parti" -msgid "Delete objects, parts, modifiers " -msgstr "Elimina oggetti, parti, modificatori " +msgid "Delete objects, parts, modifiers" +msgstr "Elimina oggetti, parti, modificatori" msgid "Select the object/part and press space to change the name" msgstr "" @@ -9153,7 +9169,7 @@ msgid "On/Off one layer mode of the vertical slider" msgstr "" "Attiva/Disattiva modalità singolo strato del cursore di scorrimento verticale" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Attiva/Disattiva finestra G-code" msgid "Move slider 5x faster" @@ -9172,7 +9188,7 @@ msgid "Release Note" msgstr "Note di rilascio" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "versione %s informazioni aggiornate:" msgid "Network plug-in update" @@ -9185,7 +9201,7 @@ msgstr "" "OrcaSlicer." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Disponibile nuovo modulo di rete (%s). Vuoi installarlo?" msgid "New version of Orca Slicer" @@ -9203,10 +9219,10 @@ msgstr "riprendi" msgid "Resume Printing" msgstr "Riprendi Stampa" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Riprendi Stampa (difetti accettabili)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Riprendi Stampa (problema risolto)" msgid "Stop Printing" @@ -9331,10 +9347,10 @@ msgstr "Ultima versione" msgid "Updating" msgstr "Aggiornamento in corso" -msgid "Updating failed" +msgid "Update failed" msgstr "Aggiornamento fallito" -msgid "Updating successful" +msgid "Update successful" msgstr "Aggiornamento riuscito" msgid "" @@ -9467,7 +9483,7 @@ msgstr "" "siano collisioni." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Impossibile generare il G-code a causa di un G-Code personalizzato non " @@ -9520,7 +9536,7 @@ msgid "Multiple" msgstr "Multiplo" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Impossibile calcolare la larghezza della linea di %1%. Impossibile ottenere " "il valore \"%2%\" " @@ -9661,9 +9677,9 @@ msgstr "" " è troppo vicino all'area di esclusione e si verificheranno collisioni.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Non è possibile stampare insieme più filamenti con grandi differenze di " "temperatura, altrimenti, l'estrusore e l'ugello potrebbero bloccarsi o " @@ -9765,26 +9781,27 @@ msgstr "" "abilitato. Richiede che tutti gli oggetti abbiano gli strati della stessa " "altezza." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "La torre di spurgo richiede che lo \"spazio supporto\" sia un multiplo " "dell'altezza dello strato" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "La torre di spurgo richiede che tutti gli oggetti abbiano gli strati della " "stessa altezza" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "La torre di spurgo richiede che tutti gli oggetti siano stampati su un " "zattera (o base di stampa) con lo stesso numero di strati" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "La torre di spurgo è supportata per oggetti multipli solo se questi vengono " "stampati con la stessa 'Distanza Z superiore' (support_top_z_distance)" @@ -9798,7 +9815,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "La torre di spurgo è supportata solo se tutti gli oggetti hanno la stessa " "Altezza strato adattiva" @@ -9859,7 +9876,7 @@ msgstr "" "Supporti forzati in uso ma i supporti non sono abilitati. Abilitare i " "supporti." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "L'altezza dello strato non può superare il diametro dell'ugello" msgid "" @@ -9904,7 +9921,7 @@ msgid "" "get higher speeds." msgstr "" "L'impostazione della velocità di scatto supera quella massima prevista dalla " -"stampante. (machine_max_jerk_x/machine_max_jerk_y).\n" +"stampante. (machine_max_jerk_x/machine_max_jerk_y).\n" "Orca limiterà automaticamente la velocità di scatto per garantire che non " "superi le capacità della stampante.\n" "Per ottenere velocità più elevate, è possibile regolare la velocità massima " @@ -9989,8 +10006,8 @@ msgid "Elephant foot compensation" msgstr "Compensazione zampa d'elefante" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Questo parametro restringe il primo strato sul piano di stampa per " "compensare l'effetto zampa d'elefante" @@ -10014,7 +10031,7 @@ msgstr "strati" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Indica l'altezza di ogni strato. Un'altezza minore implica una maggiore " "precisione a fronte di un tempo di stampa maggiore" @@ -10022,7 +10039,7 @@ msgstr "" msgid "Printable height" msgstr "Altezza di stampa" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "Indica l'altezza massima di stampa, limitata dalle caratteristiche della " "stampante" @@ -10030,7 +10047,7 @@ msgstr "" msgid "Preferred orientation" msgstr "Orientamento preferito" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "Orienta automaticamente gli STL sull'asse Z al momento dell'importazione " "iniziale" @@ -10041,7 +10058,7 @@ msgstr "Nomi dei profili della stampante" msgid "Use 3rd-party print host" msgstr "Usa un host di stampa di terze parti" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Consente il controllo della stampante di BambuLab attraverso host di stampa " "di terze parti" @@ -10067,7 +10084,7 @@ msgid "Device UI" msgstr "Interfaccia utente del dispositivo" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Specificare l'URL dell'interfaccia utente del dispositivo se non corrisponde " "a print_host" @@ -10082,7 +10099,7 @@ msgstr "" "OrcaSlicer può caricare i file G-code su un host di stampa. Questo campo " "deve contenere la chiave API o la password richiesta per l'autenticazione." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Nome della stampante" msgid "HTTPS CA File" @@ -10116,7 +10133,7 @@ msgstr "" "distribuzione mancanti o non in linea. Se la connessione per i certificati " "autofirmati fallisce, dovresti abilitare questa opzione." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Nomi dei profili relativi alla stampante" msgid "Authorization Type" @@ -10128,22 +10145,23 @@ msgstr "Chiave API" msgid "HTTP digest" msgstr "Autenticazione sicura HTTP" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Evita di attraversare le pareti" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Devia ed evita di attraversare le pareti per impedire la formazione di grumi " "sulla superficie" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Evitare di attraversare le pareti - Lunghezza massima della deviazione" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Distanza massima di deviazione per evitare di attraversare le pareti. La " "stampante non eseguirà alcuna deviazione se la distanza di deviazione è " @@ -10158,47 +10176,47 @@ msgid "Other layers" msgstr "Altri strati" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Indica la temperatura del piatto per tutti gli strati eccetto il primo. Un " "valore pari a 0 indica che il filamento non supporta la stampa su Piatto a " -"bassa temperatura" +"bassa temperatura." msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Indica la temperatura del piatto per tutti gli strati eccetto il primo. Un " "valore pari a 0 indica che il filamento non supporta la stampa su Piatto " -"ruvido a bassa temperatura" +"ruvido a bassa temperatura." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Indica la temperatura del piatto per tutti gli strati eccetto il primo. Un " "valore pari a 0 indica che il filamento non supporta la stampa su Piatto " -"ingegneristico" +"ingegneristico." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Indica la temperatura del piatto per tutti gli strati eccetto il primo. Un " "valore pari a 0 indica che il filamento non supporta la stampa su Piatto ad " -"alta temperatura" +"alta temperatura." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Indica la temperatura del piatto per tutti gli strati eccetto il primo. Un " "valore pari a 0 indica che il filamento non supporta la stampa su Piatto PEI " -"ruvido" +"ruvido." msgid "Initial layer" msgstr "Primo strato" @@ -10207,64 +10225,58 @@ msgid "Initial layer bed temperature" msgstr "Temperatura piatto primo strato" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Indica la temperatura del piatto per il primo strato. Un valore pari a 0 " "indica che ilfilamento non supporta la stampa su Piatto SuperTack a bassa " "temperatura" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Indica la temperatura del piatto per il primo strato. Un valore pari a 0 " "indica che il filamento non supporta la stampa su Piatto a bassa temperatura" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Indica la temperatura del piatto per il primo strato. Un valore pari a 0 " "indica che il filamento non supporta la stampa su Piatto ruvido a bassa " "temperatura" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Indica la temperatura del piatto per il primo strato. Un valore pari a 0 " "indica che il filamento non supporta la stampa su Piatto ingegneristico" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Indica la temperatura del piatto per il primo strato. Un valore pari a 0 " "indica che il filamento non supporta la stampa su Piatto ad alta temperatura" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Indica la temperatura del piatto per il primo strato. Un valore pari a 0 " "indica che il filamento non supporta la stampa su Piatto PEI ruvido" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Tipi di piatti supportati dalla stampante" msgid "Smooth Cool Plate" msgstr "Piatto liscio a bassa temperatura" -msgid "Engineering Plate" -msgstr "Piatto ingegneristico" - msgid "Smooth High Temp Plate" msgstr "Piatto liscio ad alta temperatura" -msgid "Textured Cool Plate" -msgstr "Piatto ruvido a bassa temperatura" - msgid "First layer print sequence" msgstr "Sequenza di stampa del primo strato" @@ -10277,7 +10289,7 @@ msgstr "Numero sequenza di stampa degli altri strati" msgid "Other layers filament sequence" msgstr "Sequenza di filamento degli altri strati" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" "Questo G-code viene inserito ad ogni nuovo strato prima del sollevamento " "sull'asse Z" @@ -10288,7 +10300,7 @@ msgstr "Strati guscio inferiore" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Indica il numero di strati solidi del guscio inferiore, incluso lo strato " "della superficie inferiore. Se lo spessore calcolato con questo valore è più " @@ -10303,7 +10315,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Se lo spessore calcolato dal numero di strati del guscio inferiore è più " "sottile di questo valore, il numero di strati solidi inferiori sarà " @@ -10325,22 +10337,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Abilita il riempimento degli spazi vuoti per le superfici solide " "selezionate. La lunghezza minima da riempire può essere regolata " @@ -10354,16 +10366,16 @@ msgstr "" "stampa, riducendo la possiblià di sovraestrusione nel riempimento solido e " "assicurandosi che le superfici superiore e inferiore non presentino fori\n" "3. Da nessuna parte: disabilita il riempimento degli spazi vuoti per tutte " -"le aree di riempimento solido. \n" +"le aree di riempimento solido.\n" "\n" "Da notare che se si utilizza il generatore di perimetri classico, è " "possibile generare anche il riempimento degli spazi tra i perimetri, nel " "caso in cui non sia possibile inserire una linea a larghezza intera tra di " -"essi. Quel tipo di riempimento non è controllato da questa impostazione. \n" +"essi. Quel tipo di riempimento non è controllato da questa impostazione.\n" "\n" "Se si desidera rimuovere tutti i riempimenti degli spazi vuoti, incluso " "quello del generatore di perimetri classico, impostare il valore di 'Filtra " -"piccoli spazi vuoti' su un numero elevato, ad esempio 999999. \n" +"piccoli spazi vuoti' su un numero elevato, ad esempio 999999.\n" "\n" "Tuttavia, questa soluzione non è consigliata, poiché il riempimento degli " "spazi vuoti tra i perimetri contribuisce alla robustezza del modello. Per i " @@ -10376,7 +10388,7 @@ msgid "Everywhere" msgstr "Ovunque" msgid "Top and bottom surfaces" -msgstr "Superfici superiore e inferiore" +msgstr "Superfici superiori e inferiori" msgid "Nowhere" msgstr "Da nessuna parte" @@ -10495,9 +10507,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10509,7 +10521,7 @@ msgstr "" "I ponti interni a densità inferiore possono contribuire a ridurre le lacune " "o fori della superficie superiore e a migliorare l'affidabilità, poiché c'è " "più spazio per far circolare l'aria attorno al ponte estruso, migliorandone " -"la velocità di raffreddamento. \n" +"la velocità di raffreddamento.\n" "\n" "Questa opzione funziona particolarmente bene se combinata con la seconda " "opzione di riempimento dei ponti interni, migliorando ulteriormente la " @@ -10519,14 +10531,14 @@ msgid "Bridge flow ratio" msgstr "Flusso di stampa ponti" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" "Diminuisci leggermente questo valore (ad esempio 0,9) per ridurre la " -"quantità di filamento estruso per i ponti e tendere il materiale. \n" +"quantità di filamento estruso per i ponti e tendere il materiale.\n" "\n" "Il flusso effettivo utilizzato nei ponti viene calcolato moltiplicando " "questo valore con il flusso di stampa del filamento e, se impostato, con il " @@ -10557,14 +10569,14 @@ msgstr "Flusso di stampa superficie superiore" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Questo valore influenza la quantità di materiale utilizzata per il " "riempimento solido della superficie superiore. Puoi diminuirlo leggermente " -"per avere una finitura liscia sulla superficie. \n" +"per avere una finitura liscia sulla superficie.\n" "\n" "Il flusso di stampa effettivo utilizzato nelle superfici superiori viene " "calcolato moltiplicando questo valore con il flusso di stampa del filamento " @@ -10574,13 +10586,13 @@ msgid "Bottom surface flow ratio" msgstr "Flusso di stampa superficie inferiore" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Questo valore influenza la quantità di materiale utilizzata per il " -"riempimento solido della superficie inferiore. \n" +"riempimento solido della superficie inferiore.\n" "\n" "Il flusso di stampa effettivo utilizzato nelle superfici inferiori viene " "calcolato moltiplicando questo valore con il flusso di stampa del filamento " @@ -10600,8 +10612,8 @@ msgid "Only one wall on top surfaces" msgstr "Solo una parete su superfici superiori" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Utilizza solo una parete su superfici superiori piane, per dare più spazio " "al motivo di riempimento superiore" @@ -10624,10 +10636,10 @@ msgstr "" "da un altro strato, non verrà considerata in uno strato superiore in cui la " "sua larghezza è inferiore a questo valore. Può essere utile per non lasciare " "che si attivi l'opzione 'Solo una parete su superfici superiori. Questo " -"valore può essere espresso in mm o % della larghezza di estrusione del " +"valore può essere espresso in mm o una % della larghezza di estrusione del " "perimetro.\n" "Attenzione: se abilitato, potrebbe creare artefatti se nello strato " -"successivo si hanno elementi sottili , come le lettere. Impostare questa " +"successivo si hanno elementi sottili, come le lettere. Impostare questa " "opzione su 0 per rimuovere questi artefatti." msgid "Only one wall on first layer" @@ -10635,7 +10647,7 @@ msgstr "Solo una parete sul primo strato" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Utilizza un solo una parete sul primo strato, per dare più spazio al motivo " "di riempimento inferiore" @@ -10675,7 +10687,7 @@ msgid "Reverse only internal perimeters" msgstr "Inverti solo pareti interne" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10688,7 +10700,7 @@ msgid "" "Reverse Threshold to 0 so that all internal walls print in alternating " "directions on even layers irrespective of their overhang degree." msgstr "" -"Applica l'inversione solo alle pareti interne. \n" +"Applica l'inversione solo alle pareti interne.\n" "\n" "Questa impostazione riduce notevolmente le sollecitazioni delle parti poiché " "vengono distribuite in direzioni alternate. Ciò dovrebbe ridurre la " @@ -10708,9 +10720,9 @@ msgstr "Ponti fori svasati" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Questa opzione consente di creare ponti per i fori svasati, consentendone la " "stampa senza supporto. Le modalità disponibili sono:\n" @@ -10748,13 +10760,13 @@ msgstr "" msgid "Classic mode" msgstr "Modalità classica" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Abilita questa opzione per utilizzare la modalità classica" msgid "Slow down for overhang" msgstr "Rallenta in caso di sporgenze" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Abilita questa opzione per rallentare la stampa in base ai diversi gradi di " "sporgenza" @@ -10765,11 +10777,11 @@ msgstr "Rallenta per pareti incurvate" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10785,7 +10797,7 @@ msgstr "" "Abilita questa opzione per rallentare la stampa nelle aree in cui potrebbero " "potenzialmente formarsi deformazioni delle pareti verso l'alto. Ad esempio, " "la velocità sarà ridotta ulteriormente durante la stampa di sporgenze su " -"angoli stretti, come la prua dello scafo Benchy, riducendo la deformazione " +"angoli stretti, come la prua dello scafo della Benchy, riducendo la deformazione " "che può accumularsi su più strati.\n" "\n" "In genere si consiglia di attivare questa opzione a meno che il " @@ -10810,14 +10822,14 @@ msgid "External" msgstr "Esterno" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " "are supported by less than 13%, whether they are part of a bridge or an " "overhang." msgstr "" -"Velocità di estrusione dei ponti visibili esternamente. \n" +"Velocità di estrusione dei ponti visibili esternamente.\n" "\n" "Inoltre, se 'Rallenta per pareti incurvate' è disabilitato o è abilitata la " "modalità Sporgenza classica, la velocità di stampa delle pareti sporgenti " @@ -10837,7 +10849,7 @@ msgstr "" msgid "Brim width" msgstr "Larghezza tesa" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Questa è la distanza tra il modello e la linea della tesa più esterno" msgid "Brim type" @@ -10859,7 +10871,7 @@ msgstr "Spazio tesa-oggetto" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Crea uno spazio tra la linea più interna della tesa e l'oggetto per rendere " "più facile la rimozione della tesa" @@ -10874,12 +10886,12 @@ msgid "Brim ear max angle" msgstr "Angolo massimo della tesa ad orecchio" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Angolo massimo per far apparire una tesa ad orecchio \n" -"Se impostato su 0, non verrà creata alcuna tesa. \n" +"Se impostato su 0, non verrà creata alcuna tesa.\n" "Se impostato su ~180, la tesa verrà creata su tutto tranne che sulle sezioni " "diritte." @@ -10889,7 +10901,7 @@ msgstr "Raggio di rilevamento tesa ad orecchio" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "La geometria verrà decimata prima di rilevare gli spigoli vivi. Questo " "parametro indica la lunghezza minima dello scostamento per la decimazione.\n" @@ -10928,7 +10940,7 @@ msgstr "" "stampa attivo. Se questa espressione produce un risultato vero, questo " "profilo si considera compatibile con il profilo di stampa attivo." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "" "Determina la sequenza di stampa, che consente di stampare strato per strato " "o oggetto per oggetto" @@ -10942,7 +10954,7 @@ msgstr "Per oggetto" msgid "Intra-layer order" msgstr "Ordine intra-strato" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Ordine di stampa all'interno di un singolo strato" msgid "As object list" @@ -10955,7 +10967,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Abilita questa opzione per rallentare la velocità di stampa in modo che la " "durata d stampa finale dello strato non sia inferiore alla soglia di durata " @@ -10968,7 +10980,7 @@ msgstr "Stampa normale" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Accelerazione predefinita sia per la stampa normale che per gli spostamenti, " "eccetto lo strato iniziale" @@ -10976,14 +10988,14 @@ msgstr "" msgid "Default filament profile" msgstr "Profilo filamento predefinito" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "" "Profilo filamento predefinito quando si passa a questo profilo macchina" msgid "Default process profile" msgstr "Profilo di processo predefinito" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "" "Profilo di processo predefinito quando si passa a questo profilo macchina" @@ -10999,22 +11011,22 @@ msgid "Fan speed" msgstr "Velocità ventola" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Velocità della ventola di estrazione durante la stampa. Questo parametro " "sovrascriverà il valore della velocità nel G-code personalizzato del " -"filamento" +"filamento." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Velocità ventola di estrazione al termine della stampa" msgid "No cooling for the first" msgstr "Nessun raffreddamento per primi strati" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Spegne tutte le ventole di raffreddamento per i primi strati. Può servire a " "migliorare l'adesione del piano di stampa" @@ -11023,8 +11035,8 @@ msgid "Don't support bridges" msgstr "Non supportare i ponti" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Evita di creare i supporti lungo tutta l'area del ponte. I ponti possono " "essere solitamente stampati senza supporti nel caso non siano troppo lunghi" @@ -11072,20 +11084,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11141,56 +11153,44 @@ msgstr "Filtra piccoli ponti interni" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Questa opzione può aiutare a ridurre le lacune o fori sulle superfici " "superiori nei modelli molto inclinati o curvi.\n" -"\n" "Per impostazione predefinita, i ponti piccoli interni vengono filtrati e il " "riempimento solido interno viene estruso direttamente sul riempimento " "sparso. Ciò funziona bene nella maggior parte dei casi, velocizzando la " -"stampa senza compromettere troppo la qualità della superficie superiore. \n" -"\n" +"stampa senza compromettere troppo la qualità della superficie superiore.\n" "Tuttavia, nei modelli molto inclinati o curvi, in particolare quando viene " "utilizzata una densità di riempimento rado troppo bassa, ciò potrebbe " "causare deformazioni nel riempimento solido senza supporto e lacune o fori.\n" -"\n" "Abilitando 'Filtraggio limitato' o 'Nessun filtraggio' farà in modo che lo " "strato di ponti interni sia stampato sul riempimento solido interno con " "pochi supporti. Le opzioni sottostanti controllano la sensibilità del " "filtraggio, ovvero controllano dove vengono creati i ponti interni.\n" -"\n" "1. Filtra: abilita questa opzione. Questo è il comportamento predefinito e " "funziona bene nella maggior parte dei casi.\n" -"\n" "2. Filtraggio limitato: crea ponti interni su superfici fortemente inclinate " "evitando ponti non necessari. Funziona bene per la maggior parte dei modelli " "complessi.\n" -"\n" "3. Nessun filtraggio: crea ponti interni su ogni potenziale sporgenza " "interna. Questa opzione è utile per modelli di superficie superiore " "fortemente inclinati; tuttavia, nella maggior parte dei casi, crea troppi " @@ -11220,20 +11220,20 @@ msgstr "" msgid "End G-code" msgstr "G-code finale" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "G-code finale quando si termina la stampa" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "G-code tra oggetti" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Inserisce il G-code tra gli oggetti. Questo parametro avrà effetto solo " -"quando si stampano i modelli 'per oggetto'" +"quando si stampano i modelli 'per oggetto'." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "G-code finale quando si termina la stampa di questo filamento" msgid "Ensure vertical shell thickness" @@ -11270,7 +11270,7 @@ msgstr "Moderato" msgid "Top surface pattern" msgstr "Motivo superfice superiore" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Motivo per il riempimento della superficie superiore" msgid "Concentric" @@ -11300,7 +11300,7 @@ msgstr "Spirale a ottogramma" msgid "Bottom surface pattern" msgstr "Motivo superficie inferiore" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Motivo per il riempimento della superficie inferiore, escluso il riempimento " "dei ponti" @@ -11320,7 +11320,7 @@ msgid "" "Line width of outer wall. If expressed as a %, it will be computed over the " "nozzle diameter." msgstr "" -"Larghezza della linea della parete esterna. Se espresso come %, verrà " +"Larghezza della linea della parete esterna. Se espresso come una %, verrà " "calcolato sul diametro dell'ugello." msgid "" @@ -11349,7 +11349,7 @@ msgid "Small perimeters threshold" msgstr "Soglia perimetri piccoli" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "In questo modo viene impostata la soglia per la lunghezza dei perimetri " "piccoli. La soglia predefinita è 0 mm" @@ -11358,7 +11358,7 @@ msgid "Walls printing order" msgstr "Ordine stampa pareti" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11372,7 +11372,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11381,7 +11381,7 @@ msgid "" "\n" " " msgstr "" -"Sequenza di stampa delle pareti interne ed esterne. \n" +"Sequenza di stampa delle pareti interne ed esterne.\n" "\n" "Utilizzare Interno/Esterno per sporgenze migliori. Questo perché le pareti " "sporgenti possono aderire a un perimetro vicino durante la stampa. Tuttavia, " @@ -11397,7 +11397,7 @@ msgstr "" "richiede un minimo di 3 pareti per essere efficace, in quanto stampa prima " "le pareti interne dal 3° perimetro in poi, poi il perimetro esterno e, " "infine, il primo perimetro interno. Nella maggior parte dei casi, questa è " -"l'opzione consigliata rispetto a Esterno/Interno. \n" +"l'opzione consigliata rispetto a Esterno/Interno.\n" "\n" "Utilizzare Esterno/Interno per ottenere la stessa qualità della parete " "esterna e gli stessi vantaggi di precisione dimensionale dell'opzione " @@ -11573,7 +11573,7 @@ msgstr "" msgid "Extruder Color" msgstr "Colore estrusore" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Utilizzato solo come aiuto visivo per l'interfaccia utente" msgid "Extruder offset" @@ -11583,25 +11583,25 @@ msgid "Flow ratio" msgstr "Flusso di stampa" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Il materiale può subire variazioni volumetriche dopo il passaggio dallo " "stato fuso a quello cristallino. Questa impostazione modifica in modo " "proporzionale tutti i flussi di estrusione di questo filamento nel G-code. " "L'intervallo di valori raccomandato è compreso tra 0,95 e 1,05. Se si " "verifica una leggera sovraestrusione o sottoestrusione, è possibile regolare " -"questo valore per ottenere una superficie piatta" +"questo valore per ottenere una superficie piatta." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11611,7 +11611,7 @@ msgstr "" "proporzionale tutti i flussi di estrusione di questo filamento nel G-code. " "L'intervallo di valori raccomandato è compreso tra 0,95 e 1,05. Se si " "verifica una leggera sovraestrusione o sottoestrusione, è possibile regolare " -"questo valore per ottenere una superficie piatta. \n" +"questo valore per ottenere una superficie piatta.\n" "\n" "Il flusso di estrusione finale dell'oggetto è questo valore moltiplicato per " "il flusso di stampa del filamento." @@ -11626,7 +11626,7 @@ msgstr "" "Abilita l'anticipo di pressione. Il risultato della calibrazione automatica " "verrà sovrascritto una volta abilitata." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" "Anticipo di pressione (Klipper), anche conosciuto come Fattore di " "avanzamento lineare (Marlin)" @@ -11695,19 +11695,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Aggiungi i valori di anticipo di pressione (AP), portata volumetrica e " "accelerazione secondo le prove effettuate, separati da una virgola. Digita " @@ -11736,8 +11735,7 @@ msgstr "" "alcuna differenza, usa il valore AP dal test più veloce.\n" "3. Inserisci le triplette dei valori di anticipo di pressione, portata e " "accelerazione nella casella di testo qui e salva il tuo profilo di " -"filamento\n" -"\n" +"filamento." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)" @@ -11758,15 +11756,15 @@ msgid "Pressure advance for bridges" msgstr "Anticipo di pressione per ponti" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" "Valore di anticipo di pressione per i ponti. Impostare su 0 per " -"disabilitare. \n" +"disabilitare.\n" "\n" "Un valore AP più basso durante la stampa di ponti aiuta a ridurre la " "comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. " @@ -11778,14 +11776,15 @@ msgid "" "it will be computed over the nozzle diameter." msgstr "" "Larghezza di linea predefinita se le altre larghezze di linea sono impostate " -"su 0. Se espresso come %, verrà calcolato sul diametro del ugello." +"su 0. Se espresso come una %, verrà calcolato sul diametro del ugello." msgid "Keep fan always on" msgstr "Mantieni la ventola sempre accesa" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Se si attiva questa impostazione, la ventola di raffreddamento non si " "arresterà mai del tutto, ma funzionerà almeno alla velocità minima per " @@ -11798,25 +11797,21 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Se abilitata, questa impostazione garantirà che le pareti esterne non " "vengano stampate a velocità minore per soddisfare la durata di stampa minima " "dello strato. Ciò è particolarmente utile negli scenari seguenti:\n" -"\n" "1. Per evitare cambiamenti di brillantezza durante la stampa di filamenti " -"lucidi \n" +"lucidi\n" "2. Per evitare cambiamenti di velocità nella stampa delle pareti esterne che " -"potrebbero creare lievi artefatti sulle pareti (bande asse Z) \n" +"potrebbero creare lievi artefatti sulle pareti (bande asse Z)\n" "3. Per evitare di stampare a velocità che causano VFA (artefatti fini) sulle " -"pareti esterne\n" -"\n" +"pareti esterne" msgid "Layer time" msgstr "Durata strato" @@ -11824,7 +11819,7 @@ msgstr "Durata strato" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "La ventola di raffreddamento verrà attivata per gli strati in cui il tempo " "stimato è inferiore a questo valore. La velocità della ventola varierà tra " @@ -11857,7 +11852,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Questa impostazione indica il volume del filamento che può essere fuso ed " "estruso al secondo. Nel caso la velocità di stampa impostata sia troppo " @@ -11873,7 +11868,7 @@ msgstr "Durata caricamento filamento" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Durata di caricamento del nuovo filamento. Di solito è applicabile per " "macchine multimateriale a singolo estrusore. Per le macchine con cambio di " @@ -11885,7 +11880,7 @@ msgstr "Durata scaricamento filamento" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Durata di scaricamento del vecchio filamento. Di solito è applicabile per " "macchine multimateriale a singolo estrusore. Per le macchine con cambio di " @@ -11897,18 +11892,18 @@ msgstr "Durata cambio testina" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Tempo impiegato per cambiare testina. Di solito è applicabile per le " "macchine con cambio di testina o multitestina. Per le macchine " "multimateriale a estrusore singolo, è in genere 0. Solo a fini statistici" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Il diametro del filamento viene utilizzato per calcolare le variabili di " -"estrusione nel G-code, quindi è importante che sia accurato e preciso" +"estrusione nel G-code, quindi è importante che sia accurato e preciso." msgid "Pellet flow coefficient" msgstr "Coefficiente di flusso granuli" @@ -11977,7 +11972,7 @@ msgid "Unloading speed" msgstr "Velocità di scaricamento" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Velocità usata per scaricare il filamento sulla torre di spurgo (non " @@ -11997,8 +11992,8 @@ msgid "Delay after unloading" msgstr "Ritardo dopo lo scarico" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Tempo di attesa dopo lo scarico del filamento. Può aiutare ad ottenere cambi " @@ -12025,7 +12020,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Distanza di timbratura misurata dal centro del tubo di raffreddamento" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -12083,7 +12078,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Esegue l'operazione di modellazione della punta del filamento quando si usa " "una stampante multitestina (Ad esempio, quando l'opzione 'Estrusore singolo " @@ -12095,13 +12090,13 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Volume modellazione filamento multitestina" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Volume di filamento da modellare prima del cambio di testina." msgid "Multi-tool ramming flow" msgstr "Flusso modellazione filamento multitestina" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" "Flusso usato per l'operazione di modellazione della punta del filamento " "prima del cambio di testina." @@ -12109,20 +12104,20 @@ msgstr "" msgid "Density" msgstr "Densità" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Densità filamento, solo a fini statistici" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Tipo di materiale del filamento" msgid "Soluble material" msgstr "Materiale solubile" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Il materiale solubile viene comunemente utilizzato per stampare supporti e " "interfacce di supporto" @@ -12131,7 +12126,7 @@ msgid "Support material" msgstr "Materiale di supporto" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Il materiale di supporto viene comunemente utilizzato per stampare supporti " "e interfacce di supporto" @@ -12141,8 +12136,8 @@ msgstr "Temperatura di ammorbidimento" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Il materiale si ammorbidisce a questa temperatura, quindi quando la " "temperatura del piatto è uguale o superiore ad essa, si consiglia vivamente " @@ -12152,7 +12147,7 @@ msgstr "" msgid "Price" msgstr "Prezzo" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Prezzo del filamento, solo a fini statistici" msgid "money/kg" @@ -12161,7 +12156,7 @@ msgstr "soldi/kg" msgid "Vendor" msgstr "Produttore" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Produttore del filamento. Solo per dettagli" msgid "(Undefined)" @@ -12172,7 +12167,7 @@ msgstr "Direzione riempimento sparso" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Angolo per il motivo del riempimento sparso, che controlla l'inizio o la " "direzione principale delle linee" @@ -12182,7 +12177,7 @@ msgstr "Direzione riempimento solido" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Angolo per il motivo del riempimento solido, che controlla l'inizio o la " "direzione principale delle linee" @@ -12199,7 +12194,7 @@ msgstr "Densità riempimento sparso" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Densità del riempimento sparso interno. 100% trasforma il riempimento sparso " "in riempimento solido e verrà utilizzato il motivo del riempimento solido " @@ -12208,7 +12203,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Motivo riempimento sparso" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Motivo delle linee per il riempimento sparso interno" msgid "Grid" @@ -12281,7 +12276,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12292,7 +12287,7 @@ msgstr "" "Se non viene trovato alcun segmento di perimetro più corto di " "infill_anchor_max, la linea di riempimento viene collegata a un segmento di " "perimetro su un solo lato e la lunghezza del segmento è limitata da questo " -"parametro, ma non superiore a anchor_length_max. \n" +"parametro, ma non superiore a anchor_length_max.\n" "Impostare questo parametro su zero per disabilitare i perimetri di " "ancoraggio collegati a una singola linea di riempimento." @@ -12313,7 +12308,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12324,30 +12319,30 @@ msgstr "" "Se non viene trovato alcun segmento di perimetro più corto di questo " "parametro, la linea di riempimento viene collegata a un segmento di " "perimetro su un solo lato e la lunghezza del segmento è limitata da " -"infill_anchor, ma non superiore a questo parametro. \n" +"infill_anchor, ma non superiore a questo parametro.\n" "Se impostato a 0, verrà utilizzato il vecchio algoritmo per la connessione " "del riempimento, che dovrebbe creare lo stesso risultato di 1000 e 0." msgid "0 (Simple connect)" msgstr "0 (Connessione semplice)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Accelerazione delle pareti esterne" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Accelerazione delle pareti interne" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Accelerazione per gli spostamenti" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Accelerazione del riempimento della superficie superiore. L'utilizzo di un " "valore inferiore può migliorare la qualità della superficie superiore" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Accelerazione della parete esterna: l'utilizzo di un valore inferiore può " "migliorare la qualità" @@ -12363,8 +12358,8 @@ msgid "mm/s² or %" msgstr "mm/s o %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage " -"(e.g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." msgstr "" "Accelerazione del riempimento sparso. Se il valore è espresso in percentuale " "(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita." @@ -12380,7 +12375,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Accelerazione di stampa per il primo strato. Utilizzando un valore " "inferiore, è possibile migliorare l'adesione sul piano di stampa" @@ -12388,7 +12383,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Abilita accel_to_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Il valore max_accel_to_decel di Klipper verrà regolato automaticamente" msgid "accel_to_decel" @@ -12396,34 +12391,34 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" "Il valore max_accel_to_decel di Klipper verrà regolato su questa %% di " "accelerazione" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Scatto pareti esterne" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Scatto pareti interne" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Scatto per superficie superiore" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Scatto per riempimento" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Scatto per strato iniziale" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Scatto per spostamento" msgid "" "Line width of initial layer. If expressed as a %, it will be computed over " "the nozzle diameter." msgstr "" -"Larghezza della linea del primo strato. Se espresso come %, verrà calcolato " +"Larghezza della linea del primo strato. Se espresso come una %, verrà calcolato " "sul diametro dell'ugello." msgid "Initial layer height" @@ -12431,12 +12426,12 @@ msgstr "Altezza primo strato" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Altezza del primo strato. L'aumento dell'altezza del primo strato può " "migliorare l'adesione al piano di stampa" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "" "Indica la velocità per il primo strato, tranne che per le sezioni di " "riempimento solido" @@ -12444,13 +12439,13 @@ msgstr "" msgid "Initial layer infill" msgstr "Riempimento primo strato" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Indica la velocità per le parti di riempimento solido del primo strato" msgid "Initial layer travel speed" msgstr "Velocità spostamento primo strato" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Velocità di spostamento del primo strato" msgid "Number of slow layers" @@ -12467,7 +12462,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Temperatura ugello primo strato" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Temperatura dell'ugello per la stampa del primo strato con questo filamento" @@ -12496,7 +12491,7 @@ msgstr "Velocità ventola interfaccia di supporto" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12531,7 +12526,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Questa impostazione fa vibrare casualmente la testina durante la stampa di " "pareti, in modo che la superficie abbia un aspetto ruvido. Con questa " @@ -12552,7 +12547,7 @@ msgstr "Spessore superficie ruvida" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Ampiezza e la profondità delle oscillazioni dell’ugello. Si consiglia di " "mantenerla inferiore alla larghezza della linee delle pareti esterne." @@ -12562,21 +12557,21 @@ msgstr "Distanza punti superficie ruvida" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Distanza media tra i punti casuali introdotti su ogni segmento di linea" msgid "Apply fuzzy skin to first layer" msgstr "Applica la superficie ruvida sul primo strato" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Se applicare la superficie ruvida sul primo strato" msgid "Fuzzy skin noise type" msgstr "Tipo di rumore superficie ruvida" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12657,7 +12652,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Indica la velocità per il riempimento degli spazi vuoti. Gli spazi vuoti " "hanno solitamente linee di larghezza irregolare e devono essere stampate più " @@ -12680,7 +12675,7 @@ msgstr "Adattamento ad arco" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12689,7 +12684,7 @@ msgid "" "to line segments by the firmware." msgstr "" "Abilita questa opzione per ottenere un file G-code con movimenti G2 e G3. " -"l'opzione 'Risoluzione' regola la tolleranza di adattamento. \n" +"l'opzione 'Risoluzione' regola la tolleranza di adattamento.\n" "\n" "Nota: per le macchine con firmware Klipper, si consiglia di disabilitare " "questa opzione. Klipper non trae vantaggio dai comandi 'arco', poiché questi " @@ -12701,17 +12696,18 @@ msgstr "" msgid "Add line number" msgstr "Aggiungi numero di riga" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Abilita questa opzione per aggiungere il numero di riga (Nx) all'inizio di " -"ogni riga del G-code" +"ogni riga del G-code." msgid "Scan first layer" msgstr "Scansiona primo strato" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Abilita questa opzione per consentire alla fotocamera della stampante di " "verificare la qualità del primo strato" @@ -12721,7 +12717,7 @@ msgstr "Tipo di ugello" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Il materiale metallico del ugello. Determina la resistenza all'abrasione " "dell'ugello e il tipo di filamento che può essere stampato" @@ -12754,7 +12750,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Struttura della stampante" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "La disposizione fisica e i componenti di un dispositivo di stampa" msgid "CoreXY" @@ -12789,10 +12785,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Avvia la ventola con questo numero di secondi di anticipo rispetto " @@ -12833,7 +12829,7 @@ msgstr "" msgid "Time cost" msgstr "Costo orario" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Il costo orario della stampante" msgid "money/h" @@ -12863,7 +12859,7 @@ msgstr "" msgid "G-code flavor" msgstr "Formato G-code" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "Con quale tipo di G-code la stampante è compatibile." msgid "Klipper" @@ -12872,7 +12868,7 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Stampante modificata per granuli" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Abilita questa opzione se la tua stampante utilizza materiale a granuli " "invece di filamenti" @@ -12880,14 +12876,14 @@ msgstr "" msgid "Support multi bed types" msgstr "Supporto tipi di piatti multipli" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "Abilita questa opzione se si desidera utilizzare più tipi di piatto" msgid "Label objects" msgstr "Etichetta oggetti" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12901,9 +12897,9 @@ msgstr "" msgid "Exclude objects" msgstr "Escludi oggetti" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" -"Abilita questa opzione per aggiungere il comando EXCLUDE OBJECT nel G-code" +"Abilita questa opzione per aggiungere il comando EXCLUDE OBJECT nel G-code." msgid "Verbose G-code" msgstr "G-code verboso" @@ -12913,8 +12909,8 @@ msgid "" "descriptive text. If you print from SD card, the additional weight of the " "file could make your firmware slow down." msgstr "" -"Abilita questa opzione per ottenere un file G-code commentato, con un testo " -"descrittivo per ciascuna riga. Se si stampa dalla scheda SD, il peso " +"Abilita questa opzione per ottenere un file G-code con commenti, cioè con un " +"testo descrittivo per ciascuna riga. Se si stampa dalla scheda SD, il peso " "aggiuntivo del file potrebbe rallentare il firmware." msgid "Infill combination" @@ -12932,7 +12928,7 @@ msgid "Infill combination - Max layer height" msgstr "Combinazione riempimento - Altezza massima strato" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12943,7 +12939,7 @@ msgid "" "Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " "(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Altezza massima dello strato per il riempimento sparso combinato. \n" +"Altezza massima dello strato per il riempimento sparso combinato.\n" "\n" "Impostalo su 0 o 100% per utilizzare il diametro dell'ugello (per la massima " "riduzione del tempo di stampa) o su un valore di circa l'80% per " @@ -12964,7 +12960,7 @@ msgid "" "Line width of internal sparse infill. If expressed as a %, it will be " "computed over the nozzle diameter." msgstr "" -"Larghezza della linea del riempimento sparso interno. Se espresso come %, " +"Larghezza della linea del riempimento sparso interno. Se espresso come una %, " "verrà calcolato sul diametro dell'ugello." msgid "Infill/Wall overlap" @@ -12992,7 +12988,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "L'area di riempimento solido superiore/inferiore viene leggermente allargata " "per sovrapporsi alla parete, garantendo una migliore adesione e riducendo al " @@ -13001,13 +12997,13 @@ msgstr "" "partenza, riducendo al minimo la comparsa di fori. Il valore percentuale è " "relativo alla larghezza della linea del riempimento sparso" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Velocità del riempimento sparso interno" msgid "Inherits profile" msgstr "Eredita profilo" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Nome del profilo padre" msgid "Interface shells" @@ -13016,7 +13012,7 @@ msgstr "Pareti interfaccia" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Forza la generazione di perimetri solidi tra volumi o materiali adiacenti. " "Utile per stampe multiestrusore con materiali traslucidi o supporti con " @@ -13036,7 +13032,7 @@ msgstr "Profondità di incastro regione segmentata" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Profondità di incastro di una regione segmentata. Sarà ignorata se " @@ -13126,7 +13122,7 @@ msgstr "Tutti gli strati solidi" msgid "Ironing Pattern" msgstr "Motivo stiratura" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Motivo che verrà utilizzata durante la stiratura" msgid "Ironing flow" @@ -13134,7 +13130,7 @@ msgstr "Flusso stiratura" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Indica la quantità di materiale da estrudere durante la stiratura. È " "relativo al flusso dell'altezza normale degli strati. Un valore troppo alto " @@ -13143,7 +13139,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Spaziatura linee di stiratura" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Indica la distanza tra le linee utilizzate per la stiratura" msgid "Ironing inset" @@ -13151,7 +13147,7 @@ msgstr "Distanza stiratura dai bordi" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "Distanza da mantenere dai bordi. Un valore pari a 0 imposta questo valore a " "metà del diametro dell'ugello" @@ -13159,8 +13155,8 @@ msgstr "" msgid "Ironing speed" msgstr "Velocità stiratura" -msgid "Print speed of ironing lines" -msgstr "Indica la velocità di stampa per le linee di stiratura" +msgid "Print speed of ironing lines." +msgstr "Indica la velocità di stampa per le linee di stiratura." msgid "Ironing angle" msgstr "Angolo di stiratura" @@ -13172,17 +13168,17 @@ msgstr "" "Indica l'angolo a cui viene eseguita la stiratura. Un numero negativo " "disabilita questa funzione e utilizza il metodo predefinito." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Questo G-code viene inserito a ogni nuovo strato dopo il sollevamento " -"sull'asse Z" +"sull'asse Z." msgid "Supports silent mode" msgstr "Supporto modalità silenziosa" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Indica se la macchina supporta la modalità silenziosa, ovvero utilizza " "un'accelerazione inferiore per stampare" @@ -13195,26 +13191,26 @@ msgstr "Limiti macchina" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Se abilitato, i limiti della macchina verranno emessi nel file G-code.\n" "Questa opzione verrà ignorata se il formato del G-code è impostato su " "Klipper." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Questo G-code verrà utilizzato come codice per la pausa di stampa. Gli " -"utenti possono inserire il G-code di pausa nel visualizzatore G-code" +"utenti possono inserire il G-code di pausa nel visualizzatore G-code." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Questo G-code verrà utilizzato come codice personalizzato" msgid "Small area flow compensation (beta)" msgstr "Compensazione del flusso su piccola area (beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Abilita la compensazione del flusso per piccole aree di riempimento" msgid "Flow Compensation Model" @@ -13330,14 +13326,14 @@ msgstr "Accelerazione massima per retrazione (M204 R)" msgid "Maximum acceleration for travel" msgstr "Accelerazione massima per spostamenti" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" "Accelerazione massima per spostamenti (M204 T), si applica solo al formato " "Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "La velocità della ventola di raffreddamento può essere aumentata quando è " "abilitato il raffreddamento automatico. Questa è la limitazione massima " @@ -13347,8 +13343,8 @@ msgid "Max" msgstr "Massimo" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "L'altezza massima degli strati stampabile per l'estrusore. Viene utilizzata " "per limitare l'altezza massima degli strati quando è abilitato Altezza " @@ -13363,23 +13359,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13391,26 +13387,26 @@ msgstr "" "un'estrusione a basso flusso (bassa velocità/larghezza inferiore) e " "viceversa.\n" "\n" -"Definisce la velocità massima con cui la portata volumetrica estrusa in mm3/" -"sec può variare nel tempo. Valori più alti significano che sono consentite " +"Definisce la velocità massima con cui la portata volumetrica estrusa in mm³/" +"s² può variare nel tempo. Valori più alti significano che sono consentite " "variazioni più elevate della velocità di estrusione, con conseguenti " "transizioni di velocità più rapide.\n" "\n" -"Il valore 0 disabilita questa funzione. \n" +"Il valore 0 disabilita questa funzione.\n" "\n" "Per le stampanti con estrusore diretto ad alta velocità e ad alto flusso " "(come Bambu lab o Voron) questo valore di solito non è necessario. Tuttavia " "può fornire alcuni vantaggi marginali in alcuni casi in cui le velocità di " "stampa di alcuni elementi variano notevolmente, ad esempio quando ci sono " "rallentamenti aggressivi dovuti a sporgenze. In questi casi si consiglia un " -"valore elevato di circa 300-350 mm3/s2 in quanto ciò consente un " +"valore elevato di circa 300-350 mm³/s² in quanto ciò consente un " "livellamento sufficiente per aiutare l'anticipo di pressione a ottenere una " "transizione di flusso più graduale.\n" "\n" "Per le stampanti più lente senza anticipo di pressione, l'opzione deve " -"essere impostata su un valore molto più basso. Un valore di 10-15 mm3/s2 è " +"essere impostata su un valore molto più basso. Un valore di 10-15 mm³/s² è " "un buon punto di partenza per gli estrusori a trasmissione diretta e di 5-10 " -"mm3/s2 per quelli Bowden. \n" +"mm³/s² per quelli Bowden.\n" "\n" "Questa funzione è nota come Equalizzatore di Pressione in Prusa slicer.\n" "\n" @@ -13424,21 +13420,21 @@ msgstr "Lunghezza del segmento di livellamento" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" "Un valore più basso determina transizioni più graduali della velocità di " "estrusione. Tuttavia, ciò determina un file G-code significativamente più " -"grande e più istruzioni da elaborare per la stampante. \n" +"grande e più istruzioni da elaborare per la stampante.\n" "\n" "Il valore predefinito 3 funziona bene per la maggior parte dei casi. Se la " "stampante scatta, aumenta questo valore per ridurre il numero di regolazioni " -"effettuate\n" +"effettuate.\n" "\n" "Valori consentiti: 0,5-5" @@ -13457,7 +13453,7 @@ msgstr "" "influire sulla velocità di stampa di elementi del modello che non saranno " "visibili all'utente." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Velocità minima ventola di raffreddamento" msgid "" @@ -13477,8 +13473,8 @@ msgid "Min" msgstr "Minimo" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "L'altezza minima degli strati stampabile per l'estrusore. Viene utilizzata " "per limitare l'altezza minima degli strati quando è abilitato Altezza strato " @@ -13522,7 +13518,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Volume ugello" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Volume dell'ugello tra l'area di taglio ed l'estremità dell'ugello" msgid "Cooling tube position" @@ -13571,7 +13567,7 @@ msgstr "Distanza di caricamento aggiuntiva" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Se impostato su zero, la distanza per cui il filamento viene spostato dalla " @@ -13588,12 +13584,12 @@ msgstr "" "I punti di inizio e fine che si trovano dall'area di taglio allo scarico." msgid "Reduce infill retraction" -msgstr "Riduci retrazione nel riempimento" +msgstr "Evita retrazione nel riempimento" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Non ritrarre quando gli spostamenti si trovano interamente in un'area di " "riempimento. Ciò significa che il trasudo del materiale non è visibile. " @@ -13611,7 +13607,7 @@ msgstr "" msgid "Filename format" msgstr "Formato nome file" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "Gli utenti possono decidere i nomi dei file progetto nell'esportazione" msgid "Make overhangs printable" @@ -13639,7 +13635,7 @@ msgstr "Rendi sporgenze stampabili - Area foro" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Area massima di un foro nella base del modello prima che venga riempito con " "una forma conica. Un valore pari a 0 riempirà tutti i fori nella base del " @@ -13667,13 +13663,13 @@ msgid "" "Line width of inner wall. If expressed as a %, it will be computed over the " "nozzle diameter." msgstr "" -"Larghezza della linea della parete interna. Se espresso come %, verrà " +"Larghezza della linea della parete interna. Se espresso come una %, verrà " "calcolato sul diametro dell'ugello." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Velocità per pareti interne" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Numero di pareti per ogni strato" msgid "Alternate extra wall" @@ -13681,20 +13677,20 @@ msgstr "Parete aggiuntiva alternativa" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" "Questa impostazione aggiunge una parete extra ad ogni altro strato. In " "questo modo il riempimento si incastra verticalmente tra le pareti, " -"ottenendo stampe più resistenti. \n" +"ottenendo stampe più resistenti.\n" "\n" "Quando questa opzione è abilitata, l'opzione 'Garantisci spessore verticale " -"del guscio' deve essere disabilitata. \n" +"del guscio' deve essere disabilitata.\n" "\n" "Si sconsiglia l'utilizzo del riempimento a fulmine insieme a questa opzione, " "poiché la quantità di riempimento a cui ancorare le pareti aggiuntive è " @@ -13709,7 +13705,7 @@ msgid "" msgstr "" "Se vuoi processare il G-code in uscita con script personalizzati, basta " "elencare qui il loro percorso assoluto. Separa i diversi script con un punto " -"e virgola. Gli script passeranno il percorso assoluto nel G-code come primo " +"e virgola. Gli script passeranno il percorso assoluto nel G-code come primo " "argomento, e potranno accedere alle impostazioni di configurazione di " "OrcaSlicer leggendo le variabili di ambiente." @@ -13731,7 +13727,7 @@ msgstr "Variante stampante" msgid "Raft contact Z distance" msgstr "Distanza Z di contatto zattera" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Indica lo spazio Z tra oggetto e zattera. Viene ignorato per le interfacce " "di supporto solubili" @@ -13739,19 +13735,19 @@ msgstr "" msgid "Raft expansion" msgstr "Espansione della zattera" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Espande tutti gli strati della zattera nel piano XY" msgid "Initial layer density" msgstr "Densità primo strato" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Densità del primo strato della zattera o del supporto" msgid "Initial layer expansion" msgstr "Espansione primo strato" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Espande il primo strato della zattera o del supporto per migliorare " "l'adesione al piatto" @@ -13761,27 +13757,27 @@ msgstr "Strati zattera" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "L'oggetto verrà sollevato per questo numero di strati di supporto. " "Utilizzare questa funzione per evitare deformazioni durante la stampa di ABS" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Il percorso del G-code viene generato dopo aver semplificato il contorno del " "modello, per evitare troppi punti e linee nel file G-code. Un valore più " "piccolo significa una risoluzione più elevata e un tempo maggiore per " -"l'elaborazione" +"l'elaborazione." msgid "Travel distance threshold" msgstr "Soglia distanza di spostamento" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "L'attivazione della retrazione avviene solo quando la distanza percorsa è " "superiore a questa soglia" @@ -13790,15 +13786,15 @@ msgid "Retract amount before wipe" msgstr "Quantità di retrazione prima di spurgo" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" -"Indica la lunghezza della retrazione prima di uno spurgo, rispetto alla " +"Indica la lunghezza della retrazione veloce prima di uno spurgo, rispetto alla " "lunghezza di retrazione." msgid "Retract when change layer" msgstr "Ritrai al cambio di strato" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Forza una retrazione quando si passa ad un nuovo strato" msgid "Retract on top layer" @@ -13806,7 +13802,7 @@ msgstr "Ritrai su strato superiore" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Forza una retrazione sullo strato superiore. La disattivazione di questa " "opzione potrebbe impedire l'intasamento dell'ugello su modelli molto lenti " @@ -13820,19 +13816,19 @@ msgid "" "travel. Set zero to disable retraction" msgstr "" "Indica la quantità di filamento nell'estrusore che viene ritirata per " -"evitare la trasudazione del materiale durante lunghi spostamenti. Impostalo " +"evitare la colatura del materiale durante lunghi spostamenti. Impostalo " "su 0 per disattivare la retrazione" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Retrazione lunga durante il taglio (beta)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Funzionalità sperimentale. Durante i cambi di filamento, quest'ultimo viene " +"Funzionalità sperimentale: Durante i cambi di filamento, quest'ultimo viene " "ritratto e tagliato a una distanza maggiore per ridurre al minimo lo spurgo. " "Sebbene ciò riduca significativamente lo spurgo, potrebbe anche aumentare il " "rischio di intasamento degli ugelli o altri problemi di stampa." @@ -13841,10 +13837,10 @@ msgid "Retraction distance when cut" msgstr "Distanza di retrazione durante il taglio" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Funzionalità sperimentale. Lunghezza di retrazione prima del taglio durante " +"Funzionalità sperimentale: Lunghezza di retrazione prima del taglio durante " "il cambio del filamento" msgid "Z-hop height" @@ -13853,40 +13849,37 @@ msgstr "Altezza sollevamento Z" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Ogni volta che si verifica una retrazione, l'ugello viene sollevato " "leggermente per creare spazio tra ugello e stampa. Ciò impedisce all'ugello " "di colpire la stampa negli spostamenti. L'uso di linee a spirale per il " "sollevamento sull'asse Z può evitare gli sfilacciamenti sulla stampa" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Limite inferiore sollevamento Z" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Il sollevamento Z avrà effetto solo quando Z è al di sopra di questo valore " -"e si trova al di sotto del parametro: \"Limite superiore sollevamento Z\"" +"e si trova al di sotto del parametro: \"Limite superiore sollevamento Z\"." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Limite superiore sollevamento Z" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Se questo valore è positivo, il sollevamento Z avrà effetto solo quando Z si " "trova al di sopra del parametro: \"Limite inferiore sollevamento Z\" ed è al " -"di sotto di questo valore" +"di sotto di questo valore." msgid "Z-hop type" msgstr "Tipo sollevamento Z" -msgid "Z hop type" -msgstr "Tipo di sollevamento Z" - msgid "Slope" msgstr "Inclinato" @@ -13897,14 +13890,14 @@ msgid "Traveling angle" msgstr "Angolo di spostamento" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Angolo di spostamento per i tipi di sollevamento Z 'Inclinato' e 'Spirale'. " -"Impostandolo a 90°, si ottiene il sollevamento 'Normale'" +"Impostandolo a 90°, si ottiene il sollevamento 'Normale'." msgid "Only lift Z above" -msgstr "Solleva Z solo al di sopra" +msgstr "Solleva Z solo al di sopra" msgid "" "If you set this to a positive value, Z lift will only take place above the " @@ -13927,7 +13920,7 @@ msgid "On surfaces" msgstr "Sulle superfici" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Forza il comportamento del sollevamento Z. Questa impostazione è influenzata " @@ -13966,15 +13959,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Velocità di retrazione" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Indica la velocità di retrazione" msgid "De-retraction Speed" msgstr "Velocità di de-retrazione" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Velocità di ricarica del filamento nell'estrusore dopo una retrazione. " "Impostando 0, la velocità sarà la stessa della retrazione" @@ -13997,15 +13990,15 @@ msgid "Disable set remaining print time" msgstr "Disabilita tempo di stampa rimanente impostato" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Disabilita la generazione di M73: imposta il tempo di stampa rimanente nel G-" -"code finale" +"code finale." msgid "Seam position" msgstr "Posizione cucitura" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Indica la posizione di partenza per ogni parte della parete esterna" msgid "Nearest" @@ -14102,7 +14095,7 @@ msgstr "Velocità cucitura a sciarpa" 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 " +"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 " @@ -14174,7 +14167,7 @@ msgid "Role base wipe speed" msgstr "Velocità di spurgo basata su ruolo" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14202,7 +14195,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14213,7 +14206,7 @@ msgstr "" "Interno o Interno/Esterno/Interno, la de-retrazione viene eseguita " "leggermente verso l'interno, a partire dall'inizio del perimetro esterno. In " "questo modo qualsiasi potenziale sovraestrusione viene nascosta dalla " -"superficie esterna. \n" +"superficie esterna.\n" "\n" "Ciò è utile quando si stampa con l'ordine Esterno/Interno o Interno/Esterno/" "Interno, poiché in queste modalità è più probabile che venga stampato un " @@ -14224,9 +14217,9 @@ msgstr "Velocità di spurgo" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "La velocità di spurgo è determinata dall'impostazione della velocità " "specificata in questa configurazione. Se il valore è espresso in percentuale " @@ -14252,11 +14245,11 @@ msgstr "" msgid "Skirt height" msgstr "Altezza gonna" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Numero di strati della gonna. Di solito solo uno" msgid "Single loop draft shield" -msgstr "" +msgstr "Perimetro singolo per scudo protettivo" msgid "" "Limits the draft shield loops to one wall after the first layer. This is " @@ -14273,7 +14266,7 @@ msgstr "Scudo protettivo" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14284,7 +14277,7 @@ msgstr "" "Uno scudo protettivo è utile per proteggere una stampa in ABS o ASA da " "deformazioni e distacchi dal piano di stampa dovuti a correnti d'aria. Di " "solito è necessario solo nelle stampanti con struttura aperta, ovvero senza " -"un involucro. \n" +"un involucro.\n" "\n" "Abilitato = la gonna è alta quanto l'oggetto stampato più alto, altrimenti " "viene utilizzato il valore di 'Altezza gonna'.\n" @@ -14315,7 +14308,7 @@ msgstr "Per oggetto" msgid "Skirt loops" msgstr "Perimetri gonna" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "Questo è il numero di perimetri per la gonna. 0 indica che la gonna è " "disabilitata" @@ -14335,9 +14328,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Lunghezza minima di estrusione del filamento (in millimetri) durante la " @@ -14350,19 +14343,20 @@ msgstr "" "aumentare il numero di perimetri." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "La velocità di stampa nel G-code esportato verrà ridotta quando la durata " "stimata di stampa dello strato è inferiore a questo valore, per ottenere un " -"migliore raffreddamento per questi strati" +"migliore raffreddamento per questi strati." msgid "Minimum sparse infill threshold" msgstr "Soglia minima riempimento sparso" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "L'area del riempimento sparso che è inferiore al valore di soglia, viene " "sostituita da un riempimento solido interno" @@ -14377,10 +14371,10 @@ msgid "" "Line width of internal solid infill. If expressed as a %, it will be " "computed over the nozzle diameter." msgstr "" -"Larghezza della linea del riempimento solido interno. Se espresso come %, " +"Larghezza della linea del riempimento solido interno. Se espresso come una %, " "verrà calcolato sul diametro dell'ugello." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Indica la velocità del riempimento solido interno, esclusa la superficie " "superiore o inferiore" @@ -14388,7 +14382,7 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Consente la stampa a spirale, che attenua i movimenti Z del contorno esterno " "e trasforma un modello solido in una stampa a parete singola con strati " @@ -14399,7 +14393,7 @@ msgstr "Spirale liscia" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Spirale liscia leviga anche i movimenti X e Y, senza alcuna cucitura " "visibile, anche nelle direzioni XY su pareti che non sono verticali" @@ -14410,10 +14404,10 @@ msgstr "Levigatura XY massima" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Distanza massima di spostamento tra i punti in XY nel tentativo di ottenere " -"una spirale uniforme. Se espressa come %, verrà calcolata sul diametro " +"una spirale uniforme. Se espressa come una %, verrà calcolata sul diametro " "dell'ugello" msgid "Spiral starting flow ratio" @@ -14474,8 +14468,8 @@ msgstr "Variazione di temperatura" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Differenza di temperatura da applicare quando un estrusore non è attivo. Il " "valore non viene utilizzato quando 'idle_temperature' nelle impostazioni del " @@ -14500,7 +14494,7 @@ msgid "Preheat steps" msgstr "Fasi preriscaldamento" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Inserisci più comandi di preriscaldamento (ad esempio M104.1). Utile solo " @@ -14509,16 +14503,16 @@ msgstr "" msgid "Start G-code" msgstr "G-code iniziale" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "G-code aggiunto all'avvio di una stampa" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "G-code aggiunto quando la stampante utilizza questo filamento" msgid "Single Extruder Multi Material" msgstr "Estrusore singolo multimateriale" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Usa un ugello singolo per stampare più filamenti" msgid "Manual Filament Change" @@ -14540,18 +14534,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Usa torre di spurgo" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Spurga il filamento rimanente nella torre di spurgo" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Abilita modellazione della punta del filamento" msgid "No sparse layers (beta)" msgstr "Nessuno strato sparso (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14624,9 +14618,9 @@ msgid "Enable support generation." msgstr "Abilita la generazione dei supporti." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Normale (auto) e Ad albero (auto) vengono utilizzati per generare " "automaticamente il supporto. Se Normale (manuale) o Ad Albero (manuale) è " @@ -14647,7 +14641,7 @@ msgstr "Ad Albero (manuale)" msgid "Support/object xy distance" msgstr "Distanza XY supporto/oggetto" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Separazione XY tra un oggetto e il suo supporto" msgid "Support/object first layer gap" @@ -14667,7 +14661,7 @@ msgstr "" msgid "On build plate only" msgstr "Solo sul piatto" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Genera supporti che poggiano solo sul piano di stampa" msgid "Support critical regions only" @@ -14690,14 +14684,14 @@ msgstr "" msgid "Top Z distance" msgstr "Distanza Z superiore" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "" "Determina lo spazio Z tra l'interfaccia di supporto superiore e l'oggetto" msgid "Bottom Z distance" msgstr "Distanza Z inferiore" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "" "Determina lo spazio Z tra l'interfaccia di supporto inferiore e l'oggetto" @@ -14706,7 +14700,7 @@ msgstr "Base supporto/zattera" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filamento per stampare basi di supporto e zattere. \"Predefinito\" indica " "che non verrà utilizzato alcun filamento specifico per il supporto e che " @@ -14725,7 +14719,7 @@ msgid "" "Line width of support. If expressed as a %, it will be computed over the " "nozzle diameter." msgstr "" -"Larghezza della linea del supporto. Se espresso come %, verrà calcolato sul " +"Larghezza della linea del supporto. Se espresso come una %, verrà calcolato sul " "diametro dell'ugello." msgid "Interface use loop pattern" @@ -14742,7 +14736,7 @@ msgstr "Interfaccia supporto/zattera" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filamento per la stampa delle interfacce di supporto. \"Predefinito\" indica " "che non viene utilizzato alcun filamento specifico per l'interfaccia di " @@ -14751,13 +14745,13 @@ msgstr "" msgid "Top interface layers" msgstr "Strati interfaccia superiore" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Numero di strati dell'interfaccia superiore" msgid "Bottom interface layers" msgstr "Strati interfaccia inferiore" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Numero di strati dell'interfaccia inferiore" msgid "Same as top" @@ -14766,25 +14760,25 @@ msgstr "Come quello superiore" msgid "Top interface spacing" msgstr "Spaziatura interfaccia superiore" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Spaziatura delle linee dell'interfaccia. 0 equivale ad un'interfaccia solida" msgid "Bottom interface spacing" msgstr "Spaziatura interfaccia inferiore" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Spaziatura delle linee dell'interfaccia inferiore. 0 equivale ad " "un'interfaccia solida" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Velocità per le interfacce di supporto" msgid "Base pattern" msgstr "Motivo base" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Motivo delle linee utilizzate nei supporti" msgid "Rectilinear grid" @@ -14799,7 +14793,7 @@ msgstr "Motivo interfaccia" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Motivo delle linee per le interfacce di supporto. Il motivo predefinito per " "le interfacce di supporto non solubili è Rettilineo mentre quello per le " @@ -14811,17 +14805,17 @@ msgstr "Rettilineo Interlacciato" msgid "Base pattern spacing" msgstr "Spaziatura motivo base" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Spaziatura tra le linee di supporto" msgid "Normal Support expansion" msgstr "Espansione supporti normali" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" "Espandere (+) o restringere (-) l'estensione orizzontale del supporto normale" -msgid "Speed of support" +msgid "Speed of support." msgstr "Velocità del supporto" msgid "" @@ -14865,7 +14859,7 @@ msgstr "Altezza strato supporto indipendente" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Gli strati dei supporti utilizzano un'altezza di strato indipendente " @@ -14900,8 +14894,8 @@ msgid "Tree support branch angle" msgstr "Angolo rami supporti ad albero" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Questa impostazione determina l'angolo massimo di sporgenza che i rami del " @@ -14953,8 +14947,8 @@ msgid "Adaptive layer height" msgstr "Altezza strato adattiva" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Abilitando questa opzione, l'altezza degli strati dei supporti ad albero, " "eccetto il primo, verrà calcolata automaticamente " @@ -14964,7 +14958,7 @@ msgstr "Larghezza tesa automatica" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Abilitando questa opzione, la larghezza della tesa per i supporti ad albero " "verrà calcolata automaticamente" @@ -14972,7 +14966,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Larghezza tesa supporto ad albero" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "Distanza dal ramo dell'albero alla linea più esterna della tesa" msgid "Tip Diameter" @@ -15020,7 +15014,7 @@ msgstr "Riempimento supporti ad albero" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Questa impostazione specifica se aggiungere il riempimento all'interno di " "grandi cavità del supporto dell'albero" @@ -15034,7 +15028,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -15045,7 +15039,7 @@ msgstr "" "\"machine_start_gcode\"\n" " che imposta la temperatura della camera e attende che venga raggiunta. " "Inoltre se presente, emette un comando M141 alla fine della stampa per " -"spegnere il riscaldatore della camera. \n" +"spegnere il riscaldatore della camera.\n" "\n" "Questa opzione richiede che il firmware supporti i comandi M191 e M141 " "tramite macro o in modo nativo, e viene solitamente utilizzata quando non è " @@ -15059,13 +15053,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -15077,7 +15071,7 @@ msgstr "" "della camera più alta può aiutare a sopprimere o ridurre le deformazioni e " "potenzialmente portare a una maggiore resistenza di legame tra i vari " "strati. Tuttavia, allo stesso tempo, una temperatura della camera più alta " -"ridurrà l'efficienza della filtrazione dell'aria per ABS e ASA. \n" +"ridurrà l'efficienza della filtrazione dell'aria per ABS e ASA.\n" "\n" "Per PLA, PETG, TPU, PVA e altri materiali a bassa temperatura, questa " "opzione dovrebbe essere disattivata (impostata su 0), poiché la temperatura " @@ -15093,7 +15087,7 @@ msgstr "" "riscaldamento della camera, si desidera gestire il preriscaldamento nella " "macro di inizio stampa." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Temperatura dell'ugello per gli strati successivi a quello iniziale" msgid "Detect thin wall" @@ -15101,31 +15095,31 @@ msgstr "Rileva pareti sottili" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Rileva pareti sottili che non possono contenere due linee e utilizza una " "sola linea per la stampa. Potrebbe non essere stampato altrettanto bene " "perché non è un circuito chiuso" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Questo G-code viene inserito al cambio di filamento, compresi i comandi T " -"per attivare il cambio della testina" +"per attivare il cambio della testina." -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" -"Questo gcode viene inserito quando viene modificato il ruolo di estrusione" +"Questo gcode viene inserito quando viene modificato il ruolo di estrusione." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " "the nozzle diameter." msgstr "" -"Larghezza delle linee per le superfici superiori. Se espresso come %, verrà " +"Larghezza delle linee per le superfici superiori. Se espresso come una %, verrà " "calcolato sul diametro dell'ugello." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Velocità per il riempimento delle superfici solide superiori" msgid "Top shell layers" @@ -15134,7 +15128,7 @@ msgstr "Strati guscio superiore" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Indica il numero di strati solidi del guscio superiore, compreso lo strato " "della superficie superiore. Se lo spessore calcolato con questo valore è più " @@ -15152,7 +15146,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Il numero di strati solidi superiori viene aumentato durante l'elaborazione " "se lo spessore calcolato dagli strati del guscio superiore è più sottile di " @@ -15161,15 +15155,16 @@ msgstr "" "impostazione è disattivata e che lo spessore del guscio superiore è " "determinato in modo assoluto dagli strati del guscio superiore" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Indica la velocità di spostamento più rapida e senza estrusione" msgid "Wipe while retracting" msgstr "Spurga durante retrazione" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Sposta l'ugello lungo l'ultimo percorso di estrusione durante la retrazione " "per rimuovere il materiale fuoriuscito dall'ugello. In questo modo è " @@ -15181,21 +15176,21 @@ msgstr "Distanza spurgo" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Descrive per quanto tempo l'ugello si sposterà lungo l'ultimo percorso " -"durante la retrazione. \n" +"durante la retrazione.\n" "\n" "A seconda della durata dell'operazione di spurgo, della velocità e della " "durata della retrazione dell'estrusore/filamento, potrebbe essere necessario " -"un movimento di retrazione per ritrarre il filamento rimanente. \n" +"un movimento di retrazione per ritrarre il filamento rimanente.\n" "\n" "Impostando un valore di quantità di retrazione prima dell'impostazione di " "spurgo di seguito, verra eseguita qualsiasi retrazione in eccesso prima " @@ -15229,7 +15224,7 @@ msgstr "Volume torre di spurgo" msgid "The volume of material to prime extruder on tower." msgstr "Volume materiale da usare per la torre di spurgo." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Larghezza della torre di spurgo" msgid "Wipe tower rotation angle" @@ -15265,7 +15260,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15285,9 +15280,9 @@ msgstr "" "aumentare la forza con cui l'ugello entra in collisione con eventuali grumi " "che si sono formati sulla torre di spurgo.\n" "\n" -"Prima di aumentare questo parametro oltre il valore predefinito di 90 mm/" -"sec, accertati che la stampante sia in grado di gestire in modo affidabile " -"le maggiori velocità, e che il trasudo del materiale durante il cambio di " +"Prima di aumentare questo parametro oltre il valore predefinito di 90 mm/s, " +"accertati che la stampante sia in grado di gestire in modo affidabile le " +"maggiori velocità, e che il trasudo del materiale durante il cambio di " "testina sia ben controllato.\n" "\n" "Per i perimetri esterni della torre di spurgo viene utilizzata la velocità " @@ -15336,8 +15331,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Questo oggetto viene utilizzato per spurgare l'ugello dopo un cambio di " "filamento, per risparmiare filamento e ridurre il tempo di stampa. I colori " @@ -15372,9 +15367,9 @@ msgid "Idle temperature" msgstr "Temperatura di inattività" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Temperatura dell'ugello quando l'estrusore non è attualmente utilizzato in " "configurazioni multitestina. Viene utilizzato solo quando 'Prevenzione " @@ -15384,10 +15379,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Compensazione fori X-Y" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "I fori negli oggetti verranno ingranditi o rimpiccioliti sul piano XY in " "base al valore impostato. I valori positivi ingrandiscono i fori mentre " @@ -15398,11 +15395,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Compensazione contorni X-Y" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Il contorno degli oggetti viene ingrandito o rimpicciolito nel piano XY in " "base al valore impostato. I valori positivi ingrandiscono i contorni mentre " @@ -15462,7 +15460,7 @@ msgstr "Formato miniature G-code" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Formato delle miniature del G-code: PNG per la migliore qualità, JPG per la " "dimensione più piccola, QOI per i firmware con poca memoria" @@ -15471,10 +15469,10 @@ msgid "Use relative E distances" msgstr "Usa distanze E relative" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "L'estrusione relativa è consigliata quando si utilizza l'opzione " "\"label_objects\". Alcuni estrusori funzionano meglio con questa opzione " @@ -15485,7 +15483,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "La generazione di pareti classica produce pareti con larghezza di estrusione " "costante e, per aree molto sottili, viene utilizzato il riempimento degli " @@ -15501,7 +15499,7 @@ msgstr "Lunghezza transizione parete" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Quando si passa da un numero di pareti diverso all'altro, man mano che il " "pezzo diviene più sottile, viene assegnata una certa quantità di spazio per " @@ -15518,7 +15516,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Evita la transizione avanti e indietro tra una parete aggiuntiva e una in " "meno. Questo margine estende l'intervallo di estrusione che segue a " @@ -15537,7 +15535,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Quando creare transizioni tra numeri pari e dispari di pareti. Una forma a " "cuneo con un angolo superiore a questa impostazione non avrà transizioni e " @@ -15550,7 +15548,7 @@ msgstr "Conteggio distribuzione parete" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Numero di pareti, contati a partire dal centro, sui quali deve essere " "distribuita la variazione. Valori più bassi indicano che le pareti esterne " @@ -15559,11 +15557,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Dimensione minima elementi" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Spessore minimo degli elementi sottili. Gli elementi del modello più sottili " "di questo valore non verranno stampati, mentre le più spesse della " @@ -15614,7 +15613,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Larghezza della parete che sostituirà gli elementi sottili (in base alla " "dimensione minima degli elementi) del modello. Se la larghezza minima della " @@ -15626,9 +15625,9 @@ msgid "Detect narrow internal solid infill" msgstr "Rileva riempimento solido interno stretto" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Questa opzione rileva automaticamente le aree interne strette di riempimento " "solido. Se abilitato, per queste aree, verrà utilizzato il motivo " @@ -15662,7 +15661,7 @@ msgstr "Esporta dati elaborati in una cartella." msgid "Load slicing data" msgstr "Carica dati elaborati" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Carica i dati elaborati nella cache dalla directory" msgid "Export STL" @@ -15674,7 +15673,7 @@ msgstr "Esporta gli oggetti in un singolo STL." msgid "Export multiple STLs" msgstr "Esporta STL multipli" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Esporta gli oggetti in STL mutipli nella directory" msgid "Slice" @@ -15698,7 +15697,7 @@ msgstr "verifica macchine" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" "verifica se la macchina corrente è compatibile con le macchine presenti " "nell'elenco" @@ -15706,7 +15705,7 @@ msgstr "" msgid "Load default filaments" msgstr "Carica filamenti predefiniti" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Carica il primo filamento come predefinito per quelli non caricati" msgid "Minimum save" @@ -15730,7 +15729,7 @@ msgstr "tempo massimo di elaborazione per piatto in secondi." msgid "No check" msgstr "Nessun controllo" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Non eseguire alcun controllo di validità, come il controllo dei conflitti di " "percorso del G-code." @@ -15765,17 +15764,17 @@ msgstr "Opzioni disposizione" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Opzioni di disposizione: 0-disabilita, 1-abilita, altro-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Conteggio delle ripetizioni" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Numero di ripetizioni dell'intero modello" msgid "Ensure on bed" msgstr "Accerta che sia sul piano" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Solleva l'oggetto sopra il piatto quando è parzialmente sotto. Disabilitato " "per impostazione predefinita" @@ -15790,7 +15789,7 @@ msgstr "" msgid "Convert Unit" msgstr "Converti unità" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Converti le unità del modello" msgid "Orient Options" @@ -15808,72 +15807,72 @@ msgstr "Ruota attorno ad Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Angolo di rotazione attorno all'asse Y in gradi." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Ridimensiona il modello in base a un fattore decimale" msgid "Load General Settings" msgstr "Carica impostazioni generali" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Carica le impostazioni di processo/macchina dal file specificato" msgid "Load Filament Settings" msgstr "Carica impostazioni filamento" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Carica le impostazioni del filamento dall'elenco di file specificato" msgid "Skip Objects" -msgstr "Salta oggetti" +msgstr "Salta Oggetti" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Salta alcuni oggetti in questa stampa" msgid "Clone Objects" -msgstr "Clona oggetti" +msgstr "Clona Oggetti" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "Clona gli oggetti nell'elenco di caricamento" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" "carica le impostazioni di processo/macchina aggiornate quando si utilizza " "Aggiorna" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "carica le impostazioni di processo/macchina aggiornate dal file specificato " "quando si utilizza Aggiorna" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" "carica le impostazioni del filamento aggiornate quando si utilizza Aggiorna" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" "carica le impostazioni aggiornate del filamento dal file specificato quando " "si utilizza Aggiorna" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "se abilitato, controlla se la macchina corrente è compatibile con le " "macchine presenti nell'elenco" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "impostazioni macchine" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "l'elenco delle impostazioni delle macchine deve essere controllato" msgid "Load assemble list" msgstr "Carica elenco di assemblaggio" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" "Carica l'elenco degli oggetti di assemblaggio dal file di configurazione" @@ -15898,24 +15897,24 @@ msgid "Debug level" msgstr "Livello di debug" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " -"5:trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" +"trace\n" msgstr "" -"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, " -"5:traccia\n" +"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, 5:" +"traccia\n" msgid "Enable timelapse for print" msgstr "Abilita timelapse per la stampa" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" "Se abilitato, verrà utilizzato il timelapse durante l'elaborazione del piatto" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Carica G-code personalizzato" -msgid "Load custom gcode from json" -msgstr "Carica G-code personalizzato da json" +msgid "Load custom G-code from json." +msgstr "Carica G-code personalizzato da json." msgid "Load filament ids" msgstr "Carica ID dei filamenti" @@ -15923,36 +15922,37 @@ msgstr "Carica ID dei filamenti" msgid "Load filament ids for each object" msgstr "Carica gli ID dei filamenti per ogni oggetto" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Consenti più colori sul piatto" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "Se abilitato, la disposizione consentirà più colori sul piatto" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Consenti rotazioni quando si dispone" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" "Se abilitato, la disposizione consentirà la rotazione quando si posiziona " "l'oggetto" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Evita regione calibrazione estrusione quando si dispone" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Se abilitato, la disposizione eviterà la regione di calibrazione " "dell'estrusione quando si posiziona l'oggetto" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "Salta G-code modificati nel 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" -"Salta i G-code modificati nel 3mf dai profili della stampante o del filamento" +"Salta i G-code modificati nel 3mf dai profili della stampante o del " +"filamento." msgid "MakerLab name" msgstr "Nome MakerLab" @@ -15978,13 +15978,13 @@ msgstr "elenco valori metadati" msgid "metadata value list added into 3mf" msgstr "elenco dei valori dei metadati aggiunti nel 3mf" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Consenti l'elaborazione del 3mf con la versione più recente" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Sollevamento Z corrente" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" "Contiene i sollevamenti Z presenti all'inizio del blocco di G-code " "personalizzato." @@ -16094,10 +16094,10 @@ msgstr "" "Volume totale di filamento estruso per ogni estrusore durante l'intera " "stampa." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Totale cambi di testina" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Numero di cambi di testina durante la stampa." msgid "Total volume" @@ -16346,7 +16346,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "La compensazione delle dimensioni XY di un oggetto non verrà utilizzata " "perché è anche dipinto a colori.\n" @@ -16359,8 +16359,8 @@ msgstr "Supporto: generazione punti di contatto" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Formato file sconosciuto: il file di input deve avere " -"un'estensione .stl, .obj o .amf(.xml)." +"Formato file sconosciuto: il file di input deve avere un'estensione .stl, ." +"obj o .amf(.xml)." msgid "Loading of a model file failed." msgstr "Caricamento file del modello non riuscito." @@ -16370,11 +16370,8 @@ msgstr "Impossibile leggere il file fornito perché è vuoto" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Formato file sconosciuto: il file di input deve avere un'estensione .3mf " -"o .zip.amf." - -msgid "Canceled" -msgstr "Annullato" +"Formato file sconosciuto: il file di input deve avere un'estensione .3mf o ." +"zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: impossibile analizzare" @@ -16480,7 +16477,7 @@ msgid "The name cannot be empty." msgstr "Il nome non può essere vuoto." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Il profilo selezionato: %s non è stato trovato." msgid "The name cannot be the same as the system preset name." @@ -16514,7 +16511,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Questo tipo di macchina può contenere solo 16 risultati per ugello. Puoi " @@ -16529,7 +16526,7 @@ msgstr "Connessione alla stampante..." msgid "The failed test result has been dropped." msgstr "Il risultato del test non riuscito è stato eliminato." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "" "Il risultato della calibrazione della dinamica del flusso è stato salvato " "sulla stampante" @@ -16558,11 +16555,11 @@ msgstr "Errore interno" msgid "Please select at least one filament for calibration" msgstr "Si prega di selezionare almeno un filamento per la calibrazione" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" "Il risultato della calibrazione della portata è stato salvato nel profilo" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Il risultato della calibrazione della velocità volumetrica massima è stato " "salvato nel profilo" @@ -16575,10 +16572,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Ora abbiamo aggiunto la calibrazione automatica per diversi filamenti, che è " "completamente automatizzata e il risultato verrà salvato nella stampante per " @@ -16640,12 +16637,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Dopo aver utilizzato la calibrazione della dinamica del flusso, potrebbero " "esserci ancora alcuni problemi di estrusione, ad esempio:\n" @@ -16768,7 +16765,7 @@ msgstr "Il nome non può superare i 40 caratteri." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Verrà salvato solo uno dei risultati con lo stesso nome. Sei sicuro di voler " "sostituire gli altri risultati?" @@ -16823,9 +16820,6 @@ msgstr "Salta calibrazione2" msgid "flow ratio : %s " msgstr "flusso di stampa : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Si prega di scegliere un blocco con la superficie superiore più liscia" - msgid "Please choose a block with smoothest top surface." msgstr "" "Si prega di scegliere un blocco con la superficie superiore più liscia." @@ -16872,7 +16866,7 @@ msgstr "Calibrazione per filamento" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Suggerimenti per la calibrazione dei materiali: \n" "- Materiali che possono condividere la stessa temperatura del piano " @@ -17142,7 +17136,7 @@ msgstr "Lunghezza di retrazione finale: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Invia G-code all'host di stampa" msgid "Upload to Printer Host with the following filename:" @@ -17189,7 +17183,7 @@ msgstr "Annulla selezione" msgid "Show error message" msgstr "Mostra messaggio d'errore" -msgid "Enqueued" +msgid "Queued" msgstr "Messo in coda" msgid "Uploading" @@ -17280,14 +17274,14 @@ msgstr "Versione del sistema:" msgid "DNS Server:" msgstr "Server DNS:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "Prova OrcaSlicer(GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "Prova OrcaSlicer(GitHub):" -msgid "Test Bing.com" -msgstr "Prova Bing.com" +msgid "Test bing.com" +msgstr "Prova bing.com" msgid "Test bing.com:" msgstr "Prova bing.com:" @@ -17354,7 +17348,7 @@ msgstr "" "fornitore personalizzato." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" o \"Generico\" non possono essere utilizzati come produttore per " "filamenti personalizzati." @@ -17380,7 +17374,7 @@ msgstr "" "Tutti i valori immessi di produttore personalizzato o seriale sono spazi. Si " "prega di inserire di nuovo." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "Il produttore non può essere un numero. Si prega di inserire di nuovo." msgid "" @@ -17391,11 +17385,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Il nome del filamento %s che hai creato esiste già. \n" +"Il nome del filamento %s che hai creato esiste già.\n" "Se continui nella creazione, il profilo creato verrà visualizzato con il suo " "nome completo. Vuoi continuare?" @@ -17413,11 +17407,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Rinomineremo i profili come \"Produttore Tipo Seriale @stampante " -"selezionata\". \n" +"selezionata\".\n" "Per aggiungere il profilo per più stampanti, vai alla selezione della " "stampante" @@ -17442,7 +17436,7 @@ msgstr "Importa Profilo" msgid "Create Type" msgstr "Crea tipo" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "" "Il modello non è stato trovato. Si prega di selezionare nuovamente il " "produttore." @@ -17489,17 +17483,17 @@ msgstr "" "Eccezione nell'ottenere la dimensione del file, si prega di importare di " "nuovo." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" "Percorso del profilo non trovato, selezionare nuovamente il produttore." msgid "The printer model was not found, please reselect." msgstr "Il modello della stampante non è stato trovato, riselezionare." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Il diametro del nozzle non trovato, riselezionare." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "" "La configurazione predefinita della stampante non è stata trovata. Si prega " "di selezionare nuovamente." @@ -17568,7 +17562,7 @@ msgid "Create process presets failed. As follows:\n" msgstr "" "Creazione dei profili di processo non riuscita. Come indicato di seguito:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Il produttore non è stato trovato, si prega di selezionare di nuovo." msgid "Current vendor has no models, please reselect." @@ -17606,10 +17600,10 @@ msgstr "" "Non hai ancora selezionato la stampante su cui sostituire l'ugello, " "selezionala." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Creazione stampante riuscita" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Creazione filamento riuscita" msgid "Printer Created" @@ -17637,14 +17631,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" "OrcaSlicer ha rilevato che la funzione di sincronizzazione dei profili " "utente non è abilitata, il che potrebbe causare problemi per le impostazioni " -"del filamento nella pagina Dispositivo. \n" +"del filamento nella pagina Dispositivo.\n" "Fare clic su \"Sincronizza profili utente\" per abilitare la funzione di " "sincronizzazione." @@ -17697,18 +17691,18 @@ msgstr "" "il nome dopo la creazione." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Stampante e tutti profili di filamento e processo che appartengono alla " -"stampante. \n" +"stampante.\n" "Può essere condiviso con altri." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Serie di profili di filamento dell'utente. \n" +"Serie di profili di filamento dell'utente.\n" "Può essere condiviso con altri." msgid "" @@ -17725,7 +17719,7 @@ msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"Nomi delle stampanti con profili creati dell'utente. \n" +"Nomi delle stampanti con profili creati dell'utente.\n" "Tutti i profili selezionati saranno esportati come file zip." msgid "" @@ -17733,7 +17727,7 @@ msgid "" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" -"Nomi dei filamenti con profili creati dell'utente. \n" +"Nomi dei filamenti con profili creati dell'utente.\n" "Tutti i profili selezionati saranno esportati come file zip." msgid "" @@ -17741,7 +17735,7 @@ msgid "" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" -"Nomi delle stampanti con profili di processo modificati. \n" +"Nomi delle stampanti con profili di processo modificati.\n" "Tutti i profili selezionati saranno esportati come file zip." msgid "Please select at least one printer or filament." @@ -17768,7 +17762,7 @@ msgstr "" "Nota: Se viene eliminato l'unico profilo basato su questo filamento, il " "filamento verrà eliminato dopo l'uscita dalla finestra di dialogo." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "I profili ereditati da altri profili non possono essere eliminati" msgid "The following presets inherits this preset." @@ -17792,12 +17786,12 @@ msgid "Delete Filament" msgstr "Elimina filamento" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Tutti i profili di filamento appartenenti a questo filamento verranno " -"eliminati. \n" +"eliminati.\n" "Se stai utilizzando questo filamento sulla tua stampante, reimposta le " "informazioni sul filamento per quello slot." @@ -17929,16 +17923,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Tipo di host di stampa non corrispondente: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "La connessione ad AstroBox funziona correttamente." msgid "Could not connect to AstroBox" msgstr "Impossibile connettersi ad AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Nota: è richiesta una versione di AstroBox 1.1.0 o successiva." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "La connessione a Duet funziona correttamente." msgid "Could not connect to Duet" @@ -17956,7 +17950,7 @@ msgstr "Impossibile trovare le risorse per stabilire una nuova connessione" msgid "Upload not enabled on FlashAir card." msgstr "Caricamento non attivato sulla scheda FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" "La connessione a FlashAir funziona correttamente e il caricamento è " "abilitato." @@ -17971,28 +17965,28 @@ msgstr "" "Nota: è necessario FlashAir con firmware 2.00.02 o successivo e funzione di " "caricamento attiva." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "La connessione a MKS funziona correttamente." msgid "Could not connect to MKS" msgstr "Impossibile connettersi a MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "La connessione con OctoPrint funziona correttamente." msgid "Could not connect to OctoPrint" msgstr "Impossibile connettersi ad OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Nota: è richiesta una versione di OctoPrint 1.1.0 o successiva." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "La connessione a Prusa SL1 / SL1S funziona correttamente." msgid "Could not connect to Prusa SLA" msgstr "Impossibile connettersi a Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "La connessione a PrusaLink funziona correttamente." msgid "Could not connect to PrusaLink" @@ -18018,19 +18012,19 @@ msgstr "" "Caricamento non riuscito. Non è stato trovato uno spazio di archiviazione " "adatto su %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "La connessione a Prusa Connect funziona correttamente." msgid "Could not connect to Prusa Connect" msgstr "Impossibile connettersi a Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "La connessione a Repetier funziona correttamente." msgid "Could not connect to Repetier" msgstr "Impossibile connettersi a Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Nota: è richiesta la versione di Repetier 0.90.0 o successiva." #, boost-format @@ -18062,8 +18056,8 @@ msgstr "" "Errore: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Presenta un'altezza dello strato minore, che si traduce in linee di strato " "quasi impercettibili e un'elevata qualità di stampa. È adatto alla maggior " @@ -18071,8 +18065,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta velocità e " "accelerazione inferiori e il motivo di riempimento sparso è Giroide. Ciò si " @@ -18081,8 +18075,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta un'altezza " "dello strato leggermente più grande, che si traduce in linee di strato quasi " @@ -18090,8 +18084,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta un'altezza " "dello strato maggiore, che si traduce in linee di strato leggermente " @@ -18099,8 +18092,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato quasi invisibili e " @@ -18109,8 +18102,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta linee di " "strato più sottili, velocità e accelerazione inferiori e il motivo di " @@ -18119,9 +18112,9 @@ msgstr "" "molto più lunghi." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato sottili e una qualità " @@ -18130,8 +18123,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,2 mm, presenta linee di " "strato più sottili, velocità e accelerazione inferiori e il motivo di " @@ -18139,16 +18132,16 @@ msgstr "" "una qualità di stampa molto più elevata, ma tempi di stampa molto più lunghi." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Presenta un'altezza dello strato normale, che si traduce in linee di strato " "e qualità di stampa normali. Adatto alla maggior parte dei casi di stampa." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta più " "perimetri di stampa e una densità di riempimento sparso più elevata. Ciò si " @@ -18157,8 +18150,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato maggiore, che si traduce in linee di strato più visibili e una " @@ -18166,8 +18159,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato maggiore, che si traduce in linee di strato più visibili e una " @@ -18175,8 +18168,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato meno visibili e una " @@ -18185,8 +18178,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato minore, velocità e accelerazione inferiori e il motivo di " @@ -18196,8 +18189,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato quasi impercettibili " @@ -18206,8 +18199,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato minore, velocità e accelerazione inferiori e il motivo di " @@ -18217,24 +18210,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,4 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato quasi impercettibili " "e tempi di stampa più lunghi." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Presenta un'altezza dello strato maggiore, che si traduce in linee di strato " "visibili e qualità e tempo di stampa nella media." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,6 mm, presenta più " "perimetri di stampa e una densità di riempimento sparso più elevata. Ciò si " @@ -18243,8 +18235,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,6 mm, presenta un'altezza " "dello strato maggiore, che si traduce in linee di strato più visibili e una " @@ -18252,8 +18244,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,6 mm, presenta un'altezza " "dello strato maggiore, che si traduce in linee di strato molto più visibili " @@ -18262,8 +18254,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,6 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato meno visibili e una " @@ -18271,24 +18263,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,6 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di stampa meno visibili e una " "migliore qualità di stampa, ma tempi di stampa più lunghi." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Presenta un'altezza dello strato elevata, che si traduce in linee di strato " "molto visibili, scarsa qualità di stampa e tempi di stampa normali." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,8 mm, presenta un'altezza " "dello strato maggiore, che si traduce in linee di strato molto visibili e " @@ -18297,8 +18289,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,8 mm, presenta un'altezza " "dello strato molto maggiore, che si traduce in linee di strato estremamente " @@ -18307,9 +18299,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,8 mm, presenta un'altezza " "dello strato leggermente inferiore, che si traduce in linee di strato " @@ -18318,8 +18309,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "Rispetto al profilo predefinito di un ugello da 0,8 mm, presenta un'altezza " "dello strato minore, che si traduce in linee di strato più sottili, ma " @@ -18349,7 +18340,7 @@ msgstr "" "Profilo SimplyPrint non collegato. Vai alle opzioni di connessione per " "configurarlo." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "La connessione a Flashforge funziona correttamente." msgid "Could not connect to Flashforge" @@ -18368,7 +18359,7 @@ msgstr "" "Si è verificato un problema imprevisto durante il tentativo di accesso. " "Riprova." -msgid "User cancelled." +msgid "User canceled." msgstr "Utente rimosso." msgid "Head diameter" @@ -18399,8 +18390,8 @@ msgid "Adjust section view" msgstr "Regola la vista della sezione" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Attenzione: il tipo di tesa non è impostato su \"Dipinto\", le tese ad " "orecchio non avranno effetto!" @@ -18498,7 +18489,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Come utilizzare le scorciatoie da tastiera\n" "Sapevi che OrcaSlicer offre un'ampia gamma di scorciatoie da tastiera e " @@ -18545,7 +18536,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Disposizione automatica\n" "Sapevi che puoi disporre automaticamente tutti gli oggetti del tuo progetto?" @@ -18554,7 +18545,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Orientamento automatico\n" "Sapevi che puoi orientare gli oggetti in modo ottimale per la stampa con un " @@ -18735,7 +18726,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Tesa per una migliore adesione\n" @@ -18746,7 +18737,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Imposta i parametri per più oggetti\n" "Sapevi che puoi impostare i parametri di elaborazione per tutti gli oggetti " @@ -18763,7 +18754,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Spurga nei supporti/oggetti/riempimenti\n" @@ -18781,13 +18772,14 @@ msgstr "" "una maggiore densità di riempimento sparso per migliorare la resistenza del " "modello?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Quando è necessario stampare con lo sportello della stampante aperto\n" "Sapevi che aprendo lo sportello della stampante puoi ridurre la probabilità " @@ -18800,7 +18792,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Evita le deformazioni\n" "Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, " @@ -18808,7 +18800,7 @@ msgstr "" "ridurre la probabilità di deformazione?" #~ msgid "" -#~ "Orca Slicer will terminate because of running out of memory.It may be a " +#~ "Orca Slicer will terminate because of running out of memory. It may be a " #~ "bug. It will be appreciated if you report the issue to our team." #~ msgstr "" #~ "OrcaSlicer ha esaurito la memoria e verrà chiuso. Questo potrebbe essere " @@ -18834,17 +18826,6 @@ msgstr "" #~ "superiore di almeno 0,1 mm o utilizzo di materiali di supporto " #~ "sull'interfaccia." -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "Quando si utilizza il materiale di supporto per l'interfaccia di " -#~ "supporto, si consigliano le seguenti impostazioni:\n" -#~ "0 distanza z superiore , 0 spaziatura interfaccia, modello concentrico e " -#~ "disabilita altezza strato di supporto indipendente" - #~ msgid "Branch Diameter with double walls" #~ msgstr "Diametro diramazioni con pareti doppie" @@ -18889,9 +18870,6 @@ msgstr "" #~ msgid "Support: propagate branches at layer %d" #~ msgstr "Supporto: propagazione rami allo strato %d" -#~ msgid "Current Cabin humidity" -#~ msgstr "Current Cabin humidity" - #~ msgid "Stopped." #~ msgstr "Interrotto." @@ -19008,27 +18986,6 @@ msgstr "" #~ "Impostare su -1 per disabilitare questa sostituzione.\n" #~ "Può essere sovrascritto solo da disable_fan_first_layers." -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "Un valore più basso si traduce in transizioni più fluide della velocità " -#~ "di estrusione. Tuttavia, ciò si traduce in un file gcode " -#~ "significativamente più grande e in un maggior numero di istruzioni per " -#~ "l'elaborazione da parte della stampante. \n" -#~ "\n" -#~ "Il valore predefinito 3 funziona bene per la maggior parte dei casi. Se " -#~ "la stampante balbetta, aumentare questo valore per ridurre il numero di " -#~ "regolazioni effettuate\n" -#~ "\n" -#~ "Valori consentiti: 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -19038,15 +18995,6 @@ msgstr "" #~ "mantenere il tempo minimo dello strato sopra, quando è abilitato il " #~ "rallentamento per un migliore raffreddamento dello strato." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "normale(auto) e albero(auto) sono usati per generare automaticamente i " -#~ "supporti. Se si seleziona normale(manuale) o albero(manuale), vengono " -#~ "generati solo gli esecutori del supporto." - #~ msgid "ShiftLeft mouse button" #~ msgstr "MaiuscTasto sinistro del mouse" @@ -19057,17 +19005,11 @@ msgstr "" #~ msgid "Scale" #~ msgstr "Ridimensiona" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "Cool plate" - #~ msgid "Lift Z Enforcement" #~ msgstr "Applicazione dell'ascensore Z" -#~ msgid "Z hop when retract" -#~ msgstr "Z hop in fase retrazione" +#~ msgid "Z-hop when retract" +#~ msgstr "Z-hop in fase retrazione" #~ msgid "Reverse on odd" #~ msgstr "Retromarcia su dispari" @@ -19088,7 +19030,7 @@ msgstr "" #~ "parte grazie alla riduzione delle sollecitazioni nelle pareti della parte." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -19101,7 +19043,7 @@ msgstr "" #~ "Reverse Threshold to 0 so that all internal walls print in alternating " #~ "directions on odd layers irrespective of their overhang degree." #~ msgstr "" -#~ "Applicare la logica dei perimetri inversi solo ai perimetri interni. \n" +#~ "Applicare la logica dei perimetri inversi solo ai perimetri interni.\n" #~ "\n" #~ "Questa impostazione riduce notevolmente le sollecitazioni delle parti " #~ "poiché ora sono distribuite in direzioni alternate. Ciò dovrebbe ridurre " @@ -19153,38 +19095,6 @@ msgstr "" #~ "Durante la stampa per oggetto, il Nozzle potrebbe urtare lo skirt.\n" #~ "Quindi, ripristina il layer skirt su 1 per evitare collisioni." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "La geometria verrà decimata prima di rilevare gli angoli acuti. Questo " -#~ "parametro indica la lunghezza minima dello scostamento per la " -#~ "decimazione.\n" -#~ "0 per disattivare" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Avviare la ventola questo numero di secondi prima dell'ora di inizio " -#~ "prevista (è possibile utilizzare i secondi frazionari). Si presume " -#~ "un'accelerazione infinita per questa stima del tempo e si terrà conto " -#~ "solo dei movimenti G1 e G0 (l'adattamento dell'arco non è supportato).\n" -#~ "Non sposterà i comandi dei fan dai gcode personalizzati (agiscono come " -#~ "una sorta di \"barriera\").\n" -#~ "Non sposterà i comandi delle ventole nel gcode di avvio se è attivato " -#~ "l'opzione \"solo gcode di avvio personalizzato\".\n" -#~ "Utilizzare 0 per disattivare." - #~ msgid "Limited" #~ msgstr "Limitato" @@ -19222,7 +19132,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19248,10 +19158,9 @@ msgstr "" #~ "\n" #~ "\n" #~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e " -#~ "il riempimento solido interno viene stampato direttamente sul " -#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, " -#~ "velocizzando la stampa senza compromettere troppo la qualità della " -#~ "superficie superiore.\n" +#~ "il riempimento solido interno viene stampato direttamente sul riempimento." +#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la " +#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n" #~ "\n" #~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si " #~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare " @@ -19302,7 +19211,7 @@ msgstr "" #~ "3. Da nessuna parte: disabilita il riempimento degli spazi vuoti\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Diminuire leggermente questo valore (ad esempio 0.9) per ridurre la " @@ -19349,13 +19258,13 @@ msgstr "" #~ "Velocità del ponte interno. Se il valore è espresso in percentuale, verrà " #~ "calcolato in base al bridge_speed. Il valore predefinito è 150%." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Tempo di caricamento del nuovo filamento quando si cambia filamento, solo " #~ "a fini statistici." #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Tempo di scarico vecchio filamento quando si cambia filamento, solo a " #~ "fini statistici." @@ -19395,8 +19304,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19504,12 +19413,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Si prega di trovare il cornor con il perfetto grado di estrusione" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Order of wall/infill. When the tickbox is unchecked the walls are printed " #~ "first, which works best in most cases.\n" @@ -19531,16 +19434,13 @@ msgstr "" #~ "anche far brillare il riempimento attraverso le superfici esterne della " #~ "parte." -#~ msgid "V" -#~ msgstr "V" - #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer è basato su BambuStudio di Bambulab, che è di PrusaSlicer di " -#~ "Prusa Research. PrusaSlicer è di Slic3r di Alessandro Ranellucci e della " +#~ "Prusa Research. PrusaSlicer è di Slic3r di Alessandro Ranellucci e della " #~ "comunità RepRap" #~ msgid "Export &Configs" @@ -19571,37 +19471,6 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Scarica Filamento" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Seleziona uno slot AMS, premi \"Carica\" o \"Scarica\" per caricare o " -#~ "scaricare automaticamente il filamento." - -#~ msgid "MC" -#~ msgstr "MC" - -#~ msgid "MainBoard" -#~ msgstr "MainBoard" - -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- °C" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "active" #~ msgstr "attivo" @@ -19643,7 +19512,7 @@ msgstr "" #~ "precisione." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Nota: se durante la stampa viene inserito un nuovo filamento, l'AMS non " @@ -19660,7 +19529,7 @@ msgstr "" #~ msgstr "Inizializzazione fallita (Nessun dispositivo fotocamera)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Stampante in fase di caricamento; attendi il completamento del " #~ "caricamento." @@ -19685,10 +19554,6 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "Caricamento non riuscito [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "No files [%d]" - #, c-format, boost-format #~ msgid "Load failed [%d]" #~ msgstr "Caricamento non riuscito [%d]" @@ -19707,24 +19572,21 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Sono state modificate alcune impostazioni del preset \"%1%\". \n" +#~ "Sono state modificate alcune impostazioni del preset \"%1%\".\n" #~ "Vuoi mantenere le impostazioni (nuovo valore) dopo aver cambiato i preset?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Sono stati modificati alcuni preset preimpostati. \n" +#~ "Sono stati modificati alcuni preset preimpostati.\n" #~ "Vuoi mantenere le impostazioni (nuovo valore) dopo aver cambiato i preset?" -#~ msgid " ℃" -#~ msgstr " °C" - #~ msgid "" #~ "Please go to filament setting to edit your presets if you need.\n" #~ "Please note that nozzle temperature, hot bed temperature, and maximum " @@ -19732,7 +19594,7 @@ msgstr "" #~ "set them carefully." #~ msgstr "" #~ "Vai alle impostazioni del filamento per modificare le tue impostazioni " -#~ "predefinite se necessario. \n" +#~ "predefinite se necessario.\n" #~ "Nota che la temperatura della ugello, la temperatura del piano riscaldato " #~ "e la velocità volumetrica massima hanno un impatto significativo sulla " #~ "qualità di stampa. Impostale con attenzione." @@ -19740,15 +19602,6 @@ msgstr "" #~ msgid "Studio Version:" #~ msgstr "Versione Studio:" -#~ msgid "Test BambuLab" -#~ msgstr "Test BambuLab" - -#~ msgid "Test BambuLab:" -#~ msgstr "Test BambuLab:" - -#~ msgid "Test HTTP" -#~ msgstr "Test HTTP" - #~ msgid "Test HTTP Service:" #~ msgstr "Test servizio HTTP:" @@ -19770,12 +19623,6 @@ msgstr "" #~ msgid "Test Storage Download:" #~ msgstr "Test Download dell'archiviazione:" -#~ msgid "Test plugin download" -#~ msgstr "Test plugin download" - -#~ msgid "Test Plugin Download:" -#~ msgstr "Test Plugin Download:" - #~ msgid "Test Storage Upload" #~ msgstr "Test Caricamento dell'archiviazione" @@ -19787,12 +19634,12 @@ msgstr "" #~ "disattivazione dell'opzione Garantisci spessore verticale del guscio" #~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " #~ "wall\n" #~ "No - Don't use alternate extra wall" #~ msgstr "" -#~ "Modificare automaticamente queste impostazioni? \n" +#~ "Modificare automaticamente queste impostazioni?\n" #~ "Sì - Disabilita Garantisci spessore verticale del guscio e abilita Parete " #~ "Aggiuntiva Alternativa\n" #~ "No - Non utilizzare una Parete Aggiuntiva Alternativa" @@ -19825,9 +19672,6 @@ msgstr "" #~ "genererebbe uno strato superiore troppo sottile e dovrebbe essere " #~ "disabilitata." -#~ msgid " " -#~ msgstr " " - #~ msgid "Text-Rotate" #~ msgstr "Ruota testo" @@ -19850,17 +19694,7 @@ msgstr "" #~ "sporgenze di stampa e quando le velocità delle caratteristiche non sono " #~ "specificate esplicitamente." -#~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "To add preset for more prinetrs, Please go to printer selection" -#~ msgstr "" -#~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale " -#~ "@printer selezionato\". \n" -#~ " Per aggiungere impostazioni predefinite per altre stampanti, vai alla " -#~ "selezione della stampante." - -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "La configurazione non può essere caricata." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -19875,10 +19709,10 @@ msgstr "" #~ "RHEL 7 puoi trovare quelle istruzioni sul wiki." #~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" +#~ "Relative extrusion is recommended when using \"label_objects\" option. " +#~ "Some extruders work better with this option unchecked (absolute extrusion " +#~ "mode). Wipe tower is only compatible with relative mode. It is always " +#~ "enabled on BambuLab printers. Default is checked." #~ msgstr "" #~ "L'estrusione relativa è consigliata quando si utilizza l'opzione " #~ "\"label_objects\". Alcuni estrusori funzionano meglio con questa opzione " @@ -19886,9 +19720,6 @@ msgstr "" #~ "compatibile solo con la modalità relativa. È sempre abilitato sulle " #~ "stampanti BambuLab. Il valore predefinito è selezionato" -#~ msgid "Movement:" -#~ msgstr "Movement:" - #~ msgid "Movement" #~ msgstr "Movimento" @@ -19898,9 +19729,6 @@ msgstr "" #~ msgid "Depth ratio" #~ msgstr "Rapporto di profondità" -#~ msgid "Prizm" -#~ msgstr "Prizm" - #~ msgid "connector is out of cut contour" #~ msgstr "Connettore fuori dal contorno" @@ -19914,7 +19742,7 @@ msgstr "" #~ msgstr "I connettori devono trovarsi sulla superficie dell'oggetto." #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" #~ "Stato non valido.\n" @@ -19939,7 +19767,7 @@ msgstr "" #~ "stampa. Controlla se la rete funziona correttamente e invia nuovamente la " #~ "stampa." -#~ msgid "The beginning of the vendor can not be a number. Please re-enter." +#~ msgid "The beginning of the vendor cannot be a number. Please re-enter." #~ msgstr "" #~ "L'inizio del fornitore non può essere un numero. Si prega di inserire di " #~ "nuovo." @@ -19948,7 +19776,7 @@ msgstr "" #~ msgstr "Modifica testo" #~ msgid "Error! Unable to create thread!" -#~ msgstr "Errore. Impossibile creare il processo." +#~ msgstr "Errore! Impossibile creare il processo!" #~ msgid "Exception" #~ msgstr "Eccezione" @@ -19989,7 +19817,7 @@ msgstr "" #~ "Discribe how long the nozzle will move along the last path when retracting" #~ msgstr "" #~ "Descrive per quanto tempo il nozzle si muoverà lungo l'ultimo percorso " -#~ "mentre si ritrae." +#~ "durante la retrazione." #~ msgid "" #~ "Simplify Model\n" @@ -20031,16 +19859,16 @@ msgstr "" #~ "Sì - passa automaticamente alla trama rettilinea\n" #~ "No - ripristina automaticamente la densità al valore predefinito non 100%" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "" -#~ "Riscaldare il nozzle a una temperatura superiore a 170 gradi prima di " +#~ "Riscaldare il nozzle a una temperatura superiore a 170°C prima di " #~ "caricare il filamento." -#~ msgid "Show g-code window" -#~ msgstr "Mostra la finestra del codice g" +#~ msgid "Show G-code window" +#~ msgstr "Mostra la finestra del G-code" -#~ msgid "If enabled, g-code window will be displayed." -#~ msgstr "Se abilitato, verrà visualizzata la finestra del codice g." +#~ msgid "If enabled, G-code window will be displayed." +#~ msgstr "Se abilitato, verrà visualizzata la finestra del G-code." #, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" @@ -20082,9 +19910,6 @@ msgstr "" #~ msgid "The 3mf is not compatible, load geometry data only!" #~ msgstr "Il 3mf non è compatibile, carica solo i dati della geometria!" -#~ msgid "Incompatible 3mf" -#~ msgstr "Incompatible 3mf" - #~ msgid "Add/Remove printers" #~ msgstr "Aggiungi/Rimuovi stampanti" @@ -20137,12 +19962,8 @@ msgstr "" #~ msgid "inner-outer-inner/infill" #~ msgstr "interno-esterno-interno/riempimento" -#, c-format, boost-format -#~ msgid "%%" -#~ msgstr "%%" - #~ msgid "Export the objects as multiple STL." -#~ msgstr "Esportare gli oggetti come STL multipli." +#~ msgstr "Esporta gli oggetti come STL multipli." #~ msgid "Rotate around X" #~ msgstr "Ruota attorno ad X" @@ -20151,7 +19972,7 @@ msgstr "" #~ msgstr "Angolo di rotazione attorno all'asse X in gradi." #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "Il preset selezionato: %1% non è stato trovato." #~ msgid "" @@ -20168,34 +19989,19 @@ msgstr "" #~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " #~ "slicing problems?" #~ msgstr "" -#~ "Correggi Modello\n" -#~ "Sapevi che puoi correggere un modello 3D danneggiato per evitare molti " +#~ "Ripara Modello\n" +#~ "Sapevi che puoi riparare un modello 3D danneggiato per evitare molti " #~ "problemi di slicing?" -#~ msgid "" -#~ "When need to print with the printer door opened\n" -#~ "Opening the printer door can reduce the probability of extruder/hotend " -#~ "clogging when printing lower temperature filament with a higher enclosure " -#~ "temperature. More info about this in the Wiki." -#~ msgstr "" -#~ "Quando è necessario stampare con lo sportello della stampante aperto\n" -#~ "L'apertura dello sportello della stampante può ridurre la probabilità di " -#~ "intasamento dell'estrusore/hotend quando si stampa un filamento a " -#~ "temperatura inferiore con una temperatura dell'involucro più elevata. " -#~ "Maggiori informazioni su questo nel Wiki." - #~ msgid "Embedded" #~ msgstr "Integrato" #~ msgid "Show online staff-picked models on the home page" -#~ msgstr "Mostra i modelli online selezionati dallo staff nella home page" +#~ msgstr "Mostra i modelli online selezionati dallo staff nella home page" #~ msgid "Online Models" #~ msgstr "Modelli Online" -#~ msgid "The minimum printing speed when slow down for cooling" -#~ msgstr "The minimum printing speed when slowing down for cooling." - #~ msgid "" #~ "The bed temperature exceeds filament's vitrification temperature. Please " #~ "open the front door of printer before printing to avoid nozzle clog." @@ -20204,31 +20010,6 @@ msgstr "" #~ "filamento. Aprire lo sportello anteriore della stampante prima di " #~ "stampare per evitare l'intasamento del nozzle." -#~ msgid "Temperature of vitrificaiton" -#~ msgstr "Temperature of vitrification" - -#~ msgid "" -#~ "Material becomes soft at this temperature. Thus the heatbed cannot be " -#~ "hotter than this tempature" -#~ msgstr "" -#~ "Material becomes soft at this temperature. Thus, the heat bed cannot be " -#~ "hotter than this temperature." - -#~ msgid "Enable this option if machine has auxiliary part cooling fan" -#~ msgstr "Enable this option if the machine has an auxiliary part cooling fan" - -#~ msgid "" -#~ "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " -#~ "during printing except the first several layers which is defined by no " -#~ "cooling layers" -#~ msgstr "" -#~ "This is the speed of auxiliary part cooling fan. The auxiliary fan will " -#~ "run at this speed during printing except for during the first several " -#~ "layers which may be set to have no part cooling." - -#~ msgid "Empty layers around bottom are replaced by nearest normal layers." -#~ msgstr "Empty layers around bottom are replaced by nearest normal layers." - #~ msgid "The model has too many empty layers." #~ msgstr "Il modello ha troppi layers vuoti." @@ -20239,16 +20020,16 @@ msgstr "" #~ msgstr "Calibrazione estrusione" #~ msgid "Push new filament into the extruder" -#~ msgstr "Inserisco il nuovo filamento nell'estrusore" +#~ msgstr "Inserisci il nuovo filamento nell'estrusore" #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "The bed temperature of other layers is lower than the bed temperature of " -#~ "the first layer by more than %d degrees centigrade.\n" +#~ "the first layer by more than %d degrees Celsius.\n" #~ "This may cause models to break free from the build plate during printing." #~ msgid "" @@ -20279,21 +20060,12 @@ msgstr "" #~ msgid "Score" #~ msgstr "Punteggio" -#~ msgid "Bambu High Temperature Plate" -#~ msgstr "Bambu High Temperature Plate" - #~ msgid "Can't connect to the printer" #~ msgstr "Impossibile connettersi alla stampante" -#~ msgid "Recommended temperature range" -#~ msgstr "Recommended temperature range" - -#~ msgid "High Temp Plate" -#~ msgstr "High Temp Plate" - #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "This is the bed temperature when the high temperature plate is installed. " #~ "A value of 0 means the filament does not support printing on the High " @@ -20319,9 +20091,6 @@ msgstr "" #~ "mentre lo stile ibrido creerà una struttura simile a quella dei sostegni " #~ "normali sotto grandi sporgenze piatte." -#~ msgid "Bed temperature difference" -#~ msgstr "Bed temperature difference" - #~ msgid "" #~ "Do not recommend bed temperature of other layer to be lower than initial " #~ "layer for more than this threshold. Too low bed temperature of other " @@ -20331,6 +20100,3 @@ msgstr "" #~ "inferiore a quella del primo layer di oltre questa soglia. Una " #~ "temperatura del piano troppo bassa degli altri layer può causare il " #~ "distacco dell'oggetto dal piatto." - -#~ msgid "Orient the model" -#~ msgstr "Orient the model" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 432d9ca490..b391cae343 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.2.2\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "サポートペイント" msgid "Alt + Mouse wheel" @@ -110,7 +110,7 @@ msgstr "底面選択" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "使用するフィラメント数は多いです。最初%1%個のフィラメントを使用できます" @@ -167,10 +167,10 @@ msgid "Height Range" msgstr "高さ範囲" msgid "Vertical" -msgstr "Vertical" +msgstr "" msgid "Horizontal" -msgstr "Horizontal" +msgstr "" msgid "Remove painted color" msgstr "塗った色を消去" @@ -271,10 +271,10 @@ msgid "uniform scale" msgstr "スケール" msgid "Planar" -msgstr "Planar" +msgstr "" msgid "Dovetail" -msgstr "Dovetail" +msgstr "" msgid "Auto" msgstr "自動" @@ -283,10 +283,10 @@ msgid "Manual" msgstr "手動" msgid "Plug" -msgstr "Plug" +msgstr "" msgid "Dowel" -msgstr "Dowel" +msgstr "" msgid "Snap" msgstr "スナップ" @@ -295,25 +295,25 @@ msgid "Prism" msgstr "プリズム" msgid "Frustum" -msgstr "Frustum" +msgstr "" msgid "Square" -msgstr "Square" +msgstr "" msgid "Hexagon" -msgstr "Hexagon" +msgstr "" msgid "Keep orientation" -msgstr "Keep orientation" +msgstr "" msgid "Place on cut" -msgstr "Place on cut" +msgstr "" msgid "Flip upside down" msgstr "上下反転" msgid "Connectors" -msgstr "Connectors" +msgstr "" msgid "Type" msgstr "タイプ" @@ -328,19 +328,19 @@ msgstr "形状" #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "Depth" +msgstr "" msgid "Groove" -msgstr "Groove" +msgstr "" msgid "Width" msgstr "幅" msgid "Flap Angle" -msgstr "Flap Angle" +msgstr "" msgid "Groove Angle" -msgstr "Groove Angle" +msgstr "" msgid "Part" msgstr "パーツ" @@ -368,7 +368,7 @@ msgid "Move cut plane" msgstr "カット面の移動" msgid "Mode" -msgstr "Mode" +msgstr "" msgid "Change cut mode" msgstr "カットモード変更" @@ -377,7 +377,7 @@ msgid "Tolerance" msgstr "公差" msgid "Drag" -msgstr "Drag" +msgstr "" msgid "Draw cut line" msgstr "" @@ -386,25 +386,25 @@ msgid "Left click" msgstr "左クリック" msgid "Add connector" -msgstr "Add connector" +msgstr "" msgid "Right click" msgstr "右クリック" msgid "Remove connector" -msgstr "Remove connector" +msgstr "" msgid "Move connector" -msgstr "Move connector" +msgstr "" msgid "Add connector to selection" -msgstr "Add connector to selection" +msgstr "" msgid "Remove connector from selection" -msgstr "Remove connector from selection" +msgstr "" msgid "Select all connectors" -msgstr "Select all connectors" +msgstr "" msgid "Cut" msgstr "カット" @@ -413,10 +413,10 @@ msgid "Rotate cut plane" msgstr "カット面の回転" msgid "Remove connectors" -msgstr "Remove connectors" +msgstr "" msgid "Bulge" -msgstr "Bulge" +msgstr "" msgid "Bulge proportion related to radius" msgstr "バルジの比率と半径の関係" @@ -428,7 +428,7 @@ msgid "Space proportion related to radius" msgstr "半径に関係する空間の割合" msgid "Confirm connectors" -msgstr "Confirm connectors" +msgstr "" msgid "Cancel" msgstr "取消し" @@ -456,10 +456,10 @@ msgid "Reset cutting plane" msgstr "カット面をリセット" msgid "Edit connectors" -msgstr "Edit connectors" +msgstr "" msgid "Add connectors" -msgstr "Add connectors" +msgstr "" msgid "Reset cut" msgstr "カットをリセット" @@ -477,10 +477,10 @@ msgid "Keep" msgstr "残す" msgid "Flip" -msgstr "Flip" +msgstr "" msgid "After cut" -msgstr "After cut" +msgstr "" msgid "Cut to parts" msgstr "パーツに割り切る" @@ -492,7 +492,7 @@ msgid "Warning" msgstr "警告" msgid "Invalid connectors detected" -msgstr "Invalid connectors detected" +msgstr "" #, c-format, boost-format msgid "%1$d connector is out of cut contour" @@ -505,7 +505,7 @@ msgid_plural "%1$d connectors are out of object" msgstr[0] "" msgid "Some connectors are overlapped" -msgstr "Some connectors are overlapped" +msgstr "" msgid "Select at least one object to keep after cutting." msgstr "カットした後に残すものを1つ以上選んでください。" @@ -517,7 +517,7 @@ msgid "Cut plane with groove is invalid" msgstr "溝のあるカット面は無効" msgid "Connector" -msgstr "Connector" +msgstr "" msgid "Cut by Plane" msgstr "面でカット" @@ -589,10 +589,10 @@ msgstr "ワイヤフレームを表示" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "プレビュー処理中は適用できません" -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "操作を取り消し中、少々お待ちください。" msgid "Face recognition" @@ -637,30 +637,30 @@ msgid "Thickness" msgstr "太さ" msgid "Text Gap" -msgstr "Text Gap" +msgstr "" msgid "Angle" -msgstr "Angle" +msgstr "" msgid "" "Embedded\n" "depth" -msgstr "Embedded depth" +msgstr "" msgid "Input text" msgstr "テキスト" msgid "Surface" -msgstr "Surface" +msgstr "" msgid "Horizontal text" -msgstr "Horizontal text" +msgstr "" msgid "Shift + Mouse move up or down" -msgstr "Shift + Mouse move up or down" +msgstr "" msgid "Rotate text" -msgstr "Rotate text" +msgstr "" msgid "Text shape" msgstr "文字形状" @@ -782,7 +782,7 @@ msgid "Change Text Type" msgstr "テキストタイプ変更" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "エンボステキスト用のスタイル(%1%) をリネームする" msgid "Name can't be empty." @@ -1004,8 +1004,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "全く同じフォント(\"%1%\")を読み込むことができません。アプリケーションは似たよ" "うなもの(\"%2%\")を選択しました。編集テキストを有効にするには、フォントを指定" @@ -1133,7 +1133,7 @@ msgstr "最終的な形状には、同じ座標を持つ複数の点の自己交 msgid "Shape is marked as invisible (%1%)." msgstr "図形は非表示としてマークされています (%1%)" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1264,60 +1264,59 @@ msgid "No feature" msgstr "" msgid "Vertex" -msgstr "Vertex" +msgstr "" msgid "Edge" -msgstr "Edge" +msgstr "" msgid "Plane" -msgstr "Plane" +msgstr "" msgid "Point on edge" -msgstr "Point on edge" +msgstr "" msgid "Point on circle" -msgstr "Point on circle" +msgstr "" msgid "Point on plane" -msgstr "Point on plane" +msgstr "" msgid "Center of edge" -msgstr "Center of edge" +msgstr "" msgid "Center of circle" msgstr "円の中心" msgid "Select feature" -msgstr "Select feature" +msgstr "" msgid "Select point" -msgstr "Select point" +msgstr "" msgid "Delete" msgstr "削除" msgid "Restart selection" -msgstr "Restart selection" +msgstr "" msgid "Esc" msgstr "Esc" msgid "Cancel a feature until exit" -msgstr "Cancel a feature until exit" +msgstr "" msgid "Measure" -msgstr "Measure" +msgstr "" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" -"Please confirm explosion ratio = 1, and please select at least one object" msgid "Please select at least one object." msgstr "最低1つのオブジェクトを選択してください。" msgid "Edit to scale" -msgstr "Edit to scale" +msgstr "" msgctxt "Verb" msgid "Scale all" @@ -1333,7 +1332,7 @@ msgid "Length" msgstr "長さ" msgid "Selection" -msgstr "Selection" +msgstr "" msgid " (Moving)" msgstr " (移動中)" @@ -1351,7 +1350,7 @@ msgstr "" "その間の距離を特定する。" msgid "Face" -msgstr "Face" +msgstr "" msgid " (Fixed)" msgstr "(固定)" @@ -1363,40 +1362,38 @@ msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"Feature 1 has been reset, \n" -"feature 2 has been feature 1" -msgid "Warning:please select Plane's feature." -msgstr "Warning: please select Plane's feature." +msgid "Warning: please select Plane's feature." +msgstr "" -msgid "Warning:please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." +msgstr "" -msgid "Warning:please select two different mesh." -msgstr "Warning: please select two different meshes." +msgid "Warning: please select two different meshes." +msgstr "" msgid "Copy to clipboard" msgstr "コピー" msgid "Perpendicular distance" -msgstr "Perpendicular distance" +msgstr "" msgid "Distance" -msgstr "Distance" +msgstr "" msgid "Direct distance" -msgstr "Direct distance" +msgstr "" msgid "Distance XYZ" -msgstr "Distance XYZ" +msgstr "" msgid "Parallel" msgstr "平行" msgid "Center coincidence" -msgstr "Center coincidence" +msgstr "" -msgid "Featue 1" +msgid "Feature 1" msgstr "フィーチャー1" msgid "Reverse rotation" @@ -1409,7 +1406,7 @@ msgid "Parallel distance:" msgstr "" msgid "Flip by Face 2" -msgstr "Flip by Face 2" +msgstr "" msgid "Ctrl+" msgstr "Ctrl+" @@ -1448,7 +1445,7 @@ msgid "" msgstr "構成ファイル %1% がロードされましたが、一部の値が認識できませんでした" msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" @@ -1570,23 +1567,21 @@ msgstr "プロジェクトを開く" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてくださ" "い。" msgid "Privacy Policy Update" -msgstr "Privacy Policy Update" +msgstr "" msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." msgstr "" -"The number of user presets cached in the cloud has exceeded the upper limit, " -"newly created user presets can only be used locally." msgid "Sync user presets" -msgstr "Sync user presets" +msgstr "" msgid "Loading user preset" msgstr "ユーザープリセットを読込み中" @@ -1623,13 +1618,13 @@ msgstr "" "設定ウィザードで保存先フォルダーを選択してください。" msgid "Import File" -msgstr "Import File" +msgstr "ファイルインポート" msgid "Choose files" msgstr "ファイルを選択" msgid "New Folder" -msgstr "New Folder" +msgstr "" msgid "Open" msgstr "開く" @@ -1781,7 +1776,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1791,7 +1786,7 @@ msgid "Text" msgstr "テキスト" msgid "Height range Modifier" -msgstr "Height Range Modifier" +msgstr "" msgid "Add settings" msgstr "設定を追加" @@ -1821,7 +1816,7 @@ msgid "Export as one STL" msgstr "1つのSTLとしてエクスポート" msgid "Export as STLs" -msgstr "Export as STLs" +msgstr "" msgid "Reload from disk" msgstr "ディスクから再読込み" @@ -1872,16 +1867,16 @@ msgstr "サポートにフラッシュ" msgid "Edit in Parameter Table" msgstr "パラメータテーブルで編集" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "インチから変換" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "インチ単位に復元" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "メートルから変換" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "メータル単位に復元" msgid "Assemble" @@ -1894,10 +1889,10 @@ msgid "Assemble the selected objects to an object with single part" msgstr "選択したオブジェクトを一つオブジェクトに組み立てます(単パーツ)" msgid "Mesh boolean" -msgstr "Mesh boolean" +msgstr "メッシュブール" msgid "Mesh boolean operations including union and subtraction" -msgstr "Mesh boolean operations including union and subtraction" +msgstr "結合や減算などのメッシュのブール演算" msgid "Along X axis" msgstr "X軸方向" @@ -1933,7 +1928,7 @@ msgid "Change SVG source file, projection, size, ..." msgstr "SVG ソース ファイル、プロジェクション、サイズなどを変更します。" msgid "Invalidate cut info" -msgstr "Invalidate cut info" +msgstr "" msgid "Add Primitive" msgstr "プリミティブを追加" @@ -2002,7 +1997,7 @@ msgid "auto rotate current plate" msgstr "現在のプレートを自動回転させる" msgid "Delete Plate" -msgstr "Delete Plate" +msgstr "" msgid "Remove the selected plate" msgstr "選択したプレートを削除" @@ -2038,13 +2033,13 @@ msgid "Lock" msgstr "ロック" msgid "Edit Plate Name" -msgstr "Edit Plate Name" +msgstr "" msgid "Name" msgstr "名称" msgid "Fila." -msgstr "Fila." +msgstr "" #, c-format, boost-format msgid "%1$d error repaired" @@ -2074,7 +2069,7 @@ msgid "Click the icon to reset all settings of the object" msgstr "オブジェクトへの編集をリセットします" msgid "Right button click the icon to drop the object printable property" -msgstr "Right click the icon to drop the object printable property" +msgstr "" msgid "Click the icon to toggle printable property of the object" msgstr "オブジェクトの造形属性を切り替えます" @@ -2086,7 +2081,7 @@ msgid "Click the icon to edit color painting of the object" msgstr "オブジェクトに色塗りをします" msgid "Click the icon to shift this object to the bed" -msgstr "Click the icon to shift this object to the bed" +msgstr "" msgid "Loading file" msgstr "ファイルを読み込み中" @@ -2095,7 +2090,7 @@ msgid "Error!" msgstr "エラー!" msgid "Failed to get the model data in the current file." -msgstr "Failed to get the model data in the current file." +msgstr "" msgid "Generic" msgstr "一般" @@ -2113,33 +2108,26 @@ msgid "" msgstr "オブジェクト設定で、各オブジェクトの造形設定を指定できます。" msgid "Delete connector from object which is a part of cut" -msgstr "Delete connector from object which is a part of cut" +msgstr "" msgid "Delete solid part from object which is a part of cut" -msgstr "Delete solid part from object which is a part of cut" +msgstr "" msgid "Delete negative volume from object which is a part of cut" -msgstr "Delete negative volume from object which is a part of cut" +msgstr "" msgid "" "To save cut correspondence you can delete all connectors from all related " "objects." msgstr "" -"To save cut correspondence you can delete all connectors from all related " -"objects." msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." msgstr "" -"This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed .\n" -"\n" -"To manipulate with solid parts or negative volumes you have to invalidate " -"cut information first." msgid "Delete all connectors" msgstr "全てのコネクターを削除" @@ -2147,41 +2135,41 @@ msgstr "全てのコネクターを削除" msgid "Deleting the last solid part is not allowed." msgstr "最後のソリッドパーツは削除できません。" -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "オブジェクトは一つだけのパーツが入っており、分割できません。" msgid "Assembly" msgstr "アセンブリ" msgid "Cut Connectors information" -msgstr "Cut Connectors information" +msgstr "" msgid "Object manipulation" -msgstr "Object manipulation" +msgstr "" msgid "Group manipulation" -msgstr "Group manipulation" +msgstr "" msgid "Object Settings to modify" -msgstr "Object Settings to Modify" +msgstr "" msgid "Part Settings to modify" -msgstr "Part Settings to Modify" +msgstr "" msgid "Layer range Settings to modify" -msgstr "Layer Range Settings to Modify" +msgstr "" msgid "Part manipulation" -msgstr "Part manipulation" +msgstr "" msgid "Instance manipulation" -msgstr "Instance manipulation" +msgstr "" msgid "Height ranges" -msgstr "Height ranges" +msgstr "" msgid "Settings for height range" -msgstr "Settings for height range" +msgstr "" msgid "Layer" msgstr "積層" @@ -2190,14 +2178,14 @@ msgid "Selection conflicts" msgstr "選択の競合" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "最初に選択したのがオブジェクトの場合、次に選択できるのがオブジェクトのみで" "す。" msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "最初に選択したがパーツの場合、次に選択できるのが同じオブジェクトのパーツ" @@ -2246,10 +2234,10 @@ msgid "to" msgstr "→" msgid "Remove height range" -msgstr "Remove height range" +msgstr "" msgid "Add height range" -msgstr "Add height range" +msgstr "" msgid "Invalid numeric." msgstr "無効な数値" @@ -2257,7 +2245,7 @@ msgstr "無効な数値" msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "一つのセルは、同じ列のセルにしかコピーできません" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "複数のセルのコピーには対応していません。" msgid "Outside" @@ -2330,19 +2318,19 @@ msgid "Pause" msgstr "一時停止" msgid "Template" -msgstr "Template" +msgstr "" msgid "Custom" msgstr "カスタム" msgid "Pause:" -msgstr "Pause:" +msgstr "" msgid "Custom Template:" -msgstr "Custom Template:" +msgstr "" msgid "Custom G-code:" -msgstr "Custom G-code:" +msgstr "" msgid "Custom G-code" msgstr "カスタム G-code" @@ -2366,7 +2354,7 @@ msgid "Add Custom G-code" msgstr "カスタムG-codeを追加" msgid "Insert custom G-code at the beginning of this layer." -msgstr "Insert custom G-code at the beginning of this layer." +msgstr "" msgid "Add Custom Template" msgstr "カスタムテンプレートを追加" @@ -2381,19 +2369,19 @@ msgid "Change filament at the beginning of this layer." msgstr "このレイヤーの先頭でフィラメントを交換" msgid "Delete Pause" -msgstr "Delete Pause" +msgstr "" msgid "Delete Custom Template" -msgstr "Delete Custom Template" +msgstr "" msgid "Edit Custom G-code" -msgstr "Edit Custom G-code" +msgstr "" msgid "Delete Custom G-code" -msgstr "Delete Custom G-code" +msgstr "" msgid "Delete Filament Change" -msgstr "Delete Filament Change" +msgstr "" msgid "No printer" msgstr "プリンタ無し" @@ -2405,7 +2393,7 @@ msgid "Failed to connect to the server" msgstr "サーバーに接続できませんでした" msgid "Check the status of current system services" -msgstr "Check the status of current system services" +msgstr "" msgid "code" msgstr "code" @@ -2443,13 +2431,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "Auto Refill" +msgstr "" msgid "AMS not connected" msgstr "AMS が接続されていません" msgid "Load" -msgstr "Load" +msgstr "" msgid "Unload" msgstr "アンロード" @@ -2481,7 +2469,7 @@ msgid "Cancel calibration" msgstr "キャリブレーションを取消し" msgid "Idling..." -msgstr "Idling..." +msgstr "" msgid "Heat the nozzle" msgstr "ノズルを加熱" @@ -2499,30 +2487,28 @@ msgid "Purge old filament" msgstr "古いフィラメントを排出" msgid "Feed Filament" -msgstr "Feed Filament" +msgstr "" msgid "Confirm extruded" -msgstr "Confirm that filament has been extruded" +msgstr "" msgid "Check filament location" -msgstr "Check filament location" +msgstr "" msgid "Grab new filament" -msgstr "Grab new filament" +msgstr "" msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" -"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " -"load or unload filament." msgid "Edit" msgstr "編集" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "選択したオブジェクトはロックされたプレートにあるため、自動レイアウトできませ" "ん" @@ -2531,8 +2517,8 @@ msgid "No arrangeable objects are selected." msgstr "選択したオブジェクトがレイアウト不可です" msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "現在のプレートがロックされたため自動レイアウトできません" msgid "Arranging..." @@ -2567,15 +2553,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "選択したオブジェクトはロックされたプレートにあるため、自動向き調整できませ" "ん。" msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "プレートがロックされています。\n" "自動向き調整ができません。" @@ -2590,13 +2576,13 @@ msgid "Orienting canceled." msgstr "" msgid "Filling" -msgstr "Filling" +msgstr "" msgid "Bed filling canceled." -msgstr "Bed filling canceled." +msgstr "" msgid "Bed filling done." -msgstr "Bed filling done." +msgstr "" msgid "Searching for optimal orientation" msgstr "最適方向を探す" @@ -2617,55 +2603,47 @@ msgid "Please check the printer network connection." msgstr "プリンターとのネットワーク接続をご確認ください" msgid "Abnormal print file data. Please slice again." -msgstr "Abnormal print file data: please slice again." +msgstr "" msgid "Task canceled." -msgstr "Task canceled." +msgstr "" msgid "Upload task timed out. Please check the network status and try again." -msgstr "Upload task timed out. Please check the network status and try again." +msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "クラウドサービス接続できませんでした、もう一度お試しください" -msgid "Print file not found. please slice again." -msgstr "Print file not found; please slice again." +msgid "Print file not found. Please slice again." +msgstr "" msgid "" "The print file exceeds the maximum allowable size (1GB). Please simplify the " "model and slice again." msgstr "" -"The print file exceeds the maximum allowable size (1GB). Please simplify the " -"model and slice again." msgid "Failed to send the print job. Please try again." msgstr "造形タスクを送信できませんでした、もう一度お試しください。" msgid "Failed to upload file to ftp. Please try again." -msgstr "Failed to upload file to ftp. Please try again." +msgstr "" msgid "" "Check the current status of the bambu server by clicking on the link above." msgstr "" -"Check the current status of the Bambu Lab server by clicking on the link " -"above." msgid "" "The size of the print file is too large. Please adjust the file size and try " "again." msgstr "" -"The size of the print file is too large. Please adjust the file size and try " -"again." -msgid "Print file not found, Please slice it again and send it for printing." -msgstr "Print file not found; please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." +msgstr "" msgid "" "Failed to upload print file to FTP. Please check the network status and try " "again." msgstr "" -"Failed to upload print file via FTP. Please check the network status and try " -"again." msgid "Sending print job over LAN" msgstr "LAN経由で造形タスクを送信" @@ -2674,7 +2652,7 @@ msgid "Sending print job through cloud service" msgstr "クラウド経由で造形タスクを送信" msgid "Print task sending times out." -msgstr "Print task sending times out." +msgstr "" msgid "Service Unavailable" msgstr "サービスは利用できません" @@ -2691,15 +2669,15 @@ msgstr "送信しました、%s秒後デバイスページへ移動します" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "Successfully sent. Automatically jumping to the next page in %ss" +msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "SDカードが必要です" -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "LANでG-codeファイルを送信" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "G-codeファイルをSDカードに送信" #, c-format, boost-format @@ -2710,33 +2688,29 @@ msgid "An SD card needs to be inserted before sending to printer." msgstr "SDカードが必要です" msgid "Importing SLA archive" -msgstr "Importing SLA archive" +msgstr "" msgid "" "The SLA archive doesn't contain any presets. Please activate some SLA " "printer preset first before importing that SLA archive." msgstr "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer presets first before importing that SLA archive." msgid "Importing canceled." -msgstr "Importing canceled." +msgstr "" msgid "Importing done." -msgstr "Importing done." +msgstr "" msgid "" "The imported SLA archive did not contain any presets. The current SLA " "presets were used as fallback." msgstr "" -"The imported SLA archive did not contain any presets. The current SLA " -"presets were used as fallback." msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "You cannot load an SLA project with a multi-part object on the bed" +msgstr "" msgid "Please check your object list before preset changing." -msgstr "Please check your object list before preset changing." +msgstr "" msgid "Attention!" msgstr "注意!" @@ -2747,10 +2721,10 @@ msgstr "ダウンロード中" msgid "Download failed" msgstr "ダウンロード失敗" -msgid "Cancelled" +msgid "Canceled" msgstr "取消し済" -msgid "Install successfully." +msgid "Installed successfully" msgstr "インストール完了" msgid "Installing" @@ -2772,7 +2746,7 @@ msgid "Orca Slicer is licensed under " msgstr "Orca Slicerのライセンス" msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, version 3" +msgstr "" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" @@ -2805,8 +2779,6 @@ msgid "" "Slic3r was created by Alessandro Ranellucci with the help of many other " "contributors." msgstr "" -"Slic3r was created by Alessandro Ranellucci with the help of many other " -"contributors." msgid "Version" msgstr "バージョン" @@ -2820,9 +2792,6 @@ msgstr "確認" msgid "Close" msgstr "閉じる" -msgid "Colour" -msgstr "色" - msgid "" "Nozzle\n" "Temperature" @@ -2842,10 +2811,10 @@ msgid "SN" msgstr "シリアル番号" msgid "Factors of Flow Dynamics Calibration" -msgstr "Factors of Flow Dynamics Calibration" +msgstr "" msgid "PA Profile" -msgstr "PA Profile" +msgstr "" msgid "Factor K" msgstr "係数K" @@ -2857,13 +2826,13 @@ msgid "Setting AMS slot information while printing is not supported" msgstr "造形中に、AMSスロットを設定できません。" msgid "Setting Virtual slot information while printing is not supported" -msgstr "Setting Virtual slot information while printing is not supported" +msgstr "" msgid "Are you sure you want to clear the filament information?" -msgstr "Are you sure you want to clear the filament information?" +msgstr "" msgid "You need to select the material type and color first." -msgstr "You need to select the material type and color first." +msgstr "" #, c-format, boost-format msgid "Please input a valid value (K in %.1f~%.1f)" @@ -2874,10 +2843,10 @@ msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)" msgstr "" msgid "Other Color" -msgstr "Other Color" +msgstr "" msgid "Custom Color" -msgstr "Custom Color" +msgstr "" msgid "Dynamic flow calibration" msgstr "流量キャリブレーション" @@ -2976,17 +2945,13 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" -"Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases: when the lid is open or the " -"desiccant pack is changed. It takes a few hours to absorb the moisture, and " -"low temperatures also slow down the process." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "造形用のフィラメントに対するAMSスロットを設定" msgid "Filament used in this print job" @@ -3004,7 +2969,7 @@ msgstr "AMSを有効にしない" msgid "Print using materials mounted on the back of the case" msgstr "外部スプールホルダーのフィラメントで造形します" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "AMSのフィラメントで造形します" msgid "Print with filaments mounted on the back of the chassis" @@ -3014,30 +2979,23 @@ msgid "" "When the current material run out, the printer will continue to print in the " "following order." msgstr "" -"When the current material runs out, the printer will continue to print " -"materials in the following order." msgid "Group" -msgstr "Group" +msgstr "" msgid "The printer does not currently support auto refill." -msgstr "The printer does not currently support auto refill." +msgstr "" msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" -"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" -"If there are two identical filaments in an AMS, AMS filament backup will be " -"enabled. \n" -"(This currently supports automatic supply of consumables with the same " -"brand, material type, and color)" msgid "DRY" msgstr "DRY" @@ -3059,11 +3017,9 @@ msgstr "" "秒ほどかかります)" msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" -"Note: if a new filament is inserted during printing, the AMS will not " -"automatically read any information until printing is completed." msgid "" "When inserting a new filament, the AMS will not automatically read its " @@ -3075,8 +3031,8 @@ msgstr "起動時に自動更新" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "起動時、フィラメント情報を自動的に読込みます(60秒ほどかかります) 注意:読" "込み時に、スプールが回転します。" @@ -3099,22 +3055,20 @@ msgstr "" "更新します。" msgid "AMS filament backup" -msgstr "AMS filament backup" +msgstr "" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "使用中のフィラメントが切れた時に、同じ属性のフィラメントに切り替えます" msgid "Air Printing Detection" -msgstr "Air Printing Detection" +msgstr "" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" -"Detects clogging and filament grinding, halting printing immediately to " -"conserve time and filament." msgid "File" msgstr "ファイル" @@ -3162,7 +3116,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "プロジェクトを保存して、アプリケーションを再起動してください。" -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "G-codeを処理中" msgid "Slicing complete" @@ -3184,16 +3138,16 @@ msgid "Underflow" msgstr "アンダーフロー" msgid "Floating reserved operand" -msgstr "Floating reserved operand" +msgstr "" msgid "Stack overflow" -msgstr "Stack Overflow" +msgstr "" msgid "Running post-processing scripts" msgstr "後処理スクリプトを実行" msgid "Successfully executed post-processing script" -msgstr "Successfully executed post-processing script" +msgstr "" msgid "Unknown error occurred during exporting G-code." msgstr "Gコードのエクスポート中に不明なエラーが発生しました。" @@ -3246,12 +3200,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Gコードファイルを%1%にエクスポートしました" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "不明なエラー: G-codeエクスポート" #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3272,10 +3226,10 @@ msgid "Device" msgstr "デバイス" msgid "Task Sending" -msgstr "Task Sending" +msgstr "" msgid "Task Sent" -msgstr "Task Sent" +msgstr "" msgid "Edit multiple printers" msgstr "" @@ -3295,7 +3249,7 @@ msgid "Offline" msgstr "オフライン" msgid "No task" -msgstr "No task" +msgstr "" msgid "View" msgstr "表示" @@ -3307,16 +3261,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "Device Name" +msgstr "" msgid "Task Name" -msgstr "Task Name" +msgstr "" msgid "Device Status" -msgstr "Device Status" +msgstr "" msgid "Actions" -msgstr "Actions" +msgstr "" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3335,7 +3289,7 @@ msgid "Upgrading" msgstr "" msgid "Incompatible" -msgstr "Incompatible" +msgstr "" msgid "syncing" msgstr "" @@ -3386,25 +3340,25 @@ msgid "Stop" msgstr "中止" msgid "Task Status" -msgstr "Task Status" +msgstr "" msgid "Sent Time" -msgstr "Sent Time" +msgstr "" msgid "There are no tasks to be sent!" -msgstr "There are no tasks to be sent!" +msgstr "" msgid "No historical tasks!" -msgstr "No historical tasks!" +msgstr "" msgid "Loading..." msgstr "読込み中" msgid "No AMS" -msgstr "No AMS" +msgstr "" msgid "Send to Multi-device" -msgstr "Send to Multi-device" +msgstr "" msgid "Preparing print job" msgstr "造形タスクを準備" @@ -3419,19 +3373,19 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "Use External Spool" +msgstr "" msgid "Use AMS" -msgstr "Use AMS" +msgstr "" msgid "Select Printers" -msgstr "Select Printers" +msgstr "" -msgid "Ams Status" -msgstr "AMS Status" +msgid "AMS Status" +msgstr "" msgid "Printing Options" -msgstr "Printing Options" +msgstr "" msgid "Bed Leveling" msgstr "ベッドレベリング" @@ -3443,25 +3397,22 @@ msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "Send Options" +msgstr "" msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" "printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" +msgstr "" msgid "Wait" -msgstr "Wait" +msgstr "" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" -"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Send" msgstr "送信" @@ -3485,7 +3436,7 @@ msgid "The name is not allowed to end with space character." msgstr "名前の最後にスペースを入れないでください" msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." +msgstr "" msgid "Origin" msgstr "原点" @@ -3553,21 +3504,17 @@ msgid "Bed Shape" msgstr "ベッド形状" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" -"The recommended minimum temperature cannot be higher than the recommended " -"maximum temperature.\n" msgid "Please check.\n" -msgstr "Please check.\n" +msgstr "" msgid "" "Nozzle may be blocked when the temperature is out of recommended range.\n" @@ -3579,8 +3526,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "このフィラメントで推奨ノズル温度は %d ~ %d ℃です。" msgid "" @@ -3590,13 +3537,10 @@ msgstr "値が小さすぎます、0.5に戻します" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" -msgstr "" -"Current chamber temperature is higher than the material's safe temperature; " -"this may result in material softening and nozzle clogs.The maximum safe " +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " "temperature for the material is %d" +msgstr "" msgid "" "Too small layer height.\n" @@ -3646,7 +3590,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3696,14 +3640,12 @@ msgid "" "Spiral mode only works when wall loops is 1, support is disabled, top shell " "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgstr "" -"Spiral mode only works when wall loops is 1, support is disabled, top shell " -"layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr " But machines with I3 structure will not generate timelapse videos." +msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3762,7 +3704,7 @@ msgstr "ユーザにより一時停止" msgid "Pause of front cover falling" msgstr "フロントカバーの脱落により一時停止" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "ライダー キャリブレーション" msgid "Calibrating extrusion flow" @@ -3775,46 +3717,46 @@ msgid "Paused due to heat bed temperature malfunction" msgstr "ベッド温度異常により一時停止" msgid "Filament unloading" -msgstr "Filament unloading" +msgstr "" msgid "Skip step pause" -msgstr "Skip step pause" +msgstr "" msgid "Filament loading" -msgstr "Filament loading" +msgstr "" msgid "Motor noise calibration" -msgstr "Motor noise calibration" +msgstr "" msgid "Paused due to AMS lost" -msgstr "Paused due to AMS lost" +msgstr "" msgid "Paused due to low speed of the heat break fan" -msgstr "Paused due to low speed of the heat break fan" +msgstr "" msgid "Paused due to chamber temperature control error" -msgstr "Paused due to chamber temperature control error" +msgstr "" msgid "Cooling chamber" -msgstr "Cooling chamber" +msgstr "" -msgid "Paused by the Gcode inserted by user" -msgstr "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" +msgstr "" msgid "Motor noise showoff" -msgstr "Motor noise showoff" +msgstr "" msgid "Nozzle filament covered detected pause" -msgstr "Nozzle filament covered detected pause" +msgstr "" msgid "Cutter error pause" -msgstr "Cutter error pause" +msgstr "" msgid "First layer error pause" -msgstr "First layer error pause" +msgstr "" msgid "Nozzle clog pause" -msgstr "Nozzle clog pause" +msgstr "" msgid "Unknown" msgstr "不明" @@ -3842,70 +3784,56 @@ msgstr "更新が失敗しました。" msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." -msgstr "" -"The current chamber temperature or the target chamber temperature exceeds " "45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." +msgstr "" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " -"above 45℃." -msgstr "" "Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " "to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." +msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " -"automatically be set to 0℃." -msgstr "" -"When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." +msgstr "" -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "造形タスクを開始できませんでした" msgid "" "This calibration does not support the currently selected nozzle diameter" msgstr "" -"This calibration does not support the currently selected nozzle diameter" msgid "Current flowrate cali param is invalid" -msgstr "Current flowrate cali param is invalid" +msgstr "" msgid "Selected diameter and machine diameter do not match" -msgstr "Selected diameter and machine diameter do not match" +msgstr "" -msgid "Failed to generate cali gcode" -msgstr "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" +msgstr "" msgid "Calibration error" -msgstr "Calibration error" +msgstr "" msgid "TPU is not supported by AMS." -msgstr "TPU is not supported by the AMS." +msgstr "" msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -msgstr "Bambu PET-CF/PA6-CF is not supported by the AMS." +msgstr "" msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" -"Damp PVA will become flexible and get stuck inside the AMS; please take care " -"to dry it well before use." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" -"CF/GF filaments are hard and brittle, so they can easily break or get stuck " -"in an AMS; please use with caution." msgid "default" msgstr "デフォルト" @@ -3917,7 +3845,7 @@ msgstr "カスタムG-コードの編集(%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "組込みプレースホルダー (アイテムをダブルクリックして G コードに追加)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -3958,7 +3886,7 @@ msgid "Specific for %1%" msgstr "%1%に固有" msgid "Presets" -msgstr "Presets" +msgstr "" msgid "Print settings" msgstr "造形設定" @@ -3976,7 +3904,7 @@ msgid "parameter name" msgstr "パラメータ名" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s をパーセンテージにすることはできません" #, c-format, boost-format @@ -3988,7 +3916,7 @@ msgstr "パラメータ検証" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Value %s is out of range. The valid range is from %d to %d." +msgstr "" msgid "Value is out of range." msgstr "値が範囲外です。" @@ -4063,7 +3991,7 @@ msgstr "ファン回転速度" msgid "Temperature: " msgstr "温度" -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "G-codeを読み込み" msgid "Generating geometry vertex data" @@ -4073,7 +4001,7 @@ msgid "Generating geometry index data" msgstr "ジオメトリ・インデックス・データを生成" msgid "Statistics of All Plates" -msgstr "Statistics of All Plates" +msgstr "" msgid "Display" msgstr "表示" @@ -4082,7 +4010,7 @@ msgid "Flushed" msgstr "フラッシュ" msgid "Tower" -msgstr "Tower" +msgstr "" msgid "Total" msgstr "合計" @@ -4094,7 +4022,7 @@ msgid "Total time" msgstr "総時間" msgid "Total cost" -msgstr "Total cost" +msgstr "" msgid "up to" msgstr "最大" @@ -4103,7 +4031,7 @@ msgid "above" msgstr "以上" msgid "from" -msgstr "from" +msgstr "" msgid "Color Scheme" msgstr "配色スキーム" @@ -4177,10 +4105,7 @@ msgstr "造形する" msgid "Printer" msgstr "プリンター" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4190,10 +4115,10 @@ msgid "Normal mode" msgstr "通常モード" msgid "Total Filament" -msgstr "Total Filament" +msgstr "" msgid "Model Filament" -msgstr "Model Filament" +msgstr "" msgid "Prepare time" msgstr "準備時間" @@ -4265,7 +4190,7 @@ msgid "Tool Move" msgstr "ツール 移動" msgid "Tool Rotate" -msgstr "Tool Rotate" +msgstr "" msgid "Move Object" msgstr "オブジェクトを移動" @@ -4289,7 +4214,7 @@ msgid "Spacing" msgstr "間隔" msgid "0 means auto spacing." -msgstr "0 means auto spacing." +msgstr "" msgid "Auto rotate for arrangement" msgstr "自動回転" @@ -4301,13 +4226,16 @@ msgid "Avoid extrusion calibration region" msgstr "押出しキャリブレーション領域を避ける" msgid "Align to Y axis" -msgstr "Align to Y axis" +msgstr "" msgid "Add plate" msgstr "プレートを追加" -msgid "Auto orient" -msgstr "自動向き調整" +msgid "Auto orient all/selected objects" +msgstr "すべてのオブジェクト/選択したオブジェクトの方向を自動設定する" + +msgid "Auto orient all objects on current plate" +msgstr "現在のプレート上のすべてのオブジェクトを自動で方向付ける" msgid "Arrange all objects" msgstr "全てをレイアウト" @@ -4330,7 +4258,7 @@ msgstr "プレートを選択" msgid "Assembly Return" msgstr "戻る" -msgid "return" +msgid "Return" msgstr "戻る" msgid "Paint Toolbar" @@ -4359,24 +4287,24 @@ msgstr "サイズ:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "プレートの境界を超えるオブジェクトがあります" msgid "A G-code path goes beyond the max print height." -msgstr "A G-code path goes beyond the max print height." +msgstr "" -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "G-codeはプレートの境界を超えています。" -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "編集中のオブジェクトのみ表示されます" msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4393,10 +4321,10 @@ msgid "Bed leveling" msgstr "ベッドレベリング" msgid "Vibration compensation" -msgstr "Vibration compensation" +msgstr "" msgid "Motor noise cancellation" -msgstr "Motor noise cancellation" +msgstr "" msgid "Calibration program" msgstr "キャリブレーション項目" @@ -4422,7 +4350,7 @@ msgid "Calibrating" msgstr "キャリブレーション中" msgid "No step selected" -msgstr "No step selected" +msgstr "" msgid "Auto-record Monitoring" msgstr "自動録画モニタリング" @@ -4431,7 +4359,7 @@ msgid "Go Live" msgstr "公開" msgid "Liveview Retry" -msgstr "Liveview Retry" +msgstr "" msgid "Resolution" msgstr "分解能" @@ -4454,7 +4382,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "プリンターとの接続(LAN)" msgid "Please input the printer access code:" @@ -4500,7 +4428,7 @@ msgid "No" msgstr "いいえ" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "will be closed before creating a new model. Do you want to continue?" +msgstr "" msgid "Slice plate" msgstr "スライス" @@ -4650,10 +4578,10 @@ msgid "Import" msgstr "インポート" msgid "Export all objects as one STL" -msgstr "Export all objects as one STL" +msgstr "" msgid "Export all objects as STLs" -msgstr "Export all objects as STLs" +msgstr "" msgid "Export Generic 3MF" msgstr "汎用3MF" @@ -4753,19 +4681,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4777,19 +4705,19 @@ msgstr "" msgid "Show &Labels" msgstr "ラベルを表示" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "3Dシーンにラベルを表示" msgid "Show &Overhang" -msgstr "Show &Overhang" +msgstr "" -msgid "Show object overhang highlight in 3D scene" -msgstr "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." +msgstr "" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" @@ -4799,19 +4727,19 @@ msgid "Help" msgstr "ヘルプ" msgid "Temperature Calibration" -msgstr "Temperature Calibration" +msgstr "" msgid "Pass 1" -msgstr "Pass 1" +msgstr "" msgid "Flow rate test - Pass 1" -msgstr "Flow rate test - Pass 1" +msgstr "" msgid "Pass 2" -msgstr "Pass 2" +msgstr "" msgid "Flow rate test - Pass 2" -msgstr "Flow rate test - Pass 2" +msgstr "" msgid "YOLO (Recommended)" msgstr "" @@ -4826,34 +4754,34 @@ msgid "Orca YOLO flowrate calibration, 0.005 step" msgstr "" msgid "Flow rate" -msgstr "Flow rate" +msgstr "" msgid "Pressure advance" -msgstr "Pressure advance" +msgstr "" msgid "Retraction test" -msgstr "Retraction test" +msgstr "" msgid "Orca Tolerance Test" -msgstr "Orca Tolerance Test" +msgstr "" msgid "Max flowrate" -msgstr "Max flowrate" +msgstr "" msgid "VFA" -msgstr "VFA" +msgstr "" msgid "More..." -msgstr "More..." +msgstr "" msgid "Tutorial" -msgstr "Tutorial" +msgstr "" msgid "Calibration help" -msgstr "Calibration help" +msgstr "" msgid "More calibrations" -msgstr "More calibrations" +msgstr "" msgid "&Open G-code" msgstr "G-codeを開く" @@ -4868,10 +4796,10 @@ msgid "Reload the plater from disk" msgstr "プレートを再読込み" msgid "Export &Toolpaths as OBJ" -msgstr "Export &Toolpaths as OBJ" +msgstr "" msgid "Export toolpaths as OBJ" -msgstr "Export toolpaths as OBJ" +msgstr "" msgid "Open &Slicer" msgstr "Studioを開く" @@ -4954,7 +4882,7 @@ msgid "Filament Settings" msgstr "フィラメント設定" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -4969,53 +4897,48 @@ msgid "Synchronization" msgstr "同期" msgid "The device cannot handle more conversations. Please retry later." -msgstr "The device cannot handle more conversations. Please retry later." +msgstr "" msgid "Player is malfunctioning. Please reinstall the system player." -msgstr "Player is malfunctioning. Please reinstall the system player." +msgstr "" msgid "The player is not loaded, please click \"play\" button to retry." -msgstr "The player is not loaded; please click the \"play\" button to retry." +msgstr "" msgid "Please confirm if the printer is connected." -msgstr "Please confirm if the printer is connected." +msgstr "" msgid "" "The printer is currently busy downloading. Please try again after it " "finishes." msgstr "" -"The printer is currently busy downloading. Please try again after it " -"finishes." msgid "Printer camera is malfunctioning." -msgstr "Printer camera is malfunctioning." +msgstr "" -msgid "Problem occurred. Please update the printer firmware and try again." -msgstr "A problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." +msgstr "" msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." -msgstr "Please enter the IP of the printer to connect." +msgstr "" msgid "Initializing..." msgstr "初期化中..." msgid "Connection Failed. Please check the network and try again" -msgstr "Connection Failed. Please check the network and try again" +msgstr "" msgid "" -"Please check the network and try again, You can restart or update the " -"printer if the issue persists." -msgstr "" "Please check the network and try again. You can restart or update the " "printer if the issue persists." +msgstr "" msgid "The printer has been logged out and cannot connect." -msgstr "The printer has been logged out and cannot connect." +msgstr "" msgid "Video Stopped." msgstr "" @@ -5080,7 +5003,7 @@ msgid "Switch to video files." msgstr "ビデオファイルに切替え" msgid "Switch to 3mf model files." -msgstr "Switch to 3mf model files." +msgstr "" msgid "Delete selected files from printer." msgstr "プリンターから選択したファイルを削除" @@ -5101,7 +5024,7 @@ msgid "Refresh" msgstr "再読込" msgid "Reload file list from printer." -msgstr "Reload file list from printer." +msgstr "" msgid "No printers." msgstr "プリンタなし" @@ -5113,27 +5036,23 @@ msgid "No files" msgstr "ファイル無し" msgid "Load failed" -msgstr "Load failed" +msgstr "" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" -"Browsing file in SD card is not supported in current firmware. Please update " -"the printer firmware." msgid "" "Please check if the SD card is inserted into the printer.\n" "If it still cannot be read, you can try formatting the SD card." msgstr "" -"Please check if the Micro SD card is inserted into the printer.\n" -"If it still cannot be read, you can try formatting the card." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN Connection Failed (Failed to view sdcard)" +msgstr "" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "Browsing file in SD card is not supported in LAN Only Mode." +msgstr "" #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" @@ -5142,27 +5061,27 @@ msgid_plural "" msgstr[0] "" msgid "Delete files" -msgstr "Delete files" +msgstr "" #, c-format, boost-format msgid "Do you want to delete the file '%s' from printer?" -msgstr "Do you want to delete the file '%s' from printer?" +msgstr "" msgid "Delete file" -msgstr "Delete file" +msgstr "" msgid "Fetching model information..." -msgstr "Fetching model information..." +msgstr "" msgid "Failed to fetch model information from printer." -msgstr "Failed to fetch model information from printer." +msgstr "" msgid "Failed to parse model information." -msgstr "Failed to parse model information." +msgstr "" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" #, c-format, boost-format @@ -5174,8 +5093,6 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" -"File: %s\n" -"Title: %s\n" msgid "Download waiting..." msgstr "ダウンロード待ち" @@ -5197,24 +5114,22 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Reconnecting the printer, the operation cannot be completed immediately, " -"please try again later." msgid "File does not exist." -msgstr "File does not exist." +msgstr "" msgid "File checksum error. Please retry." -msgstr "File checksum error. Please retry." +msgstr "" msgid "Not supported on the current printer version." -msgstr "Not supported on the current printer version." +msgstr "" msgid "Storage unavailable, insert SD card." -msgstr "Storage unavailable; please insert MicroSD card." +msgstr "" #, c-format, boost-format msgid "Error code: %d" -msgstr "Error code: %d" +msgstr "" msgid "Speed:" msgstr "速度" @@ -5262,7 +5177,7 @@ msgid "0" msgstr "0" msgid "Layer: N/A" -msgstr "Layer: N/A" +msgstr "" msgid "Clear" msgstr "クリア" @@ -5271,21 +5186,17 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" -"You have completed printing the mall model, \n" -"but synchronizing rating information has failed." msgid "How do you like this printing file?" -msgstr "How do you like this printing file?" +msgstr "" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" msgstr "" -"(The model has already been rated. Your rating will overwrite the previous " -"rating.)" msgid "Rate" -msgstr "Rate" +msgstr "" msgid "Camera" msgstr "カメラ" @@ -5303,7 +5214,7 @@ msgid "Control" msgstr "コントロール" msgid "Printer Parts" -msgstr "Printer Parts" +msgstr "" msgid "Print Options" msgstr "造型オプション" @@ -5346,22 +5257,19 @@ msgstr "クラウドにてスライス中" #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead." -msgstr "In Cloud Slicing Queue, there are %s tasks ahead of you." +msgstr "" #, c-format, boost-format msgid "Layer: %s" -msgstr "Layer: %s" +msgstr "" #, c-format, boost-format msgid "Layer: %d/%d" -msgstr "Layer: %d/%d" +msgstr "" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." msgid "Still unload" msgstr "アンロード" @@ -5369,7 +5277,7 @@ msgstr "アンロード" msgid "Still load" msgstr "ロード" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "キャリブレーション前に、AMSスロットを選択してください" msgid "" @@ -5398,108 +5306,92 @@ msgid "Can't start this without SD card." msgstr "起動するのにSDカードが必要です。" msgid "Rate the Print Profile" -msgstr "Rate the Print Profile" +msgstr "" msgid "Comment" -msgstr "Comment" +msgstr "" msgid "Rate this print" -msgstr "Rate this print" +msgstr "" msgid "Add Photo" -msgstr "Add Photo" +msgstr "" msgid "Delete Photo" -msgstr "Delete Photo" +msgstr "" msgid "Submit" -msgstr "Submit" +msgstr "" msgid "Please click on the star first." -msgstr "Please click on the star first." - -msgid "InFo" -msgstr "Info" +msgstr "" msgid "Get oss config failed." -msgstr "Get oss config failed." +msgstr "" msgid "Upload Pictures" -msgstr "Upload Pictures" +msgstr "" msgid "Number of images successfully uploaded" -msgstr "Number of images successfully uploaded" +msgstr "" msgid " upload failed" -msgstr " upload failed" +msgstr "" msgid " upload config prase failed\n" -msgstr " upload config prase failed\n" +msgstr "" msgid " No corresponding storage bucket\n" -msgstr " No corresponding storage bucket\n" +msgstr "" -msgid " can not be opened\n" -msgstr " cannot be opened\n" +msgid " cannot be opened\n" +msgstr "" msgid "" "The following issues occurred during the process of uploading images. Do you " "want to ignore them?\n" "\n" msgstr "" -"The following issues occurred during the process of uploading images. Do you " -"want to ignore them?\n" -"\n" msgid "info" msgstr "情報" msgid "Synchronizing the printing results. Please retry a few seconds later." -msgstr "Synchronizing the printing results. Please retry a few seconds later." +msgstr "" msgid "Upload failed\n" -msgstr "Upload failed\n" +msgstr "" msgid "obtaining instance_id failed\n" -msgstr "obtaining instance_id failed\n" +msgstr "" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" -"\n" -" error code: " -msgstr "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " +msgstr "" msgid "error message: " -msgstr "error message: " +msgstr "" msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" -msgstr "" -"\n" -"\n" "Would you like to redirect to the webpage to give a rating?" +msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" -"Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" msgid "You can select up to 16 images." -msgstr "You can select up to 16 images." +msgstr "" msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." -msgstr "" -"At least one successful print record of this print profile is required \n" "to give a positive rating (4 or 5 stars)." +msgstr "" msgid "Status" msgstr "デバイス状態" @@ -5541,7 +5433,7 @@ msgid "Newer 3mf version" msgstr "新3mfバージョン" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5549,7 +5441,7 @@ msgid "If you would like to try Orca Slicer Beta, you may click to" msgstr "" msgid "Download Beta Version" -msgstr "Download Beta Version" +msgstr "" msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "" @@ -5558,13 +5450,13 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file." msgstr "" msgid "Current Version: " -msgstr "Current Version: " +msgstr "" msgid "Latest Version: " -msgstr "Latest Version: " +msgstr "" msgid "Not for now" -msgstr "Not for now" +msgstr "" msgid "Server Exception" msgstr "" @@ -5610,7 +5502,7 @@ msgid "Details" msgstr "詳細" msgid "New printer config available." -msgstr "New printer config available." +msgstr "" msgid "Wiki" msgstr "Wiki" @@ -5631,7 +5523,7 @@ msgid "Open Folder." msgstr "フォルダを開く" msgid "Safely remove hardware." -msgstr "Safely remove hardware." +msgstr "" #, c-format, boost-format msgid "%1$d Object has custom supports." @@ -5645,7 +5537,7 @@ msgstr[0] "%1$dのオブジェクトは色が付いています" #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "" msgid "ERROR" @@ -5669,14 +5561,14 @@ msgstr "エラー:" msgid "Warning:" msgstr "警告" -msgid "Export successfully." +msgid "Exported successfully" msgstr "エクスポートが成功しました。" msgid "Model file downloaded." -msgstr "Model file downloaded." +msgstr "" msgid "Serious warning:" -msgstr "Serious warning:" +msgstr "" msgid " (Repair)" msgstr " (修復)" @@ -5687,11 +5579,11 @@ msgstr "こちらでインストールします。" msgid "WARNING:" msgstr "警告" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "このモデルを造形するにはサポートが必要です、サポートを有効にしてください" -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "G-codeにパスのオーバーラップがあります" msgid "Support painting" @@ -5701,7 +5593,7 @@ msgid "Color painting" msgstr "色塗り" msgid "Cut connectors" -msgstr "Cut connectors" +msgstr "" msgid "Layers" msgstr "積層" @@ -5760,25 +5652,25 @@ msgid "Auto-recovery from step loss" msgstr "自動回復" msgid "Allow Prompt Sound" -msgstr "Allow Prompt Sound" +msgstr "" msgid "Filament Tangle Detect" -msgstr "Filament Tangle Detection" +msgstr "" msgid "Nozzle Clumping Detection" -msgstr "Nozzle Clumping Detection" +msgstr "" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Check if the nozzle is clumping by filament or other foreign objects." +msgstr "" msgid "Nozzle Type" -msgstr "Nozzle Type" +msgstr "ノズルタイプ" msgid "Stainless Steel" -msgstr "Stainless Steel" +msgstr "" msgid "Hardened Steel" -msgstr "Hardened Steel" +msgstr "" #, c-format, boost-format msgid "%.1f" @@ -5879,7 +5771,7 @@ msgid "Set filaments to use" msgstr "フィラメントを選択" msgid "Search plate, object and part." -msgstr "Search plate, object and part." +msgstr "" msgid "Pellets" msgstr "" @@ -5903,14 +5795,12 @@ msgid "" "Already did a synchronization, do you want to sync only changes or resync " "all?" msgstr "" -"Already did a synchronization; do you want to sync only changes or resync " -"all?" msgid "Sync" -msgstr "Sync" +msgstr "" msgid "Resync" -msgstr "Resync" +msgstr "" msgid "There are no compatible filaments, and sync is not performed." msgstr "適用できるフィラメントがありません、同期を行えません" @@ -5927,7 +5817,7 @@ msgstr "変更を\"%1%\"に保存しますか?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "デバイス %s(%s)をお取出しできます" @@ -5946,9 +5836,6 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" -"The current heatbed temperature is relatively high. The nozzle may clog when " -"printing this filament in a closed environment. Please open the front door " -"and/or remove the upper glass." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -5962,8 +5849,6 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" -"Enabling traditional timelapse photography may cause surface imperfections. " -"It is recommended to change to smooth mode." msgid "Expand sidebar" msgstr "サイドバーを展開" @@ -5984,8 +5869,8 @@ msgstr "3mfを読込み" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "3mfのバージョン %s は %sのバージョン %sより新しい為、下記のキーを認識できませ" "ん" @@ -6001,36 +5886,33 @@ msgstr "" "3mfのバージョン%sは%sの%sより新しい為、ソフトウェアを更新してください。" msgid "Invalid values found in the 3mf:" -msgstr "Invalid values found in the 3mf:" +msgstr "" msgid "Please correct them in the param tabs" -msgstr "Please correct them in the Param tabs" - -msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "The 3mf has following modified G-code in filament or printer presets:" +msgstr "" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" - -msgid "Modified G-codes" -msgstr "Modified G-code" - -msgid "The 3mf has following customized filament or printer presets:" -msgstr "The 3mf has following customized filament or printer presets:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" +msgstr "" + +msgid "Modified G-code" +msgstr "" + +msgid "The 3mf has the following customized filament or printer presets:" +msgstr "" + +msgid "" +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" -"Please confirm that the G-codes within these presets are safe to prevent any " -"damage to the machine!" msgid "Customized Preset" -msgstr "Customized Preset" +msgstr "" msgid "Name of components inside step file is not UTF8 format!" msgstr "ファイルのエンコーディング方式はUTF8形式ではありません" @@ -6039,7 +5921,7 @@ msgid "The name may show garbage characters!" msgstr "文字化けがあるようです、ご確認ください" msgid "Remember my choice." -msgstr "Remember my choice." +msgstr "" #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." @@ -6084,8 +5966,8 @@ msgid "The file does not contain any geometry data." msgstr "このファイルにはジオメトリデータが含まれていません。" msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "オブジェクトが大きすぎのようです、ベッドに合わせてスケールしますか?" msgid "Object too large" @@ -6095,36 +5977,31 @@ msgid "Export STL file:" msgstr "STLファイルをエクスポート:" msgid "Export AMF file:" -msgstr "Export AMF file:" +msgstr "" msgid "Save file as:" msgstr "名前を付けて保存" msgid "Export OBJ file:" -msgstr "Export OBJ file:" +msgstr "" #, c-format, boost-format msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" -"The file %s already exists.\n" -"Do you want to replace it?" msgid "Confirm Save As" -msgstr "Confirm Save As" +msgstr "" msgid "Delete object which is a part of cut object" -msgstr "Delete object which is a part of cut object" +msgstr "" msgid "" "You try to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed." msgstr "" -"You are trying to delete an object which is a part of a cut object.\n" -"This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed." msgid "The selected object couldn't be split." msgstr "選択したオブジェクトを分割できませんでした。" @@ -6133,13 +6010,13 @@ msgid "Another export job is running." msgstr "エクスポート中です" msgid "Unable to replace with more than one volume" -msgstr "Unable to replace with more than one volume" +msgstr "" msgid "Error during replace" msgstr "交換時のエラー" msgid "Replace from:" -msgstr "Replace from:" +msgstr "" msgid "Select a new file" msgstr "ファイルを選択" @@ -6151,19 +6028,19 @@ msgid "Please select a file" msgstr "ファイルを選択してください" msgid "Do you want to replace it" -msgstr "Do you want to replace it?" +msgstr "" msgid "Message" -msgstr "Message" +msgstr "" msgid "Reload from:" -msgstr "Reload from:" +msgstr "" msgid "Unable to reload:" -msgstr "Unable to reload:" +msgstr "" msgid "Error during reload" -msgstr "Error during reload" +msgstr "" msgid "There are warnings after slicing models:" msgstr "スライスの警告:" @@ -6192,7 +6069,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "プレビュー専用モード\n" "このファイルにはG-codeのみが入っており、「準備」ページで表示できません" @@ -6224,13 +6101,13 @@ msgid "prepare 3mf file..." msgstr "3mfファイルを準備" msgid "Download failed, unknown file format." -msgstr "Download failed; unknown file format." +msgstr "" -msgid "downloading project ..." +msgid "downloading project..." msgstr "プロジェクトをダウンロード中" msgid "Download failed, File size exception." -msgstr "Download failed; File size exception." +msgstr "" #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6263,7 +6140,7 @@ msgstr "SLAアーカイブをインポート" msgid "The selected file" msgstr "選択したファイル" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "有効なG-codeが含まれていません。" msgid "Error occurs while loading G-code file" @@ -6306,10 +6183,10 @@ msgstr "G-codeファイルは一度一つしか開きません" msgid "G-code loading" msgstr "G-code読込み中" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-codeファイルとモデルを一緒にロードできません" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "プレビューモードではモデルを追加できません" msgid "All objects will be removed, continue?" @@ -6329,13 +6206,13 @@ msgid "Save G-code file as:" msgstr "名前を付けて保存" msgid "Save SLA file as:" -msgstr "Save SLA file as:" +msgstr "" msgid "The provided file name is not valid." -msgstr "The provided file name is not valid." +msgstr "" msgid "The following characters are not allowed by a FAT file system:" -msgstr "The following characters are not allowed by a FAT file system:" +msgstr "" msgid "Save Sliced file as:" msgstr "名前を付けて保存:" @@ -6350,31 +6227,27 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try again." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try again." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "Reason: part \"%1%\" is empty." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "Reason: part \"%1%\" does not bound a volume." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "Reason: part \"%1%\" has self intersection." +msgstr "" #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "Reason: \"%1%\" and another part have no intersection." +msgstr "" msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be exported." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be exported." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6420,15 +6293,15 @@ msgid "Invalid number" msgstr "無効な数字" msgid "Plate Settings" -msgstr "Plate Settings" +msgstr "" #, boost-format msgid "Number of currently selected parts: %1%\n" -msgstr "Number of currently selected parts: %1%\n" +msgstr "" #, boost-format msgid "Number of currently selected objects: %1%\n" -msgstr "Number of currently selected objects: %1%\n" +msgstr "" #, boost-format msgid "Part name: %1%\n" @@ -6470,8 +6343,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" @@ -6572,9 +6445,6 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" -"On OSX there is always only one instance of app running by default. However " -"it is allowed to run multiple instances of same app from the command line. " -"In such case this setting will allow only one instance." msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " @@ -6604,14 +6474,12 @@ msgid "" msgstr "" msgid "Zoom to mouse position" -msgstr "Zoom to mouse position" +msgstr "" msgid "" "Zoom in towards the mouse pointer's position in the 3D view, rather than the " "2D window center." msgstr "" -"Zoom in towards the mouse pointer's position in the 3D view, rather than the " -"2D window center." msgid "Use free camera" msgstr "フリーカメラを使用" @@ -6621,11 +6489,17 @@ msgstr "" "チェックすると、フリーカメラが使用されます。 そうでない場合は、拘束カメラを使" "用します。" +msgid "Swap pan and rotate mouse buttons" +msgstr "パンと回転のマウスボタンを入れ替える" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "有効にすると、マウスの左ボタンと右ボタンのパン機能と回転機能が入れ替わります。" + msgid "Reverse mouse zoom" -msgstr "" +msgstr "マウスの逆ズーム" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" +msgstr "有効にすると、マウス ホイールによるズームの方向が反転します。" msgid "Show splash screen" msgstr "スプラッシュ画面を表示する" @@ -6640,17 +6514,17 @@ msgid "If enabled, useful hints are displayed at startup." msgstr "有効になる場合、起動時にヒントを表示されます。" msgid "Flushing volumes: Auto-calculate every time the color changed." -msgstr "Flushing volumes: Auto-calculate every time the color changed." +msgstr "" msgid "If enabled, auto-calculate every time the color changed." -msgstr "If enabled, auto-calculate every time the color changes." +msgstr "" msgid "" "Flushing volumes: Auto-calculate every time when the filament is changed." -msgstr "Flushing volumes: Auto-calculate every time the filament is changed." +msgstr "" msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "If enabled, auto-calculate every time filament is changed" +msgstr "" msgid "Remember printer configuration" msgstr "" @@ -6660,15 +6534,13 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." msgid "Auto arrange plate after cloning" msgstr "" @@ -6679,20 +6551,20 @@ msgstr "" msgid "Network" msgstr "ネットワーク (&N)" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)" msgid "User Sync" msgstr "ユーザー同期" msgid "Update built-in Presets automatically." -msgstr "Update built-in presets automatically." +msgstr "" msgid "System Sync" -msgstr "System Sync" +msgstr "" msgid "Clear my choice on the unsaved presets." -msgstr "Clear my choice on the unsaved presets." +msgstr "" msgid "Associate files to OrcaSlicer" msgstr "ファイルをOrca Slicerに関連付ける" @@ -6740,16 +6612,16 @@ msgid "Should printer/filament/process settings be loaded when opening a .3mf?" msgstr "" msgid "Maximum recent projects" -msgstr "Maximum recent projects" +msgstr "" msgid "Maximum count of recent projects" -msgstr "Maximum count of recent projects" +msgstr "" msgid "Clear my choice on the unsaved projects." -msgstr "Clear my choice on the unsaved projects." +msgstr "" -msgid "No warnings when loading 3MF with modified G-codes" -msgstr "No warnings when loading 3MF with modified G-code" +msgid "No warnings when loading 3MF with modified G-code" +msgstr "" msgid "Auto-Backup" msgstr "自動バックアップ" @@ -6757,14 +6629,12 @@ msgstr "自動バックアップ" msgid "" "Backup your project periodically for restoring from the occasional crash." msgstr "" -"Backup your project periodically to help with restoring from an occasional " -"crash." msgid "every" -msgstr "every" +msgstr "" msgid "The period of backup in seconds." -msgstr "The period of backup in seconds." +msgstr "" msgid "Downloads" msgstr "ダウンロード" @@ -6779,7 +6649,7 @@ msgid "Develop mode" msgstr "開発者モード" msgid "Skip AMS blacklist check" -msgstr "Skip AMS blacklist check" +msgstr "" msgid "Home page and daily tips" msgstr "ホームページとヒント" @@ -6818,16 +6688,16 @@ msgid "Mouse wheel reverses when zooming" msgstr "ズーム中にスクロール方向を反転させる" msgid "Enable SSL(MQTT)" -msgstr "Enable SSL(MQTT)" +msgstr "" msgid "Enable SSL(FTP)" -msgstr "Enable SSL(FTP)" +msgstr "" msgid "Internal developer mode" -msgstr "Internal developer mode" +msgstr "" msgid "Log Level" -msgstr "Log Level" +msgstr "" msgid "fatal" msgstr "重大的" @@ -6865,10 +6735,10 @@ msgstr "保存" msgid "save debug settings" msgstr "デバッグ設定を保存" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "デバッグ設定" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "クラウド環境を切り替えました、再度サインインしてください。" msgid "System presets" @@ -6883,11 +6753,11 @@ msgstr "互換性の無い プリセット" msgid "AMS filaments" msgstr "AMSフィラメント" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "フィラメントの色を選択" -msgid "Please choose the filament colour" -msgstr "Please choose the filament color" +msgid "Please choose the filament color" +msgstr "" msgid "Add/Remove presets" msgstr "プリセットの追加/削除" @@ -6904,65 +6774,65 @@ msgstr "フィラメントを追加/削除" msgid "Add/Remove materials" msgstr "素材を追加/削除" -msgid "Select/Remove printers(system presets)" -msgstr "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" +msgstr "" msgid "Create printer" -msgstr "Create printer" +msgstr "" msgid "The selected preset is null!" -msgstr "The selected preset is null!" +msgstr "" msgid "End" -msgstr "End" +msgstr "" msgid "Customize" -msgstr "Customize" +msgstr "" msgid "Other layer filament sequence" -msgstr "Other layer filament sequence" +msgstr "" msgid "Please input layer value (>= 2)." -msgstr "Please input layer value (>= 2)." +msgstr "" msgid "Plate name" -msgstr "Plate name" +msgstr "" msgid "Same as Global Print Sequence" -msgstr "Same as Global Print Sequence" +msgstr "" msgid "Print sequence" msgstr "造形シーケンス" msgid "Same as Global" -msgstr "Same as Global" +msgstr "" msgid "Disable" -msgstr "Disable" +msgstr "" msgid "Spiral vase" msgstr "スパイラル" msgid "First layer filament sequence" -msgstr "First layer filament sequence" +msgstr "" msgid "Same as Global Plate Type" -msgstr "Same as Global Plate Type" +msgstr "" msgid "Same as Global Bed Type" msgstr "全般設定の「ベッドタイプ」と同様" msgid "By Layer" -msgstr "By Layer" +msgstr "" msgid "By Object" -msgstr "By Object" +msgstr "" msgid "Accept" -msgstr "Accept" +msgstr "" msgid "Log Out" -msgstr "Log Out" +msgstr "" msgid "Slice all plate to obtain time and filament estimation" msgstr "全プレートをスライスし、造形時間を推測します" @@ -6976,13 +6846,13 @@ msgstr "3mfをアップロード中" msgid "Jump to model publish web page" msgstr "モデル公開ページに移動" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "注意: 準備するには数分かかる場合があります、暫くお待ち下さい。" msgid "Publish" msgstr "公開する" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "公開は取り消しました" msgid "Slicing Plate 1" @@ -7007,7 +6877,7 @@ msgstr "プロジェクト プリセット" msgid "Name is unavailable." msgstr "名称は使用できません" -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "システムプロファイルの上書きはできません" #, boost-format @@ -7015,10 +6885,12 @@ msgid "Preset \"%1%\" already exists." msgstr "プリセット \"%1%\" は既に存在します。" #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "プリセット\"%1%\"は既に存在し、また互換性がありません。" -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "注意:現在のプリセットを上書きされます。" msgid "The name cannot be the same as a preset alias name." @@ -7058,7 +6930,7 @@ msgid "(LAN)" msgstr "(LAN)" msgid "Search" -msgstr "Search" +msgstr "" msgid "My Device" msgstr "私のデバイス" @@ -7085,7 +6957,7 @@ msgid "Bambu Cool Plate" msgstr "Bambu 常温プレート" msgid "PLA Plate" -msgstr "PLA Plate" +msgstr "" msgid "Bambu Engineering Plate" msgstr "Bambu エンジニアリングプレート" @@ -7094,7 +6966,7 @@ msgid "Bambu Smooth PEI Plate" msgstr "" msgid "High temperature Plate" -msgstr "High temperature Plate" +msgstr "" msgid "Bambu Textured PEI Plate" msgstr "" @@ -7103,16 +6975,16 @@ msgid "Send print job to" msgstr "造形タスクを送信" msgid "Flow Dynamics Calibration" -msgstr "Flow Dynamics Calibration" +msgstr "" msgid "Click here if you can't connect to the printer" -msgstr "Click here if you can't connect to the printer" +msgstr "" msgid "send completed" msgstr "送信完了" msgid "Error code" -msgstr "Error code" +msgstr "" msgid "No login account, only printers in LAN mode are displayed" msgstr "アカウント無し、ローカルモードのプリンターのみが表示されます" @@ -7182,8 +7054,6 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" -"The selected printer (%s) is incompatible with the chosen printer profile in " -"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "SDカードが必要です" @@ -7203,28 +7073,22 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" -"When spiral vase mode is enabled, machines with I3 structure will not " -"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" -"Timelapse is not supported because Print sequence is set to \"By object\"." msgid "Errors" msgstr "エラー" msgid "Please check the following:" -msgstr "Please check the following:" +msgstr "" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"The printer type selected when generating G-Code is not consistent with the " -"currently selected printer. It is recommended that you use the same printer " -"type for slicing." msgid "" "There are some unknown filaments in the AMS mappings. Please check whether " @@ -7236,57 +7100,48 @@ msgstr "" #, c-format, boost-format msgid "nozzle in preset: %s %s" -msgstr "nozzle in preset: %s %s" +msgstr "" #, c-format, boost-format msgid "nozzle memorized: %.2f %s" -msgstr "nozzle memorized: %.2f %s" +msgstr "" msgid "" "Your nozzle diameter in sliced file is not consistent with memorized nozzle. " "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" -"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " -"If you changed your nozzle lately, please go to Device > Printer Parts to " -"change settings." #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" -"Printing high temperature material(%s material) with %s may cause nozzle " -"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Please fix the error above, otherwise printing cannot continue." +msgstr "" msgid "" "Please click the confirm button if you still want to proceed with printing." msgstr "" -"Please click the confirm button if you still want to proceed with printing." msgid "" "Connecting to the printer. Unable to cancel during the connection process." msgstr "" -"Connecting to the printer. Unable to cancel during the connection process." msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." msgstr "" -"Caution! Flow calibration on Textured PEI Plates may fail due to the " -"scattered surface." msgid "Automatic flow calibration using Micro Lidar" -msgstr "Automatic flow calibration using the Micro Lidar" +msgstr "" msgid "Modifying the device name" msgstr "デバイス名を変更" msgid "Bind with Pin Code" -msgstr "Bind with Pin Code" +msgstr "" msgid "Bind with Access Code" msgstr "アクセスコードと紐付け" @@ -7298,11 +7153,10 @@ msgid "Cannot send the print task when the upgrade is in progress" msgstr "アップデート中では造形タスクを送信できません" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "The selected printer is incompatible with the chosen printer presets." +msgstr "" msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" -"A MicroSD card needs to be inserted before sending to the printer SD card." msgid "The printer is required to be in the same LAN as Orca Slicer." msgstr "" @@ -7315,31 +7169,31 @@ msgid "Slice ok." msgstr "スライス完了" msgid "View all Daily tips" -msgstr "View all Daily tips" +msgstr "" msgid "Failed to create socket" -msgstr "Failed to create socket" +msgstr "" msgid "Failed to connect socket" -msgstr "Failed to connect socket" +msgstr "" msgid "Failed to publish login request" -msgstr "Failed to publish login request" +msgstr "" msgid "Get ticket from device timeout" -msgstr "Timeout getting ticket from device" +msgstr "" msgid "Get ticket from server timeout" -msgstr "Timeout getting ticket from server" +msgstr "" msgid "Failed to post ticket to server" -msgstr "Failed to post ticket to server" +msgstr "" msgid "Failed to parse login report reason" -msgstr "Failed to parse login report reason" +msgstr "" msgid "Receive login report timeout" -msgstr "Receive login report timeout" +msgstr "" msgid "Unknown Failure" msgstr "不明な失敗" @@ -7348,63 +7202,56 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" -"Please Find the Pin Code in Account page on printer screen,\n" -" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "Can't find Pin Code?" +msgstr "" msgid "Pin Code" -msgstr "Pin Code" +msgstr "" msgid "Binding..." -msgstr "Binding..." +msgstr "" msgid "Please confirm on the printer screen" -msgstr "Please confirm on the printer screen" +msgstr "" msgid "Log in failed. Please check the Pin Code." -msgstr "Log in failed. Please check the Pin Code." +msgstr "" msgid "Log in printer" msgstr "プリンターを登録" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "現在のアカウントでプリンターをサインインしますか?" msgid "Check the reason" -msgstr "Check the reason" +msgstr "" msgid "Read and accept" -msgstr "Read and accept" +msgstr "" msgid "Terms and Conditions" -msgstr "Terms and Conditions" +msgstr "" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " -"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " -"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "" "Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " "device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " "Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" msgid "and" -msgstr "and" +msgstr "" msgid "Privacy Policy" -msgstr "Privacy Policy" +msgstr "" msgid "We ask for your help to improve everyone's printer" -msgstr "We ask for your help to improve everyone's printer" +msgstr "" msgid "Statement about User Experience Improvement Program" -msgstr "Statement about User Experience Improvement Program" +msgstr "" #, c-format, boost-format msgid "" @@ -7414,26 +7261,15 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" -"In the 3D Printing community, we learn from each other's successes and " -"failures to adjust our own slicing parameters and settings. %s follows the " -"same principle and uses machine learning to improve its performance from the " -"successes and failures of the vast number of prints by our users. We are " -"training %s to be smarter by feeding them the real-world data. If you are " -"willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " -"not collect any Personal Data by which an individual can be identified " -"directly or indirectly, including without limitation names, addresses, " -"payment information, or phone numbers. By enabling this service, you agree " -"to these terms and the statement about Privacy Policy." msgid "Statement on User Experience Improvement Plan" -msgstr "Statement on User Experience Improvement Plan" +msgstr "" msgid "Log in successful." msgstr "登録成功" @@ -7468,39 +7304,35 @@ msgid "Click to reset all settings to the last saved preset." msgstr "全ての変更をリセットします" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "スムーズタイムラプスビデオを作成するにはプライムタワーが必要です。プライムタ" "ワーを有効にしますか?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "スムーズタイムラプスビデオを作成するにはプライムタワーが必要です。プライムタ" "ワーを有効にしますか?" msgid "Still print by object?" -msgstr "Still print by object?" +msgstr "" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"これらの設定を自動的に変更しますか? \n" +"これらの設定を自動的に変更しますか?\n" "はい - 自動的に変更します\n" "いいえ - 変更しません" @@ -7520,41 +7352,31 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" -"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." -msgid "Adjust to the set range automatically? \n" -msgstr "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "" msgid "Adjust" -msgstr "Adjust" +msgstr "" msgid "Ignore" -msgstr "Ignore" +msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " -"printing complications." -msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush. Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." +msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." -msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications. Please use with the latest printer firmware." +msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7697,7 +7519,7 @@ msgid "Acceleration" msgstr "加速度" msgid "Jerk(XY)" -msgstr "Jerk(XY)" +msgstr "" msgid "Raft" msgstr "ラフト" @@ -7730,10 +7552,10 @@ msgid "G-code output" msgstr "G-code出力" msgid "Post-processing Scripts" -msgstr "Post-processing Scripts" +msgstr "" msgid "Notes" -msgstr "Notes" +msgstr "" msgid "Frequent" msgstr "よく使う" @@ -7788,56 +7610,53 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" msgstr "常温プレート" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "常温プレートが装着時のベッド温度です。値が0の場合、フィラメントが常温プレート" "に使用できない意味です。" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "エンジニアリングプレート" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "エンジニアリングプレートが装着時のベッド温度です。値が0の場合、フィラメントが" "エンジニアリングプレートに使用できない意味です。" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Smooth PEI Plate / High Temp Plate" +msgstr "" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" msgid "Textured PEI Plate" msgstr "PEIプレート" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "PEIプレートを使用時のベッド温度。値が0の場合、フィラメントがPEIプレートをサ" "ポートしない意味です。" @@ -7880,13 +7699,13 @@ msgid "Auxiliary part cooling fan" msgstr "パーツ補助冷却ファン" msgid "Exhaust fan" -msgstr "Exhaust fan" +msgstr "" msgid "During print" -msgstr "During print" +msgstr "" msgid "Complete print" -msgstr "Complete print" +msgstr "" msgid "Filament start G-code" msgstr "フィラメント開始G-code" @@ -7897,13 +7716,13 @@ msgstr "フィラメント終了G-code" msgid "Wipe tower parameters" msgstr "ワイプタワーのパラメータ" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "単一エクストルーダーMMプリンターのツールチェンジパラメーター" msgid "Ramming settings" msgstr "ラミング設定" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "マルチエクストルーダーMMプリンターのツールチェンジパラメータ" msgid "Dependencies" @@ -7915,7 +7734,7 @@ msgstr "プロファイルの依存関係" msgid "Printable space" msgstr "造形可能領域" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "パラメータ %1% に無効な値が指定されました: %2%" @@ -7938,7 +7757,7 @@ msgstr "" msgid "Accessory" msgstr "アクセサリー" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "プリンタG-code" msgid "Machine start G-code" @@ -7948,7 +7767,7 @@ msgid "Machine end G-code" msgstr "プリンター終了G-code" msgid "Printing by object G-code" -msgstr "Printing by object G-code" +msgstr "" msgid "Before layer change G-code" msgstr "積層変更前のG-code" @@ -7956,8 +7775,8 @@ msgstr "積層変更前のG-code" msgid "Layer change G-code" msgstr "積層変更時のG-code" -msgid "Time lapse G-code" -msgstr "Time lapse G-code" +msgid "Timelapse G-code" +msgstr "" msgid "Change filament G-code" msgstr "フィラメント変更G-code" @@ -8030,12 +7849,9 @@ msgid "" "\n" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" -"The Wipe option is not available when using the Firmware Retraction mode.\n" -"\n" -"Disable it in order to enable Firmware Retraction?" msgid "Firmware Retraction" -msgstr "Firmware Retraction" +msgstr "" msgid "Detached" msgstr "分離的" @@ -8045,11 +7861,9 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" -"%d Filament Preset and %d Process Preset is attached to this printer. Those " -"presets would be deleted if the printer is deleted." -msgid "Presets inherited by other presets can not be deleted!" -msgstr "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" +msgstr "" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." @@ -8065,13 +7879,10 @@ msgid_plural "Following presets will be deleted too." msgstr[0] "以下のプリセットも削除されます: " msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Are you sure to delete the selected preset? \n" -"If the preset corresponds to a filament currently in use on your printer, " -"please reset the filament information for that slot." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -8168,14 +7979,12 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "You have changed some settings of preset \"%1%\"." +msgstr "" msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" -"\n" -"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8184,7 +7993,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "You have previously modified your settings." +msgstr "" msgid "" "\n" @@ -8205,7 +8014,7 @@ msgid "Show all presets (including incompatible)" msgstr "全てのプリセットを表示" msgid "Select presets to compare" -msgstr "Select presets to compare" +msgstr "" msgid "" "You can only transfer to current active profile because it has been modified." @@ -8268,7 +8077,7 @@ msgstr "新しいバージョンが利用可能です" msgid "Configuration update" msgstr "構成の更新" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "新しい構成パッケージが利用できます。インストールしますか?" msgid "Description:" @@ -8277,13 +8086,13 @@ msgstr "詳細:" msgid "Configuration incompatible" msgstr "構成ファイルは互換性がありません" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "構成パッケージが現在のアプリケーションと互換性がありません" #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "構成パッケージは現在のバージョンと互換性ありません。\n" "%sで構成パッケージを更新しアプリケーションを再起動します" @@ -8292,7 +8101,7 @@ msgstr "" msgid "Exit %s" msgstr "%s を終了" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "構成パッケージは、このバージョンのOrca Slicerに適用できません" msgid "Configuration updates" @@ -8305,58 +8114,54 @@ msgid "The configuration is up to date." msgstr "構成データが最新です" msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "" msgid "Recommended " -msgstr "Recommended " +msgstr "" msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "" msgid "Quick set:" -msgstr "Quick set:" +msgstr "" msgid "Color match" -msgstr "Color match" +msgstr "" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "" msgid "Append" -msgstr "Append" +msgstr "" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "" msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "" msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "" msgid "Map Filament" -msgstr "Map Filament" +msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" msgid "Ramming customization" msgstr "ラミングのカスタマイズ" @@ -8401,7 +8206,7 @@ msgid "Auto-Calc" msgstr "自動計算" msgid "Re-calculate" -msgstr "Re-calculate" +msgstr "" msgid "Flushing volumes for filament change" msgstr "フィラメントを入替える為のフラッシュ量" @@ -8462,15 +8267,15 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" msgid "Bambu Network plug-in not detected." -msgstr "Bambu Network plug-in not detected." +msgstr "" msgid "Click here to download it." -msgstr "Click here to download it." +msgstr "" msgid "Login" msgstr "サインイン" @@ -8488,7 +8293,7 @@ msgid "Objects list" msgstr "オブジェクト一覧" msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files" -msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files" +msgstr "" msgid "⌘+Shift+G" msgstr "⌘+Shift+G" @@ -8503,7 +8308,7 @@ msgid "Show/Hide 3Dconnexion devices settings dialog" msgstr "3Dconnexion設定を表示/非表示" msgid "Switch table page" -msgstr "Switch table page" +msgstr "" msgid "Show keyboard shortcuts list" msgstr "ショートカット一覧を表示" @@ -8530,10 +8335,15 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." -msgstr "選択した或いは全てのオブジェクトの向きを自動調整します。" +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." +msgstr "選択したオブジェクトまたはプロジェクト" +"内のすべてのオブジェクトの方向を自動的" +"に設定します。" + +msgid "Auto orients all objects on the active plate." +msgstr "現在のプレート上のすべてのオブジェクトの方向を自動的に設定します。" msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8643,18 +8453,30 @@ msgstr "回転" msgid "Gizmo cut" msgstr "カット" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "底面選択" +msgid "Gizmo mesh boolean" +msgstr "メッシュブール" + msgid "Gizmo SLA support points" msgstr "SLAサポートポイント" msgid "Gizmo FDM paint-on seam" msgstr "継ぎ目ペイント" -msgid "Gizmo Text emboss / engrave" +msgid "Gizmo text emboss/engrave" msgstr "ギズモ・テキストのエンボス/エングレーブ" +msgid "Gizmo measure" +msgstr "測る" + +msgid "Gizmo assemble" +msgstr "組立てる" + +msgid "Gizmo brim ears" +msgstr "ブリム" + msgid "Zoom in" msgstr "ズームイン" @@ -8694,7 +8516,7 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "オブジェクトとパーツ造形用の押出機番号を設定" -msgid "Delete objects, parts, modifiers " +msgid "Delete objects, parts, modifiers" msgstr "オブジェクト、パーツ、モディファイヤを削除" msgid "Select the object/part and press space to change the name" @@ -8722,9 +8544,9 @@ msgid "Horizontal slider - Move active thumb Right" msgstr "水平スライダー (右)" msgid "On/Off one layer mode of the vertical slider" -msgstr "On/Off one layer mode of the vertical slider" +msgstr "" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "" msgid "Move slider 5x faster" @@ -8743,7 +8565,7 @@ msgid "Release Note" msgstr "リリースノート" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "バージョン %s 更新内容" msgid "Network plug-in update" @@ -8756,56 +8578,56 @@ msgstr "" "が更新されます。" #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "新しいプラグイン (%s) が発見しました、インストールしますか?" msgid "New version of Orca Slicer" msgstr "新バージョン" msgid "Skip this Version" -msgstr "Skip this Version" +msgstr "" msgid "Done" -msgstr "Done" +msgstr "" msgid "resume" -msgstr "resume" +msgstr "" msgid "Resume Printing" -msgstr "Resume Printing" +msgstr "" -msgid "Resume Printing(defects acceptable)" -msgstr "Resume Printing (defects acceptable)" +msgid "Resume Printing (defects acceptable)" +msgstr "" -msgid "Resume Printing(problem solved)" -msgstr "Resume Printing (problem solved)" +msgid "Resume Printing (problem solved)" +msgstr "" msgid "Stop Printing" -msgstr "Stop Printing" +msgstr "" msgid "Check Assistant" -msgstr "Check Assistant" +msgstr "" msgid "Filament Extruded, Continue" -msgstr "Filament Extruded, Continue" +msgstr "" msgid "Not Extruded Yet, Retry" -msgstr "Not Extruded Yet, Retry" +msgstr "" msgid "Finished, Continue" -msgstr "Finished, Continue" +msgstr "" msgid "Load Filament" msgstr "ロード" msgid "Filament Loaded, Resume" -msgstr "Filament Loaded, Resume" +msgstr "" msgid "View Liveview" -msgstr "View Liveview" +msgstr "" msgid "Confirm and Update Nozzle" -msgstr "Confirm and Update Nozzle" +msgstr "" msgid "Connect the printer using IP and access code" msgstr "" @@ -8864,14 +8686,12 @@ msgid "Connecting to printer... The dialog will close later" msgstr "" msgid "Connection failed, please double check IP and Access Code" -msgstr "Connection failed, please double check IP and Access Code" +msgstr "" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" -"Connection failed! If your IP and Access Code is correct, \n" -"please move to step 3 for troubleshooting network issues" msgid "Model:" msgstr "モデル" @@ -8894,10 +8714,10 @@ msgstr "最新バージョン" msgid "Updating" msgstr "更新中" -msgid "Updating failed" +msgid "Update failed" msgstr "更新は失敗しました" -msgid "Updating successful" +msgid "Update successful" msgstr "更新は成功しました" msgid "" @@ -9022,7 +8842,7 @@ msgstr "" "い。" msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "G-codeを生成できませんでした\n" @@ -9070,7 +8890,7 @@ msgid "Multiple" msgstr "複数" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "線幅 %1% を算出できませんでした。%2%の値を取得できません。" msgid "" @@ -9127,7 +8947,7 @@ msgid "allocation failed" msgstr "メモリ割り当て失敗" msgid "file open failed" -msgstr "file open failed" +msgstr "" msgid "file create failed" msgstr "ファイルの作成に失敗しました" @@ -9139,13 +8959,13 @@ msgid "file read failed" msgstr "ファイルの読み込みに失敗しました" msgid "file close failed" -msgstr "file close failed" +msgstr "" msgid "file seek failed" -msgstr "file seek failed" +msgstr "" msgid "file stat failed" -msgstr "file stat failed" +msgstr "" msgid "invalid parameter" msgstr "無効なパラメータ" @@ -9200,9 +9020,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr "除外領域 に近すぎるので、衝突の可能性があります。\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "温度差が大きいフィラメントを一緒に造形することができません。ノズル詰まりや損" "傷する可能性があります" @@ -9254,7 +9074,7 @@ msgstr "" "い。" msgid "Variable layer height is not supported with Organic supports." -msgstr "Variable layer height is not supported with Organic supports." +msgstr "" msgid "" "Different nozzle diameters and different filament diameters may not work " @@ -9266,8 +9086,6 @@ msgid "" "The Wipe Tower is currently only supported with the relative extruder " "addressing (use_relative_e_distances=1)." msgstr "" -"The Wipe Tower is currently only supported with the relative extruder " -"addressing (use_relative_e_distances=1)." msgid "" "Ooze prevention is only supported with the wipe tower when " @@ -9291,26 +9109,27 @@ msgid "" "requires that all objects have the same layer height." msgstr "[アダプティブ積層ピッチ]を使用する時に、プライムタワーを利用できません" -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "プライムタワーを使用するにはサポートとのギャップを積層ピッチの整数倍である必" "要があります" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "プライムタワーを使用するには、全てのオブジェクトが同じ積層ピッチを使う必要が" "あります" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "プライムタワーを使用するには、全てのオブジェクトが同じラフト層数を使う必要が" "あります" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9322,7 +9141,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "プライムタワーを使用するには、全てのオブジェクトが同じ積層ピッチを持つ必要が" "あります" @@ -9377,7 +9196,7 @@ msgstr "" "サポート増強器を有効しましたが、サポート自体は有効されていません。有効にして" "ください。" -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "積層ピッチはノズルの直径を超える為設定できません" msgid "" @@ -9482,8 +9301,8 @@ msgid "Elephant foot compensation" msgstr "コーナーはみ出し補正" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "1層目を縮小して、コーナーのはみ出しを軽減します。" msgid "Elephant foot compensation layers" @@ -9501,20 +9320,20 @@ msgstr "積層" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "積層の高さです。小さい値では仕上がりがと良くなりますが、造形時間が伸びます。" msgid "Printable height" msgstr "造形可能高さ" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "造形可能の最大高さです。" msgid "Preferred orientation" msgstr "" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" @@ -9523,7 +9342,7 @@ msgstr "プリセット名" msgid "Use 3rd-party print host" msgstr "" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" msgid "Hostname, IP or URL" @@ -9540,13 +9359,11 @@ msgstr "" "下記形式を参照してください https://username:password@your-octopi-address/" msgid "Device UI" -msgstr "Device UI" +msgstr "" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" -"Specify the URL of your device user interface if it's not the same as " -"print_host" msgid "API Key / Password" msgstr "APIキー/パスワード" @@ -9556,7 +9373,7 @@ msgid "" "contain the API Key or the password required for authentication." msgstr "APIキーとパスワードを入力してください。" -msgid "Name of the printer" +msgid "Name of the printer." msgstr "プリンター名" msgid "HTTPS CA File" @@ -9583,7 +9400,7 @@ msgid "" "certificates if connection fails." msgstr "HTTPS証書の失効チェックを省略します。" -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "プリンターに関連するプリセット名" msgid "Authorization Type" @@ -9595,20 +9412,21 @@ msgstr "APIキー" msgid "HTTP digest" msgstr "HTTP digest" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "壁上の移動を迂回" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "移動する時に、壁面を迂回します。表面の仕上がりが良くなります。" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "最大迂回距離" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "迂回距離上限: 移動距離がこの値以上になる場合迂回しません。値が0の場合無効にな" "ります。" @@ -9620,8 +9438,8 @@ msgid "Other layers" msgstr "他の層" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "ベッドの温度です(1層目以外)。値が0の場合、フィラメントが常温プレートで使用" "できないという意味です。" @@ -9630,27 +9448,27 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "ベッドの温度です(1層目以外)。値が0の場合、フィラメントがエンジニアリング プ" "レートで使用できないという意味です。" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "ベッドの温度です(1層目以外)。値が0の場合、フィラメントが高温プレートで使用" "できないという意味です。" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "1層目以外のベッド温度。値が0の場合、フィラメントがPEIプレートをサポートしない" "意味をします。" @@ -9662,71 +9480,65 @@ msgid "Initial layer bed temperature" msgstr "1層目ベッド温度" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "1層目のベッド温度です。値が0の場合、フィラメントが常温プレートに使用できない" "意味です。" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "1層目のベッド温度です。値が0の場合、フィラメントがエンジニアリング プレートに" "使用できない意味です。" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "1層目のベッド温度です。値が0の場合、フィラメントが高温プレートに使用できない" "意味です。" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "1層目のベッド温度。値が0の場合は、フィラメントがPEIプレートをサポートしない意" "味です。" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "適応ベッド種類" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "エンジニアリングプレート" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" +msgid "First layer print sequence" msgstr "" -msgid "First layer print sequence" -msgstr "First layer print sequence" - msgid "Other layers print sequence" -msgstr "Other layers print sequence" +msgstr "" msgid "The number of other layers print sequence" -msgstr "The number of other layers print sequence" +msgstr "" msgid "Other layers filament sequence" -msgstr "Other layers filament sequence" +msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "積層が変わる直前に実行するG-codeです。" msgid "Bottom shell layers" @@ -9735,7 +9547,7 @@ msgstr "底面層数" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "底面に使用するソリッド層数です。この値が底面の厚みより小さい場合、層数を増や" "して厚みに合わせます。" @@ -9748,7 +9560,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "底面の厚さです、底面層数で決まった厚みがこの値より小さい場合、層数を増やしま" "す。この値が0にする場合、この設定が無効となり、設定した層数で造形します。" @@ -9766,22 +9578,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -9873,9 +9685,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -9886,8 +9698,8 @@ msgid "Bridge flow ratio" msgstr "ブリッジ流量" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -9907,11 +9719,11 @@ msgid "" msgstr "" msgid "Top surface flow ratio" -msgstr "Top surface flow ratio" +msgstr "" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -9921,7 +9733,7 @@ msgid "Bottom surface flow ratio" msgstr "" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -9939,8 +9751,8 @@ msgid "Only one wall on top surfaces" msgstr "トップ面に1層" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "トップ面に1層だけ造形します、インフィルを多い空間を与えます。" msgid "One wall threshold" @@ -9959,11 +9771,11 @@ msgid "" msgstr "" msgid "Only one wall on first layer" -msgstr "Only one wall on first layer" +msgstr "" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" msgid "Extra perimeters on overhangs" @@ -9993,7 +9805,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10013,9 +9825,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -10042,13 +9854,13 @@ msgstr "" msgid "Classic mode" msgstr "" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "" msgid "Slow down for overhang" msgstr "オーバーハング減速" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "オーバーハングを造形時に速度を下げます。各角度のオーバーハングに対して、下記" "の減速パラメータを設定してください。" @@ -10059,11 +9871,11 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10078,13 +9890,13 @@ msgid "" msgstr "" msgid "mm/s or %" -msgstr "mm/s or %" +msgstr "mm/s 或は %" msgid "External" msgstr "" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10103,7 +9915,7 @@ msgstr "" msgid "Brim width" msgstr "ブリム幅" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "一番外側のブリム線がモデルと距離です。" msgid "Brim type" @@ -10113,8 +9925,6 @@ msgid "" "This controls the generation of the brim at outer and/or inner side of " "models. Auto means the brim width is analyzed and calculated automatically." msgstr "" -"This controls the generation of the brim at outer and/or inner side of " -"models. Auto means the brim width is analyzed and calculated automatically." msgid "Painted" msgstr "" @@ -10124,7 +9934,7 @@ msgstr "ブリムとオブジェクトの間隔" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "ブリムを取り外しやすくする為、一番内側のブリムラインをモデルと少し距離を設け" "ます。" @@ -10139,8 +9949,8 @@ msgid "Brim ear max angle" msgstr "" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" @@ -10150,7 +9960,7 @@ msgstr "" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" msgid "Compatible machine" @@ -10186,7 +9996,7 @@ msgstr "" "の場合、このプロファイルはアクティブなプリントプロファイルと互換性があるとみ" "なされます。" -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "造形の順番を設定します、積層順かオブジェクト順にしてください" msgid "By layer" @@ -10198,7 +10008,7 @@ msgstr "オブジェクト順" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" @@ -10211,7 +10021,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "この設定を有効にする場合、最終層の造形で速度を下げます。よって、最終層の冷却" "時間を延長されますので、細部の品質を改善に繋がります。" @@ -10221,23 +10031,23 @@ msgstr "通常造形" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "造形と移動時のデフォルト加速度です。" msgid "Default filament profile" msgstr "デフォルト フィラメント プロファイル" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "デバイスを切替える時のデフォルト フィラメント プロファイル" msgid "Default process profile" msgstr "デフォルト プロセスプロファイル" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "デバイスを切替える時のデフォルト プロセス プロファイル" msgid "Activate air filtration" -msgstr "Activate air filtration" +msgstr "" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -10246,21 +10056,19 @@ msgid "Fan speed" msgstr "回転速度" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" -"Speed of exhaust fan during printing.This speed will override the speed in " -"filament custom g-code" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "" msgid "No cooling for the first" msgstr "冷却しない最初層数" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "1層目をプリント時に全てのファンをオフにします。ベッドとの接着性を高めます" @@ -10268,8 +10076,8 @@ msgid "Don't support bridges" msgstr "ブリッジにサポートしない" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "ブリッジが長くない場合は、サポートが無くても造形できます。フィラメントの消費" "量を減らします。" @@ -10313,20 +10121,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10349,31 +10157,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10400,20 +10202,18 @@ msgstr "" msgid "End G-code" msgstr "終了G-code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "造形完了時のG-codeを追加" -msgid "Between Object Gcode" -msgstr "Between Object Gcode" +msgid "Between Object G-code" +msgstr "" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" -"Insert G-code between objects. This parameter will only come into effect " -"when you print your models object by object." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "このフィラメントを使用終わった時のG-codeを追加" msgid "Ensure vertical shell thickness" @@ -10439,7 +10239,7 @@ msgstr "" msgid "Top surface pattern" msgstr "トップ面パターン" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "トップ面のインフィルのパターンです。" msgid "Concentric" @@ -10469,11 +10269,11 @@ msgstr "オクタグラムスパイラル" msgid "Bottom surface pattern" msgstr "底面パターン" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "底面のインフィル パターンです、ブリッジインフィルが含まれていません。" msgid "Internal solid infill pattern" -msgstr "Internal solid infill pattern" +msgstr "" msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " @@ -10492,7 +10292,7 @@ msgstr "" "外壁の造形速度です。普段は内壁より遅い速度を指定し、仕上がりが良くなります。" msgid "Small perimeters" -msgstr "Small perimeters" +msgstr "" msgid "" "This separate setting will affect the speed of perimeters having radius <= " @@ -10505,15 +10305,14 @@ msgid "Small perimeters threshold" msgstr "" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10527,7 +10326,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10547,7 +10346,7 @@ msgid "Inner/Outer/Inner" msgstr "" msgid "Print infill first" -msgstr "Print infill first" +msgstr "" msgid "" "Order of wall/infill. When the tickbox is unchecked the walls are printed " @@ -10607,10 +10406,10 @@ msgstr "" "ブジェクトの間隔を計算します。" msgid "Nozzle height" -msgstr "Nozzle height" +msgstr "" msgid "The height of nozzle tip." -msgstr "The height of nozzle tip." +msgstr "" msgid "Bed mesh min" msgstr "" @@ -10659,7 +10458,7 @@ msgstr "" msgid "Extruder Color" msgstr "押出機の色" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "ビジュアル情報として使用される" msgid "Extruder offset" @@ -10669,35 +10468,35 @@ msgid "Flow ratio" msgstr "流量比" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "フィラメントは温度により体積が変わります。この設定で押出流量を比例的に調整し" "ます。 0.95 ~ 1.05の間で設定していください。" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" msgid "Enable pressure advance" -msgstr "Enable pressure advance" +msgstr "" msgid "" "Enable pressure advance, auto calibration result will be overwritten once " "enabled." msgstr "" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" msgid "Enable adaptive pressure advance (beta)" @@ -10744,19 +10543,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10773,9 +10571,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10790,8 +10588,9 @@ msgid "Keep fan always on" msgstr "ファン常時ON" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "この設定により、パーツ冷却ファンを停止しなく、最低速度で回転します。頻繁に回" "転・停止の頻度を減らします。" @@ -10803,13 +10602,11 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" @@ -10818,7 +10615,7 @@ msgstr "積層時間" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "パーツ冷却ファンは、積層造形時間がこの値より短い時に作動します。" msgid "Default color" @@ -10828,10 +10625,10 @@ msgid "Default filament color" msgstr "フィラメントのデフォルト色" msgid "Filament notes" -msgstr "Filament notes" +msgstr "" msgid "You can put your notes regarding the filament here." -msgstr "You can put your notes regarding the filament here." +msgstr "" msgid "Required nozzle HRC" msgstr "ノズルHRC" @@ -10846,7 +10643,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "この設定は、単位時間で押出できるフィラメントの体積を示します。造形速度はこの" "パラメータにも制限されています。0に設定できません。" @@ -10860,7 +10657,7 @@ msgstr "フィラメントロード時間" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -10869,7 +10666,7 @@ msgstr "フィラメントアンロード時間" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -10878,12 +10675,12 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "押出制御に使用されるパラメータなので、精確なフィラメント直径を入力してくださ" "い" @@ -10944,7 +10741,7 @@ msgid "Unloading speed" msgstr "アップロードスピード" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "ワイプタワー上でアンロードするときのスピード(ラミング直後のアンロードスピー" @@ -10961,8 +10758,8 @@ msgid "Delay after unloading" msgstr "アンロードした後の待ち時間" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "フィラメントがアンロードされた後に停止する時間。 軟らかい材料などで元の寸法に" @@ -10989,7 +10786,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "冷却チューブの中心から測定したスタンピング距離" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11037,7 +10834,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "マルチツールプリンターを使用しているとき(つまり、プリンター設定の「シングル" "エクストルーダーマルチマテリアル」のチェックが外れているとき)に、ラミングを" @@ -11048,67 +10845,64 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "マルチツールラミング量" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "ツールチェンジ前にラミングで使用する量" msgid "Multi-tool ramming flow" msgstr "マルチツールラミングフロー" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "ツールチェンジ前のフィラメントのラミングに使うフロー。" msgid "Density" msgstr "密度" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "フィラメント密度" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "フィラメント素材タイプ" msgid "Soluble material" msgstr "可溶性材料" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "可溶性材料は、サポート又はサポート接触面の造形によく使われます" msgid "Support material" msgstr "サポート材料" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "サポート素材は、サポート又はサポート接触面の造形によく使われます。" msgid "Softening temperature" -msgstr "Softening temperature" +msgstr "" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." -msgstr "" -"The material softens at this temperature, so when the bed temperature is " "equal to or greater than this, it's highly recommended to open the front " -"door and/or remove the upper glass to avoid clogs." +"door and/or remove the upper glass to avoid clogging." +msgstr "" msgid "Price" msgstr "価格" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "フィラメント単価" msgid "money/kg" msgstr "USD/kg" msgid "Vendor" -msgstr "Vendor" +msgstr "" -msgid "Vendor of filament. For show only" -msgstr "Filament Vendor (Only for show)" +msgid "Vendor of filament. For show only." +msgstr "" msgid "(Undefined)" msgstr "(未定義)" @@ -11118,7 +10912,7 @@ msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "スパース インフィル パターンの角度です" msgid "Solid infill direction" @@ -11126,7 +10920,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -11141,13 +10935,13 @@ msgstr "充填密度" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "充填パターン" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "スパース インフィルのパターンです。" msgid "Grid" @@ -11216,16 +11010,16 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" msgid "0 (no open anchors)" -msgstr "0 (no open anchors)" +msgstr "" msgid "1000 (unlimited)" -msgstr "1000 (unlimited)" +msgstr "" msgid "Maximum length of the infill anchor" msgstr "最長インフィルアンカー" @@ -11238,7 +11032,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11246,23 +11040,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "トップ面のインフィル加速度です。遅くすると表面の仕上がりが向上させることがで" "きます" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "外壁の加速度:低い値では品質を向上させることができます。" msgid "" @@ -11271,14 +11065,12 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "mm/s² 或は %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " "(e.g. 100%), it will be calculated based on the default acceleration." msgstr "" -"Acceleration of sparse infill. If the value is expressed as a percentage " -"(e.g. 100%), it will be calculated based on the default acceleration." msgid "" "Acceleration of internal solid infill. If the value is expressed as a " @@ -11288,40 +11080,40 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "1層目の造形加速度です。遅くするとプレートとの接着を向上させることができます" msgid "Enable accel_to_decel" -msgstr "Enable accel_to_decel" +msgstr "" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." +msgstr "" msgid "accel_to_decel" msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -msgid "Jerk of outer walls" -msgstr "Jerk of outer walls" - -msgid "Jerk of inner walls" -msgstr "Jerk of inner walls" - -msgid "Jerk for top surface" +msgid "Jerk of outer walls." msgstr "" -msgid "Jerk for infill" +msgid "Jerk of inner walls." msgstr "" -msgid "Jerk for initial layer" +msgid "Jerk for top surface." msgstr "" -msgid "Jerk for travel" +msgid "Jerk for infill." +msgstr "" + +msgid "Jerk for initial layer." +msgstr "" + +msgid "Jerk for travel." msgstr "" msgid "" @@ -11334,22 +11126,22 @@ msgstr "1層目の高さ" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "1層目の高さです。高さを大きくすればプレートとの接着性が良くなります。" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "1層目を造形時に、ソリッド インフィル以外の部分の造形速度です。" msgid "Initial layer infill" msgstr "1層目インフィル" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "1層目のソリッド インフィルの造形速度です。" msgid "Initial layer travel speed" msgstr "" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "" msgid "Number of slow layers" @@ -11363,7 +11155,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "1層目のノズル温度" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "1層目でのノズル温度" msgid "Full fan speed at layer" @@ -11385,7 +11177,7 @@ msgstr "" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11406,16 +11198,16 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "この設定により、壁面を造形時にノズルがランダムで軽微な振動を加えます。これに" "より、表面にザラザラ感が出来上がります。" msgid "Contour" -msgstr "Contour" +msgstr "" msgid "Contour and hole" -msgstr "Contour and hole" +msgstr "" msgid "All walls" msgstr "すべての壁" @@ -11425,7 +11217,7 @@ msgstr "厚さ" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "ジッターの幅:外壁の線幅より小さくするのをお勧めします。" msgid "Fuzzy skin point distance" @@ -11433,20 +11225,20 @@ msgstr "ポイント距離" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "ポイント間の平均距離" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11496,7 +11288,7 @@ msgid "" msgstr "" msgid "Filter out tiny gaps" -msgstr "Filter out tiny gaps" +msgstr "" msgid "Layers and Perimeters" msgstr "積層と境界" @@ -11509,29 +11301,26 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "ギャップを充填時の速度です。ギャップの幅が不規則なので、遅くするのが推奨で" "す。" msgid "Precise Z height" -msgstr "Precise Z height" +msgstr "" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" -"Enable this to get precise z height of object after slicing. It will get the " -"precise object height by fine-tuning the layer heights of the last few " -"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "曲線フィッティング" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11543,7 +11332,8 @@ msgstr "" msgid "Add line number" msgstr "行番号を追加" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "各G-codeラインの先頭に行番号 (Nx)を追加します" msgid "Scan first layer" @@ -11551,7 +11341,7 @@ msgstr "1層目を検査" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "カメラで1層目検査を有効にします" msgid "Nozzle type" @@ -11559,7 +11349,7 @@ msgstr "ノズルタイプ" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "ノズル材料:これにより、ノズルの耐摩耗性と使用できるフィラメントが決まりま" "す。" @@ -11588,10 +11378,10 @@ msgid "HRC" msgstr "HRC" msgid "Printer structure" -msgstr "Printer structure" +msgstr "" -msgid "The physical arrangement and components of a printing device" -msgstr "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." +msgstr "" msgid "CoreXY" msgstr "" @@ -11606,10 +11396,10 @@ msgid "Delta" msgstr "" msgid "Best object position" -msgstr "Best object position" +msgstr "" msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." -msgstr "Best auto arranging position in range [0,1] w.r.t. bed shape." +msgstr "" msgid "" "Enable this option if machine has auxiliary part cooling fan. G-code " @@ -11621,10 +11411,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" @@ -11648,14 +11438,14 @@ msgstr "" msgid "Time cost" msgstr "" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "" msgid "money/h" msgstr "" msgid "Support control chamber temperature" -msgstr "Support controlling chamber temperature" +msgstr "" msgid "" "This option is enabled if machine support controlling chamber temperature\n" @@ -11663,7 +11453,7 @@ msgid "" msgstr "" msgid "Support air filtration" -msgstr "Support air filtration" +msgstr "" msgid "" "Enable this if printer support air filtration\n" @@ -11673,7 +11463,7 @@ msgstr "" msgid "G-code flavor" msgstr "G-codeスタイル" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "プリンターが対応するG-code" msgid "Klipper" @@ -11682,20 +11472,20 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "オブジェクトにラベルを付ける" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11707,9 +11497,9 @@ msgstr "" "りません。" msgid "Exclude objects" -msgstr "Exclude objects" +msgstr "" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" msgid "Verbose G-code" @@ -11738,7 +11528,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11778,44 +11568,40 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "スパース インフィルの造形速度です。" msgid "Inherits profile" msgstr "プロファイルを継承" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" -msgstr "Interface shells" +msgstr "" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" -"Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" msgid "Maximum width of a segmented region" -msgstr "Maximum width of a segmented region" +msgstr "" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" -"Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" -msgstr "Interlocking depth of a segmented region" +msgstr "" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0か、" @@ -11900,9 +11686,9 @@ msgid "All solid layer" msgstr "全てのソリッド積層" msgid "Ironing Pattern" -msgstr "Ironing Pattern" +msgstr "" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "" msgid "Ironing flow" @@ -11910,13 +11696,13 @@ msgstr "アイロン時の流量比率" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "アイロン時の押出量です。通常流量の比率で決まります。" msgid "Ironing line spacing" msgstr "アイロン時にライン間隔" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "アイロン時の線間隔です。" msgid "Ironing inset" @@ -11924,13 +11710,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "アイロン時の移動速度" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "アイロン時の造形速度です。" msgid "Ironing angle" @@ -11941,7 +11727,7 @@ msgid "" "uses the default method." msgstr "" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "積層が変わる直後に実行するG-codeです。" msgid "Supports silent mode" @@ -11949,7 +11735,7 @@ msgstr "サイレントモード" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "サイレントモード有無" msgid "Emit limits to G-code" @@ -11960,23 +11746,23 @@ msgstr "プリンター制限" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "このG-codeは造形を一時停止用です。ユーザがこれをG-codeに入れて造形を一時停止" "できます。" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "このG-codeがカスタム用です。" msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -12088,20 +11874,20 @@ msgstr "リトラクション最大加速度 (M204 R)" msgid "Maximum acceleration for travel" msgstr "移動最大加速度" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "自動冷却時に、パーツ冷却ファンの最大回転速度。" msgid "Max" msgstr "最大" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "最大積層ピッチ:この値は「アダプティブ積層ピッチ」が有効時に積層ピッチの最大" "値です" @@ -12115,23 +11901,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12146,11 +11932,11 @@ msgstr "" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12165,7 +11951,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "パーツ冷却ファンの最低回転数" msgid "" @@ -12180,8 +11966,8 @@ msgid "Min" msgstr "最小" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "最小積層ピッチ:この値は「アダプティブ積層ピッチ」が有効時に積層ピッチの最小" "値です" @@ -12219,7 +12005,7 @@ msgstr "ホストタイプを入力してください。" msgid "Nozzle volume" msgstr "内腔容積" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "ノズル先端とフィラメントカッターの間の体積" msgid "Cooling tube position" @@ -12264,7 +12050,7 @@ msgstr "追加ローディング長さ" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "ゼロに設定すると、ロード中にフィラメントがパーキング位置から押し出される距離" @@ -12283,7 +12069,7 @@ msgstr "インフィルのリトラクション低減" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "インフィル領域内の移動はリトラクションしません。造形時間を節約できます。" @@ -12297,7 +12083,7 @@ msgstr "" msgid "Filename format" msgstr "ファイル名形式" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "エクスポート時ファイル名を設定できます" msgid "Make overhangs printable" @@ -12320,7 +12106,7 @@ msgstr "" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" msgid "mm²" @@ -12345,10 +12131,10 @@ msgid "" "nozzle diameter." msgstr "" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "内壁の造形速度です。" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "壁面の層数です。" msgid "Alternate extra wall" @@ -12356,10 +12142,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12380,10 +12166,10 @@ msgid "Type of the printer" msgstr "" msgid "Printer notes" -msgstr "Printer notes" +msgstr "" msgid "You can put your notes regarding the printer here." -msgstr "You can put your notes regarding the printer here." +msgstr "" msgid "Printer variant" msgstr "プリンターバリエーション" @@ -12391,7 +12177,7 @@ msgstr "プリンターバリエーション" msgid "Raft contact Z distance" msgstr "ラフト接触面Z間隔" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "ラフトとオブジェクトのZ方向の間隔。可溶性材料を使用する場合この設定が無効で" "す。" @@ -12399,19 +12185,19 @@ msgstr "" msgid "Raft expansion" msgstr "ラフト拡張" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "この設定により、ラフトのXYサイズを拡大します。" msgid "Initial layer density" msgstr "1層目の密度" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "ラフト或はサポートの1層目の密度です。" msgid "Initial layer expansion" msgstr "1層目拡張" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "この設定により、ラフト或はサポートの1層目を拡大します。ベッドとの接着性が良く" "なります。" @@ -12421,15 +12207,15 @@ msgstr "ラフト" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "指定したサポート層数で上げて造形します。ABSなど反りやすい材料に対して有効的で" "す。" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "モデルを簡略化してG-codeのデータ量を減らせます。値が小さく設定するほど、分解" "能が高くなり、スライス時間も長くなります。" @@ -12439,21 +12225,21 @@ msgstr "移動距離閾値" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "移動距離が閾値以上の場合のみ、リトラクションを作動します。" msgid "Retract amount before wipe" msgstr "拭き上げ前のリトラクション量" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "拭き上げ前のリトラクション量です、通常のリトラクション量の比率で指定します。" msgid "Retract when change layer" msgstr "積層変更時のリトラクション" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "この設定により、積層を変更時にリトラクションを実行します。" msgid "Retract on top layer" @@ -12461,7 +12247,7 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -12474,29 +12260,23 @@ msgstr "" "ノズルが長い距離で移動する時に、リトラクションの量です。値が0の場合、リトラク" "ションが無効になります。" -msgid "Long retraction when cut(beta)" -msgstr "Long retraction when cut (beta)" +msgid "Long retraction when cut (beta)" +msgstr "" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Experimental feature: Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " -"significantly, it may also raise the risk of nozzle clogs or other printing " -"problems." msgid "Retraction distance when cut" -msgstr "Retraction distance when cut" +msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Experimental feature. Retraction length before cutting off during filament " -"change" msgid "Z-hop height" msgstr "" @@ -12504,37 +12284,30 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "リトラクション時に、ノズルを少し上げてから移動します。この動作でモデルとの衝" "突を回避できます。" -msgid "Z hop lower boundary" -msgstr "Z hop lower boundary" +msgid "Z-hop lower boundary" +msgstr "" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" -msgid "Z hop upper boundary" -msgstr "Z hop upper boundary" +msgid "Z-hop upper boundary" +msgstr "" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" msgid "Z-hop type" msgstr "" -msgid "Z hop type" -msgstr "" - msgid "Slope" msgstr "スロープ" @@ -12545,8 +12318,8 @@ msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12569,7 +12342,7 @@ msgid "On surfaces" msgstr "" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" @@ -12586,7 +12359,7 @@ msgid "Top and Bottom" msgstr "" msgid "Extra length on restart" -msgstr "Extra length on restart" +msgstr "" msgid "" "When the retraction is compensated after the travel move, the extruder will " @@ -12605,21 +12378,21 @@ msgstr "" msgid "Retraction Speed" msgstr "リトラクション速度" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "リトラクションの速度です。" msgid "De-retraction Speed" msgstr "復帰速度" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "リトラクション後フィラメントをロードする時の速度です、値が0の場合、リトラク" "ションの速度と同じくなります。" msgid "Use firmware retraction" -msgstr "Use firmware retraction" +msgstr "" msgid "" "This experimental setting uses G10 and G11 commands to have the firmware " @@ -12636,13 +12409,13 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" msgstr "継ぎ目位置" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "各パーツに対して、外壁を造形時の開始位置です。" msgid "Nearest" @@ -12668,7 +12441,7 @@ msgstr "" "成するものです。" msgid "Seam gap" -msgstr "Seam gap" +msgstr "" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -12682,20 +12455,17 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "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 "" -"Apply scarf joints only to smooth perimeters where traditional seams do not " -"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "Conditional angle threshold" +msgstr "" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -12722,7 +12492,7 @@ 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 " +"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 " @@ -12738,50 +12508,45 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "Scarf start height" +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 "" -"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." msgid "Scarf around entire wall" -msgstr "Scarf around entire wall" +msgstr "" msgid "The scarf extends to the entire length of the wall." -msgstr "The scarf extends to the entire length of the wall." +msgstr "" msgid "Scarf length" -msgstr "Scarf length" +msgstr "" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Length of the scarf. Setting this parameter to zero effectively disables the " -"scarf." msgid "Scarf steps" -msgstr "Scarf steps" +msgstr "" msgid "Minimum number of segments of each scarf." -msgstr "Minimum number of segments of each scarf." +msgstr "" msgid "Scarf joint for inner walls" -msgstr "Scarf joint for inner walls" +msgstr "" msgid "Use scarf joint for inner walls as well." -msgstr "Use scarf joint for inner walls as well." +msgstr "" msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -12802,7 +12567,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -12810,18 +12575,14 @@ msgid "" msgstr "" msgid "Wipe speed" -msgstr "Wipe speed" +msgstr "" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" -msgstr "" -"The wipe speed is determined by the speed setting specified in this " "configuration. If the value is expressed as a percentage (e.g. 80%), it will " "be calculated based on the travel speed setting above. The default value for " "this parameter is 80%." +msgstr "" msgid "Skirt distance" msgstr "スカート距離" @@ -12838,10 +12599,10 @@ msgid "" msgstr "" msgid "Skirt height" -msgstr "Skirt height" +msgstr "" -msgid "How many layers of skirt. Usually only one layer" -msgstr "Number of skirt layers: usually only one" +msgid "How many layers of skirt. Usually only one layer." +msgstr "" msgid "Single loop draft shield" msgstr "" @@ -12858,7 +12619,7 @@ msgstr "保護シールド" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -12887,7 +12648,7 @@ msgstr "" msgid "Skirt loops" msgstr "スカートのループ数" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "スカートのループ数です、値が0の場合、スカートが無効になります。" msgid "Skirt speed" @@ -12903,15 +12664,16 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "積層造形時間がこの値より短い時に、より良い冷却を図るため速度を落とします。" @@ -12920,7 +12682,7 @@ msgstr "スパース インフィルの下閾値" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "スパース インフィルの面積がこの値以下の場合、ソリッド インフィルに変換されま" "す" @@ -12936,34 +12698,32 @@ msgid "" "computed over the nozzle diameter." msgstr "" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "ソリッド インフィルの造形速度です。" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "スパイラルモードでは、輪郭面を一筆書きで造形します。Z方向の移動に段差がないの" "で、シームはありません。" msgid "Smooth Spiral" -msgstr "Smooth Spiral" +msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" -"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "Max XY Smoothing" +msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" msgid "Spiral starting flow ratio" @@ -13011,8 +12771,8 @@ msgstr "軟化温度" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -13029,23 +12789,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "スタートG-code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "造形開始時のG-code" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "このフィラメントを使用開始時のG-code" msgid "Single Extruder Multi Material" msgstr "シングルエクストルーダー・マルチマテリアル" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" msgid "Manual Filament Change" @@ -13062,18 +12822,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -13101,9 +12861,6 @@ 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 "" -"Cracks smaller than 2x gap closing radius are being filled during the " -"triangle mesh slicing. The gap closing operation may reduce the final print " -"resolution, therefore it is advisable to keep the value reasonably low." msgid "Slicing Mode" msgstr "スライシングモード" @@ -13112,14 +12869,12 @@ msgid "" "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " "close all holes in the model." msgstr "" -"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " -"close all holes in the model." msgid "Regular" msgstr "レギュラー" msgid "Even-odd" -msgstr "Even-odd" +msgstr "" msgid "Close holes" msgstr "穴を閉じる" @@ -13145,9 +12900,9 @@ msgid "Enable support generation." msgstr "この設定によりサポート生成を有効になります。" msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" msgid "Normal (auto)" @@ -13165,14 +12920,14 @@ msgstr "ツリー (手動)" msgid "Support/object xy distance" msgstr "水平間隔" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "オブジェクトとサポートのXY距離です。" msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" msgstr "パターン角度" @@ -13183,7 +12938,7 @@ msgstr "この設定でサポートのパターンを回転させます。" msgid "On build plate only" msgstr "ビルドプレートのみ" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "この設定により、プレートから生成するサポートのみを造形します。" msgid "Support critical regions only" @@ -13195,40 +12950,39 @@ msgid "" msgstr "造形しにくい部分だけサポートを生成します、例えば細長いしっぽ、ハリなど" msgid "Remove small overhangs" -msgstr "Remove small overhangs" +msgstr "" msgid "Remove small overhangs that possibly need no supports." -msgstr "This removes small overhangs that may need no support." +msgstr "" msgid "Top Z distance" msgstr "トップ面とのZ間隔" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "サポート接触面とオブジェクトのZ方向の間隔" msgid "Bottom Z distance" msgstr "底面とのZ間隔" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "サポート底面とオブジェクトのZ方向間隔" msgid "Support/raft base" -msgstr "Support/raft base" +msgstr "" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "サポートとラフトを造形用のフィラメント。「デフォルト」では当時のフィラメント" "を使用する意味です。" msgid "Avoid interface filament for base" -msgstr "Avoid interface filament for base" +msgstr "" msgid "" "Avoid using support interface filament to print support base if possible." msgstr "" -"Avoid using support interface filament to print support base if possible." msgid "" "Line width of support. If expressed as a %, it will be computed over the " @@ -13245,11 +12999,11 @@ msgstr "" "なっています。" msgid "Support/raft interface" -msgstr "Support/raft interface" +msgstr "" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "サポートの接触面用のフィラメントです。「デフォルト」では指定しなく、当時の" "フィラメントを使用する意味です。" @@ -13257,37 +13011,37 @@ msgstr "" msgid "Top interface layers" msgstr "トップ接触面の層数" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "トップ接触面の層数" msgid "Bottom interface layers" msgstr "底部接触面層数" -msgid "Number of bottom interface layers" -msgstr "Number of bottom interface layers" +msgid "Number of bottom interface layers." +msgstr "" msgid "Same as top" -msgstr "Same as top" +msgstr "" msgid "Top interface spacing" msgstr "トップ接触面間隔" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "接触面を造形時に線の距離です。0はソリッド接触面です。" msgid "Bottom interface spacing" msgstr "底部接触面間隔" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "底部接触面を造形時に線の距離です。0はソリッド接触面です。" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "サポート接触面の造形速度です。" msgid "Base pattern" msgstr "基本パターン" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "サポートのサターンです。" msgid "Rectilinear grid" @@ -13302,27 +13056,27 @@ msgstr "接触面パターン" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "サポート接触面のパターンです。非可溶性材を使用する場合はRectilinear、可溶性材" "を使用する場合同心です。" msgid "Rectilinear Interlaced" -msgstr "Rectilinear Interlaced" +msgstr "" msgid "Base pattern spacing" msgstr "基本パターン間隔" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "サポートの線の間隔です" msgid "Normal Support expansion" msgstr "通常サポート拡大" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "+/-でサポートの水平サイズを調整します" -msgid "Speed of support" +msgid "Speed of support." msgstr "サポートの造形速度です。" msgid "" @@ -13339,7 +13093,7 @@ msgid "Default (Grid/Organic)" msgstr "" msgid "Snug" -msgstr "Snug" +msgstr "" msgid "Organic" msgstr "オーガニック" @@ -13358,12 +13112,9 @@ msgstr "独立サポート層ピッチ" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" -"Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " -"when the prime tower is enabled." msgid "Threshold angle" msgstr "閾値角度" @@ -13386,8 +13137,8 @@ msgid "Tree support branch angle" msgstr "ツリーサポート枝アングル" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "ツリータイプのサポートを造形する時の最大オーバーハング最大角度です。この値が" @@ -13432,8 +13183,8 @@ msgid "Adaptive layer height" msgstr "アダプティブ積層ピッチ" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" msgid "Auto brim width" @@ -13441,13 +13192,13 @@ msgstr "オートブリム幅" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" msgid "Tree support brim width" msgstr "ツリーサポートブリム幅" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" msgid "Tip Diameter" @@ -13491,7 +13242,7 @@ msgstr "ツリーサポートインフィル使用" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "この設定により、大きいツリーサポートを造形する時に、インフィルを追加します。" @@ -13504,7 +13255,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13519,13 +13270,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13534,7 +13285,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "1層目後のノズル温度" msgid "Detect thin wall" @@ -13542,17 +13293,17 @@ msgstr "薄い壁を検出" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "2ラインの入らない薄い壁面を検出し、1ラインで造形します。仕上がりが悪くなり可" "能性があります。" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "フィラメントを切り替える直後に実行するG-codeです。" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" msgid "" @@ -13560,7 +13311,7 @@ msgid "" "the nozzle diameter." msgstr "" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "トップ面のインフィルの造形速度です。" msgid "Top shell layers" @@ -13569,7 +13320,7 @@ msgstr "トップ面層数" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "トップ面に使用するソリッド層数です。この値がトップ面の厚みより小さい場合、層" "数を増やして厚みに合わせます。" @@ -13585,21 +13336,22 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "トップ面の厚さです、トップ面層数で決まった厚みがこの値より小さい場合、層数を" "増やします。この値が0にする場合、この設定が無効となり、設定した層数で造形しま" "す。" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "移動完了時の速度です。" msgid "Wipe while retracting" msgstr "リトラクション時に拭き上げ" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "リトラクション時に、ノズルを最後のパスに沿って移動します。この設定によって、" "たるみにより壁面のブロブを抑えることができます。" @@ -13609,11 +13361,11 @@ msgstr "拭き上げ距離" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13645,7 +13397,7 @@ msgstr "プライム量" msgid "The volume of material to prime extruder on tower." msgstr "フィラメントのフラッシュ量です。" -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "プライムタワーの幅です。" msgid "Wipe tower rotation angle" @@ -13681,7 +13433,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -13728,8 +13480,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "このオブジェクトは廃料で造形されます。時間とフィラメントの節約として有効的で" "すが、色の指定ができなくなります。プライムタワーが有効になる場合、この設定が" @@ -13762,18 +13514,20 @@ msgid "Idle temperature" msgstr "アイドリング温度" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "ホール補正 X-Y" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "オブジェクトの穴の大きさの調整値。正数は穴を大きくし、負数は穴を小さくしま" "す。この機能はパーツを組立てる為に、はめあいの微調査です。" @@ -13781,11 +13535,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "輪郭補正 X-Y" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "オブジェクトの輪郭の大きさの調整値です。正数は大きくし、負数は小さくします。" "これがパーツを組み立てる為にはめあいの微調整です。" @@ -13833,25 +13588,25 @@ msgstr "Gコードサムネイルのフォーマット" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Gコードサムネイルのフォーマット。PNGは最高の品質、JPGは最小のサイズ、QOIは低" "メモリのファームウェアのため" msgid "Use relative E distances" -msgstr "Use relative E distances" +msgstr "" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "クラシックでは従来通りの壁面を生成しますが、Arachneでは押出線幅が可変になりま" "す。" @@ -13865,11 +13620,8 @@ msgstr "壁面遷移長さ" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" -"When transitioning between different numbers of walls as the part becomes " -"thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" msgid "Wall transitioning filter margin" msgstr "フィルタマージン" @@ -13881,15 +13633,8 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" -"Prevent transitioning back and forth between one extra wall and one less. " -"This margin extends the range of extrusion widths which follow to [Minimum " -"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " -"margin reduces the number of transitions, which reduces the number of " -"extrusion starts/stops and travel time. However, large extrusion width " -"variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" msgid "Wall transitioning threshold angle" msgstr "角度閾値" @@ -13899,30 +13644,26 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" -"When to create transitions between even and odd numbers of walls. A wedge " -"shape with an angle greater than this setting will not have transitions and " -"no walls will be printed in the center to fill the remaining space. Reducing " -"this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" msgid "Wall distribution count" msgstr "壁面分布カウント" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "壁の層数" msgid "Minimum feature size" msgstr "最小サイズ" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "小部分の厚さ下限。モデルに厚さがこの値以下になる部分を造形しません。" msgid "Minimum wall length" @@ -13955,36 +13696,32 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" -"Width of the wall that will replace thin features (according to the Minimum " -"feature size) of the model. If the Minimum wall width is thinner than the " -"thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" msgid "Detect narrow internal solid infill" msgstr "薄いソリッド インフィル検出" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "ソリッド インフィル領域に狭い部分があるか検出します。その設定を有効にする場" "合、狭い領域は同心パターンを使用し、それ以外の領域は、直線パターンを使用しま" "す。" msgid "invalid value " -msgstr "invalid value " +msgstr "" msgid "Invalid value when spiral vase mode is enabled: " -msgstr "Invalid value when spiral vase mode is enabled: " +msgstr "" msgid "too large line width " -msgstr "too large line width " +msgstr "" msgid " not in range " -msgstr " not in range " +msgstr "" msgid "Export 3MF" msgstr "3mf をエクスポート" @@ -14001,11 +13738,11 @@ msgstr "スライスデータをエクスポート" msgid "Load slicing data" msgstr "スライスデータを読込み" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "スライスデータを読込み" msgid "Export STL" -msgstr "Export STL" +msgstr "" msgid "Export the objects as single STL." msgstr "" @@ -14013,7 +13750,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -14036,14 +13773,14 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" -msgstr "Load default filaments" +msgstr "" -msgid "Load first filament as default for those not loaded" -msgstr "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." +msgstr "" msgid "Minimum save" msgstr "" @@ -14055,25 +13792,25 @@ msgid "mtcpp" msgstr "mtcpp" msgid "max triangle count per plate for slicing." -msgstr "max triangle count per plate for slicing" +msgstr "" msgid "mstpp" msgstr "mstpp" msgid "max slicing time per plate in seconds." -msgstr "max slicing time per plate in seconds" +msgstr "" msgid "No check" -msgstr "No check" +msgstr "" -msgid "Do not run any validity checks, such as gcode path conflicts check." -msgstr "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." +msgstr "" msgid "Normative check" -msgstr "Normative check" +msgstr "" msgid "Check the normative items." -msgstr "Check the normative items." +msgstr "" msgid "Output Model Info" msgstr "出力モデル情報" @@ -14099,17 +13836,17 @@ msgstr "レイアウト設定" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "レイアウト設定: 0: 無効 1: 有効 その他: 自動" -msgid "Repetions count" -msgstr "Repetition count" +msgid "Repetition count" +msgstr "" -msgid "Repetions count of the whole model" -msgstr "Repetition count of the whole model" +msgid "Repetition count of the whole model." +msgstr "" msgid "Ensure on bed" msgstr "ベッド上で確認" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" msgid "" @@ -14122,7 +13859,7 @@ msgstr "" msgid "Convert Unit" msgstr "単位変換" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "モデルの単位を変換" msgid "Orient Options" @@ -14140,65 +13877,63 @@ msgstr "Y軸周りの回転" msgid "Rotation angle around the Y axis in degrees." msgstr "Y軸を中心とした回転角(度単位)。" -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "指定した比率で伸縮する" msgid "Load General Settings" msgstr "一般設定を読込む" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "指定ファイルから設定値を読込む" msgid "Load Filament Settings" msgstr "フィラメント設定を読込む" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "指定したファイルリストからフィラメント設定を読込む" msgid "Skip Objects" msgstr "オブジェクトスキップ" -msgid "Skip some objects in this print" -msgstr "Skip some objects in this print" +msgid "Skip some objects in this print." +msgstr "" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" -msgstr "load uptodate process/machine settings when using uptodate" - -msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" -msgstr "" -"load up-to-date process/machine settings from the specified file when using " -"up-to-date" - -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." +msgstr "" + +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" -msgid "downward machines settings" +msgid "" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "Downward machines settings" +msgstr "" + +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14231,13 +13966,13 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "" msgid "Load filament ids" @@ -14246,30 +13981,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14296,13 +14031,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "現在のz-hop" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "カスタムGコードブロックの先頭に存在するz-hopを含む。" msgid "" @@ -14405,10 +14140,10 @@ msgstr "エクストルーダーあたりの体積" msgid "Total filament volume extruded per extruder during the entire print." msgstr "プリント全体でエクストルーダーごとに押し出されたフィラメントの総量。" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "プリント中のツール交換の数。" msgid "Total volume" @@ -14604,21 +14339,19 @@ msgid "Checking support necessity" msgstr "サポートの必要性を確認" msgid "floating regions" -msgstr "floating regions" +msgstr "" msgid "floating cantilever" -msgstr "floating cantilever" +msgstr "" msgid "large overhangs" -msgstr "large overhangs" +msgstr "" #, c-format, boost-format msgid "" "It seems object %s has %s. Please re-orient the object or enable support " "generation." msgstr "" -"It seems object %s has %s. Please re-orient the object or enable support " -"generation." msgid "Generating support" msgstr "サポートを生成" @@ -14633,17 +14366,12 @@ msgid "" "No layers were detected. You might want to repair your STL file(s) or check " "their size or thickness and retry.\n" msgstr "" -"No layers were detected. You might want to repair your STL file(s) or check " -"their size or thickness and retry.\n" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" -"An object's XY size compensation will not be used because it is also color-" -"painted.\n" -"XY Size compensation can not be combined with color-painting." msgid "Support: generate contact points" msgstr "サポート: 接触点を生成" @@ -14651,104 +14379,96 @@ msgstr "サポート: 接触点を生成" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Unknown file format: input file must have .stl, .obj, or .amf(.xml) " -"extension." msgid "Loading of a model file failed." -msgstr "Loading of model file failed." +msgstr "" msgid "The supplied file couldn't be read because it's empty" -msgstr "The supplied file couldn't be read because it's empty." +msgstr "" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." -msgstr "Unknown file format: input file must have .3mf or .zip.amf extension." - -msgid "Canceled" -msgstr "Canceled" +msgstr "" msgid "load_obj: failed to parse" -msgstr "load_obj: failed to parse" +msgstr "" msgid "load mtl in obj: failed to parse" -msgstr "load mtl in obj: failed to parse" +msgstr "" msgid "The file contains polygons with more than 4 vertices." -msgstr "The file contains polygons with more than 4 vertices." +msgstr "" msgid "The file contains polygons with less than 2 vertices." -msgstr "The file contains polygons with less than 2 vertices." +msgstr "" msgid "The file contains invalid vertex index." -msgstr "The file contains invalid vertex index." +msgstr "" msgid "This OBJ file couldn't be read because it's empty." -msgstr "This OBJ file couldn't be read because it's empty." +msgstr "" msgid "Flow Rate Calibration" -msgstr "Flow Rate Calibration" +msgstr "" msgid "Max Volumetric Speed Calibration" -msgstr "Max Volumetric Speed Calibration" +msgstr "" msgid "Manage Result" -msgstr "Manage Results" +msgstr "" msgid "Manual Calibration" -msgstr "Manual Calibration" +msgstr "" msgid "Result can be read by human eyes." -msgstr "Results can be easily seen and understood." +msgstr "" msgid "Auto-Calibration" -msgstr "Auto-Calibration" +msgstr "" msgid "We would use Lidar to read the calibration result" -msgstr "We would use Lidar to read the calibration result." +msgstr "" msgid "Prev" -msgstr "Prev" +msgstr "" msgid "Recalibration" -msgstr "Recalibration" +msgstr "" msgid "Calibrate" -msgstr "Calibrate" +msgstr "" msgid "Finish" msgstr "完了" msgid "How to use calibration result?" -msgstr "How can I use calibration results?" +msgstr "" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" -"You can change the Flow Dynamics Calibration Factor in material editing" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" -"The current firmware version of the printer does not support calibration.\n" -"Please update the printer firmware." msgid "Calibration not supported" -msgstr "Calibration not supported" +msgstr "" msgid "Error desc" -msgstr "Error desc" +msgstr "" msgid "Extra info" -msgstr "Extra info" +msgstr "" msgid "Flow Dynamics" -msgstr "Flow Dynamics" +msgstr "" msgid "Flow Rate" -msgstr "Flow Rate" +msgstr "" msgid "Max Volumetric Speed" -msgstr "Max Volumetric Speed" +msgstr "" #, c-format, boost-format msgid "" @@ -14758,67 +14478,55 @@ msgid "" "End value: > Start value\n" "Value step: >= %.3f)" msgstr "" -"Please input valid values:\n" -"Start value: >= %.1f\n" -"End value: <= %.1f\n" -"End value: > Start value\n" -"Value step: >= %.3f)" msgid "The name cannot be empty." -msgstr "The name cannot be empty." +msgstr "" #, c-format, boost-format -msgid "The selected preset: %s is not found." -msgstr "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." +msgstr "" msgid "The name cannot be the same as the system preset name." -msgstr "The name cannot be the same as the system preset name." +msgstr "" msgid "The name is the same as another existing preset name" -msgstr "The name is the same as another existing preset name." +msgstr "" msgid "create new preset failed." -msgstr "Creating new preset failed." +msgstr "" msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" -"Are you sure you want to cancel the current calibration and return to the " -"home page?" msgid "No Printer Connected!" -msgstr "No Printer Connected!" +msgstr "" msgid "Printer is not connected yet." -msgstr "A printer is not connected yet." +msgstr "" msgid "Please select filament to calibrate." -msgstr "Please select filament to calibrate." +msgstr "" msgid "The input value size must be 3." -msgstr "The input value size must be 3." +msgstr "" msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" -"This machine type can only hold 16 historical results per nozzle. You can " -"delete the existing historical results and then start calibration. Or you " -"can continue the calibration, but you cannot create new calibration " -"historical results. \n" -"Do you still want to continue the calibration?" msgid "Connecting to printer..." -msgstr "Connecting to printer..." +msgstr "" msgid "The failed test result has been dropped." -msgstr "The failed test result has been removed." +msgstr "" -msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "Flow Dynamics Calibration results have been saved to the printer." +msgid "Flow Dynamics Calibration result has been saved to the printer." +msgstr "" #, c-format, boost-format msgid "" @@ -14826,54 +14534,41 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" -"There is already a previous calibration result with the same name: %s. Only " -"one result with a name is saved. Are you sure you want to overwrite the " -"previous result?" #, c-format, boost-format msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" -"This machine type can only hold %d historical results per nozzle. This " -"result will not be saved." msgid "Internal Error" -msgstr "Internal Error" +msgstr "" msgid "Please select at least one filament for calibration" -msgstr "Please select at least one filament for calibration" +msgstr "" -msgid "Flow rate calibration result has been saved to preset" -msgstr "Flow rate calibration results have been saved to preset." +msgid "Flow rate calibration result has been saved to preset." +msgstr "" -msgid "Max volumetric speed calibration result has been saved to preset" -msgstr "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." +msgstr "" msgid "When do you need Flow Dynamics Calibration" -msgstr "When do you need Flow Dynamics Calibration?" +msgstr "" msgid "" "We now have added the auto-calibration for different filaments, which is " "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" -"3. If the max volumetric speed or print temperature is changed in the " -"filament setting." -msgstr "" -"We now have added auto-calibration for different filaments, which is fully " -"automated and the result will be saved to the printer for future use. You " -"only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the " "filament is damp\n" -"2. If the nozzle is worn out or replaced with a new one;\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" +msgstr "" msgid "About this calibration" -msgstr "About this calibration" +msgstr "" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -14913,37 +14608,25 @@ msgstr "" "しており、新しいアップデートで改善を行う予定です。" msgid "When to use Flow Rate Calibration" -msgstr "When to use Flow Rate Calibration" +msgstr "" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"After using Flow Dynamics Calibration, there might still be some extrusion " -"issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" -"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" -"PLA used in RC planes. These materials expand greatly when heated, and " -"calibration provides a useful reference flow rate." msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -14953,12 +14636,6 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" -"Flow Rate Calibration measures the ratio of expected to actual extrusion " -"volumes. The default setting works well with Bambu Lab printers and official " -"filaments as they were pre-calibrated and fine-tuned. For a regular " -"filament, you usually won't need to perform a Flow Rate Calibration unless " -"you still see the listed defects after you have done other calibrations. For " -"more details, please check out our wiki article." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " @@ -14978,100 +14655,78 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " -"directly measuring the calibration patterns. However, please be advised that " -"the efficacy and accuracy of this method may be compromised with specific " -"types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only " -"by those who fully understand its purpose and implications. Incorrect usage " -"can lead to sub-par prints or printer damage. Please make sure to carefully " -"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" -msgstr "When you need Max Volumetric Speed Calibration" +msgstr "" msgid "Over-extrusion or under extrusion" -msgstr "Over-extrusion or under extrusion" +msgstr "" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "Max Volumetric Speed Calibration is recommended when you print with:" +msgstr "" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "material with significant thermal shrinkage/expansion, such as..." +msgstr "" msgid "materials with inaccurate filament diameter" -msgstr "materials with inaccurate filament diameter" +msgstr "" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "We found the best Flow Dynamics Calibration Factor." +msgstr "" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." msgstr "" -"Part of the calibration failed! It may help to clean the plate and retry. " -"The failed test result will be deleted." msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" msgstr "" -"*We recommend that you add brand, material, type, and even humidity level to " -"the name" msgid "Failed" msgstr "失敗" msgid "Please enter the name you want to save to printer." -msgstr "Please enter the name you want to save to printer." +msgstr "" msgid "The name cannot exceed 40 characters." -msgstr "The name cannot exceed 40 characters." +msgstr "" msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" -"Only one of the results with the same name will be saved. Are you sure you " -"want to replace the other results?" msgid "Please find the best line on your plate" -msgstr "Please find the best line on your plate." +msgstr "" msgid "Please find the corner with perfect degree of extrusion" -msgstr "Please find the corner with the perfect degree of extrusion" +msgstr "" msgid "Input Value" -msgstr "Input Value" +msgstr "" msgid "Save to Filament Preset" -msgstr "Save to Filament Presets" +msgstr "" msgid "Preset" -msgstr "Preset" +msgstr "" msgid "Record Factor" -msgstr "Record Factor" +msgstr "" msgid "We found the best flow ratio for you" -msgstr "We found the best flow ratio for you." +msgstr "" msgid "Flow Ratio" -msgstr "Flow Ratio" +msgstr "" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" -msgstr "Please input a valid value (0.0 < flow ratio < 2.0)" +msgstr "" msgid "Please enter the name of the preset you want to save." -msgstr "Please enter the name of the preset you want to save." +msgstr "" msgid "Calibration1" msgstr "Calibration1" @@ -15080,156 +14735,147 @@ msgid "Calibration2" msgstr "Calibration2" msgid "Please find the best object on your plate" -msgstr "Please find the best object on your plate." +msgstr "" msgid "Fill in the value above the block with smoothest top surface" -msgstr "Fill in the value from the block with smoothest top surface" +msgstr "" msgid "Skip Calibration2" -msgstr "Skip Calibration 2" +msgstr "" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "flow ratio: %s " - -msgid "Please choose a block with smoothest top surface" -msgstr "Please choose the block with the smoothest top surface." +msgstr "" msgid "Please choose a block with smoothest top surface." -msgstr "Please choose the block with the smoothest top surface." +msgstr "" msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" -msgstr "Please input a valid value (0 <= Max Volumetric Speed <= 60)" +msgstr "" msgid "Calibration Type" -msgstr "Calibration Type" +msgstr "" msgid "Complete Calibration" -msgstr "Complete Calibration" +msgstr "" msgid "Fine Calibration based on flow ratio" -msgstr "Fine Calibration based on flow ratio" +msgstr "" msgid "Title" -msgstr "Title" +msgstr "" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" -"A test model will be printed. Please clear the build plate and place it back " -"on the heatbed before calibration." msgid "Printing Parameters" -msgstr "Printing Parameters" +msgstr "" msgid "Plate Type" -msgstr "Plate Type" +msgstr "" msgid "filament position" -msgstr "filament position" +msgstr "" msgid "External Spool" -msgstr "External Spool" +msgstr "" msgid "Filament For Calibration" -msgstr "Filament For Calibration" +msgstr "" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" -"Tips for calibration material: \n" -"- Materials that can share same hot bed temperature\n" -"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte, " -"etc.)" msgid "Pattern" -msgstr "Pattern" +msgstr "" msgid "Method" -msgstr "Method" +msgstr "" #, c-format, boost-format msgid "%s is not compatible with %s" -msgstr "%s is not compatible with %s" +msgstr "" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "TPU is not supported by Flow Dynamics Auto-Calibration." +msgstr "" msgid "Connecting to printer" -msgstr "Connecting to printer" +msgstr "" msgid "From k Value" -msgstr "From k Value" +msgstr "" msgid "To k Value" -msgstr "To k Value" +msgstr "" msgid "Step value" msgstr "" msgid "The nozzle diameter has been synchronized from the printer Settings" -msgstr "The nozzle diameter has been synchronized from the printer settings." +msgstr "" msgid "From Volumetric Speed" -msgstr "From Volumetric Speed" +msgstr "" msgid "To Volumetric Speed" -msgstr "To Volumetric Speed" +msgstr "" msgid "Flow Dynamics Calibration Result" -msgstr "Flow Dynamics Calibration Result" +msgstr "" msgid "New" -msgstr "New" +msgstr "" msgid "No History Result" -msgstr "No History Result" +msgstr "" msgid "Success to get history result" -msgstr "Success to get history result" +msgstr "" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "Refreshing the previous Flow Dynamics Calibration records" +msgstr "" msgid "Action" -msgstr "Action" +msgstr "" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "This machine type can only hold %d historical results per nozzle." +msgstr "" msgid "Edit Flow Dynamics Calibration" -msgstr "Edit Flow Dynamics Calibration" +msgstr "" msgid "New Flow Dynamic Calibration" -msgstr "New Flow Dynamic Calibration" +msgstr "" msgid "Ok" -msgstr "Ok" +msgstr "" msgid "The filament must be selected." -msgstr "The filament must be selected." +msgstr "" msgid "Network lookup" -msgstr "Network lookup" +msgstr "" msgid "Address" -msgstr "Address" +msgstr "" msgid "Hostname" -msgstr "Hostname" +msgstr "" msgid "Service name" -msgstr "Service name" +msgstr "" msgid "OctoPrint version" -msgstr "OctoPrint version" +msgstr "" msgid "Searching for devices" -msgstr "Searching for devices" +msgstr "" msgid "Finished" msgstr "完了" @@ -15258,13 +14904,13 @@ msgid "Extruder type" msgstr "押出機タイプ" msgid "PA Tower" -msgstr "PA Tower" +msgstr "" msgid "PA Line" -msgstr "PA Line" +msgstr "" msgid "PA Pattern" -msgstr "PA Pattern" +msgstr "" msgid "Start PA: " msgstr "開始PA:" @@ -15273,7 +14919,7 @@ msgid "End PA: " msgstr "終了PA: " msgid "PA step: " -msgstr "PA step:" +msgstr "" msgid "Accelerations: " msgstr "" @@ -15282,7 +14928,7 @@ msgid "Speeds: " msgstr "" msgid "Print numbers" -msgstr "Print numbers" +msgstr "" msgid "Comma-separated list of printing accelerations" msgstr "" @@ -15296,13 +14942,9 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001)" msgstr "" -"Please input valid values:\n" -"Start PA: >= 0.0\n" -"End PA: > Start PA\n" -"PA step: >= 0.001)" msgid "Temperature calibration" -msgstr "Temperature calibration" +msgstr "" msgid "PLA" msgstr "PLA" @@ -15326,16 +14968,16 @@ msgid "PET-CF" msgstr "PET-CF" msgid "Filament type" -msgstr "Filament type" +msgstr "" msgid "Start temp: " -msgstr "Start temp:" +msgstr "" msgid "End temp: " -msgstr "End temp:" +msgstr "" msgid "Temp step: " -msgstr "Temp step:" +msgstr "" msgid "" "Please input valid values:\n" @@ -15345,16 +14987,16 @@ msgid "" msgstr "" msgid "Max volumetric speed test" -msgstr "Max volumetric speed test" +msgstr "" msgid "Start volumetric speed: " -msgstr "Start volumetric speed:" +msgstr "" msgid "End volumetric speed: " -msgstr "End volumetric speed:" +msgstr "" msgid "step: " -msgstr "step:" +msgstr "" msgid "" "Please input valid values:\n" @@ -15364,13 +15006,13 @@ msgid "" msgstr "" msgid "VFA test" -msgstr "VFA test" +msgstr "" msgid "Start speed: " -msgstr "Start speed:" +msgstr "" msgid "End speed: " -msgstr "End speed:" +msgstr "" msgid "" "Please input valid values:\n" @@ -15380,22 +15022,22 @@ msgid "" msgstr "" msgid "Start retraction length: " -msgstr "Start retraction length:" +msgstr "" msgid "End retraction length: " -msgstr "End retraction length: " +msgstr "" msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "プリンターサーバーにGコードを送信" msgid "Upload to Printer Host with the following filename:" -msgstr "Upload to Printer Host with the following filename:" +msgstr "" msgid "Use forward slashes ( / ) as a directory separator if needed." -msgstr "Use forward slashes ( / ) as a directory separator if needed." +msgstr "" msgid "Upload to storage" msgstr "ストレージへのアップロード" @@ -15405,19 +15047,19 @@ msgstr "アップロード後、デバイスタブに切り替える。" #, c-format, boost-format msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" -msgstr "Filename to upload doesn't end with \"%s\". Do you want to continue?" +msgstr "" msgid "Upload" msgstr "アップロード" msgid "Print host upload queue" -msgstr "Print host upload queue" +msgstr "" msgid "ID" msgstr "ID" msgid "Progress" -msgstr "Progress" +msgstr "" msgid "Host" msgstr "ホスト" @@ -15430,13 +15072,13 @@ msgid "Filename" msgstr "ファイル名" msgid "Cancel selected" -msgstr "Cancel selected" +msgstr "" msgid "Show error message" -msgstr "Show error message" +msgstr "" -msgid "Enqueued" -msgstr "Queued" +msgid "Queued" +msgstr "" msgid "Uploading" msgstr "アップロード中" @@ -15465,82 +15107,82 @@ msgid "Smooth Build Plate (Side B)" msgstr "" msgid "Unable to perform boolean operation on selected parts" -msgstr "Unable to perform boolean operation on selected parts" +msgstr "" msgid "Mesh Boolean" -msgstr "Mesh Boolean" +msgstr "メッシュブール" msgid "Union" -msgstr "Union" +msgstr "" msgid "Difference" -msgstr "Difference" +msgstr "" msgid "Intersection" -msgstr "Intersection" +msgstr "" msgid "Source Volume" -msgstr "Source Volume" +msgstr "" msgid "Tool Volume" -msgstr "Tool Volume" +msgstr "" msgid "Subtract from" -msgstr "Subtract from" +msgstr "" msgid "Subtract with" -msgstr "Subtract with" +msgstr "" msgid "selected" -msgstr "selected" +msgstr "" msgid "Part 1" -msgstr "Part 1" +msgstr "" msgid "Part 2" -msgstr "Part 2" +msgstr "" msgid "Delete input" -msgstr "Delete input" +msgstr "" msgid "Network Test" -msgstr "Network Test" +msgstr "" msgid "Start Test Multi-Thread" -msgstr "Start Test Multi-Thread" +msgstr "" msgid "Start Test Single-Thread" -msgstr "Start Test Single-Thread" +msgstr "" msgid "Export Log" -msgstr "Export Log" +msgstr "" msgid "OrcaSlicer Version:" msgstr "" msgid "System Version:" -msgstr "System Version:" +msgstr "" msgid "DNS Server:" -msgstr "DNS Server:" - -msgid "Test OrcaSlicer(GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test OrcaSlicer (GitHub):" +msgstr "" + +msgid "Test bing.com" +msgstr "" msgid "Test bing.com:" -msgstr "Test bing.com:" +msgstr "" msgid "Log Info" -msgstr "Log Info" +msgstr "" msgid "Select filament preset" -msgstr "Select filament preset" +msgstr "" msgid "Create Filament" msgstr "フィラメントを作成" @@ -15549,107 +15191,98 @@ msgid "Create Based on Current Filament" msgstr "現在のフィラメントを元に作成" msgid "Copy Current Filament Preset " -msgstr "Copy Current Filament Preset " +msgstr "" msgid "Basic Information" -msgstr "Basic Information" +msgstr "" msgid "Add Filament Preset under this filament" -msgstr "Add Filament Preset under this filament" +msgstr "" msgid "We could create the filament presets for your following printer:" -msgstr "We could create the filament presets for your following printer:" +msgstr "" msgid "Select Vendor" -msgstr "Select Vendor" +msgstr "" msgid "Input Custom Vendor" -msgstr "Input Custom Vendor" +msgstr "" msgid "Can't find vendor I want" -msgstr "Can't find vendor I want" +msgstr "" msgid "Select Type" -msgstr "Select Type" +msgstr "" msgid "Select Filament Preset" -msgstr "Select Filament Preset" +msgstr "" msgid "Serial" -msgstr "Serial" +msgstr "" msgid "e.g. Basic, Matte, Silk, Marble" -msgstr "e.g. Basic, Matte, Silk, Marble" +msgstr "" msgid "Filament Preset" -msgstr "Filament Preset" +msgstr "" msgid "Create" -msgstr "Create" +msgstr "" msgid "Vendor is not selected, please reselect vendor." -msgstr "Vendor is not selected; please reselect vendor." +msgstr "" msgid "Custom vendor is not input, please input custom vendor." -msgstr "Custom vendor missing; please input custom vendor." +msgstr "" msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." msgid "Filament type is not selected, please reselect type." -msgstr "Filament type is not selected, please reselect type." +msgstr "" msgid "Filament serial is not entered, please enter serial." -msgstr "Filament serial missing; please input serial." +msgstr "" msgid "" "There may be escape characters in the vendor or serial input of filament. " "Please delete and re-enter." msgstr "" -"There may be disallowed characters in the vendor or serial input of the " -"filament. Please delete and re-enter." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "All inputs in the custom vendor or serial are spaces. Please re-enter." +msgstr "" -msgid "The vendor can not be a number. Please re-enter." -msgstr "The vendor can not be a number; please re-enter." +msgid "The vendor cannot be a number. Please re-enter." +msgstr "" msgid "" "You have not selected a printer or preset yet. Please select at least one." msgstr "" -"You have not selected a printer or preset yet. Please select at least one." #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"The Filament name %s you created already exists. \n" -"If you continue, the preset created will be displayed with its full name. Do " -"you want to continue?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "Some existing presets have failed to be created, as follows:\n" +msgstr "" msgid "" "\n" "Do you want to rewrite it?" msgstr "" -"\n" -"Do you want to rewrite it?" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" -msgstr "Create Printer/Nozzle" +msgstr "" msgid "Create Printer" msgstr "プリンターを作成" @@ -15658,103 +15291,99 @@ msgid "Create Nozzle for Existing Printer" msgstr "既存のプリンターに別サイズのノズル径を作成" msgid "Create from Template" -msgstr "Create from Template" +msgstr "" msgid "Create Based on Current Printer" -msgstr "Create Based on Current Printer" +msgstr "" msgid "Import Preset" -msgstr "Import Preset" +msgstr "" msgid "Create Type" -msgstr "Create Type" +msgstr "" -msgid "The model is not found, please reselect vendor." -msgstr "The model was not found; please reselect vendor." +msgid "The model was not found, please reselect vendor." +msgstr "" msgid "Select Model" -msgstr "Select Model" +msgstr "" msgid "Select Printer" -msgstr "Select Printer" +msgstr "" msgid "Input Custom Model" -msgstr "Input Custom Model" +msgstr "" msgid "Can't find my printer model" -msgstr "Can't find my printer model" +msgstr "" msgid "Rectangle" -msgstr "Rectangle" +msgstr "" msgid "Printable Space" -msgstr "Printable Space" +msgstr "" msgid "Hot Bed STL" -msgstr "Hot Bed STL" +msgstr "" msgid "Load stl" -msgstr "Load stl" +msgstr "" msgid "Hot Bed SVG" -msgstr "Hot Bed SVG" +msgstr "" msgid "Load svg" -msgstr "Load svg" +msgstr "" msgid "Max Print Height" -msgstr "Max Print Height" +msgstr "" #, c-format, boost-format msgid "The file exceeds %d MB, please import again." -msgstr "The file exceeds %d MB, please import again." +msgstr "" msgid "Exception in obtaining file size, please import again." -msgstr "Exception in obtaining file size, please import again." +msgstr "" -msgid "Preset path is not find, please reselect vendor." -msgstr "Preset path was not found; please reselect vendor." +msgid "Preset path was not found, please reselect vendor." +msgstr "" msgid "The printer model was not found, please reselect." -msgstr "The printer model was not found, please reselect." +msgstr "" -msgid "The nozzle diameter is not found, please reselect." -msgstr "The nozzle diameter was not found; please reselect." +msgid "The nozzle diameter was not found, please reselect." +msgstr "" -msgid "The printer preset is not found, please reselect." -msgstr "The printer preset was not found; please reselect." +msgid "The printer preset was not found, please reselect." +msgstr "" msgid "Printer Preset" -msgstr "Printer Preset" +msgstr "" msgid "Filament Preset Template" -msgstr "Filament Preset Template" +msgstr "" msgid "Deselect All" -msgstr "Deselect All" +msgstr "" msgid "Process Preset Template" -msgstr "Process Preset Template" +msgstr "" msgid "Back Page 1" -msgstr "Back Page 1" +msgstr "" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" msgstr "" -"You have not yet chosen which printer preset to create based on. Please " -"choose the vendor and model of the printer" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" -"You have entered a disallowed character in the printable area section on the " -"first page. Please use only numbers." msgid "The custom printer or model is not entered, please enter it." -msgstr "The custom printer or model missing; please input." +msgstr "" msgid "" "The printer preset you created already has a preset with the same name. Do " @@ -15765,74 +15394,60 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" -"The printer preset you created already has a preset with the same name. Do " -"you want to overwrite it?\n" -"\tYes: Overwrite the printer preset with the same name, and filament and " -"process presets with the same preset name will be recreated \n" -"and filament and process presets without the same preset name will be " -"reserved.\n" -"\tCancel: Do not create a preset; return to the creation interface." msgid "You need to select at least one filament preset." -msgstr "You need to select at least one filament preset." +msgstr "" msgid "You need to select at least one process preset." -msgstr "You need to select at least one process preset." +msgstr "" msgid "Create filament presets failed. As follows:\n" -msgstr "Create filament presets failed. As follows:\n" +msgstr "" msgid "Create process presets failed. As follows:\n" -msgstr "Create process presets failed. As follows:\n" +msgstr "" -msgid "Vendor is not find, please reselect." -msgstr "Vendor was not found; please reselect." +msgid "Vendor was not found, please reselect." +msgstr "" msgid "Current vendor has no models, please reselect." -msgstr "Current vendor has no models, please reselect." +msgstr "" msgid "" "You have not selected the vendor and model or entered the custom vendor and " "model." msgstr "" -"You have not selected the vendor and model or input the custom vendor and " -"model." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" -"There may be escape characters in the custom printer vendor or model. Please " -"delete and re-enter." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" -"All inputs in the custom printer vendor or model are spaces. Please re-enter." msgid "Please check bed printable shape and origin input." -msgstr "Please check bed printable shape and origin input." +msgstr "" msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "" -"You have not yet selected the printer to replace the nozzle for; please " -"choose a printer." -msgid "Create Printer Successful" -msgstr "Create Printer Successful" +msgid "Printer Created Successfully" +msgstr "" -msgid "Create Filament Successful" -msgstr "Filament Created Successfully" +msgid "Filament Created Successfully" +msgstr "" msgid "Printer Created" -msgstr "Printer Created" +msgstr "" msgid "Please go to printer settings to edit your presets" -msgstr "Please go to printer settings to edit your presets" +msgstr "" msgid "Filament Created" -msgstr "Filament Created" +msgstr "" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -15840,22 +15455,18 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" -"Please go to filament settings to edit your presets if you need to.\n" -"Please note that nozzle temperature, hot bed temperature, and maximum " -"volumetric speed each have a significant impact on printing quality. Please " -"set them carefully." msgid "" "\n" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" msgid "Printer Setting" -msgstr "Printer Setting" +msgstr "" msgid "Printer config bundle(.orca_printer)" msgstr "" @@ -15864,31 +15475,31 @@ msgid "Filament bundle(.orca_filament)" msgstr "" msgid "Printer presets(.zip)" -msgstr "Printer presets(.zip)" +msgstr "" msgid "Filament presets(.zip)" -msgstr "Filament presets(.zip)" +msgstr "" msgid "Process presets(.zip)" -msgstr "Process presets(.zip)" +msgstr "" msgid "initialize fail" -msgstr "initialize fail" +msgstr "" msgid "add file fail" -msgstr "add file fail" +msgstr "" msgid "add bundle structure file fail" -msgstr "add bundle structure file fail" +msgstr "" msgid "finalize fail" -msgstr "finalize fail" +msgstr "" msgid "open zip written fail" -msgstr "open zip written fail" +msgstr "" msgid "Export successful" -msgstr "Export successful" +msgstr "" #, c-format, boost-format msgid "" @@ -15897,174 +15508,149 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" -"The '%s' folder already exists in the current directory. Do you want to " -"clear it and rebuild it?\n" -"If not, a time suffix will be added, and you can modify the name after " -"creation." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"User's filament preset set. \n" -"Can be shared with others." msgid "" "Only display printer names with changes to printer, filament, and process " "presets." msgstr "" -"Only display printers with changes to printer, filament, and process presets " -"are displayed." msgid "Only display the filament names with changes to filament presets." -msgstr "Only display the filament names with changes to filament presets." +msgstr "" msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"Only printer names with user printer presets will be displayed, and each " -"preset you choose will be exported as a zip." msgid "" "Only the filament names with user filament presets will be displayed, \n" "and all user filament presets in each filament name you select will be " "exported as a zip." msgstr "" -"Only the filament names with user filament presets will be displayed, \n" -"and all user filament presets in each filament name you select will be " -"exported as a zip." msgid "" "Only printer names with changed process presets will be displayed, \n" "and all user process presets in each printer name you select will be " "exported as a zip." msgstr "" -"Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be " -"exported as a zip." msgid "Please select at least one printer or filament." -msgstr "Please select at least one printer or filament." +msgstr "" msgid "Please select a type you want to export" -msgstr "Please select a preset type you want to export" +msgstr "" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Failed to create temporary folder, please try Export Configs again." +msgstr "" msgid "Edit Filament" msgstr "フィラメントを編集" msgid "Filament presets under this filament" -msgstr "Filament presets under this filament" +msgstr "" msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" -"Note: If the only preset under this filament is deleted, the filament will " -"be deleted after exiting the dialog." -msgid "Presets inherited by other presets can not be deleted" -msgstr "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" +msgstr "" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." msgstr[0] "" msgid "Delete Preset" -msgstr "Delete Preset" +msgstr "" msgid "Are you sure to delete the selected preset?" -msgstr "Are you sure to delete the selected preset?" +msgstr "" msgid "Delete preset" -msgstr "Delete preset" +msgstr "" msgid "+ Add Preset" -msgstr "+ Add Preset" +msgstr "" msgid "Delete Filament" msgstr "フィラメントを削除" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" -"All the filament presets belong to this filament would be deleted. \n" -"If you are using this filament on your printer, please reset the filament " -"information for that slot." msgid "Delete filament" msgstr "フィラメントを削除" msgid "Add Preset" -msgstr "Add Preset" +msgstr "" msgid "Add preset for new printer" -msgstr "Add preset for new printer" +msgstr "" msgid "Copy preset from filament" -msgstr "Copy preset from filament" +msgstr "" msgid "The filament choice not find filament preset, please reselect it" -msgstr "The filament choice not find filament preset, please reselect it" +msgstr "" msgid "[Delete Required]" -msgstr "[Delete Required]" +msgstr "" msgid "Edit Preset" msgstr "プリセットを編集" msgid "For more information, please check out Wiki" -msgstr "For more information, please check out our Wiki" +msgstr "" msgid "Collapse" -msgstr "Collapse" +msgstr "" msgid "Daily Tips" msgstr "今日のヒント" #, c-format, boost-format msgid "nozzle memorized: %.1f %s" -msgstr "nozzle memorized: %.1f %s" +msgstr "" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" -"Your nozzle diameter in preset is not consistent with the saved nozzle " -"diameter. Have you changed your nozzle?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" -msgstr "*Printing %s material with %s may cause nozzle damage" +msgstr "" msgid "Need select printer" msgstr "プリンターを選ぶ必要があります" msgid "The start, end or step is not valid value." -msgstr "The start, end or step is not valid value." +msgstr "" msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" msgstr "" -"Unable to calibrate: maybe because the set calibration value range is too " -"large, or the step is too small" msgid "Physical Printer" -msgstr "Physical Printer" +msgstr "" msgid "Print Host upload" -msgstr "Print Host upload" +msgstr "" msgid "Test" msgstr "テスト" @@ -16079,7 +15665,7 @@ msgid "Are you sure to log out?" msgstr "本当にログアウトしますか?" msgid "Refresh Printers" -msgstr "Refresh Printers" +msgstr "" msgid "View print host webui in Device tab" msgstr "" @@ -16091,106 +15677,98 @@ msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" -"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" -"signed certificate." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" +msgstr "" msgid "Open CA certificate file" -msgstr "Open CA certificate file" +msgstr "" #, c-format, boost-format msgid "" "On this system, %s uses HTTPS certificates from the system Certificate Store " "or Keychain." msgstr "" -"On this system, %s uses HTTPS certificates from the system Certificate Store " -"or Keychain." msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" -"To use a custom CA file, please import your CA file into Certificate Store / " -"Keychain." msgid "Login/Test" msgstr "" msgid "Connection to printers connected via the print host failed." -msgstr "Connection to printers connected via the print host failed." +msgstr "" #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "Mismatched type of print host: %s" +msgstr "" -msgid "Connection to AstroBox works correctly." -msgstr "Connection to AstroBox is working correctly." +msgid "Connection to AstroBox is working correctly." +msgstr "" msgid "Could not connect to AstroBox" -msgstr "Could not connect to AstroBox" +msgstr "" -msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "Note: AstroBox version 1.1.0 or higher is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Duet works correctly." -msgstr "Connection to Duet is working correctly." +msgid "Connection to Duet is working correctly." +msgstr "" msgid "Could not connect to Duet" -msgstr "Could not connect to Duet" +msgstr "" msgid "Unknown error occurred" -msgstr "Unknown error occurred" +msgstr "" msgid "Wrong password" -msgstr "Wrong password" +msgstr "" msgid "Could not get resources to create a new connection" -msgstr "Could not get resources to create a new connection" +msgstr "" msgid "Upload not enabled on FlashAir card." -msgstr "Upload not enabled on FlashAir card." +msgstr "" -msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "Connection to FlashAir is working correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." +msgstr "" msgid "Could not connect to FlashAir" -msgstr "Could not connect to FlashAir" +msgstr "" msgid "" "Note: FlashAir with firmware 2.00.02 or newer and activated upload function " "is required." msgstr "" -"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " -"is required." -msgid "Connection to MKS works correctly." -msgstr "Connection to MKS is working correctly." +msgid "Connection to MKS is working correctly." +msgstr "" msgid "Could not connect to MKS" -msgstr "Could not connect to MKS" +msgstr "" -msgid "Connection to OctoPrint works correctly." -msgstr "Connection to OctoPrint is working correctly." +msgid "Connection to OctoPrint is working correctly." +msgstr "" msgid "Could not connect to OctoPrint" -msgstr "Could not connect to OctoPrint" +msgstr "" -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Note: OctoPrint version 1.1.0 or higher is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "Connection to Prusa SL1 / SL1S is working correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." +msgstr "" msgid "Could not connect to Prusa SLA" -msgstr "Could not connect to Prusa SLA" +msgstr "" -msgid "Connection to PrusaLink works correctly." -msgstr "Connection to PrusaLink is working correctly." +msgid "Connection to PrusaLink is working correctly." +msgstr "" msgid "Could not connect to PrusaLink" -msgstr "Could not connect to PrusaLink" +msgstr "" msgid "Storages found" msgstr "ストレージが見つかりました" @@ -16211,28 +15789,26 @@ msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" "アップロードに失敗しました。%1%に適切なストレージが見つかりませんでした。" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Prusa コネクトに接続しました。" msgid "Could not connect to Prusa Connect" msgstr "Prusaコネクトに接続できませんでした" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Repetierへの接続は正常に動作しています" msgid "Could not connect to Repetier" msgstr "Repetierに接続できませんでした。" -msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "Note: Repetier version 0.90.0 or higher is required." +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "" #, boost-format msgid "" "HTTP status: %1%\n" "Message body: \"%2%\"" msgstr "" -"HTTP status: %1%\n" -"Message body: \"%2%\"" #, boost-format msgid "" @@ -16240,9 +15816,6 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" -"Parsing of host response failed.\n" -"Message body: \"%1%\"\n" -"Error: \"%2%\"" #, boost-format msgid "" @@ -16250,39 +15823,27 @@ msgid "" "Message body: \"%1%\"\n" "Error: \"%2%\"" msgstr "" -"Enumeration of host printers failed.\n" -"Message body: \"%1%\"\n" -"Error: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" -"It has a small layer height, and results in almost negligible layer lines " -"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. This results in " "much higher print quality but a much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height. This results in almost negligible layer lines and " -"slightly longer print time." +"slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "0.2 mmノズルのデフォルトプロファイルと比較すると、レイヤー高さが大きくなって" "います。そのため、レイヤーラインがわずかに見えますが、印刷時間は短縮されま" @@ -16290,189 +15851,128 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height. This results in almost invisible layer lines and higher print " -"quality but longer print time." +"quality but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost invisible layer lines and much higher print " "quality but much longer print time." - -msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." msgstr "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height. This results in minimal layer lines and higher print quality but " -"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" + +msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in minimal layer lines and much higher print quality " "but much longer print time." +msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." -msgstr "" -"It has a normal layer height, and results in average layer lines and print " +"It has a normal layer height. This results in average layer lines and print " "quality. It is suitable for most printing cases." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in less apparent layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost negligible layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and longer print time." +msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height. This results in much more apparent layer lines and much lower print " "quality, but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height. This results in less apparent layer lines and slightly higher print " +"height. This results in less apparent layer lines and slight higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" -"It has a very big layer height, and results in very apparent layer lines, " -"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "0.8mmノズルのデフォルト・プロファイルと比較すると、レイヤーの高さが大きくなっ" "ています。その結果、レイヤーラインが非常に目立ち、印刷品質が大幅に低下します" @@ -16480,31 +15980,21 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height. This results in extremely apparent layer lines and much lower " "print quality but much shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " "smaller layer height. This results in slightly less but still apparent layer " -"lines and slightly higher print quality, but longer print time in some cases." +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height. This results in less but still apparent layer lines and slightly " "higher print quality, but longer print time in some cases." +msgstr "" msgid "Connected to Obico successfully!" msgstr "" @@ -16527,7 +16017,7 @@ msgstr "" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -16542,7 +16032,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -msgid "User cancelled." +msgid "User canceled." msgstr "" msgid "Head diameter" @@ -16573,8 +16063,8 @@ msgid "Adjust section view" msgstr "断面を調整" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "警告: ブリムタイプが「ペイント」に設定されていないため、効果を持ちません。" @@ -16654,7 +16144,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" #: resources/data/hints.ini: [hint:Reverse on odd] @@ -16679,9 +16169,6 @@ msgid "" "Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " "problems on the Windows system?" msgstr "" -"Fix Model\n" -"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " -"problems on the Windows system?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" @@ -16695,7 +16182,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "自動レイアウト\n" "自動レイアウトでプレートを最大限利用できます。" @@ -16704,7 +16191,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "自動向き調整\n" "自動向き調整で最適な向きをワンクリックで実現できます。" @@ -16851,7 +16338,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "接着力を高めるには?\n" @@ -16861,7 +16348,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "オブジェクトのパラメータを設定\n" "複数のオブジェクトを一回で設定できます" @@ -16877,7 +16364,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "サポート/オブジェクト/インフィルにフラッシュ\n" @@ -16893,13 +16380,14 @@ msgstr "" "強度の向上\n" "壁面層数やインフィルの充填密度を増やして造形強度を向上できます。" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "プリンターのドアを開けたまま印刷する必要があるのはどんなときですか?\n" "エンクロージャーの温度が高い状態で低温のフィラメントをプリントする場合、プリ" @@ -16911,7 +16399,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "反りを避ける\n" "ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げること" @@ -16932,17 +16420,6 @@ msgstr "" #~ "「ツリーストラング」と「ツリーハイブリッド」の場合、下記の設定をお勧めしま" #~ "す:接触層数を2、トップ面とのZ間隔を0.1mm。" -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "When using support material for the support interface, we recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" - #~ msgid "Branch Diameter with double walls" #~ msgstr "二重ウォール枝径" @@ -16955,9 +16432,6 @@ msgstr "" #~ "ウォールでプリントされます。 二重ウォールにしないときは、この値をゼロに設" #~ "定します。" -#~ msgid "This setting specify the count of walls around support" -#~ msgstr "This setting specify the count of walls around support" - #, c-format, boost-format #~ msgid "Support: generate toolpath at layer %d" #~ msgstr "サポート: 積層%dのツールパスを生成" @@ -17049,25 +16523,13 @@ msgstr "" #~ msgid "Cooling overhang threshold" #~ msgstr "オーバーハングの冷却閾値" -#, c-format -#~ msgid "" -#~ "Force cooling fan to be specific speed when overhang degree of printed " -#~ "part exceeds this value. Expressed as percentage which indicates how much " -#~ "width of the line without support from lower layer. 0% means forcing " -#~ "cooling for all outer wall no matter how much overhang degree" -#~ msgstr "" -#~ "Force cooling fan to be a specific speed when overhang degree of printed " -#~ "part exceeds this value. This is expressed as a percentage which " -#~ "indicates how much width of the line without support from lower layer. " -#~ "0% means forcing cooling for all outer wall no matter the overhang degree." - #~ msgid "Thick bridges" #~ msgstr "厚いブリッジ" #~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" +#~ "normal(auto) and tree(auto) are used to generate support automatically. " +#~ "If normal(manual) or tree(manual) is selected, only support enforcers are " +#~ "generated." #~ msgstr "通常 (自動) と ツリー (自動) では自動でサポートを作成します。" #~ msgid "Unselect" @@ -17077,46 +16539,29 @@ msgstr "" #~ msgid "Scale" #~ msgstr "スケール" -#~ msgid "Cool plate" -#~ msgstr "常温プレート" - -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "リトラクト時にZ方向調整" -#~ msgid "" -#~ "While printing by Object, the extruder may collide skirt.\n" -#~ "Thus, reset the skirt layer to 1 to avoid that." -#~ msgstr "" -#~ "While printing by object, the extruder may collide with a skirt.\n" -#~ "Thus, reset the skirt layer to 1 to avoid collisions." - #~ msgid "Limited" #~ msgstr "限定" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "この値を少し (例えば 0.9) 小さくし、ブリッジ用に押出し量を減らし、たるみを" #~ "防ぎます。" -#~ msgid "" -#~ "This factor affects the amount of material for top solid infill. You can " -#~ "decrease it slightly to have smooth surface finish" -#~ msgstr "" -#~ "This factor affects the amount of material for top solid infill. You can " -#~ "decrease it slightly to have a smooth surface finish." - #~ msgid "Speed of bridge and completely overhang wall" #~ msgstr "ブリッジを造形する時に速度です。" -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "フィラメントを入れ替える時に、フィラメントをロードする時間です、統計目的に" #~ "使用されています。" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "フィラメントを入れ替える時に、フィラメントをアンロードする時間です、統計目" #~ "的に使用されています。" @@ -17139,40 +16584,6 @@ msgstr "" #~ "Multi Material Unit 2.0)がフィラメントをアンロードする時間。 この時間は、" #~ "Gコード時間予測プログラムによって合計プリント予測時間に追加されます。" -#~ msgid "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials,the actual chamber " -#~ "temperature should not be high to avoid cloggings, so 0 which stands for " -#~ "turning off is highly recommended" -#~ msgstr "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials, the actual chamber " -#~ "temperature should not be high to avoid clogs, so 0 (turned off) is " -#~ "highly recommended." - -#~ msgid "" -#~ "Different nozzle diameters and different filament diameters is not " -#~ "allowed when prime tower is enabled." -#~ msgstr "" -#~ "Different nozzle diameters and different filament diameters is not " -#~ "allowed when prime tower is enabled." - -#~ msgid "" -#~ "Ooze prevention is currently not supported with the prime tower enabled." -#~ msgstr "" -#~ "Ooze prevention is currently not supported with the prime tower enabled." - -#~ msgid "" -#~ "Interlocking depth of a segmented region. Zero disables this feature." -#~ msgstr "" -#~ "Interlocking depth of a segmented region. Zero disables this feature." - #~ msgid "Wipe tower extruder" #~ msgstr "ワイプタワーエクストルーダー" @@ -17182,71 +16593,6 @@ msgstr "" #~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" #~ msgstr "有効な値を入力してください (K in 0~0.3, N in 0.6~2.0)" -#~ msgid "Printer local connection failed, please try again." -#~ msgstr "Printer local connection failed; please try again." - -#~ msgid "" -#~ "Please find the details of Flow Dynamics Calibration from our wiki.\n" -#~ "\n" -#~ "Usually the calibration is unnecessary. When you start a single color/" -#~ "material print, with the \"flow dynamics calibration\" option checked in " -#~ "the print start menu, the printer will follow the old way, calibrate the " -#~ "filament before the print; When you start a multi color/material print, " -#~ "the printer will use the default compensation parameter for the filament " -#~ "during every filament switch which will have a good result in most " -#~ "cases.\n" -#~ "\n" -#~ "Please note there are a few cases that will make the calibration result " -#~ "not reliable: using a texture plate to do the calibration; the build " -#~ "plate does not have good adhesion (please wash the build plate or apply " -#~ "gluestick!) ...You can find more from our wiki.\n" -#~ "\n" -#~ "The calibration results have about 10 percent jitter in our test, which " -#~ "may cause the result not exactly the same in each calibration. We are " -#~ "still investigating the root cause to do improvements with new updates." -#~ msgstr "" -#~ "Please find the details of Flow Dynamics Calibration from our wiki.\n" -#~ "\n" -#~ "Usually the calibration is unnecessary. When you start a single color/" -#~ "material print, with the \"flow dynamics calibration\" option checked in " -#~ "the print start menu, the printer will calibrate the filament before the " -#~ "print; When you start a multi color/material print, the printer will use " -#~ "the default compensation parameter for the filament during every filament " -#~ "switch which will have a good result in most cases.\n" -#~ "\n" -#~ "Please note there are a few cases that may make the calibration result " -#~ "unreliable: using a texture plate to do the calibration; using a build " -#~ "plate with poor adhesion. (please wash the build plate or apply " -#~ "gluestick!) You can find more on our wiki.\n" -#~ "\n" -#~ "The calibration results have about 10 percent variation in our test, " -#~ "which may cause the results to not be identical for each calibration. We " -#~ "are still investigating the root cause to further improve this " -#~ "calibration in future updates." - -#~ msgid "" -#~ "Only one of the results with the same name will be saved. Are you sure " -#~ "you want to overrides the other results?" -#~ msgstr "" -#~ "Only one of the results with the same name will be saved. Are you sure " -#~ "you want to override the other results?" - -#, c-format, boost-format -#~ msgid "" -#~ "There is already a historical calibration result with the same name: %s. " -#~ "Only one of the results with the same name is saved. Are you sure you " -#~ "want to overrides the historical result?" -#~ msgstr "" -#~ "There is already a historical calibration result with the same name: %s. " -#~ "Only one set of results with the same name is saved. Are you sure you " -#~ "want to override the previous results?" - -#~ msgid "Please find the cornor with perfect degree of extrusion" -#~ msgstr "Please find the corner with the perfect degree of extrusion" - -#~ msgid "V" -#~ msgstr "V" - #~ msgid "Export &Configs" #~ msgstr "構成データ" @@ -17268,28 +16614,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "アンロード" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "AMS スロットを選択し、[ロード] または [アンロード] をタップすると、フィラ" -#~ "メントが自動的にロードまたはアンロードされます。" - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "メインボード" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - #~ msgid "active" #~ msgstr "アクティブ" @@ -17326,7 +16653,7 @@ msgstr "" #~ "す。" #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "注意:造形時に入れる場合、造形が完成したから読込みます。" @@ -17341,7 +16668,7 @@ msgstr "" #~ msgstr "初期化失敗 (カメラ無し)" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "プリンターがダウンロード中、完了までお待ちください" #~ msgid "Initialize failed (Not accessible in LAN-only mode)!" @@ -17358,23 +16685,13 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "ロード失敗 [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "No files [%d]" - #, c-format, boost-format #~ msgid "Load failed [%d]" #~ msgstr "ロード失敗 [%d]" -#~ msgid "Failed to fetching model information from printer." -#~ msgstr "Failed to fetch model information from printer." - -#~ msgid "Failed to parse model informations." -#~ msgstr "Failed to parse model information" - #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -17382,7 +16699,7 @@ msgstr "" #~ "それらの変更を選択したプリセットに引き継ぎますか?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "プリセットに変更がありあす。これらの変更を流用しますか?" @@ -17395,7 +16712,7 @@ msgstr "" #~ msgid "Configuration package updated to " #~ msgstr "構成パッケージがアップデートされました" -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "構成を読込めませんでした" #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -17412,31 +16729,6 @@ msgstr "" #~ msgid "Auto Segment" #~ msgstr "自動分割" -#~ msgid "Depth ratio" -#~ msgstr "Depth ratio" - -#~ msgid "Prizm" -#~ msgstr "Prizm" - -#~ msgid "connector is out of cut contour" -#~ msgstr "connector is out of cut contour" - -#~ msgid "connectors are out of cut contour" -#~ msgstr "connectors are out of cut contour" - -#~ msgid "connector is out of object" -#~ msgstr "connector is out of object" - -#~ msgid "connectors is out of object" -#~ msgstr "Connectors must be on object surface." - -#~ msgid "" -#~ "Invalid state. \n" -#~ "No one part is selected for keep after cut" -#~ msgstr "" -#~ "Invalid state. \n" -#~ "No one part is selected to keep after cut" - #~ msgid "Edit Text" #~ msgstr "テキストを編集" @@ -17446,12 +16738,6 @@ msgstr "" #~ msgid "Exception" #~ msgstr "異常" -#~ msgid "Choose SLA archive:" -#~ msgstr "Choose SLA archive:" - -#~ msgid "Import file" -#~ msgstr "ファイルインポート" - #~ msgid "Import model and profile" #~ msgstr "モデルとプロファイルを取り込む" @@ -17500,7 +16786,7 @@ msgstr "" #~ "はい - 直線パターンに切り替えます\n" #~ "いいえ - 充填密度をリセットします" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "" #~ "フィラメントをロードする前に、ノズル温度を170℃以上に加熱してください" @@ -17519,18 +16805,12 @@ msgstr "" #~ msgid " doesn't work at 100%% density " #~ msgstr "100%% の密度では使用できません" -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "ツール 底面選択" #~ msgid "Export as STL" #~ msgstr "STL形式でエクスポート" -#~ msgid "Check cloud service status" -#~ msgstr "Check cloud service status" - #~ msgid "Please input a valid value (K in 0~0.5)" #~ msgstr "有効な値を入力してください (0 ~ 0.5)" @@ -17550,10 +16830,6 @@ msgstr "" #~ msgid "Add/Remove printers" #~ msgstr "プリンターを追加/削除" -#, c-format, boost-format -#~ msgid "%s is not supported by AMS." -#~ msgstr "%s is not supported by the AMS." - #~ msgid "Don't remind me of this version again" #~ msgstr "今後このバージョンの通知をしません" @@ -17597,15 +16873,9 @@ msgstr "" #~ "モデル修復\n" #~ "破損したモデルでも修復してスライスできます。" -#~ msgid "Embedded" -#~ msgstr "Embedded" - #~ msgid "Online Models" #~ msgstr "オンラインモデル" -#~ msgid "Show online staff-picked models on the home page" -#~ msgstr "Show online staff-picked models on the home page" - #~ msgid "The minimum printing speed when slow down for cooling" #~ msgstr "冷却のために速度を落とした時の最低造形速度。" @@ -17647,14 +16917,11 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "押出のキャリブレーション" -#~ msgid "Push new filament into the extruder" -#~ msgstr "新しいフィラメントを押出機に挿入してください" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "ベッド温度が1層目温度より %d ℃以上低いです。造形中プレートより離脱する可能" #~ "性があります" @@ -17676,15 +16943,6 @@ msgstr "" #~ msgid "Resonance frequency identification" #~ msgstr "共振特性測定" -#~ msgid "Immediately score" -#~ msgstr "Immediately score" - -#~ msgid "Please give a score for your favorite Bambu Market model." -#~ msgstr "Please give a score for your favorite Bambu Market model." - -#~ msgid "Score" -#~ msgstr "Score" - #~ msgid "Bambu High Temperature Plate" #~ msgstr "Bambu 高温プレート" @@ -17698,8 +16956,8 @@ msgstr "" #~ msgstr "高温プレート" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "高温プレートが装着時のベッド温度です。値が0の場合、フィラメントが高温プ" #~ "レートに使用できない意味です。" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index b65062afc2..db1ed58756 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -8,18 +8,17 @@ msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-16 22:32+0800\n" -"PO-Revision-Date: 2025-03-04 04:56+0900\n" -"Last-Translator: ElectricalBoy " -"<15651807+ElectricalBoy@users.noreply.github.com>\n" -"Language-Team: crwusiz@gmail.com\n" +"PO-Revision-Date: 2025-06-02 17:12+0900\n" +"Last-Translator: crwusiz \n" +"Language-Team: \n" "Language: ko_KR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.6\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "서포트 칠하기" msgid "Alt + Mouse wheel" @@ -115,7 +114,7 @@ msgstr "바닥면 선택" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "필라멘트 수가 페인팅 도구가 지원하는 최대 수를 초과합니다. 첫 번째 %1% 필라멘" @@ -216,7 +215,7 @@ msgid "in" msgstr "인치" msgid "mm" -msgstr "밀리미터" +msgstr "mm" msgid "Position" msgstr "위치" @@ -548,7 +547,7 @@ msgid "Detail level" msgstr "세부 레벨" msgid "Decimate ratio" -msgstr "데시메이트 비율" +msgstr "감소 비율" #, boost-format msgid "" @@ -596,10 +595,10 @@ msgstr "와이어프레임 보기" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "미리 보기 진행 시 적용할 수 없습니다." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "작업이 이미 취소중입니다. 몇 초만 기다려 주십시오." msgid "Face recognition" @@ -733,8 +732,7 @@ msgid "Embossed text cannot contain only white spaces." msgstr "양각 텍스트에는 공백만 포함될 수 없습니다." msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "" -"텍스트에 글꼴로 알 수 없는 문자 모양('?'으로 표시)이 포함되어 있습니다." +msgstr "텍스트에 글꼴로 알 수 없는 문자 모양('?'으로 표시)이 포함되어 있습니다." msgid "Text input doesn't show font skew." msgstr "텍스트 입력에는 글꼴 기울어짐이 표시되지 않습니다." @@ -759,7 +757,7 @@ msgstr "글꼴 변경 사항을 되돌립니다." #, boost-format msgid "Font \"%1%\" can't be selected." -msgstr "글꼴 \"%1%\"을(를) 선택할 수 없습니다." +msgstr "글꼴 \"%1%\"를 선택할 수 없습니다." msgid "Operation" msgstr "작업" @@ -790,7 +788,7 @@ msgid "Change Text Type" msgstr "텍스트 유형 변경" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "양각 텍스트의 스타일 이름 바꾸기(%1%)" msgid "Name can't be empty." @@ -872,7 +870,7 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" -"스타일을 \"%1%\"(으)로 변경하면 현재 스타일 수정 사항이 삭제됩니다.\n" +"스타일을 \"%1%\"으로 변경하면 현재 스타일 수정 사항이 삭제됩니다.\n" "\n" "그래도 계속하시겠습니까?" @@ -881,7 +879,7 @@ msgstr "유효한 스타일이 아닙니다." #, boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." -msgstr "스타일 \"%1%\"은(는) 사용할 수 없으며 목록에서 제거됩니다." +msgstr "스타일 \"%1%\"는 사용할 수 없으며 목록에서 제거됩니다." msgid "Unset italic" msgstr "이탤릭체 설정해제" @@ -1004,12 +1002,12 @@ msgstr "텍스트 방향을 카메라 쪽으로 향하게 합니다." #, boost-format msgid "Font \"%1%\" can't be used. Please select another." -msgstr "" +msgstr "글꼴 “%1%”를 사용할 수 없습니다. 다른 글꼴을 선택하세요." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar one " +"(\"%2%\"). You have to specify font for enable edit text." msgstr "" "정확히 동일한 글꼴(\"%1%\")을 로드할 수 없습니다. 응용 프로그램이 유사한 항목" "(\"%2%\")을 선택했습니다. 텍스트 편집을 활성화하려면 글꼴을 지정해야 합니다." @@ -1137,7 +1135,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "모양이 보이지 않음(%1%)으로 표시되었습니다." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "도형 채우기(%1%)에는 지원되지 않는 %2%가 포함되어 있습니다." @@ -1203,7 +1201,7 @@ msgstr "양각 방향의 크기입니다." #. TRN: The placeholder contains a number. #, boost-format msgid "Scale also changes amount of curve samples (%1%)" -msgstr "규모도 곡선 샘플의 양을 변경합니다(%1%)." +msgstr "규모도 곡선 샘플의 양을 변경합니다 (%1%)" msgid "Width of SVG." msgstr "SVG의 너비." @@ -1252,7 +1250,7 @@ msgstr "파일이 존재하지 않습니다(%1%)." #, boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "파일 이름은 \".svg\"로 끝나야 하지만 %1%을(를) 선택했습니다" +msgstr "파일 이름은 \".svg\"로 끝나야 하지만 %1%를 선택했습니다" #, boost-format msgid "Nano SVG parser can't load from file (%1%)." @@ -1263,7 +1261,7 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "SVG 파일에는 양각할 단일 경로(%1%)가 포함되어 있지 않습니다." msgid "No feature" -msgstr "" +msgstr "기능 없음" msgid "Vertex" msgstr "꼭지점" @@ -1311,8 +1309,9 @@ msgid "Measure" msgstr "측정" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" -msgstr "폭발 비율 = 1인지 확인하고 객체를 하나 이상 선택하십시오." +"Please confirm explosion ratio = 1, and please select at least one object." +msgstr "" +"폭발 비율 = 1인지 확인하고 하나 이상의 객채를 선택하십시오" msgid "Please select at least one object." msgstr "객체를 하나 이상 선택하세요." @@ -1337,7 +1336,7 @@ msgid "Selection" msgstr "선택" msgid " (Moving)" -msgstr "(움직이는)" +msgstr " (움직이는)" msgid "" "Select 2 faces on objects and \n" @@ -1357,7 +1356,7 @@ msgid "Face" msgstr "얼굴" msgid " (Fixed)" -msgstr "(고정된)" +msgstr " (고정된)" msgid "Point" msgstr "가리키다" @@ -1367,15 +1366,15 @@ msgid "" "feature 2 has been feature 1" msgstr "" "기능 1이 재설정되었습니다.\n" -"기능 2는 기능 1이 되었습니다." +"기능 2는 기능 1이 되었습니다" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "경고: 평면의 기능을 선택하세요." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "경고: 점 또는 원의 특징을 선택하십시오." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "경고: 서로 다른 두 개의 메시를 선택하십시오." msgid "Copy to clipboard" @@ -1399,7 +1398,7 @@ msgstr "평행한" msgid "Center coincidence" msgstr "중심 일치" -msgid "Featue 1" +msgid "Feature 1" msgstr "특징 1" msgid "Reverse rotation" @@ -1448,14 +1447,14 @@ msgstr "구성 패키지가 로드되었지만, 일부 값이 인식되지 않 #, boost-format msgid "" "Configuration file \"%1%\" was loaded, but some values were not recognized." -msgstr "구성 파일 \"%1%\"이(가) 로드되었지만 일부 값이 인식되지 않았습니다." +msgstr "구성 파일 \"%1%\"가 로드되었지만 일부 값이 인식되지 않았습니다." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" -"메모리 부족으로 OrcaSlicer가 종료됩니다. 버그일 수 있습니다. 저희 팀에 문제" -"를 보고해 주시면 감사하겠습니다." +"메모리 부족으로 OrcaSlicer가 종료됩니다. 버그일 수 있습니다. 저희 팀에 문제를 " +"보고해 주시면 감사하겠습니다." msgid "Fatal error" msgstr "치명적 오류" @@ -1584,10 +1583,10 @@ msgstr "프로젝트 열기" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" -"Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가" -"능합니다" +"Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가능" +"합니다" msgid "Privacy Policy Update" msgstr "개인 정보 보호 정책 업데이트" @@ -1796,14 +1795,14 @@ msgstr "Orca 스트링 지옥" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" "이 모델은 상단 표면에 텍스트 엠보싱이 있습니다. 최적의 결과를 얻으려면 '상단 " -"표면의 한 벽만'에 대해 '한 벽 임계값(min_width_top_surface)'을 0으로 설정하" -"는 것이 가장 좋습니다.\n" +"표면의 한 벽만'에 대해 '한 벽 임계값(min_width_top_surface)'을 0으로 설정하는 " +"것이 가장 좋습니다.\n" "예 - 이 설정을 자동으로 변경합니다\n" "아니요 - 이 설정을 변경하지 않음" @@ -1892,16 +1891,16 @@ msgstr "객체의 서포트에서 버리기" msgid "Edit in Parameter Table" msgstr "객체/부품 설정에서 편집" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "인치에서 변환" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "인치로 복원" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "미터에서 변환" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "미터로 복원" msgid "Assemble" @@ -2149,7 +2148,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2166,7 +2165,7 @@ msgstr "모든 커넥터 삭제" msgid "Deleting the last solid part is not allowed." msgstr "마지막 꽉찬 부품을 삭제할 수 없습니다." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "대상 객체는 한 부품만 포함하고 있어 분할할 수 없습니다." msgid "Assembly" @@ -2209,12 +2208,12 @@ msgid "Selection conflicts" msgstr "선택 출돌함" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "첫 번째로 선택한 항목이 객체이면 두 번째 항목도 객체여야 합니다." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "첫 번째로 선택한 항목이 부품이면 두 번째 항목은 동일한 객체의 부품이어야 합니" "다." @@ -2275,7 +2274,7 @@ msgstr "잘못된 숫자입니다." msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "하나의 셀은 동일한 열에 있는 하나 이상의 셀에만 복사할 수 있습니다" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "다중 셀 복사는 지원되지 않습니다" msgid "Outside" @@ -2384,13 +2383,13 @@ msgid "Add Custom G-code" msgstr "사용자 정의 Gcode 추가" msgid "Insert custom G-code at the beginning of this layer." -msgstr "이 레이어의 시작 부분에 사용자 정의 G코드를 삽입합니다." +msgstr "이 레이어의 시작 부분에 사용자 정의 Gcode를 삽입합니다." msgid "Add Custom Template" msgstr "사용자 정의 템플릿 추가" msgid "Insert template custom G-code at the beginning of this layer." -msgstr "이 레이어의 시작 부분에 사용자 정의 템플릿 G코드를 삽입합니다." +msgstr "이 레이어의 시작 부분에 사용자 정의 템플릿 Gcode를 삽입합니다." msgid "Filament " msgstr "필라멘트 " @@ -2528,15 +2527,15 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" -"AMS 슬롯을 선택한 다음 '로드' 또는 '언로드' 버튼을 누르면 필라멘트를 자동으" -"로 로드하거나 언로드할 수 있습니다." +"AMS 슬롯을 선택한 다음 '로드' 또는 '언로드' 버튼을 누르면 필라멘트를 자동으로 " +"로드하거나 언로드할 수 있습니다." msgid "Edit" msgstr "편집" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "선택한 모든 물체는 잠긴 플레이트에 있습니다,\n" "이러한 객체에 대해 자동 정렬을 수행할 수 없습니다." @@ -2545,8 +2544,8 @@ msgid "No arrangeable objects are selected." msgstr "정렬 가능한 객체를 선택하지 않았습니다." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "이 플레이트는 잠겨 있습니다,\n" "이 플레이트에서 자동 정렬을 할 수 없습니다." @@ -2571,7 +2570,8 @@ msgstr "정렬 완료." msgid "" "Arrange failed. Found some exceptions when processing object geometries." -msgstr "정렬에 실패했습니다. 객체 형상을 처리할 때 일부 예외를 발견했습니다." +msgstr "" +"정렬에 실패했습니다. 객체 형상을 처리할 때 일부 예외를 발견했습니다." #, c-format, boost-format msgid "" @@ -2583,15 +2583,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "선택한 모든 물체는 잠긴 플레이트에 있습니다,\n" "이러한 객체에 대해 자동 방향 지정을 수행할 수 없습니다." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "이 플레이트는 잠겨 있습니다,\n" "이 플레이트에서 자동 방향 지정을 할 수 없습니다." @@ -2645,15 +2645,15 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "클라우드 서비스 연결에 실패했습니다. 다시 시도하세요." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "출력파일을 찾을 수 없습니다. 다시 슬라이스하세요." msgid "" "The print file exceeds the maximum allowable size (1GB). Please simplify the " "model and slice again." msgstr "" -"출력 파일이 최대 허용 크기 (1GB) 를 초과했습니다.모델을 단순화하고 다시 슬라" -"이스하세요." +"출력 파일이 최대 허용 크기 (1GB) 를 초과했습니다.모델을 단순화하고 다시 슬라이" +"스하세요." msgid "Failed to send the print job. Please try again." msgstr "출력 작업을 전송하지 못했습니다. 다시 시도하세요." @@ -2670,15 +2670,15 @@ msgid "" "again." msgstr "출력 파일의 크기가 너무 큽니다. 파일 크기를 조정한 후 다시 시도하세요." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "출력 파일을 찾을 수 없습니다. 다시 슬라이스하여 출력전송하세요." msgid "" "Failed to upload print file to FTP. Please check the network status and try " "again." msgstr "" -"출력 파일을 FTP에 업로드하지 못했습니다. 네트워크 상태를 확인하신 후 다시 시" -"도해 주세요." +"출력 파일을 FTP에 업로드하지 못했습니다. 네트워크 상태를 확인하신 후 다시 시도" +"해 주세요." msgid "Sending print job over LAN" msgstr "LAN을 통해 출력 작업 전송 중" @@ -2709,10 +2709,10 @@ msgstr "성공적으로 전송되었습니다. %ss의 다음 페이지로 자동 msgid "An SD card needs to be inserted before printing via LAN." msgstr "LAN을 통해 출력하기 전에 SD 카드를 삽입해야 합니다." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "LAN을 통해 Gcode 파일 전송 중" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "SD 카드로 Gcode 파일 전송 중" #, c-format, boost-format @@ -2729,8 +2729,8 @@ msgid "" "The SLA archive doesn't contain any presets. Please activate some SLA " "printer preset first before importing that SLA archive." msgstr "" -"SLA 압축파일에 사전 설정이 없습니다. 해당 SLA 압축파일를 가져오기 전에 먼저 " -"일부 SLA 프린터 사전 설정을 활성화하세요." +"SLA 압축파일에 사전 설정이 없습니다. 해당 SLA 압축파일를 가져오기 전에 먼저 일" +"부 SLA 프린터 사전 설정을 활성화하세요." msgid "Importing canceled." msgstr "가져오기가 취소되었습니다." @@ -2742,8 +2742,8 @@ msgid "" "The imported SLA archive did not contain any presets. The current SLA " "presets were used as fallback." msgstr "" -"가져온 SLA 압축파일에 사전 설정이 없습니다. 현재 SLA 사전 설정이 예비로 사용" -"되었습니다." +"가져온 SLA 압축파일에 사전 설정이 없습니다. 현재 SLA 사전 설정이 예비로 사용되" +"었습니다." msgid "You cannot load SLA project with a multi-part object on the bed" msgstr "베드에 다중 부품 객체가 있는 SLA 프로젝트를 로드할 수 없습니다" @@ -2760,10 +2760,10 @@ msgstr "다운로드 중" msgid "Download failed" msgstr "다운로드 실패" -msgid "Cancelled" +msgid "Canceled" msgstr "취소됨" -msgid "Install successfully." +msgid "Installed successfully" msgstr "성공적으로 설치하였습니다." msgid "Installing" @@ -2782,10 +2782,10 @@ msgid "License" msgstr "라이센스" msgid "Orca Slicer is licensed under " -msgstr "Orca Slicer is licensed under " +msgstr "Orca Slicer의 라이선스는 다음과 같습니다 " msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, version 3" +msgstr "GNU Affero 일반 공용 라이선스, 버전 3" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "Orca Slicer는 PrusaSlicer와 BambuStudio를 기반으로 합니다" @@ -2797,8 +2797,8 @@ msgid "" "This software uses open source components whose copyright and other " "proprietary rights belong to their respective owners" msgstr "" -"이 소프트웨어는 저작권 및 기타 소유권이 해당 소유자에게 속한 오픈 소스 구성 " -"요소를 사용합니다" +"이 소프트웨어는 저작권 및 기타 소유권이 해당 소유자에게 속한 오픈 소스 구성 요" +"소를 사용합니다" #, c-format, boost-format msgid "About %s" @@ -2833,9 +2833,6 @@ msgstr "확인" msgid "Close" msgstr "닫기" -msgid "Colour" -msgstr "색상" - msgid "" "Nozzle\n" "Temperature" @@ -2940,8 +2937,8 @@ msgid "" "hot bed like the picture below, and fill the value on its left side into the " "factor K input box." msgstr "" -"교정이 완료되었습니다. 당신의 고온 베드에서 아래 사진과 같이 가장 균일한 압" -"출 선을 찾아 왼쪽에 있는 값을 입력 상자의 K 계수에 채워주세요." +"교정이 완료되었습니다. 당신의 고온 베드에서 아래 사진과 같이 가장 균일한 압출 " +"선을 찾아 왼쪽에 있는 값을 입력 상자의 K 계수에 채워주세요." msgid "Save" msgstr "저장" @@ -2993,8 +2990,8 @@ msgstr "현재 AMS 습도" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "건조제가 너무 젖으면 교체하세요. 뚜껑이 열려 있거나 건조제 팩을 교체한 경우, " @@ -3002,7 +2999,7 @@ msgstr "" "우 등에는 표시기가 정확하게 표시되지 않을 수 있습니다." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "출력 작업에 사용되는 필라멘트에 사용할 AMS 슬롯 구성" msgid "Filament used in this print job" @@ -3020,7 +3017,7 @@ msgstr "AMS 비활성" msgid "Print using materials mounted on the back of the case" msgstr "케이스 뒷면에 장착된 재료를 사용하여 출력" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "AMS의 필라멘트로 출력" msgid "Print with filaments mounted on the back of the chassis" @@ -3043,12 +3040,11 @@ msgstr "AMS 필라멘트 백업이 활성화되지 않았습니다. AMS 설정 msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" -"AMS에 두 개의 동일한 필라멘트가 있는 경우 AMS 필라멘트 백업이 활성화됩니" -"다. \n" +"AMS에 두 개의 동일한 필라멘트가 있는 경우 AMS 필라멘트 백업이 활성화됩니다.\n" "(현재 동일한 브랜드, 재질, 색상의 소모품 자동 공급 지원)" msgid "DRY" @@ -3071,7 +3067,7 @@ msgstr "" "업은 약 20초 정도 걸립니다." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "참고: 출력 중에 새 필라멘트를 삽입하면 출력가 완료될 때까지 AMS가 자동으로 정" @@ -3081,16 +3077,16 @@ msgid "" "When inserting a new filament, the AMS will not automatically read its " "information, leaving it blank for you to enter manually." msgstr "" -"새 필라멘트를 삽입할 때 AMS는 정보를 자동으로 읽지 않고 사용자가 수동으로 입" -"력할 수 있도록 비워 둡니다." +"새 필라멘트를 삽입할 때 AMS는 정보를 자동으로 읽지 않고 사용자가 수동으로 입력" +"할 수 있도록 비워 둡니다." msgid "Power on update" msgstr "업데이트 전원 유지" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "AMS는 시동 시 삽입된 필라멘트의 정보를 자동으로 읽습니다. 1분 정도 걸립니다. " "판독 프로세스는 필라멘트 스풀을 롤링합니다." @@ -3118,8 +3114,8 @@ msgid "AMS filament backup" msgstr "AMS 필라멘트 백업" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS는 현재 필라멘트가 소진되면 동일한 필라멘트 특성을 가진 다른 스풀로 자동으" "로 이동합니다" @@ -3131,8 +3127,8 @@ msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" -"막힘 및 필라멘트 연삭을 감지하여 출력를 즉시 중단하여 시간과 필라멘트를 절약" -"합니다." +"막힘 및 필라멘트 연삭을 감지하여 출력를 즉시 중단하여 시간과 필라멘트를 절약합" +"니다." msgid "File" msgstr "파일" @@ -3178,13 +3174,13 @@ msgstr "" #, boost-format msgid "A fatal error occurred: \"%1%\"" -msgstr "" +msgstr "치명적인 오류가 발생했습니다: “%1%”" msgid "Please save project and restart the program." msgstr "프로젝트를 저장하고 프로그램을 다시 시작하세요." -msgid "Processing G-Code from Previous file..." -msgstr "이전 파일의 G코드를 처리하는 중..." +msgid "Processing G-code from Previous file..." +msgstr "이전 파일의 Gcode를 처리하는 중..." msgid "Slicing complete" msgstr "슬라이싱 완료" @@ -3217,7 +3213,7 @@ msgid "Successfully executed post-processing script" msgstr "성공적으로 실행된 후처리 스크립트" msgid "Unknown error occurred during exporting G-code." -msgstr "G코드를 내보내는 동안 알 수 없는 오류가 발생했습니다." +msgstr "Gcode를 내보내는 동안 알 수 없는 오류가 발생했습니다." #, boost-format msgid "" @@ -3225,7 +3221,7 @@ msgid "" "card is write locked?\n" "Error message: %1%" msgstr "" -"임시 G코드를 출력 G코드로 복사하지 못했습니다. SD 카드가 쓰기 잠겨 있나요?\n" +"임시 Gcode를 출력 Gcode로 복사하지 못했습니다. SD 카드가 쓰기 잠겨 있나요?\n" "오류 메시지입니다: %1%" #, boost-format @@ -3234,16 +3230,16 @@ msgid "" "problem with target device, please try exporting again or using different " "device. The corrupted output G-code is at %1%.tmp." msgstr "" -"임시 G코드를 출력 G코드로 복사하지 못했습니다. 대상 장치에 문제가 있을 수 있" -"으니 다시 내보내거나 다른 장치를 사용해 보세요. 손상된 출력 G코드는 %1%.tmp" -"에 있습니다." +"임시 Gcode를 출력 Gcode로 복사하지 못했습니다. 대상 장치에 문제가 있을 수 있으" +"니 다시 내보내거나 다른 장치를 사용해 보세요. 손상된 출력 Gcode는 %1%.tmp에 있" +"습니다." #, boost-format msgid "" "Renaming of the G-code after copying to the selected destination folder has " "failed. Current path is %1%.tmp. Please try exporting again." msgstr "" -"선택한 대상 폴더로 복사한 후 G코드의 이름을 바꾸지 못했습니다. 현재 경로는 " +"선택한 대상 폴더로 복사한 후 Gcode의 이름을 바꾸지 못했습니다. 현재 경로는 " "%1%.tmp입니다. 내보내기를 다시 시도하세요." #, boost-format @@ -3251,27 +3247,27 @@ msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" -"임시 G코드의 복사가 완료되었지만 복사 확인 중에 %1%의 원본 코드를 열 수 없습" -"니다. 출력 G-코드는 %2%.tmp에 있습니다." +"임시 Gcode의 복사가 완료되었지만 복사 확인 중에 %1%의 원본 코드를 열 수 없습니" +"다. 출력 G-코드는 %2%.tmp에 있습니다." #, boost-format msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" -"임시 Gcode 복사가 완료되었지만 복사 확인 중에 내보낸 코드를 열 수 없습니다. " -"출력 G-코드는 %1%.tmp에 있습니다." +"임시 Gcode 복사가 완료되었지만 복사 확인 중에 내보낸 코드를 열 수 없습니다. 출" +"력 G-코드는 %1%.tmp에 있습니다." #, boost-format msgid "G-code file exported to %1%" msgstr "%1%로 내보낸 Gcode 파일" -msgid "Unknown error when export G-code." -msgstr "G코드를 내보낼 때 알 수 없는 오류가 발생했습니다." +msgid "Unknown error when exporting G-code." +msgstr "Gcode를 내보낼 때 알 수 없는 오류가 발생했습니다." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3280,7 +3276,7 @@ msgstr "" "원본 파일 %2%." msgid "Copying of the temporary G-code to the output G-code failed" -msgstr "출력 G코드에 임시 G코드를 복사하지 못했습니다" +msgstr "출력 Gcode에 임시 Gcode를 복사하지 못했습니다" #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" @@ -3445,7 +3441,7 @@ msgstr "AMS 사용" msgid "Select Printers" msgstr "프린터 선택" -msgid "Ams Status" +msgid "AMS Status" msgstr "AMS 상태" msgid "Printing Options" @@ -3467,19 +3463,18 @@ msgid "Send to" msgstr "받는사람" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" "printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" +msgstr "" +"프린터를 동시에 사용할 수 있습니다. (동시에 가열할 수 있는 장치 수에 따라 다릅" +"니다.)" msgid "Wait" -msgstr "Wait" +msgstr "대기" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" -msgstr "" -"minute each batch. (It depends on how long it takes to complete heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" +msgstr "분 단위로 배치합니다. (가열을 완료하는 데 걸리는 시간에 따라 다릅니다.)" msgid "Send" msgstr "전송" @@ -3570,9 +3565,10 @@ msgstr "베드 모델을 가져올 STL 파일 선택:" msgid "Bed Shape" msgstr "베드 모양" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "권장 최저 온도는 190도 미만 또는 권장 최고 온도는 300도 이상입니다.\n" msgid "" @@ -3594,8 +3590,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "이 필라멘트 유형의 권장 노즐 온도는 [%d, %d]°C입니다" msgid "" @@ -3607,9 +3603,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "현재 챔버 온도가 재료의 안전 온도보다 높으므로 재료가 부드러워지고 막힐 수 있" "습니다. 재료의 최대 안전 온도는 %d입니다" @@ -3665,15 +3661,15 @@ msgstr "" "값이 0으로 재설정됩니다." msgid "" -"Alternate extra wall does't work well when ensure vertical shell thickness " -"is set to All." +"Alternate extra wall does't work well when ensure vertical shell thickness is " +"set to All." msgstr "" "세로 쉘 두께가 모두로 설정된 경우 대체 여분의 벽이 제대로 작동하지 않습니다." msgid "" -"Change these settings automatically? \n" -"Yes - Change ensure vertical shell thickness to Moderate and enable " -"alternate extra wall\n" +"Change these settings automatically?\n" +"Yes - Change ensure vertical shell thickness to Moderate and enable alternate " +"extra wall\n" "No - Don't use alternate extra wall" msgstr "" "이 설정을 자동으로 변경하시겠습니까?\n" @@ -3687,8 +3683,8 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgstr "" -"적응형 레이어 높이 또는 독립적 서포트 레이어 높이가 켜져 있으면 프라임 타워" -"가 작동하지 않습니다.\n" +"적응형 레이어 높이 또는 독립적 서포트 레이어 높이가 켜져 있으면 프라임 타워가 " +"작동하지 않습니다.\n" "어떤 것을 유지하시겠습니까?\n" "예 - 프라임 타워 유지\n" "아니요 - 적응형 레이어 높이 및 독립적 서포트 레이어 높이 유지" @@ -3733,7 +3729,7 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " 그러나 I3 구조의 장치는 타임랩스 비디오를 생성하지 않습니다." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3792,7 +3788,7 @@ msgstr "사용자가 출력을 일시 정지했습니다" msgid "Pause of front cover falling" msgstr "전면 커버 분리로 일시 정지됨" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "마이크로 라이다 교정" msgid "Calibrating extrusion flow" @@ -3828,8 +3824,8 @@ msgstr "챔버 온도 제어 오류로 인해 일시 중지됨" msgid "Cooling chamber" msgstr "챔버 냉각" -msgid "Paused by the Gcode inserted by user" -msgstr "사용자가 삽입한 G코드로 인해 일시중지됨" +msgid "Paused by the G-code inserted by user" +msgstr "사용자가 삽입한 Gcode로 인해 일시중지됨" msgid "Motor noise showoff" msgstr "모터 소음 표시" @@ -3872,34 +3868,35 @@ msgstr "업데이트에 실패했습니다." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" -"현재 챔버 온도 또는 목표 챔버 온도가 45℃를 초과합니다. 압출기 막힘을 방지하" -"기 위해 저온 필라멘트(PLA/PETG/TPU)를 로드할 수 없습니다." +"현재 챔버 온도 또는 목표 챔버 온도가 45℃를 초과합니다. 압출기 막힘을 방지하기 " +"위해 저온 필라멘트(PLA/PETG/TPU)를 로드할 수 없습니다." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" -"압출기에 저온 필라멘트(PLA/PETG/TPU)가 장착되어 있습니다. 압출기 막힘을 방지" -"하기 위해 챔버 온도를 45℃ 이상으로 설정할 수 없습니다." +"압출기에 저온 필라멘트(PLA/PETG/TPU)가 장착되어 있습니다. 압출기 막힘을 방지하" +"기 위해 챔버 온도를 45℃ 이상으로 설정할 수 없습니다." msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "챔버 온도를 40℃ 이하로 설정하면 챔버 온도 제어가 활성화되지 않습니다. 그리고 " "목표 챔버 온도는 자동으로 0℃ 로 설정됩니다." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "출력 작업을 시작하지 못했습니다" msgid "" "This calibration does not support the currently selected nozzle diameter" -msgstr "이 교정은 현재 선택된 노즐 직경을 지원하지 않습니다" +msgstr "" +"이 교정은 현재 선택된 노즐 직경을 지원하지 않습니다" msgid "Current flowrate cali param is invalid" msgstr "현재 압출량 교정 매개변수가 잘못되었습니다" @@ -3907,8 +3904,8 @@ msgstr "현재 압출량 교정 매개변수가 잘못되었습니다" msgid "Selected diameter and machine diameter do not match" msgstr "선택한 직경과 장치의 직경이 일치하지 않습니다" -msgid "Failed to generate cali gcode" -msgstr "교정 G코드를 생성하지 못했습니다" +msgid "Failed to generate cali G-code" +msgstr "교정 Gcode를 생성하지 못했습니다" msgid "Calibration error" msgstr "교정 오류" @@ -3920,18 +3917,18 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "뱀부 PET-CF/PA6-CF는 AMS에서 지원되지 않습니다." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "습한 PVA는 유연해져서 AMS 내부에 달라붙게 됩니다. 사용하기 전에 건조시키십시" "오." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" -"CF/GF 필라멘트는 단단하고 부서지기 쉽습니다. AMS에 걸리거나 부러지기 쉬우므" -"로 주의하여 사용하세요." +"CF/GF 필라멘트는 단단하고 부서지기 쉽습니다. AMS에 걸리거나 부러지기 쉬우므로 " +"주의하여 사용하세요." msgid "default" msgstr "기본값" @@ -3941,13 +3938,14 @@ msgid "Edit Custom G-code (%1%)" msgstr "사용자 지정 Gcode 편집 (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" -msgstr "기본 제공 플레이스홀더 (항목을 두 번 클릭하여 G코드에 추가)" +msgstr "기본 제공 플레이스홀더 (항목을 두 번 클릭하여 Gcode에 추가)" -msgid "Search gcode placeholders" +#, fuzzy +msgid "Search G-code placeholders" msgstr "Gcode 자리 표시자 검색" msgid "Add selected placeholder to G-code" -msgstr "선택한 플레이스홀더를 G코드에 추가" +msgstr "선택한 플레이스홀더를 Gcode에 추가" msgid "Select placeholder" msgstr "자리 표시자 선택" @@ -4002,7 +4000,7 @@ msgid "parameter name" msgstr "매개변수 이름" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s 는 백분율일 수 없습니다" #, c-format, boost-format @@ -4090,7 +4088,7 @@ msgstr "팬: " msgid "Temperature: " msgstr "온도: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Gcode 불러오는 중" msgid "Generating geometry vertex data" @@ -4204,10 +4202,7 @@ msgstr "출력" msgid "Printer" msgstr "프린터" -msgid "Custom g-code" -msgstr "사용자 정의 Gcode" - -msgid "ToolChange" +msgid "Tool Change" msgstr "툴체인지" msgid "Time Estimation" @@ -4333,8 +4328,11 @@ msgstr "Y축에 정렬" msgid "Add plate" msgstr "플레이트 추가" -msgid "Auto orient" -msgstr "자동 방향 지정" +msgid "Auto orient all/selected objects" +msgstr "모든/선택한 객체 자동 방향 지정" + +msgid "Auto orient all objects on current plate" +msgstr "현재 플레이트의 모든 객체를 자동으로 방향 지정" msgid "Arrange all objects" msgstr "모든 객체 정렬" @@ -4357,7 +4355,7 @@ msgstr "플레이트 선택" msgid "Assembly Return" msgstr "조립 되돌리기" -msgid "return" +msgid "Return" msgstr "돌아가기" msgid "Paint Toolbar" @@ -4386,38 +4384,38 @@ msgstr "크기:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -"레이어 %d, z = %.2lf mm에서 Gcode 경로 충돌이 발견되었습니다. 충돌하는 객체" -"를 더 멀리 분리하세요 (%s <-> %s)." +"레이어 %d, z = %.2lf mm에서 Gcode 경로 충돌이 발견되었습니다. 충돌하는 객체를 " +"더 멀리 분리하세요 (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "객체가 플레이트 경계 위에 놓여 있습니다." msgid "A G-code path goes beyond the max print height." msgstr "Gcode 경로가 출력 최대 높이를 넘어갑니다." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Gcode 경로가 플레이트 경계를 넘어갑니다." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "편집 중인 객체만 표시됩니다." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" "객체가 플레이트 경계를 넘었거나 높이 제한을 초과했습니다.\n" -"플레이트 위 또는 밖으로 완전히 이동시키고 높이가 빌드 출력 가능 영역 내에 있" -"는지 확인하여 문제를 해결하세요." +"플레이트 위 또는 밖으로 완전히 이동시키고 높이가 빌드 출력 가능 영역 내에 있는" +"지 확인하여 문제를 해결하세요." msgid "Calibration step selection" msgstr "교정 단계 선택" msgid "Micro lidar calibration" -msgstr "마이크로 레이더 교정" +msgstr "마이크로 라이다 교정" msgid "Bed leveling" msgstr "베드 레벨링" @@ -4484,7 +4482,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "프린터 연결(LAN)" msgid "Please input the printer access code:" @@ -4702,7 +4700,7 @@ msgid "Export G-code" msgstr "Gcode 내보내기" msgid "Export current plate as G-code" -msgstr "현재 플레이트를 G코드로 내보내기" +msgstr "현재 플레이트를 Gcode로 내보내기" msgid "Export Preset Bundle" msgstr "프리셋 번들 내보내기" @@ -4780,23 +4778,24 @@ msgid "Use Orthogonal View" msgstr "평행 투영 보기 사용" msgid "Auto Perspective" -msgstr "" +msgstr "자동 시점" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" +"상단/하단/측면 보기에서 변경할 때 직교와 투시 사이를 자동으로 전환합니다." msgid "Show &G-code Window" msgstr "Gcode 창 표시 (&G)" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "예측 장면에 Gcode 창 표시" msgid "Show 3D Navigator" msgstr "3D 내비게이터 표시" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "준비 및 미리보기 장면에서 3D 내비게이터 표시" msgid "Reset Window Layout" @@ -4808,19 +4807,19 @@ msgstr "기본 창 레이아웃으로 재설정" msgid "Show &Labels" msgstr "이름표 보기 (&L)" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "3D 화면에 객체 이름표 표시" msgid "Show &Overhang" msgstr "오버행 보기 (&O)" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "3D 장면에서 객체 오버행 하이라이트 표시" msgid "Show Selected Outline (beta)" msgstr "선택된 개요 표시(실험적)" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "3D 장면에서 선택한 객체 주변에 윤곽선 표시" msgid "Preferences" @@ -4845,13 +4844,13 @@ msgid "Flow rate test - Pass 2" msgstr "압출량 테스트 - 2차" msgid "YOLO (Recommended)" -msgstr "YOLO(권장)" +msgstr "YOLO (권장)" msgid "Orca YOLO flowrate calibration, 0.01 step" msgstr "Orca YOLO 압출량 보정, 0.01 단계" msgid "YOLO (perfectionist version)" -msgstr "YOLO(완벽주의자 버전)" +msgstr "YOLO (완벽주의자 버전)" msgid "Orca YOLO flowrate calibration, 0.005 step" msgstr "Orca YOLO 압출량 보정, 0.005 단계" @@ -4928,17 +4927,17 @@ msgstr "도움말 (&H)" #, c-format, boost-format msgid "A file exists with the same name: %s, do you want to overwrite it?" -msgstr "같은 이름을 가진 파일이 존재합니다: %s, 덮어 쓰겠습니까." +msgstr "같은 이름을 가진 파일이 존재합니다: %s, 덮어 쓰시겠습니까?" #, c-format, boost-format msgid "A config exists with the same name: %s, do you want to overwrite it?" -msgstr "같은 이름을 가진 설정이 존재합니다: %s, 덮어 쓰겠습니까." +msgstr "같은 이름을 가진 설정이 존재합니다: %s, 덮어 쓰시겠습니까?" msgid "Overwrite file" msgstr "파일 덮어쓰기" msgid "Overwrite config" -msgstr "" +msgstr "구성 덮어쓰기" msgid "Yes to All" msgstr "모두 예" @@ -4968,8 +4967,8 @@ msgstr[0] "%d개의 설정을 가져왔습니다. (비 시스템 및 호환 설 msgid "" "\n" -"Hint: Make sure you have added the corresponding printer before importing " -"the configs." +"Hint: Make sure you have added the corresponding printer before importing the " +"configs." msgstr "" "\n" "힌트: 구성을 가져오기 전에 해당 프린터를 추가했는지 확인하세요." @@ -4987,7 +4986,7 @@ msgid "Filament Settings" msgstr "필라멘트 설정" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -4997,7 +4996,7 @@ msgstr "" "다음과 같은 정보가 포함되어 있습니다:\n" "1. 프로세스 사전 설정\n" "2. 필라멘트 사전 설정\n" -"3. 프린터가 사전 설정" +"3. 프린터 사전 설정" msgid "Synchronization" msgstr "동기화" @@ -5016,14 +5015,13 @@ msgid "Please confirm if the printer is connected." msgstr "프린터가 연결되어 있는지 확인하세요." msgid "" -"The printer is currently busy downloading. Please try again after it " -"finishes." +"The printer is currently busy downloading. Please try again after it finishes." msgstr "프린터가 현재 다운로드 중입니다. 다운로드가 완료된 후 다시 시도하세요." msgid "Printer camera is malfunctioning." msgstr "프린터 카메라가 오작동합니다." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "문제가 발생했습니다. 프린터 펌웨어를 업데이트하고 다시 시도하세요." msgid "" @@ -5041,11 +5039,11 @@ msgid "Connection Failed. Please check the network and try again" msgstr "연결에 실패했습니다. 네트워크를 확인한 후 다시 시도하세요" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" -"네트워크를 확인하고 다시 시도해 보세요. 문제가 지속되면 프린터를 다시 시작하" -"거나 업데이트할 수 있습니다." +"네트워크를 확인하고 다시 시도해 보세요. 문제가 지속되면 프린터를 다시 시작하거" +"나 업데이트할 수 있습니다." msgid "The printer has been logged out and cannot connect." msgstr "프린터가 로그아웃되어 연결할 수 없습니다." @@ -5197,7 +5195,7 @@ msgid "Failed to parse model information." msgstr "모델 정보를 구문 분석하지 못했습니다." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " +"The .gcode.3mf file contains no G-code data. Please slice it with Orca Slicer " "and export a new .gcode.3mf file." msgstr "" ".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 " @@ -5393,9 +5391,9 @@ msgstr "레이어: %s" msgid "Layer: %d/%d" msgstr "레이어: %d/%d" +#, fuzzy msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" "필라멘트를 로드하거나 언로드하기 전에 노즐을 170도 이상으로 가열하세요." @@ -5405,15 +5403,15 @@ msgstr "언로드중" msgid "Still load" msgstr "로드중" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "교정하기 전에 AMS 슬롯을 선택하세요" msgid "" "Cannot read filament info: the filament is loaded to the tool head,please " "unload the filament and try again." msgstr "" -"필라멘트 정보를 읽을 수 없음: 필라멘트가 툴 헤드에 로드되었습니다. 필라멘트" -"를 언로드하고 다시 시도하세요." +"필라멘트 정보를 읽을 수 없음: 필라멘트가 툴 헤드에 로드되었습니다. 필라멘트를 " +"언로드하고 다시 시도하세요." msgid "This only takes effect during printing" msgstr "출력하는 동안에만 적용됩니다" @@ -5454,9 +5452,6 @@ msgstr "제출" msgid "Please click on the star first." msgstr "먼저 별점을 클릭해주세요." -msgid "InFo" -msgstr "정보" - msgid "Get oss config failed." msgstr "OSS 구성 가져오기에 실패했습니다." @@ -5475,7 +5470,7 @@ msgstr " 구성 업로드 실패\n" msgid " No corresponding storage bucket\n" msgstr " 해당 스토리지 버킷이 없습니다.\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " 열 수 없습니다\n" msgid "" @@ -5499,7 +5494,7 @@ msgid "obtaining instance_id failed\n" msgstr "instance_id를 가져오지 못했습니다.\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5513,7 +5508,7 @@ msgstr "에러 메시지: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5521,17 +5516,17 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" -"일부 이미지를 업로드하지 못했습니다. 평가를 위해 웹페이지로 리디렉션하시겠습" -"니까?" +"일부 이미지를 업로드하지 못했습니다. 평가를 위해 웹페이지로 리디렉션하시겠습니" +"까?" msgid "You can select up to 16 images." msgstr "최대 16개의 이미지를 선택할 수 있습니다." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "긍정적인 평가(별4개 또는 5개)를 제공하려면\n" "이 출력 사전 설정의 성공적인 출력 기록이 하나 이상 필요합니다." @@ -5576,7 +5571,7 @@ msgid "Newer 3mf version" msgstr "최신 3mf 버전" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "3mf 파일 버전은 베타 버전이며 현재 OrcaSlicer 버전보다 최신 버전입니다." @@ -5591,8 +5586,7 @@ msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "3mf 파일 버전은 현재 Orca Slicer 버전보다 최신 버전입니다." msgid "Update your Orca Slicer could enable all functionality in the 3mf file." -msgstr "" -"Orca Slicer를 업데이트하면 3mf 파일의 모든 기능을 활성화할 수 있습니다." +msgstr "Orca Slicer를 업데이트하면 3mf 파일의 모든 기능을 활성화할 수 있습니다." msgid "Current Version: " msgstr "현재 버전: " @@ -5685,7 +5679,7 @@ msgstr[0] "%1$d 객체에 컬러 페인팅이 있습니다." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d 객체가 잘라낸 객체의 부품으로 로드되었습니다." msgid "ERROR" @@ -5709,7 +5703,7 @@ msgstr "오류:" msgid "Warning:" msgstr "경고:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "내보내기 성공." msgid "Model file downloaded." @@ -5727,10 +5721,10 @@ msgstr " 설치하려면 여기를 클릭하세요." msgid "WARNING:" msgstr "경고:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "모델에 서포트가 필요합니다! 서포트를 활성화하세요." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Gcode 경로 겹침" msgid "Support painting" @@ -5793,8 +5787,8 @@ msgid "" "The localization tag of build plate is detected, and printing is paused if " "the tag is not in predefined range." msgstr "" -"빌드 플레이트의 현지화 태그가 감지되고 태그가 사전 설정된 범위를 벗어나면 출" -"력이 일시 정지됩니다." +"빌드 플레이트의 현지화 태그가 감지되고 태그가 사전 설정된 범위를 벗어나면 출력" +"이 일시 정지됩니다." msgid "First Layer Inspection" msgstr "첫 레이어 검사" @@ -5930,8 +5924,8 @@ msgstr "펠릿" msgid "" "No AMS filaments. Please select a printer in 'Device' page to load AMS info." msgstr "" -"AMS 필라멘트가 없습니다. AMS 정보를 불러오려면 '장치' 페이지에서 프린터를 선" -"택하세요." +"AMS 필라멘트가 없습니다. AMS 정보를 불러오려면 '장치' 페이지에서 프린터를 선택" +"하세요." msgid "Sync filaments with AMS" msgstr "AMS와 필라멘트 동기화" @@ -5940,15 +5934,15 @@ msgid "" "Sync filaments with AMS will drop all current selected filament presets and " "colors. Do you want to continue?" msgstr "" -"AMS와 동기화된 필라멘트는 현재 선택된 모든 필라멘트 사전 설정 및 색상을 삭제" -"합니다. 계속하시겠습니까?" +"AMS와 동기화된 필라멘트는 현재 선택된 모든 필라멘트 사전 설정 및 색상을 삭제합" +"니다. 계속하시겠습니까?" msgid "" "Already did a synchronization, do you want to sync only changes or resync " "all?" msgstr "" -"이미 동기화를 수행했습니다. 변경 사항만 동기화하시겠습니까? 아니면 다시 동기" -"화하시겠습니까?" +"이미 동기화를 수행했습니다. 변경 사항만 동기화하시겠습니까? 아니면 다시 동기화" +"하시겠습니까?" msgid "Sync" msgstr "동기화" @@ -5964,9 +5958,9 @@ msgid "" "Orca Slicer or restart Orca Slicer to check if there is an update to system " "presets." msgstr "" -"일반 사전 설정에 매핑된 알 수 없는 필라멘트가 있습니다. Orca Slicer를 업데이" -"트하거나 Orca Slicer를 다시 시작하여 시스템 사전 설정에 대한 업데이트가 있는" -"지 확인하세요." +"일반 사전 설정에 매핑된 알 수 없는 필라멘트가 있습니다. Orca Slicer를 업데이트" +"하거나 Orca Slicer를 다시 시작하여 시스템 사전 설정에 대한 업데이트가 있는지 " +"확인하세요." #, boost-format msgid "Do you want to save changes to \"%1%\"?" @@ -5974,10 +5968,10 @@ msgstr "변경 사항을 \"%1%\"에 저장하시겠습니까?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" -"성공적으로 마운트 해제되었습니다. 이제 %s(%s) 장치를 컴퓨터에서 안전하게 제거" +"성공적으로 마운트 해제되었습니다. 이제 %s (%s) 장치를 컴퓨터에서 안전하게 제거" "할 수 있습니다." #, c-format, boost-format @@ -5995,8 +5989,8 @@ msgid "" "clogged when printing this filament in a closed enclosure. Please open the " "front door and/or remove the upper glass." msgstr "" -"현재 베드 온도가 상대적으로 높습니다. 닫힌 공간에서 이 필라멘트를 출력할 때 " -"노즐이 막힐 수 있습니다. 전면 도어를 열거나 상단 유리를 제거하세요." +"현재 베드 온도가 상대적으로 높습니다. 닫힌 공간에서 이 필라멘트를 출력할 때 노" +"즐이 막힐 수 있습니다. 전면 도어를 열거나 상단 유리를 제거하세요." msgid "" "The nozzle hardness required by the filament is higher than the default " @@ -6004,15 +5998,15 @@ msgid "" "filament, otherwise, the nozzle will be attrited or damaged." msgstr "" "필라멘트에 필요한 노즐 경도가 프린터의 기본 노즐 경도보다 높습니다. \"경화강" -"\" 노즐을 사용하거나 필라멘트를 교체하세요. 그렇지 않으면 노즐이 마모되거나 " -"손상됩니다." +"\" 노즐을 사용하거나 필라멘트를 교체하세요. 그렇지 않으면 노즐이 마모되거나 손" +"상됩니다." msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" -"기존 타임랩스 사진을 사용하면 표면 결함이 발생할 수 있습니다. 유연 모드로 변" -"경하는 것이 좋습니다." +"기존 타임랩스 사진을 사용하면 표면 결함이 발생할 수 있습니다. 유연 모드로 변경" +"하는 것이 좋습니다." msgid "Expand sidebar" msgstr "사이드바 확장" @@ -6032,8 +6026,8 @@ msgstr "3mf 불러오기" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "3mf의 버전 %s이(가) %s의 버전 %s보다 높습니다. 다음 키를 인식할 수 없습니다:" @@ -6045,8 +6039,7 @@ msgid "" "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " "software." msgstr "" -"3mf의 %s 버전이 %s의 %s 버전보다 최신입니다. 소프트웨어를 업그레이드 하십시" -"오." +"3mf의 %s 버전이 %s의 %s 버전보다 최신입니다. 소프트웨어를 업그레이드 하십시오." msgid "Invalid values found in the 3mf:" msgstr "3mf에서 잘못된 값이 발견됨:" @@ -6054,26 +6047,27 @@ msgstr "3mf에서 잘못된 값이 발견됨:" msgid "Please correct them in the param tabs" msgstr "매개변수 탭에서 수정하세요" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" -"3mf에는 필라멘트 또는 프린터 사전 설정에 다음과 같은 수정된 G코드가 있습니다:" +"3mf에는 필라멘트 또는 프린터 사전 설정에 다음과 같은 수정된 Gcode가 있습니다:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" -msgstr "이 수정된 G코드가 손상을 방지하기 위해 안전한지 확인하세요.장치!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" +msgstr "이 수정된 Gcode가 손상을 방지하기 위해 안전한지 확인하세요.장치!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "수정된 Gcode" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "3mf에는 다음과 같은 맞춤형 필라멘트 또는 프린터 사전 설정이 있습니다:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" -"이러한 사전 설정 내의 G코드가 기계 손상을 방지할 수 있도록 안전한지 확인하세" +"이러한 사전 설정 내의 Gcode가 기계 손상을 방지할 수 있도록 안전한지 확인하세" "요!" msgid "Customized Preset" @@ -6090,7 +6084,7 @@ msgstr "선택 기억하기." #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." -msgstr "파일 \"%1%\"을(를) 로드하지 못했습니다. 잘못된 구성이 발견되었습니다." +msgstr "파일 \"%1%\"를 로드하지 못했습니다. 잘못된 구성이 발견되었습니다." msgid "Objects with zero volume removed" msgstr "부피가 0인 객체가 제거됨" @@ -6104,7 +6098,7 @@ msgid "" " Do you want to scale to millimeters?" msgstr "" "%s 파일의 객체가 너무 작습니다. 단위가 미터나 인치일 수 있습니다.\n" -" 밀리미터 단위로 확장하시겠습니까?" +" mm 단위로 확장하시겠습니까?" msgid "Object too small" msgstr "객체가 너무 작음" @@ -6131,8 +6125,8 @@ msgid "The file does not contain any geometry data." msgstr "파일에 형상 데이터가 포함되어 있지 않습니다." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "객체가 너무 큽니다. 자동으로 고온 베드에 맞게 크기를 줄이시겠습니까?" msgid "Object too large" @@ -6155,7 +6149,7 @@ msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" -"파일 %s이(가) 이미 존재합니다.\n" +"파일 %s가 이미 존재합니다.\n" "파일을 바꾸시겠습니까?" msgid "Confirm Save As" @@ -6239,10 +6233,10 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "미리 보기 전용 모드:\n" -"불러온 파일에 G코드만 포함되어 있습니다. 준비 페이지에 들어갈 수 없습니다" +"불러온 파일에 Gcode만 포함되어 있습니다. 준비 페이지에 들어갈 수 없습니다." msgid "You can keep the modified presets to the new project or discard them" msgstr "수정된 사전 설정을 새 프로젝트에 유지하거나 삭제할 수 있습니다" @@ -6259,8 +6253,8 @@ msgid "" "project file." msgstr "" "프로젝트를 저장하지 못했습니다.\n" -"폴더가 온라인에 존재하는지 또는 다른 프로그램이 프로젝트 파일을 사용 중인지 " -"확인하세요." +"폴더가 온라인에 존재하는지 또는 다른 프로그램이 프로젝트 파일을 사용 중인지 확" +"인하세요." msgid "Save project" msgstr "프로젝트 저장" @@ -6274,7 +6268,7 @@ msgstr "3mf 파일 준비..." msgid "Download failed, unknown file format." msgstr "다운로드에 실패했습니다. 파일 형식을 알 수 없습니다." -msgid "downloading project ..." +msgid "downloading project..." msgstr "프로젝트 다운로드 중 ..." msgid "Download failed, File size exception." @@ -6292,17 +6286,17 @@ msgstr "" "요." msgid "INFO:" -msgstr "" +msgstr "정보:" msgid "" "No accelerations provided for calibration. Use default acceleration value " -msgstr "" +msgstr "보정을 위해 가속도가 제공되지 않습니다. 기본 가속도 값 사용 " msgid "mm/s²" msgstr "mm/s²" msgid "No speeds provided for calibration. Use default optimal speed " -msgstr "" +msgstr "보정을 위한 속도가 제공되지 않습니다. 기본 최적 속도 사용 " msgid "mm/s" msgstr "mm/s" @@ -6313,8 +6307,8 @@ msgstr "SLA 압축파일 가져오기" msgid "The selected file" msgstr "선택한 파일" -msgid "does not contain valid gcode." -msgstr "유효한 G코드를 포함하지 않습니다." +msgid "does not contain valid G-code." +msgstr "유효한 Gcode를 포함하지 않습니다." msgid "Error occurs while loading G-code file" msgstr "Gcode 파일을 로드하는 중 오류가 발생했습니다" @@ -6348,7 +6342,8 @@ msgstr "형상만 가져오기" msgid "" "This option can be changed later in preferences, under 'Load Behaviour'." -msgstr "이 옵션은 나중에 환경설정에서 '로드 동작'에서 변경할 수 있습니다." +msgstr "" +"이 옵션은 나중에 환경설정에서 '로드 동작'에서 변경할 수 있습니다." msgid "Only one G-code file can be opened at the same time." msgstr "동시에 하나의 Gcode 파일만 열 수 있습니다." @@ -6356,10 +6351,10 @@ msgstr "동시에 하나의 Gcode 파일만 열 수 있습니다." msgid "G-code loading" msgstr "Gcode 불러오는 중" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Gcode 파일은 모델과 함께 로드할 수 없습니다!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "미리보기 모드에서는 모델을 추가할 수 없습니다!" msgid "All objects will be removed, continue?" @@ -6367,8 +6362,8 @@ msgstr "모든 객체가 제거됩니다. 계속하시겠습니까?" msgid "The current project has unsaved changes, save it before continue?" msgstr "" -"현재 프로젝트에 저장되지 않은 변경 사항이 있습니다. 계속하기 전에 저장하시겠" -"습니까?" +"현재 프로젝트에 저장되지 않은 변경 사항이 있습니다. 계속하기 전에 저장하시겠습" +"니까?" msgid "Number of copies:" msgstr "복제본 수:" @@ -6393,14 +6388,14 @@ msgstr "슬라이스 파일을 다음으로 저장:" #, c-format, boost-format msgid "" -"The file %s has been sent to the printer's storage space and can be viewed " -"on the printer." +"The file %s has been sent to the printer's storage space and can be viewed on " +"the printer." msgstr "" "%s 파일이 프린터의 저장 공간으로 전송되었으며 프린터에서 볼 수 있습니다." msgid "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try again." +"Unable to perform boolean operation on model meshes. Only positive parts will " +"be kept. You may fix the meshes and try again." msgstr "" "모델 메시에 대해 부울 연산을 수행할 수 없습니다. 긍정적인 부분만 유지됩니다. " "메시를 수정하고 재시도해 볼 수 있습니다." @@ -6422,8 +6417,8 @@ msgid "Reason: \"%1%\" and another part have no intersection." msgstr "이유: \"%1%\"과(와) 다른 부분에는 교차점이 없습니다." msgid "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be exported." +"Unable to perform boolean operation on model meshes. Only positive parts will " +"be exported." msgstr "" "모델 메시에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다." @@ -6517,8 +6512,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "%d: %s플레이트는 %s(%s)필라멘트를 출력하는데 사용하지 않는 것이 좋습니다. 이 " @@ -6597,8 +6592,8 @@ msgid "" "This stops the transmission of data to Bambu's cloud services. Users who " "don't use BBL machines or use LAN mode only can safely turn on this function." msgstr "" -"이 기능은 뱀부의 클라우드 서비스로의 데이터 전송을 중지합니다. BBL 머신을 사" -"용하지 않거나 LAN 모드만 사용하는 사용자는 이 기능을 안전하게 켤 수 있습니다." +"이 기능은 뱀부의 클라우드 서비스로의 데이터 전송을 중지합니다. BBL 머신을 사용" +"하지 않거나 LAN 모드만 사용하는 사용자는 이 기능을 안전하게 켤 수 있습니다." msgid "Enable network plugin" msgstr "네트워크 플러그인 사용" @@ -6620,17 +6615,16 @@ msgstr "OrcaSlicer 인스턴스를 하나만 허용" msgid "" "On OSX there is always only one instance of app running by default. However " -"it is allowed to run multiple instances of same app from the command line. " -"In such case this settings will allow only one instance." +"it is allowed to run multiple instances of same app from the command line. In " +"such case this settings will allow only one instance." msgstr "" "OSX에서는 기본적으로 항상 하나의 앱 인스턴스만 실행됩니다. 그러나 명령줄에서 " "동일한 앱의 여러 인스턴스를 실행할 수 있습니다. 그러한 경우 이 설정은 하나의 " "인스턴스만 허용합니다." msgid "" -"If this is enabled, when starting OrcaSlicer and another instance of the " -"same OrcaSlicer is already running, that instance will be reactivated " -"instead." +"If this is enabled, when starting OrcaSlicer and another instance of the same " +"OrcaSlicer is already running, that instance will be reactivated instead." msgstr "" "이 기능을 활성화하면 OrcaSlicer를 시작하고 동일한 OrcaSlicer의 다른 인스턴스" "가 이미 실행 중일 때 해당 인스턴스가 대신 다시 활성화됩니다." @@ -6675,6 +6669,12 @@ msgstr "" "활성화된 경우 자유로운 카메라 앵글을 사용합니다. 활성화되지 않은 경우 제한된 " "카메라 앵글을 사용합니다." +msgid "Swap pan and rotate mouse buttons" +msgstr "팬 및 회전 마우스 버튼 바꾸기" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "이 기능을 활성화하면 왼쪽 마우스 버튼과 오른쪽 마우스 버튼의 팬 및 회전 기능이 바뀝니다." + msgid "Reverse mouse zoom" msgstr "역방향 마우스 줌" @@ -6716,12 +6716,12 @@ msgstr "" "활성화하면 Orca는 각 프린터의 필라멘트/프로세스 구성을 자동으로 기억하고 전환" "합니다." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "다중 장치 관리 (Orca를 다시 시작한 후 적용됨)." msgid "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." +"With this option enabled, you can send a task to multiple devices at the same " +"time and manage multiple devices." msgstr "" "활성화하면 여러 장치에 동시에 작업을 보내고 여러 장치를 관리할 수 있습니다." @@ -6734,7 +6734,7 @@ msgstr "객체를 복제한 후 플레이트를 자동으로 정렬합니다" msgid "Network" msgstr "네트워크" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)" msgid "User Sync" @@ -6771,8 +6771,7 @@ msgstr ".step/.stp 파일을 OrcaSlicer에 연결" msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "" -"활성화된 경우 OrcaSlicer를 기본 응용 프로그램으로 설정하여 .step 파일을 엽니" -"다" +"활성화된 경우 OrcaSlicer를 기본 응용 프로그램으로 설정하여 .step 파일을 엽니다" msgid "Associate web links to OrcaSlicer" msgstr "OrcaSlicer에 웹 링크 연결" @@ -6807,8 +6806,8 @@ msgstr "최근 프로젝트의 최대 표시 수" msgid "Clear my choice on the unsaved projects." msgstr "저장되지 않은 프로젝트에서 내 선택을 지웁니다." -msgid "No warnings when loading 3MF with modified G-codes" -msgstr "수정된 G코드로 3MF를 로드할 때 경고 없음" +msgid "No warnings when loading 3MF with modified G-code" +msgstr "수정된 Gcode로 3MF를 로드할 때 경고 없음" msgid "Auto-Backup" msgstr "자동 백업" @@ -6922,10 +6921,10 @@ msgstr "디버그 저장 버튼" msgid "save debug settings" msgstr "디버그 설정 저장" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "디버그 설정이 성공적으로 저장되었습니다!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "클라우드 환경 전환, 다시 로그인해주세요!" msgid "System presets" @@ -6940,10 +6939,10 @@ msgstr "호환되지 않는 사전 설정" msgid "AMS filaments" msgstr "AMS 필라멘트" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "필라멘트 색상 선택" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "필라멘트 색상을 선택해 주세요" msgid "Add/Remove presets" @@ -6961,7 +6960,7 @@ msgstr "필라멘트 추가/제거" msgid "Add/Remove materials" msgstr "재료 추가/제거" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "프린터 선택/제거(시스템 사전 설정)" msgid "Create printer" @@ -7033,13 +7032,13 @@ msgstr "3mf 업로드 중" msgid "Jump to model publish web page" msgstr "모델 게시 웹 페이지로 이동" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "참고: 준비하는 데 몇 분 정도 걸릴 수 있습니다. 조금만 기다려 주십시오." msgid "Publish" msgstr "게시" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "게시가 취소되었습니다" msgid "Slicing Plate 1" @@ -7064,7 +7063,7 @@ msgstr "프로젝트 내부 사전 설정" msgid "Name is unavailable." msgstr "이름을 사용할 수 없습니다." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "시스템 사전 설정은 덮어쓸 수 없습니다" #, boost-format @@ -7072,10 +7071,13 @@ msgid "Preset \"%1%\" already exists." msgstr "%1% 사전 설정이 이미 있습니다." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." -msgstr "%1% 사전 설정이 이미 있으며 현재 프린터와 호환되지 않습니다." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." +msgstr "" +"%1% 사전 설정이 이미 있으며 현재 프린터와 호환되지 않습니다." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "저장 작업이 이 사전 설정을 대체합니다" msgid "The name cannot be the same as a preset alias name." @@ -7198,8 +7200,8 @@ msgid "" "Filament %s exceeds the number of AMS slots. Please update the printer " "firmware to support AMS slot assignment." msgstr "" -"필라멘트 %s이(가) AMS 슬롯 수를 초과합니다. AMS 슬롯 할당을 지원하려면 프린" -"터 펌웨어를 업데이트하세요." +"필라멘트 %s가 AMS 슬롯 수를 초과합니다. AMS 슬롯 할당을 지원하려면 프린터 펌웨" +"어를 업데이트하세요." msgid "" "Filament exceeds the number of AMS slots. Please update the printer firmware " @@ -7212,23 +7214,22 @@ msgid "" "Filaments to AMS slots mappings have been established. You can click a " "filament above to change its mapping AMS slot" msgstr "" -"AMS 슬롯 매핑에 대한 필라멘트가 설정되었습니다. 위의 필라멘트를 클릭하여 매" -"핑 AMS 슬롯을 변경할 수 있습니다" +"AMS 슬롯 매핑에 대한 필라멘트가 설정되었습니다. 위의 필라멘트를 클릭하여 매핑 " +"AMS 슬롯을 변경할 수 있습니다" msgid "" "Please click each filament above to specify its mapping AMS slot before " "sending the print job" msgstr "" -"출력 작업을 보내기 전에 위의 각 필라멘트를 클릭하여 매핑 AMS 슬롯을 지정하세" -"요" +"출력 작업을 보내기 전에 위의 각 필라멘트를 클릭하여 매핑 AMS 슬롯을 지정하세요" #, c-format, boost-format msgid "" "Filament %s does not match the filament in AMS slot %s. Please update the " "printer firmware to support AMS slot assignment." msgstr "" -"필라멘트 %s가 AMS 슬롯 %s의 필라멘트와 일치하지 않습니다. AMS 슬롯 할당을 지" -"원하려면 프린터 펌웨어를 업데이트하세요." +"필라멘트 %s가 AMS 슬롯 %s의 필라멘트와 일치하지 않습니다. AMS 슬롯 할당을 지원" +"하려면 프린터 펌웨어를 업데이트하세요." msgid "" "Filament does not match the filament in AMS slot. Please update the printer " @@ -7250,8 +7251,7 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" -"선택한 프린터(%s)는 슬라이서(%s)에서 선택한 프린터 프로필과 호환되지 않습니" -"다." +"선택한 프린터(%s)는 슬라이서(%s)에서 선택한 프린터 프로필과 호환되지 않습니다." msgid "An SD card needs to be inserted to record timelapse." msgstr "타임랩스를 녹화하려면 SD 카드를 삽입해야 합니다." @@ -7271,8 +7271,8 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" -"나선형 꽃병 모드를 활성화하면 I3 구조의 장치는 타임랩스 비디오를 생성하지 않" -"습니다." +"나선형 꽃병 모드를 활성화하면 I3 구조의 장치는 타임랩스 비디오를 생성하지 않습" +"니다." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." @@ -7286,11 +7286,11 @@ msgid "Please check the following:" msgstr "다음을 확인하세요:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"G코드를 생성할 때 선택한 프린터 유형이 현재 선택한 프린터와 일치하지 않습니" +"Gcode를 생성할 때 선택한 프린터 유형이 현재 선택한 프린터와 일치하지 않습니" "다. 슬라이싱에 동일한 프린터 유형을 사용하는 것이 좋습니다." msgid "" @@ -7319,7 +7319,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "고온 재료(%s 재료)를 %s로 출력하면 노즐이 손상될 수 있습니다" @@ -7429,7 +7429,7 @@ msgstr "로그인 실패. 핀 코드를 확인해주세요." msgid "Log in printer" msgstr "프린터 로그인" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "현재 계정으로 이 프린터에 로그인하시겠습니까?" msgid "Check the reason" @@ -7442,17 +7442,17 @@ msgid "Terms and Conditions" msgstr "이용약관" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "뱀부랩 기기를 구매해 주셔서 감사합니다. 뱀부랩 기기를 사용하기 전에 이용약관" "을 읽어주시기 바랍니다. 뱀부랩 기기 사용에 동의하기 위해 클릭하면 개인정보 보" -"호정책 및 이용약관(이하 통칭하여 \"약관\")을 준수하는 데 동의하는 것입니다. " -"뱀부랩 개인정보 처리방침을 준수하지 않거나 동의하지 않는 경우, 뱀부랩 장치 " -"및 서비스를 사용하지 마십시오." +"호정책 및 이용약관(이하 통칭하여 \"약관\")을 준수하는 데 동의하는 것입니다. 뱀" +"부랩 개인정보 처리방침을 준수하지 않거나 동의하지 않는 경우, 뱀부랩 장치 및 서" +"비스를 사용하지 마십시오." msgid "and" msgstr "그리고" @@ -7474,20 +7474,20 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" -"3D 프린팅 커뮤니티에서는 서로의 성공과 실패로 부터 학습하여 각자의 슬라이싱 " -"매개변수와 설정을 조정합니다. %s는 이와 동일한 원칙을 따르며 머신 러닝을 사용" -"하여 사용자의 방대한 출력 성공과 실패로부터 성능을 개선합니다. 우리는 실제 데" -"이터를 통하여 %s가 더 똑똑해지도록 훈련시킵니다. 동의하신다면 이 서비스는 오" -"류 로그와 사용 로그를 포함할 수 있는 정보에 접근할 것입니다. 당사는 개인이 직" -"접 또는 간접적으로 식별될 수 있는 개인 데이터, 예를 들어 이름, 주소, 결제 정" -"보 또는 전화번호를 포함하여 어떤 개인 데이터도 수집하지 않습니다. 이 서비스" -"를 활성화하면 이 약관과 개인정보 보호정책에 대한 설명에 동의하는 것입니다." +"3D 프린팅 커뮤니티에서는 서로의 성공과 실패로 부터 학습하여 각자의 슬라이싱 매" +"개변수와 설정을 조정합니다. %s는 이와 동일한 원칙을 따르며 머신 러닝을 사용하" +"여 사용자의 방대한 출력 성공과 실패로부터 성능을 개선합니다. 우리는 실제 데이" +"터를 통하여 %s가 더 똑똑해지도록 훈련시킵니다. 동의하신다면 이 서비스는 오류 " +"로그와 사용 로그를 포함할 수 있는 정보에 접근할 것입니다. 당사는 개인이 직접 " +"또는 간접적으로 식별될 수 있는 개인 데이터, 예를 들어 이름, 주소, 결제 정보 또" +"는 전화번호를 포함하여 어떤 개인 데이터도 수집하지 않습니다. 이 서비스를 활성" +"화하면 이 약관과 개인정보 보호정책에 대한 설명에 동의하는 것입니다." msgid "Statement on User Experience Improvement Plan" msgstr "사용자 경험 개선 계획에 대한 성명서" @@ -7525,26 +7525,24 @@ msgid "Click to reset all settings to the last saved preset." msgstr "모든 설정을 마지막으로 저장한 사전 설정으로 되돌립니다." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" -"유연모드 타임랩스를 위해서는 프라임 타워가 필요합니다. 프라임 타워가 없는 모" -"델에는 결함이 있을 수 있습니다. 프라임 타워를 사용하지 않도록 설정하시겠습니" -"까?" +"유연모드 타임랩스를 위해서는 프라임 타워가 필요합니다. 프라임 타워가 없는 모델" +"에는 결함이 있을 수 있습니다. 프라임 타워를 사용하지 않도록 설정하시겠습니까?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" -"유연모드 타임랩스를 위해서는 프라임 타워가 필요합니다. 프라임 타워가 없는 모" -"델에는 결함이 있을 수 있습니다. 프라임 타워를 사용하지 않도록 설정하시겠습니" -"까?" +"유연모드 타임랩스를 위해서는 프라임 타워가 필요합니다. 프라임 타워가 없는 모델" +"에는 결함이 있을 수 있습니다. 프라임 타워를 사용하지 않도록 설정하시겠습니까?" msgid "Still print by object?" msgstr "아직도 객체별로 출력하시나요?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7554,7 +7552,7 @@ msgstr "" "높이 비활성화" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7567,9 +7565,9 @@ 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 "" -"이 옵션을 활성화하면 모델의 모양이 수정됩니다. 출력물에 정확한 치수가 필요하" -"거나 어셈블리의 일부인 경우 이러한 형상 변경이 출력물의 기능에 영향을 미치는" -"지 다시 확인하는 것이 중요합니다." +"이 옵션을 활성화하면 모델의 모양이 수정됩니다. 출력물에 정확한 치수가 필요하거" +"나 어셈블리의 일부인 경우 이러한 형상 변경이 출력물의 기능에 영향을 미치는지 " +"다시 확인하는 것이 중요합니다." msgid "Are you sure you want to enable this option?" msgstr "이 옵션을 사용하시겠습니까?" @@ -7583,13 +7581,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "레이어 높이가 프린터 설정 -> 압출기 -> 레이어의 제한을 초과합니다.높이 제한으" "로 인해 출력 품질 문제가 발생할 수 있습니다." -msgid "Adjust to the set range automatically? \n" -msgstr "설정 범위에 자동으로 맞춰지나요? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "설정 범위에 자동으로 맞춰지나요?\n" msgid "Adjust" msgstr "조정" @@ -7599,24 +7597,23 @@ msgstr "무시" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" -"실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라" -"멘트를 집어넣고 절단합니다. 플러시를 눈에 띄게 줄일 수 있지만 노즐 막힘이나 " -"기타 출력 문제의 위험이 높아질 수도 있습니다." +"실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라멘" +"트를 집어넣고 절단합니다. 플러시를 눈에 띄게 줄일 수 있지만 노즐 막힘이나 기" +"타 출력 문제의 위험이 높아질 수도 있습니다." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" -"실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라" -"멘트를 집어넣고 절단합니다. 플러시를 크게 줄일 수 있지만 노즐 막힘이나 기타 " -"출력 문제의 위험을 높일 수도 있습니다. 최신 프린터 펌웨어와 함께 사용하십시" -"오." +"실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라멘" +"트를 집어넣고 절단합니다. 플러시를 크게 줄일 수 있지만 노즐 막힘이나 기타 출" +"력 문제의 위험을 높일 수도 있습니다. 최신 프린터 펌웨어와 함께 사용하십시오." msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7633,8 +7630,8 @@ msgid "" "A copy of the current system preset will be created, which will be detached " "from the system preset." msgstr "" -"현재 시스템 프리셋의 복사본이 생성되며, 이 복사본은 시스템 프리셋에서 분리됩" -"니다." +"현재 시스템 프리셋의 복사본이 생성되며, 이 복사본은 시스템 프리셋에서 분리됩니" +"다." msgid "" "The current custom preset will be detached from the parent system preset." @@ -7663,7 +7660,7 @@ msgid "Current preset is inherited from the default preset." msgstr "현재 프리셋은 기본 프리셋에서 상속됩니다." msgid "Current preset is inherited from" -msgstr "현재 프리셋은 다음에서 상속됩니다." +msgstr "현재 프리셋은 다음에서 상속됩니다" msgid "It can't be deleted or modified." msgstr "삭제하거나 수정할 수 없습니다." @@ -7833,7 +7830,7 @@ msgid "Recommended nozzle temperature range of this filament. 0 means no set" msgstr "이 필라멘트의 권장 노즐 온도 범위. 0은 설정하지 않음을 의미합니다" msgid "Flow ratio and Pressure Advance" -msgstr "압출량 비율 및 압력 사전" +msgstr "압출량 비율 및 PA" msgid "Print chamber temperature" msgstr "출력 챔버 온도" @@ -7851,62 +7848,62 @@ msgid "Cool Plate (SuperTack)" msgstr "쿨 플레이트(슈퍼택)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" -"냉각판 설치 시 베드 온도. 값 0은 필라멘트가 쿨 플레이트(슈퍼택)에 출력할 수 " -"없음을 의미합니다." +"냉각판 설치 시 베드 온도. 값 0은 필라멘트가 쿨 플레이트(슈퍼택)에 출력할 수 없" +"음을 의미합니다." msgid "Cool Plate" msgstr "쿨 플레이트" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "쿨 플레이트 설치 시 베드 온도. 값 0은 필라멘트가 쿨 플레이트에 출력하는 것을 " -"지원하지 않음을 의미합니다" +"지원하지 않음을 의미합니다." -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "텍스처 쿨 플레이트" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "쿨 플레이트가 설치되었을 때의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 " -"플레이트에서 출력를 지원하지 않음을 의미합니다" +"플레이트에서 출력를 지원하지 않음을 의미합니다." -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "엔지니어링 플레이트" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" -"엔지니어링 플레이트가 설치 시 베드 온도. 값 0은 필라멘트가 엔지니어링 플레이" -"트에 출력하는 것을 지원하지 않음을 의미합니다" +"엔지니어링 플레이트가 설치 시 베드 온도. 값 0은 필라멘트가 엔지니어링 플레이트" +"에 출력하는 것을 지원하지 않음을 의미합니다" msgid "Smooth PEI Plate / High Temp Plate" msgstr "부드러운 PEI 플레이트 / 고온 플레이트" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "부드러운 PEI 플레이트/고온 플레이트 설치 시 베드 온도. 값 0은 필라멘트가 부드" -"러운 PEI 플레이트/고온 플레이트 출력을 지원하지 않음을 의미합니다" +"러운 PEI 플레이트/고온 플레이트 출력을 지원하지 않음을 의미합니다." msgid "Textured PEI Plate" msgstr "텍스처 PEI 플레이트" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" -"텍스처 PEI 플레이트가 설치된 경우 베드 온도. 값 0은 필라멘트가 텍스처 PEI 플" -"레이트에 출력하는 것을 지원하지 않음을 의미합니다" +"텍스처 PEI 플레이트가 설치된 경우 베드 온도. 값 0은 필라멘트가 텍스처 PEI 플레" +"이트에 출력하는 것을 지원하지 않음을 의미합니다." msgid "Volumetric speed limitation" msgstr "압출 속도 제한" @@ -7929,9 +7926,9 @@ msgid "" "shorter than threshold, fan speed is interpolated between the minimum and " "maximum fan speed according to layer printing time" msgstr "" -"출력물 냉각 팬 속도는 예상 레이어 시간이 설정한 레이어 시간보다 짧으면 최소 " -"속도로 작동됩니다. 레이어 시간이 임계값보다 짧은 경우 팬 속도는 레이어 출력 " -"시간에 따라 최소 팬 속도와 최대 팬 속도 사이에 보간됩니다.(Interpolated)" +"출력물 냉각 팬 속도는 예상 레이어 시간이 설정한 레이어 시간보다 짧으면 최소 속" +"도로 작동됩니다. 레이어 시간이 임계값보다 짧은 경우 팬 속도는 레이어 출력 시간" +"에 따라 최소 팬 속도와 최대 팬 속도 사이에 보간됩니다.(Interpolated)" msgid "Max fan speed threshold" msgstr "팬 최대 속도 임계값" @@ -7946,7 +7943,7 @@ msgid "Auxiliary part cooling fan" msgstr "보조 출력물 냉각 팬" msgid "Exhaust fan" -msgstr "환기 팬" +msgstr "공기 여과 팬" msgid "During print" msgstr "출력 중" @@ -7963,13 +7960,13 @@ msgstr "필라멘트 종료 Gcode" msgid "Wipe tower parameters" msgstr "프라임 타워 매개변수" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "다중 재료 프린터의 단일 압출기 툴 체인지 매개변수" msgid "Ramming settings" msgstr "채워넣기 설정" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "다중 재료 프린터의 다중 압출기 툴 체인지 매개변수" msgid "Dependencies" @@ -7981,7 +7978,7 @@ msgstr "프로필 종속성" msgid "Printable space" msgstr "출력 가능 공간" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "%1% 매개변수에 잘못된 값이 입력됨: %2%" @@ -8004,7 +8001,7 @@ msgstr "적응형 베드 메시" msgid "Accessory" msgstr "악세서리" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "장치 Gcode" msgid "Machine start G-code" @@ -8014,7 +8011,7 @@ msgid "Machine end G-code" msgstr "장치 종료 Gcode" msgid "Printing by object G-code" -msgstr "객체 G코드로 출력" +msgstr "객체 Gcode로 출력" msgid "Before layer change G-code" msgstr "레이어 변경 전 Gcode" @@ -8022,7 +8019,7 @@ msgstr "레이어 변경 전 Gcode" msgid "Layer change G-code" msgstr "레이어 변경 Gcode" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "타임랩스 Gcode" msgid "Change filament G-code" @@ -8116,7 +8113,7 @@ msgstr "" "%d개의 필라멘트 사전 설정과 %d개의 프로세스 사전 설정이 이 프린터에 연결되어 " "있습니다.프린터를 삭제하면 사전 설정도 삭제됩니다." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "다른 프리셋에 상속된 프리셋은 삭제할 수 없습니다!" msgid "The following presets inherit this preset." @@ -8133,13 +8130,13 @@ msgid_plural "Following presets will be deleted too." msgstr[0] "다음 사전 설정도 삭제됩니다." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"선택한 사전 설정을 삭제하시겠습니까? \n" -"프리셋이 현재 프린터에서 사용 중인 필라멘트와 일치하는 경우,해당 슬롯의 필라" -"멘트 정보를 재설정해 주세요." +"선택한 사전 설정을 삭제하시겠습니까?\n" +"프리셋이 현재 프린터에서 사용 중인 필라멘트와 일치하는 경우,해당 슬롯의 필라멘" +"트 정보를 재설정해 주세요." #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -8255,8 +8252,8 @@ msgid "" "transfer the values you have modified to the new preset." msgstr "" "\n" -"수정한 사전 설정 값을 저장하거나 삭제하거나, 수정한 값을 새 사전 설정으로 전" -"송하도록 선택할 수 있습니다." +"수정한 사전 설정 값을 저장하거나 삭제하거나, 수정한 값을 새 사전 설정으로 전송" +"하도록 선택할 수 있습니다." msgid "You have previously modified your settings." msgstr "이전에 설정을 수정했습니다." @@ -8292,8 +8289,8 @@ msgstr "" msgid "" "Transfer the selected options from left preset to the right.\n" -"Note: New modified presets will be selected in settings tabs after close " -"this dialog." +"Note: New modified presets will be selected in settings tabs after close this " +"dialog." msgstr "" "선택한 옵션을 왼쪽 프리셋에서 오른쪽으로 옮깁니다.\n" "참고: 이 대화 상자를 닫은 후 설정 탭에서 새로 수정된 프리셋이 선택됩니다." @@ -8302,11 +8299,11 @@ msgid "Transfer values from left to right" msgstr "왼쪽에서 오른쪽으로 값 전송" msgid "" -"If enabled, this dialog can be used for transfer selected values from left " -"to right preset." +"If enabled, this dialog can be used for transfer selected values from left to " +"right preset." msgstr "" -"이 대화 상자를 활성화하면 선택한 값을 왼쪽에서 오른쪽으로 사전 설정으로 변환" -"하는 데 사용할 수 있습니다." +"이 대화 상자를 활성화하면 선택한 값을 왼쪽에서 오른쪽으로 사전 설정으로 변환하" +"는 데 사용할 수 있습니다." msgid "Add File" msgstr "파일 추가" @@ -8349,7 +8346,7 @@ msgstr "새 버전을 사용할 수 있습니다" msgid "Configuration update" msgstr "구성 업데이트" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "새 구성 패키지를 사용할 수 있습니다. 설치하시겠습니까?" msgid "Description:" @@ -8358,13 +8355,13 @@ msgstr "설명:" msgid "Configuration incompatible" msgstr "호환되지 않는 구성" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "구성 패키지가 현재 응용 프로그램과 호환되지 않습니다." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "구성 패키지가 현재 애플리케이션과 호환되지 않습니다.\n" "%s는 구성 패키지를 업데이트합니다. 그렇지 않으면 시작할 수 없습니다" @@ -8373,7 +8370,7 @@ msgstr "" msgid "Exit %s" msgstr "%s 종료" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "구성 패키지가 현재 애플리케이션과 호환되지 않습니다." msgid "Configuration updates" @@ -8426,18 +8423,18 @@ msgid "Map Filament" msgstr "지도 필라멘트" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "참고: 색상이 선택되었습니다. 확인을 누르시면\n" -" 계속하거나 수동으로 조정할수 있습니다." +"계속하거나 수동으로 조정할수 있습니다." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "경고: 새로 추가된 개수와\n" -" 현재 압출기는 16개를 초과합니다." +"현재 압출기는 16개를 초과합니다." msgid "Ramming customization" msgstr "채워넣기 사용자 정의" @@ -8466,7 +8463,7 @@ msgid "Total ramming time" msgstr "총 채워넣기 시간" msgid "s" -msgstr "초" +msgstr "s" msgid "Total rammed volume" msgstr "총 채워넣은 부피" @@ -8530,15 +8527,15 @@ msgstr "" "Player를 활성화하시겠습니까?" msgid "" -"BambuSource has not correctly been registered for media playing! Press Yes " -"to re-register it. You will be promoted twice" +"BambuSource has not correctly been registered for media playing! Press Yes to " +"re-register it. You will be promoted twice" msgstr "" -"뱀부소스가 미디어 재생에 올바르게 등록되지 않았습니다! 다시 등록하려면 예를 " -"누르세요. 두 번 승격됩니다" +"뱀부소스가 미디어 재생에 올바르게 등록되지 않았습니다! 다시 등록하려면 예를 누" +"르세요. 두 번 승격됩니다" msgid "" -"Missing BambuSource component registered for media playing! Please re-" -"install BambuStudio or seek after-sales help." +"Missing BambuSource component registered for media playing! Please re-install " +"BambuStudio or seek after-sales help." msgstr "" "미디어 재생을 위해 등록된 뱀부소스 컴포넌트가 누락되었습니다! 뱀부스튜디오를 " "다시 설치하거나 판매 후 도움을 받으세요." @@ -8551,9 +8548,9 @@ msgstr "" "습니다! 예를 눌러 문제를 해결하세요." msgid "" -"Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" -"libav packages, then restart Orca Slicer?)" +"Your system is missing H.264 codecs for GStreamer, which are required to play " +"video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-libav " +"packages, then restart Orca Slicer?)" msgstr "" "시스템에 동영상 재생을 위해 필요한 GStreamer용 H.264 코덱이 존재하지 않습니" "다. (gstreamer1.0-plugins-bad 또는 gstreamer1.0-libav 패키지를 설치한 다음 " @@ -8623,13 +8620,15 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected objects, " +"it just orients the selected ones. Otherwise, it will orient all objects in " +"the current project." msgstr "" -"선택한 객체 또는 모든 객체의 방향을 자동으로 지정합니다.선택한 객체가 있는 경" -"우 선택한 객체의 방향만 지정합니다.그렇지 않으면 현재 디스크에 있는 모든 객체" -"의 방향이 지정됩니다." +"선택한 객체 또는 모든 객체의 방향을 자동으로 조정합니다. 선택한 객체가 있는 경" +"우 선택한 객체만 조정되고, 그렇지 않은 경우 프로젝트의 모든 객체가 조정됩니다." + +msgid "Auto orients all objects on the active plate." +msgstr "현재 플레이트에 있는 모든 객체의 방향을 자동으로 지정합니다." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8739,18 +8738,30 @@ msgstr "변형도구 회전" msgid "Gizmo cut" msgstr "변형도구 잘라내기" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "변형도구 바닥면 선택" +msgid "Gizmo mesh boolean" +msgstr "변형도구 합집합/차집합/교집합" + msgid "Gizmo SLA support points" msgstr "변형도구 서포트 칠하기" msgid "Gizmo FDM paint-on seam" msgstr "변형도구 재봉선 칠하기" -msgid "Gizmo Text emboss / engrave" +msgid "Gizmo text emboss/engrave" msgstr "변형도구 - 텍스트 엠보싱/인그레이빙" +msgid "Gizmo measure" +msgstr "변형도구 측정" + +msgid "Gizmo assemble" +msgstr "변형도구 병합" + +msgid "Gizmo brim ears" +msgstr "변형도구 브림 귀" + msgid "Zoom in" msgstr "확대" @@ -8790,8 +8801,8 @@ msgstr "변형도구" msgid "Set extruder number for the objects and parts" msgstr "객체 및 부품에 대한 압출기 번호 설정" -msgid "Delete objects, parts, modifiers " -msgstr "객체, 부품, 수정자 삭제 " +msgid "Delete objects, parts, modifiers" +msgstr "객체, 부품, 수정자 삭제" msgid "Select the object/part and press space to change the name" msgstr "객체/부품을 선택하고 스페이스바를 눌러 이름을 변경합니다" @@ -8820,7 +8831,7 @@ msgstr "수평 슬라이더 - 활성 라인 오른쪽으로 이동" msgid "On/Off one layer mode of the vertical slider" msgstr "수직 슬라이더의 한 레이어 모드 켜기/끄기" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Gcode 창 켜기/끄기" msgid "Move slider 5x faster" @@ -8839,7 +8850,7 @@ msgid "Release Note" msgstr "릴리스 노트" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "버전 %s 업데이트 정보 :" msgid "Network plug-in update" @@ -8852,7 +8863,7 @@ msgstr "" "니다." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "새 네트워크 플러그인(%s)을 사용할 수 있습니다. 설치하시겠습니까?" msgid "New version of Orca Slicer" @@ -8870,10 +8881,10 @@ msgstr "재개" msgid "Resume Printing" msgstr "출력 재개" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "출력 재개(결함 허용)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "출력 재개(문제 해결)" msgid "Stop Printing" @@ -8908,7 +8919,8 @@ msgstr "IP 및 액세스 코드를 사용하여 프린터 연결" msgid "" "Step 1. Please confirm Orca Slicer and your printer are in the same LAN." -msgstr "1단계. 오르카 슬라이서와 프린터가 동일한 LAN에 있는지 확인하세요." +msgstr "" +"1단계. 오르카 슬라이서와 프린터가 동일한 LAN에 있는지 확인하세요." msgid "" "Step 2. If the IP and Access Code below are different from the actual values " @@ -8993,18 +9005,18 @@ msgstr "최신 버전" msgid "Updating" msgstr "업데이트 중" -msgid "Updating failed" +msgid "Update failed" msgstr "업데이트 실패" -msgid "Updating successful" +msgid "Update successful" msgstr "업데이트 성공" msgid "" -"Are you sure you want to update? This will take about 10 minutes. Do not " -"turn off the power while the printer is updating." +"Are you sure you want to update? This will take about 10 minutes. Do not turn " +"off the power while the printer is updating." msgstr "" -"업데이트하시겠습니까? 약 10분 정도 소요됩니다. 프린터가 업데이트되는 동안에" -"는 전원을 끄지 마십시오." +"업데이트하시겠습니까? 약 10분 정도 소요됩니다. 프린터가 업데이트되는 동안에는 " +"전원을 끄지 마십시오." msgid "" "An important update was detected and needs to be run before printing can " @@ -9012,17 +9024,17 @@ msgid "" "firmware'." msgstr "" "중요한 업데이트가 감지되었으며 출력을 계속하려면 먼저 업데이트해야 합니다. 지" -"금 업데이트하시겠습니까? '펌웨어 업그레이드'에서 나중에 업데이트할 수도 있습" -"니다." +"금 업데이트하시겠습니까? '펌웨어 업그레이드'에서 나중에 업데이트할 수도 있습니" +"다." msgid "" "The firmware version is abnormal. Repairing and updating are required before " "printing. Do you want to update now? You can also update later on printer or " "update next time starting Orca." msgstr "" -"펌웨어 버전이 비정상입니다. 출력하기 전에 수리 및 업데이트가 필요합니다. 지" -"금 업데이트하시겠습니까? 나중에 프린터에서 업데이트하거나 다음에 스튜디오를 " -"시작할 때 업데이트할 수도 있습니다." +"펌웨어 버전이 비정상입니다. 출력하기 전에 수리 및 업데이트가 필요합니다. 지금 " +"업데이트하시겠습니까? 나중에 프린터에서 업데이트하거나 다음에 스튜디오를 시작" +"할 때 업데이트할 수도 있습니다." msgid "Extension Board" msgstr "확장 보드" @@ -9077,7 +9089,7 @@ msgstr "수리 취소됨" #, boost-format msgid "Copying of file %1% to %2% failed: %3%" -msgstr "파일 %1%을(를) %2%(으)로 복사 실패: %3%" +msgstr "파일 %1%를 %2%으로 복사 실패: %3%" msgid "Need to check the unsaved changes before configuration updates." msgstr "구성 업데이트 전에 저장되지 않은 변경 사항을 확인해야 합니다." @@ -9095,8 +9107,8 @@ msgid "" "One object has empty initial layer and can't be printed. Please Cut the " "bottom or enable supports." msgstr "" -"객체 하나에 초기 레이어가 비어 있어 출력할 수 없습니다. 바닥을 자르거나 서포" -"트를 활성화하세요." +"객체 하나에 초기 레이어가 비어 있어 출력할 수 없습니다. 바닥을 자르거나 서포트" +"를 활성화하세요." #, boost-format msgid "Object can't be printed for empty layer between %1% and %2%." @@ -9122,14 +9134,14 @@ msgid "" msgstr "출력물이 프라이밍 영역에 매우 가깝습니다. 충돌이 없는지 확인합니다." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" -"잘못된 사용자 정의 G코드로 인해 gcode를 생성하지 못했습니다.\n" +"잘못된 사용자 정의 Gcode로 인해 gcode를 생성하지 못했습니다.\n" "\n" msgid "Please check the custom G-code or use the default custom G-code." -msgstr "사용자 정의 G코드를 확인하거나 기본 사용자 정의 G코드를 사용하세요." +msgstr "사용자 정의 Gcode를 확인하거나 기본 사용자 정의 Gcode를 사용하세요." #, boost-format msgid "Generating G-code: layer %1%" @@ -9172,13 +9184,12 @@ msgid "Multiple" msgstr "다수" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " -msgstr "" -"%1%의 선 너비를 계산하지 못했습니다. \"%2%\"의 값을 가져올 수 없습니다 " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " +msgstr "%1%의 선 너비를 계산하지 못했습니다. \"%2%\"의 값을 가져올 수 없습니다 " msgid "" -"Invalid spacing supplied to Flow::with_spacing(), check your layer height " -"and extrusion width" +"Invalid spacing supplied to Flow::with_spacing(), check your layer height and " +"extrusion width" msgstr "" "Flow::with_spacing()에 잘못된 간격이 제공되었습니다. 레이어 높이와 돌출 너비" "를 확인하세요" @@ -9308,12 +9319,12 @@ msgstr "" " 이(가) 제외 영역에 너무 가깝습니다. 출력 시 충돌이 발생 할 수 있습니다.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" -"온도 차이가 큰 필라멘트를 여러 개 함께 출력할 수 없습니다. 그렇지 않으면 출" -"력 중에 압출기와 노즐이 막히거나 손상될 수 있습니다" +"온도 차이가 큰 필라멘트를 여러 개 함께 출력할 수 없습니다. 그렇지 않으면 출력 " +"중에 압출기와 노즐이 막히거나 손상될 수 있습니다" msgid "No extrusions under current settings." msgstr "현재 설정에 압출기가 없습니다." @@ -9328,8 +9339,7 @@ msgid "" "Please select \"By object\" print sequence to print multiple objects in " "spiral vase mode." msgstr "" -"나선형 꽃병 모드에서 여러 객체를 출력하려면 \"객체별\" 출력 순서를 선택하세" -"요." +"나선형 꽃병 모드에서 여러 객체를 출력하려면 \"객체별\" 출력 순서를 선택하세요." msgid "" "The spiral vase mode does not work when an object contains more than one " @@ -9351,8 +9361,8 @@ msgstr "%1% 객체가 최대 빌드 부피 높이를 초과합니다." #, boost-format msgid "" -"While the object %1% itself fits the build volume, its last layer exceeds " -"the maximum build volume height." +"While the object %1% itself fits the build volume, its last layer exceeds the " +"maximum build volume height." msgstr "" "%1% 객체 자체가 빌드 부피에 맞지만 마지막 레이어가 최대 빌드 부피 높이를 초과" "합니다." @@ -9360,19 +9370,18 @@ msgstr "" msgid "" "You might want to reduce the size of your model or change current print " "settings and retry." -msgstr "" -"모델 크기를 줄이거나 현재 출력 설정을 변경하고 다시 시도할 수 있습니다." +msgstr "모델 크기를 줄이거나 현재 출력 설정을 변경하고 다시 시도할 수 있습니다." msgid "Variable layer height is not supported with Organic supports." msgstr "유기체 서포트에서는 가변 레이어 높이가 지원되지 않습니다." msgid "" -"Different nozzle diameters and different filament diameters may not work " -"well when the prime tower is enabled. It's very experimental, so please " -"proceed with caution." +"Different nozzle diameters and different filament diameters may not work well " +"when the prime tower is enabled. It's very experimental, so please proceed " +"with caution." msgstr "" -"프라임 타워를 활성화하면 노즐 직경과 필라멘트 직경이 다르면 제대로 작동하지 " -"않을 수 있습니다. 매우 실험적인 기능이므로 주의해서 사용하시기 바랍니다." +"프라임 타워를 활성화하면 노즐 직경과 필라멘트 직경이 다르면 제대로 작동하지 않" +"을 수 있습니다. 매우 실험적인 기능이므로 주의해서 사용하시기 바랍니다." msgid "" "The Wipe Tower is currently only supported with the relative extruder " @@ -9402,25 +9411,28 @@ msgid "" "The prime tower is not supported when adaptive layer height is on. It " "requires that all objects have the same layer height." msgstr "" -"적응형 레이어 높이가 켜져 있으면 프라임 타워가 지원되지 않습니다. 모든 객체" -"의 레이어 높이가 동일해야 합니다." +"적응형 레이어 높이가 켜져 있으면 프라임 타워가 지원되지 않습니다. 모든 객체의 " +"레이어 높이가 동일해야 합니다." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "프라임 타워는 \"서포트 간격\"이 레이어 높이의 배수여야 합니다" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "프라임 타워는 모든 객체의 레이어 높이가 동일해야 합니다" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "프라임 타워는 모든 객체가 동일한 수의 라프트 레이어 위에 출력되어야 합니다" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" +"프라임 타워는 여러 오브젝트가 동일한 support_top_z_distance로 출력된 경우에만 " +"지원됩니다" msgid "" "The prime tower requires that all objects are sliced with the same layer " @@ -9429,13 +9441,12 @@ msgstr "프라임 타워는 모든 객체가 동일한 레이어 높이로 슬 msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" -msgstr "" -"프라임 타워는 모든 객체의 가변 레이어 높이가 동일한 경우에만 지원됩니다" +"layer height." +msgstr "프라임 타워는 모든 객체의 가변 레이어 높이가 동일한 경우에만 지원됩니다" msgid "" "One or more object were assigned an extruder that the printer does not have." -msgstr "" +msgstr "하나 이상의 객체에 프린터에 없는 압출기가 할당되었습니다." msgid "Too small line width" msgstr "선 너비가 너무 작습니다" @@ -9444,11 +9455,13 @@ msgid "Too large line width" msgstr "선 너비가 너무 큽니다" msgid "" -"Printing with multiple extruders of differing nozzle diameters. If support " -"is to be printed with the current filament (support_filament == 0 or " -"support_interface_filament == 0), all nozzles have to be of the same " -"diameter." +"Printing with multiple extruders of differing nozzle diameters. If support is " +"to be printed with the current filament (support_filament == 0 or " +"support_interface_filament == 0), all nozzles have to be of the same diameter." msgstr "" +"노즐 직경이 다른 여러 개의 압출기로 출력. 현재 필라멘트를 사용하여 서포트를 출" +"하려면(support_filament == 0 또는 support_interface_ilament == 0) 모든 노즐의 " +"직경이 같아야 합니다." msgid "" "The prime tower requires that support has the same layer height with object." @@ -9458,7 +9471,7 @@ msgid "" "Organic support tree tip diameter must not be smaller than support material " "extrusion width." msgstr "" -"유기체 서포트 나무 끝 직경은 서포트 재료 압출 너비보다 작아서는 안 됩니다." +"유기체 서포트 트리 끝 직경은 서포트 재료 압출 너비보다 작아서는 안 됩니다." msgid "" "Organic support branch diameter must not be smaller than 2x support material " @@ -9469,7 +9482,7 @@ msgstr "" msgid "" "Organic support branch diameter must not be smaller than support tree tip " "diameter." -msgstr "유기체 서포트 가지 직경은 서포트 나무 끝 직경보다 작을 수 없습니다." +msgstr "유기체 서포트 가지 직경은 서포트 트리 끝 직경보다 작을 수 없습니다." msgid "" "Support enforcers are used but support is not enabled. Please enable support." @@ -9477,12 +9490,12 @@ msgstr "" "서포트 강제기가 사용되지만 서포트가 활성화되지 않습니다. 서포트를 활성화하세" "요." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "레이어 높이는 노즐 직경을 초과할 수 없습니다" msgid "" -"Relative extruder addressing requires resetting the extruder position at " -"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"Relative extruder addressing requires resetting the extruder position at each " +"layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " "layer_gcode." msgstr "" "상대 압출 모드에서는 부동 소수점 정확도를 위해 각 레이어에서 압출기 위치를 재" @@ -9517,8 +9530,8 @@ msgid "" "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" +"저크 설정이 프린터의 최대 저크(machine_max_jerk_x/machine_max_jerk_y)를 초과합" +"니다.\n" "Orca는 저크 속도를 자동으로 제한하여 프린터 성능을 초과하지 않도록 합니다.\n" "더 빠른 속도를 얻으려면 프린터 구성에서 최대 저크 설정을 조정할 수 있습니다." @@ -9527,8 +9540,8 @@ msgid "" "(machine_max_acceleration_extruding).\n" "Orca will automatically cap the acceleration speed to ensure it doesn't " "surpass the printer's capabilities.\n" -"You can adjust the machine_max_acceleration_extruding value in your " -"printer's configuration to get higher speeds." +"You can adjust the machine_max_acceleration_extruding value in your printer's " +"configuration to get higher speeds." msgstr "" "가속 설정이 프린터의 최대 가속(machine_max_acceleration_extruding)을 초과합니" "다.\n" @@ -9546,8 +9559,8 @@ msgid "" msgstr "" "이동 가속도 설정이 프린터의 최대 이동 가속도(machine_max_acceleration_travel)" "를 초과합니다.\n" -"Orca는 이동 가속 속도를 자동으로 제한하여 프린터의 성능을 초과하지 않도록 합" -"니다.\n" +"Orca는 이동 가속 속도를 자동으로 제한하여 프린터의 성능을 초과하지 않도록 합니" +"다.\n" "더 빠른 속도를 얻으려면 프린터 구성에서 machine_max_acceleration_travel 값을 " "조정할 수 있습니다." @@ -9555,8 +9568,8 @@ msgid "" "Filament shrinkage will not be used because filament shrinkage for the used " "filaments differs significantly." msgstr "" -"사용된 필라멘트의 필라멘트 수축이 크게 다르기 때문에 필라멘트 수축은 사용되" -"지 않습니다." +"사용된 필라멘트의 필라멘트 수축이 크게 다르기 때문에 필라멘트 수축은 사용되지 " +"않습니다." msgid "Generating skirt & brim" msgstr "스커트 & 브림 생성 중" @@ -9584,8 +9597,8 @@ msgid "" "left corner to cut filament during filament change. The area is expressed as " "polygon by points in following format: \"XxY, XxY, ...\"" msgstr "" -"XY 평면에서 출력할 수 없는 영역입니다. 예를 들어, X1 시리즈 프린터는 필라멘" -"트 교체 중에 필라멘트를 절단하기 위해 전면 왼쪽 모서리를 사용합니다. 영역은 " +"XY 평면에서 출력할 수 없는 영역입니다. 예를 들어, X1 시리즈 프린터는 필라멘트 " +"교체 중에 필라멘트를 절단하기 위해 전면 왼쪽 모서리를 사용합니다. 영역은 " "\"XxY, XxY...\" 형식의 점으로 다각형으로 표시됩니다" msgid "Bed custom texture" @@ -9598,8 +9611,8 @@ msgid "Elephant foot compensation" msgstr "코끼리 발 보정" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "코끼리 발 효과를 보정하기 위해 빌드 플레이트에 닿는 첫 레이어를 축소합니다" @@ -9621,7 +9634,7 @@ msgstr "레이어" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "각 레이어에 대한 슬라이스 높이입니다. 레이어 높이가 작다는 것은 더 정확하고 " "더 많은 출력 시간을 의미합니다" @@ -9629,13 +9642,13 @@ msgstr "" msgid "Printable height" msgstr "출력 가능 높이" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "프린터 기계장치에 의해 제한되는 출력 가능한 최대 높이" msgid "Preferred orientation" msgstr "선호하는 방향" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "최초 임포트 시 Z축에서 자동으로 스톨 방향 지정" msgid "Printer preset names" @@ -9644,7 +9657,7 @@ msgstr "프린터 사전 설정 이름" msgid "Use 3rd-party print host" msgstr "타사 출력 호스트 사용" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "타사 프린트 호스트를 통해 뱀부랩의 프린터 제어 허용" msgid "Hostname, IP or URL" @@ -9658,16 +9671,16 @@ msgid "" "username:password@your-octopi-address/" msgstr "" "Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 " -"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. " -"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://" -"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력" -"하여 액세스할 수 있습니다" +"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. 기" +"본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:password@your-" +"octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세스할 수 있습니" +"다" msgid "Device UI" msgstr "장치 UI" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Print_host와 동일하지 않은 경우 장치 사용자 인터페이스의 URL을 지정하세요" @@ -9681,7 +9694,7 @@ msgstr "" "Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 " "인증에 필요한 API 키 또는 비밀번호가 포함되어야 합니다." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "프린터 이름" msgid "HTTPS CA File" @@ -9689,8 +9702,8 @@ msgstr "HTTPS CA 파일" msgid "" "Custom CA certificate file can be specified for HTTPS OctoPrint connections, " -"in crt/pem format. If left blank, the default OS CA certificate repository " -"is used." +"in crt/pem format. If left blank, the default OS CA certificate repository is " +"used." msgstr "" "사용자 정의 CA 인증서 파일은 crt/pem 형식의 HTTPS OctoPrint 연결에 대해 지정" "할 수 있습니다. 비워 두면 기본 OS CA 인증서 저장소가 사용됩니다." @@ -9712,7 +9725,7 @@ msgstr "" "배포 지점이 없거나 오프라인인 경우 HTTPS 인증서 해지 검사를 무시합니다. 연결" "이 실패할 경우 자체 서명된 인증서에 대해 이 옵션을 사용할 수 있습니다." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "물리적 프린터 관련 사전 설정 이름" msgid "Authorization Type" @@ -9724,24 +9737,26 @@ msgstr "API 키" msgid "HTTP digest" msgstr "HTTP 다이제스트" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "벽 가로지름 방지" -msgid "Detour and avoid to travel across wall which may cause blob on surface" -msgstr "벽을 가로질러 이동하지 않고 우회하여 표면에 방울 발생을 방지합니다" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." +msgstr "" +"벽을 가로질러 이동하지 않고 우회하여 표면에 방울 발생을 방지합니다" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "벽 가로지름 방지 - 최대 우회 길이" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" -"벽 가로지름 방지를 위한 최대 우회 거리. 우회 거리가 이 값보다 크면 우회하지 " -"않습니다. 우회 길이는 절대값 또는 직접 이동 경로의 백분율(예: 50%)로 지정할 " -"수 있습니다. 값 0으로 비활성화할 수 있습니다" +"벽 가로지름 방지를 위한 최대 우회 거리. 우회 거리가 이 값보다 크면 우회하지 않" +"습니다. 우회 길이는 절대값 또는 직접 이동 경로의 백분율(예: 50%)로 지정할 수 " +"있습니다. 값 0으로 비활성화할 수 있습니다" msgid "mm or %" msgstr "mm 또는 %" @@ -9750,42 +9765,42 @@ msgid "Other layers" msgstr "다른 레이어" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" -"초기 레이어를 제외한 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력" -"을 지원하지 않음을 의미합니다" +"초기 레이어를 제외한 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 " +"지원하지 않음을 의미합니다." msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "초기 레이어를 제외한 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 " -"플레이트에서 출력를 지원하지 않음을 의미합니다" +"플레이트에서 출력를 지원하지 않음을 의미합니다." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "초기 레이어를 제외한 레이어의 베드 온도. 값 0은 필라멘트가 엔지니어링 플레이" -"트 출력을 지원하지 않음을 의미합니다" +"트 출력을 지원하지 않음을 의미합니다." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "초기 레이어를 제외한 레이어의 베드 온도. 값 0은 필라멘트가 고온 플레이트 출력" -"을 지원하지 않음을 의미합니다" +"을 지원하지 않음을 의미합니다." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "초기 레이어를 제외한 레이어의 베드 온도. 값 0은 필라멘트가 텍스처 PEI 플레이" -"트 출력을 지원하지 않음을 의미합니다" +"트 출력을 지원하지 않음을 의미합니다." msgid "Initial layer" msgstr "초기 레이어" @@ -9794,62 +9809,56 @@ msgid "Initial layer bed temperature" msgstr "초기 레이어 베드 온도" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" -"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 쿨 플레이트(슈퍼택)에 출력" +"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 쿨 플레이트(슈퍼택)에 출력할 " +"수 없음을 의미합니다." + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." +msgstr "" +"초기 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 지원하지 않음을 " +"의미합니다." + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." +msgstr "" +"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 출력" "할 수 없음을 의미합니다." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" -"초기 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 지원하지 않음" -"을 의미합니다" +"초기 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 지원하지 않음을 " +"의미합니다." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" -msgstr "" -"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 출력" -"할 수 없음을 의미합니다" - -msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" -msgstr "" -"초기 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 지원하지 않음" -"을 의미합니다" - -msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 고온 플레이트 출력을 지원하" -"지 않음을 의미합니다" +"지 않음을 의미합니다." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "초기 레이어의 베드 온도. 값 0은 필라멘트가 텍스처 PEI 플레이트 출력을 지원하" -"지 않음을 의미합니다" +"지 않음을 의미합니다." -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "프린터가 지원하는 베드 유형" msgid "Smooth Cool Plate" msgstr "부드러운 쿨 플레이트" -msgid "Engineering Plate" -msgstr "엔지니어링 플레이트" - msgid "Smooth High Temp Plate" msgstr "부드러운 고온 플레이트" -msgid "Textured Cool Plate" -msgstr "텍스처 쿨 플레이트" - msgid "First layer print sequence" msgstr "첫 레이어 출력 순서" @@ -9862,8 +9871,8 @@ msgstr "다른 레이어 수 출력 순서" msgid "Other layers filament sequence" msgstr "다른 층 필라멘트 순서" -msgid "This G-code is inserted at every layer change before lifting z" -msgstr "이 G코드는 Z좌표를 올리기 전 모든 레이어 변경에 삽입됩니다" +msgid "This G-code is inserted at every layer change before the Z lift." +msgstr "이 Gcode는 Z좌표를 올리기 전 모든 레이어 변경에 삽입됩니다" msgid "Bottom shell layers" msgstr "하단 쉘 레이어" @@ -9871,7 +9880,7 @@ msgstr "하단 쉘 레이어" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "하단 표면을 포함한 하단 쉘의 꽉찬 레이어 수입니다. 이 값으로 계산한 두께가 하" "단 쉘 두께보다 얇으면 하단 쉘 레이어가 증가합니다" @@ -9884,7 +9893,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "하단 쉘 레이어로 계산된 두께가 이 값보다 얇은 경우 슬라이싱할 때 하단 꽉찬 레" "이어의 수가 증가합니다. 이렇게 하면 레이어 높이가 작을 때 쉘이 너무 얇아지는 " @@ -9895,31 +9904,30 @@ msgid "Apply gap fill" msgstr "간격 채우기 적용" msgid "" -"Enables gap fill for the selected solid surfaces. The minimum gap length " -"that will be filled can be controlled from the filter out tiny gaps option " -"below.\n" +"Enables gap fill for the selected solid surfaces. The minimum gap length that " +"will be filled can be controlled from the filter out tiny gaps option below.\n" "\n" "Options:\n" "1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces " "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "선택한 솔리드 서페이스에 갭 채우기를 활성화합니다. 채울 최소 간격 길이는 아래" "의 작은 간격 필터링 옵션에서 제어할 수 있습니다.\n" @@ -9928,9 +9936,9 @@ msgstr "" "1. 모든곳: 최대 강도를 위해 상단, 하단 및 내부 솔리드 표면에 갭 채우기를 적용" "합니다\n" "2. 상단 및 하단 표면: 상단 및 하단 표면에만 갭 채우기를 적용하여 프린트 속도 " -"균형을 맞추고, 솔리드 인필의 돌출 가능성을 줄이며, 상단 및 하단 표면에 핀홀 " -"틈이 없도록 합니다\n" -"3. 비활성: 모든 솔리드 인필 영역에 대해 갭 채우기를 비활성화합니다.\n" +"균형을 맞추고, 솔리드 인필의 돌출 가능성을 줄이며, 상단 및 하단 표면에 핀홀 틈" +"이 없도록 합니다\n" +"3. 미사용: 모든 솔리드 인필 영역에 대해 갭 채우기를 사용하지않습니다.\n" "\n" "기존 경계 생성기를 사용하는 경우 경계 사이에 전체 너비 선이 맞지 않는 경우 경" "계 사이에 갭 채우기가 생성될 수도 있습니다. 해당 경계선 간격 채우기는 이 설정" @@ -9939,10 +9947,10 @@ msgstr "" "기존 경계선 생성기를 포함한 모든 간격 채우기를 제거하려면 필터에서 작은 간격 " "값을 999999와 같이 큰 숫자로 설정하세요.\n" "\n" -"그러나 경계선 사이의 간격 채우기는 모델의 강도에 영향을 미치므로 권장되지 않" -"습니다. 경계선 사이에 과도한 갭 채우기가 생성되는 모델의 경우 아라크네 벽 생" -"성기로 전환하고 이 옵션을 사용하여 미려한 상단 및 하단 표면 갭 채우기 생성 여" -"부를 제어하는 것이 더 나은 옵션이 될 수 있습니다" +"그러나 경계선 사이의 간격 채우기는 모델의 강도에 영향을 미치므로 권장되지 않습" +"니다. 경계선 사이에 과도한 갭 채우기가 생성되는 모델의 경우 아라크네 벽 생성기" +"로 전환하고 이 옵션을 사용하여 미려한 상단 및 하단 표면 갭 채우기 생성 여부를 " +"제어하는 것이 더 나은 옵션이 될 수 있습니다" msgid "Everywhere" msgstr "모든곳" @@ -9951,7 +9959,7 @@ msgid "Top and bottom surfaces" msgstr "상단 및 하단 표면" msgid "Nowhere" -msgstr "아무데도" +msgstr "미사용" msgid "Force cooling for overhangs and bridges" msgstr "오버행 및 브릿지에 대한 강제 냉각" @@ -9962,9 +9970,9 @@ msgid "" "speed specifically for these features can improve overall print quality and " "reduce warping." msgstr "" -"이 옵션을 활성화하면 오버행, 내부 및 외부 브릿지에 대한 부품 냉각 팬 속도를 " -"조정할 수 있습니다. 이러한 기능에 맞게 팬 속도를 설정하면 전반적인 출력 품질" -"을 개선하고 뒤틀림을 줄일 수 있습니다." +"이 옵션을 활성화하면 오버행, 내부 및 외부 브릿지에 대한 부품 냉각 팬 속도를 조" +"정할 수 있습니다. 이러한 기능에 맞게 팬 속도를 설정하면 전반적인 출력 품질을 " +"개선하고 뒤틀림을 줄일 수 있습니다." msgid "Overhangs and external bridges fan speed" msgstr "오버행 및 외부 브릿지 팬 속도" @@ -9980,14 +9988,14 @@ msgid "" "speed threshold set above. It is also adjusted upwards up to the maximum fan " "speed threshold when the minimum layer time threshold is not met." msgstr "" -"오버행 임계값이 위의 '오버행 냉각 임계값' 파라미터에 설정된 값을 초과하는 브" -"릿지 또는 오버행 벽을 출력할 때 이 부품 냉각 팬 속도를 사용합니다. 오버행 및 " -"브릿지에 대한 냉각을 강화하면 이러한 기능의 전반적인 출력 품질이 향상될 수 있" -"습니다.\n" +"오버행 임계값이 위의 '오버행 냉각 임계값' 파라미터에 설정된 값을 초과하는 브릿" +"지 또는 오버행 벽을 출력할 때 이 부품 냉각 팬 속도를 사용합니다. 오버행 및 브" +"릿지에 대한 냉각을 강화하면 이러한 기능의 전반적인 출력 품질이 향상될 수 있습" +"니다.\n" "\n" "이 팬 속도는 위에 설정된 최소 팬 속도 임계값에 의해 하단에 고정된다는 점에 유" -"의하세요. 또한 최소 레이어 시간 임계값이 충족되지 않으면 최대 팬 속도 임계값" -"까지 상향 조정됩니다." +"의하세요. 또한 최소 레이어 시간 임계값이 충족되지 않으면 최대 팬 속도 임계값까" +"지 상향 조정됩니다." msgid "Overhang cooling activation threshold" msgstr "오버행 냉각 활성화 임계값" @@ -10000,10 +10008,10 @@ msgid "" "by the layer beneath it. Setting this value to 0% forces the cooling fan to " "run for all outer walls, regardless of the overhang degree." msgstr "" -"오버행가 이 지정된 임계값을 초과하면 아래에 설정된 '오버행 팬 속도'로 냉각 팬" -"이 강제로 작동합니다. 이 임계값은 백분율로 표시되며, 각 선 너비에서 그 아래 " -"레이어가 지원하지 않는 부분을 나타냅니다. 이 값을 0%로 설정하면 돌출 정도에 " -"관계없이 모든 외벽에 대해 냉각 팬이 강제로 작동합니다." +"오버행이 지정된 임계값을 초과하면 아래에 설정된 '오버행 팬 속도'로 냉각 팬이 " +"강제로 작동합니다. 이 임계값은 백분율로 표시되며, 각 선 너비에서 그 아래 레이" +"어가 지원하지 않는 부분을 나타냅니다. 이 값을 0%로 설정하면 돌출 정도에 관계없" +"이 모든 외벽에 대해 냉각 팬이 강제로 작동합니다." msgid "External bridge infill direction" msgstr "외부 브릿지 채우기 방향" @@ -10015,28 +10023,28 @@ msgid "" "external bridges. Use 180°for zero angle." msgstr "" "브릿지 출력 각도 재정의. 0°으로 두면 브릿지 출력 각도가 자동으로 계산됩니다. " -"그렇지 않으면 제공된 각도가 외부 브릿지 출력에 사용됩니다. 0도에는 180°를 사" -"용합니다." +"그렇지 않으면 제공된 각도가 외부 브릿지 출력에 사용됩니다. 0도에는 180°를 사용" +"합니다." msgid "Internal bridge infill direction" msgstr "내부 브릿지 채우기 방향" msgid "" -"Internal bridging angle override. If left to zero, the bridging angle will " -"be calculated automatically. Otherwise the provided angle will be used for " +"Internal bridging angle override. If left to zero, the bridging angle will be " +"calculated automatically. Otherwise the provided angle will be used for " "internal bridges. Use 180°for zero angle.\n" "\n" "It is recommended to leave it at 0 unless there is a specific model need not " "to." msgstr "" -"내부 브리징 각도 오버라이드. 0으로 두면 브리징 각도가 자동으로 계산됩니다. 그" +"내부 브릿지 각도 오버라이드. 0으로 두면 브릿지 각도가 자동으로 계산됩니다. 그" "렇지 않으면 제공된 각도가 내부 브릿지에 사용됩니다. 0 각도는 180°를 사용합니" "다.\n" "\n" "특정 모델이 필요하지 않는 한 0으로 두는 것이 좋습니다." msgid "External bridge density" -msgstr "외부 브지 밀도" +msgstr "외부 브릿지 밀도" msgid "" "Controls the density (spacing) of external bridge lines. 100% means solid " @@ -10059,9 +10067,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10071,8 +10079,8 @@ msgstr "" "다. 기본값은 100%입니다.\n" "\n" " 내부 브릿지의 밀도가 낮으면 돌출된 브릿지 주변에 공기가 순환할 수 있는 공간" -"이 더 많아져 냉각 속도가 향상되므로 상단 표면 필링을 줄이고 내부 브릿지 안정" -"성을 개선하는 데 도움이 됩니다.\n" +"이 더 많아져 냉각 속도가 향상되므로 상단 표면 필링을 줄이고 내부 브릿지 안정성" +"을 개선하는 데 도움이 됩니다.\n" "\n" "이 옵션은 특히 두 번째 내부 브릿지 오버 인필 옵션과 함께 사용하면 솔리드 인필" "이 압출되기 전에 내부 브릿지 구조를 더욱 개선할 수 있습니다." @@ -10081,8 +10089,8 @@ msgid "Bridge flow ratio" msgstr "브릿지 압출량 비율" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10090,8 +10098,8 @@ msgstr "" "이 값을 약간 낮추면(예: 0.9) 브릿지의 재질 양을 줄여 처짐을 개선할 수 있습니" "다.\n" "\n" -"실제 사용되는 브릿지 압출량은 이 값에 필라멘트 압출량 비율을 곱하여 계산되" -"며, 설정된 경우 객체의 압출량 비율을 곱합니다." +"실제 사용되는 브릿지 압출량은 이 값에 필라멘트 압출량 비율을 곱하여 계산되며, " +"설정된 경우 객체의 압출량 비율을 곱합니다." msgid "Internal bridge flow ratio" msgstr "내부 브릿지 압출량 비율" @@ -10102,8 +10110,8 @@ msgid "" "0.9) to improve surface quality over sparse infill.\n" "\n" "The actual internal bridge flow used is calculated by multiplying this value " -"with the bridge flow ratio, the filament flow ratio, and if set, the " -"object's flow ratio." +"with the bridge flow ratio, the filament flow ratio, and if set, the object's " +"flow ratio." msgstr "" "이 값은 내부 브릿지 레이어의 두께를 결정합니다. 이 레이어는 스파스 인필 위에 " "있는 첫 번째 레이어입니다. 이 값을 약간 낮추면(예: 0.9) 스파스 인필에 대한 표" @@ -10117,10 +10125,10 @@ msgstr "상단 표면 압출량 비율" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" -"The actual top surface flow used is calculated by multiplying this value " -"with the filament flow ratio, and if set, the object's flow ratio." +"The actual top surface flow used is calculated by multiplying this value with " +"the filament flow ratio, and if set, the object's flow ratio." msgstr "" "이 요소는 상단 솔리드 인필의 재료 양에 영향을 줍니다. 표면 마감을 매끄럽게 하" "려면 이 값을 약간 낮출 수 있습니다.\n" @@ -10132,15 +10140,15 @@ msgid "Bottom surface flow ratio" msgstr "하단 표면 압출량 비율" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "이 요소는 바닥 솔리드 인필의 재료 양에 영향을 줍니다.\n" "\n" -"사용되는 실제 바닥 솔리드 인필 압출량은 이 값에 필라멘트 압출량 비율을 곱하" -"여 계산되며, 설정된 경우 객체의 압출량 비율을 곱합니다." +"사용되는 실제 바닥 솔리드 인필 압출량은 이 값에 필라멘트 압출량 비율을 곱하여 " +"계산되며, 설정된 경우 객체의 압출량 비율을 곱합니다." msgid "Precise wall" msgstr "정밀한 벽" @@ -10156,11 +10164,11 @@ msgid "Only one wall on top surfaces" msgstr "상단 표면에 단일 벽 생성" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" -"평평한 상단 표면에 하나의 벽만 사용하여 상단 표면 패턴에 더 많은 공간을 제공" -"합니다" +"평평한 상단 표면에 하나의 벽만 사용하여 상단 표면 패턴에 더 많은 공간을 제공합" +"니다" msgid "One wall threshold" msgstr "단일 벽 임계값" @@ -10178,8 +10186,8 @@ msgid "" msgstr "" "상단 표면을 출력해야 하고 부분적으로 다른 레이어로 덮여 있는 경우 너비가 이 " "값 미만인 상단 레이어에서는 고려되지 않습니다. 이는 둘레로만 덮여야 하는 표면" -"에서 '상단 둘레 하나'가 발동되지 않도록 하는 데 유용할 수 있습니다. 이 값은 " -"압출 너비의 mm 또는 % o로 설정됩니다.\n" +"에서 '상단 둘레 하나'가 발동되지 않도록 하는 데 유용할 수 있습니다. 이 값은 압" +"출 너비의 mm 또는 %로 설정됩니다.\n" "경고: 활성화된 경우, 의도치 않은 형상이 생성되는건 다음 레이어에 문자와 같은 " "일부 얇은 형상이 있기 때문입니다. 이러한 형상을 제거하려면 이 값을 0으로 설정" "하세요." @@ -10189,7 +10197,7 @@ msgstr "하단 표면에 단일 벽 생성" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "첫 레이어에 하나의 벽만 사용하여 하단 표면 패턴에 더 많은 공간을 제공합니다" @@ -10209,9 +10217,9 @@ msgid "Overhang reversal" msgstr "오버행 반전" msgid "" -"Extrude perimeters that have a part over an overhang in the reverse " -"direction on even layers. This alternating pattern can drastically improve " -"steep overhangs.\n" +"Extrude perimeters that have a part over an overhang in the reverse direction " +"on even layers. This alternating pattern can drastically improve steep " +"overhangs.\n" "\n" "This setting can also help reduce part warping due to the reduction of " "stresses in the part walls." @@ -10219,33 +10227,32 @@ msgstr "" "짝수 레이어에서 반대 방향으로 오버행 위에 부분이 있는 둘레를 돌출시킵니다. 이" "러한 교대 패턴은 가파른 오버행을 대폭 개선할 수 있습니다.\n" "\n" -"이 설정은 부품 벽의 응력 감소로 인한 부품 뒤틀림을 줄이는 데도 도움이 될 수 " -"있습니다." +"이 설정은 부품 벽의 응력 감소로 인한 부품 뒤틀림을 줄이는 데도 도움이 될 수 있" +"습니다." msgid "Reverse only internal perimeters" msgstr "내부 둘레만 반전" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " "maintaining external wall quality. This feature can be very useful for warp " "prone material, like ABS/ASA, and also for elastic filaments, like TPU and " -"Silk PLA. It can also help reduce warping on floating regions over " -"supports.\n" +"Silk PLA. It can also help reduce warping on floating regions over supports.\n" "\n" "For this setting to be the most effective, it is recommended to set the " "Reverse Threshold to 0 so that all internal walls print in alternating " "directions on even layers irrespective of their overhang degree." msgstr "" -"내부 경계에만 역방향 경계 논리를 적용합니다. \n" +"내부 경계에만 역방향 경계 논리를 적용합니다.\n" "\n" "이 설정을 사용하면 부품 응력이 이제 교대로 분산되므로 부품 응력이 크게 줄어듭" "니다. 이렇게 하면 부품 뒤틀림이 줄어들면서 외부 벽 품질도 유지됩니다. 이 기능" -"은 ABS/ASA와 같이 뒤틀리기 쉬운 소재와 TPU 및 Silk PLA와 같은 탄성 필라멘트" -"에 매우 유용할 수 있습니다. 또한 서포트 위에 떠 있는 영역의 뒤틀림을 줄이는 " -"데 도움이 될 수 있습니다.\n" +"은 ABS/ASA와 같이 뒤틀리기 쉬운 소재와 TPU 및 Silk PLA와 같은 탄성 필라멘트에 " +"매우 유용할 수 있습니다. 또한 서포트 위에 떠 있는 영역의 뒤틀림을 줄이는 데 도" +"움이 될 수 있습니다.\n" "\n" "이 설정이 가장 효과적이려면 모든 내부 벽이 돌출 정도에 관계없이 균일한 레이어" "에서 교대로 출력되도록 역방향 임계값을 0으로 설정하는 것이 좋습니다." @@ -10256,15 +10263,15 @@ msgstr "브릿지 카운터보어 구멍" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "이 옵션은 카운터보어 구멍에 대한 브릿지를 생성하여 서포트 없이 출력할 수 있도" "록 합니다. 사용 가능한 모드는 다음과 같습니다.\n" "1. 없음: 브릿지가 생성되지 않습니다.\n" -"2. 부분적으로 브릿지됨: 지원되지 않는 영역의 일부만 브릿지됩니다.\n" -"3. 희생 레이어: 전체 희생 브릿지 레이어가 생성됩니다." +"2. 부분적 브릿지: 지원되지 않는 영역의 일부만 브릿지됩니다.\n" +"3. 희생층: 전체 희생 브릿지 레이어가 생성됩니다." msgid "Partially bridged" msgstr "부분적 브릿지" @@ -10283,25 +10290,25 @@ msgid "" "Number of mm the overhang need to be for the reversal to be considered " "useful. Can be a % of the perimeter width.\n" "Value 0 enables reversal on every even layers regardless.\n" -"When Detect overhang wall is not enabled, this option is ignored and " -"reversal happens on every even layers regardless." +"When Detect overhang wall is not enabled, this option is ignored and reversal " +"happens on every even layers regardless." msgstr "" "반전이 유용한 것으로 간주되려면 오버행이 몇 mm가 되어야 합니다. 둘레 폭을 % o" "으로 설정할 수 있습니다.\n" "값이 0이면 모든 짝수 레이어에 관계없이 반전이 활성화됩니다.\n" -"돌출 벽 감지가 활성화되지 않은 경우 이 옵션은 무시되고 모든 짝수 레이어에서 " -"반전이 수행됩니다." +"돌출 벽 감지가 활성화되지 않은 경우 이 옵션은 무시되고 모든 짝수 레이어에서 반" +"전이 수행됩니다." msgid "Classic mode" msgstr "클래식 모드" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "클래식 모드를 사용하려면 이 옵션을 활성화합니다" msgid "Slow down for overhang" msgstr "오버행에서 감속" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "오버행 정도에 따라 출력 속도를 낮추려면 이 옵션을 활성화합니다" msgid "Slow down for curled perimeters" @@ -10310,16 +10317,16 @@ msgstr "구부러진 둘레에서 감속" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " -"printing overhangs on sharp corners like the front of the Benchy hull, " -"reducing curling which compounds over multiple layers.\n" +"curled upwards.For example, additional slowdown will be applied when printing " +"overhangs on sharp corners like the front of the Benchy hull, reducing " +"curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " -"perimeter curling does not happen. If printing with a high external " -"perimeter speed, this parameter may introduce slight artifacts when slowing " -"down due to the large variance in print speeds. If you notice artifacts, " -"ensure your pressure advance is tuned correctly.\n" +"perimeter curling does not happen. If printing with a high external perimeter " +"speed, this parameter may introduce slight artifacts when slowing down due to " +"the large variance in print speeds. If you notice artifacts, ensure your " +"pressure advance is tuned correctly.\n" "\n" "Note: When this option is enabled, overhang perimeters are treated like " "overhangs, meaning the overhang speed is applied even if the overhanging " @@ -10331,11 +10338,11 @@ msgstr "" "니다. 예를 들어 벤치 선체 전면과 같이 날카로운 모서리에 오버행를 출력할 때 추" "가 속도 저하가 적용되어 여러 레이어에 걸쳐 합성되는 말림을 줄입니다.\n" "\n" -" 프린터 냉각 성능이 충분히 강력하거나 출력 속도가 느려 주변 말림이 발생하지 " -"않는 한 일반적으로 이 옵션을 켜는 것이 좋습니다. 높은 외부 주변 속도로 출력하" -"는 경우 이 매개변수는 출력 속도의 큰 차이로 인해 속도가 느려질 때 약간의 아티" -"팩트가 발생할 수 있습니다. 아티팩트가 발견되면 압력 진행이 올바르게 조정되었" -"는지 확인하십시오.\n" +" 프린터 냉각 성능이 충분히 강력하거나 출력 속도가 느려 주변 말림이 발생하지 않" +"는 한 일반적으로 이 옵션을 켜는 것이 좋습니다. 높은 외부 주변 속도로 출력하는 " +"경우 이 매개변수는 출력 속도의 큰 차이로 인해 속도가 느려질 때 약간의 아티팩트" +"가 발생할 수 있습니다. 아티팩트가 발견되면 압력 진행이 올바르게 조정되었는지 " +"확인하십시오.\n" "\n" "참고: 이 옵션을 활성화하면 오버행 둘레가 오버행처럼 처리됩니다. 즉, 오버행 둘" "레가 교량의 일부인 경우에도 오버행 속도가 적용됩니다. 예를 들어, 둘레가 100% " @@ -10348,25 +10355,25 @@ msgid "External" msgstr "외부" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " "are supported by less than 13%, whether they are part of a bridge or an " "overhang." msgstr "" -"외부에서 볼 수 있는 브릿지 돌출 속도입니다. \n" +"외부에서 볼 수 있는 브릿지 돌출 속도입니다.\n" "\n" "또한, 구부러진 둘레에 대한 속도 저하가 비활성화되거나 클래식 오버행 모드가 활" -"성화된 경우 브릿지의 일부이든 오버행이든 상관없이 오버행 벽의 출력 속도는 " -"13% 미만으로 지원됩니다." +"성화된 경우 브릿지의 일부이든 오버행이든 상관없이 오버행 벽의 출력 속도는 13% " +"미만으로 지원됩니다." msgid "Internal" msgstr "내부" msgid "" -"Speed of internal bridges. If the value is expressed as a percentage, it " -"will be calculated based on the bridge_speed. Default value is 150%." +"Speed of internal bridges. If the value is expressed as a percentage, it will " +"be calculated based on the bridge_speed. Default value is 150%." msgstr "" "내부 브릿지의 속도. 값을 백분율로 표현하면 bridge_speed를 기준으로 계산됩니" "다. 기본값은 150%입니다." @@ -10374,7 +10381,7 @@ msgstr "" msgid "Brim width" msgstr "브림 너비" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "모델과 가장 바깥쪽 브림 선까지의 거리" msgid "Brim type" @@ -10395,10 +10402,10 @@ msgstr "브림-객체 간격" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" -"가장 안쪽 브림 라인과 객체 사이에 간격을 주어 쉽게 브림을 제거 할 수 있게 합" -"니다" +"가장 안쪽 브림 라인과 객체 사이에 간격을 주어 쉽게 브림을 제거 할 수 있게 합니" +"다" msgid "Brim ears" msgstr "브림 귀" @@ -10410,8 +10417,8 @@ msgid "Brim ear max angle" msgstr "브림 귀 최대 각도" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "브림 귀가 나타날 수 있는 최대 각도.\n" @@ -10424,7 +10431,7 @@ msgstr "브림 귀 감지 반경" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "날카로운 각도를 감지하기 전에 형상이 무시됩니다. 이 매개변수는 무시하는 형상" "의 최소 길이를 나타냅니다.\n" @@ -10458,10 +10465,10 @@ msgid "" "profile. If this expression evaluates to true, this profile is considered " "compatible with the active print profile." msgstr "" -"활성 출력 프로필의 구성 값을 사용하는 불리언 표현식입니다. 이 표현식이 true" -"로 평가되면 이 프로필은 활성 출력 프로필과 호환되는 것으로 간주됩니다." +"활성 출력 프로필의 구성 값을 사용하는 불리언 표현식입니다. 이 표현식이 true로 " +"평가되면 이 프로필은 활성 출력 프로필과 호환되는 것으로 간주됩니다." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "출력순서, 레이어별 또는 객체별" msgid "By layer" @@ -10473,7 +10480,7 @@ msgstr "객체별" msgid "Intra-layer order" msgstr "레이어 내 순서" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "단일 레이어 내의 출력 순서" msgid "As object list" @@ -10486,30 +10493,30 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" -"이 옵션을 활성화하여 최종 레이어 시간이 \"최대 팬 속도 임계값\" 의 \"레이어 " -"시간\" 임계값보다 짧지 않도록 출력 속도를 낮추어 레이어를 더 오랫동안 냉각할 " -"수 있습니다. 바늘 모양이나 작은 출력물의 냉각 품질을 향상 시킬 수 있습니다" +"이 옵션을 활성화하여 최종 레이어 시간이 \"최대 팬 속도 임계값\" 의 \"레이어 시" +"간\" 임계값보다 짧지 않도록 출력 속도를 낮추어 레이어를 더 오랫동안 냉각할 수 " +"있습니다. 바늘 모양이나 작은 출력물의 냉각 품질을 향상 시킬 수 있습니다" msgid "Normal printing" msgstr "일반 출력" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "초기 레이어를 제외한 모든 일반 출력 및 이동의 기본 가속" msgid "Default filament profile" msgstr "기본 필라멘트 사전설정" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "이 장치 사전설정으로 전환할 때의 기본 필라멘트 사전설정" msgid "Default process profile" msgstr "기본 프로세스 사전설정" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "이 장치 사전설정으로 전환할 때의 기본 프로세스 사전설정" msgid "Activate air filtration" @@ -10522,21 +10529,20 @@ msgid "Fan speed" msgstr "팬 속도" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" -"출력 중 배기 팬 속도. 이 속도는 필라멘트 사용자 정의 G코드의 속도를 덮어씁니" -"다" +"출력 중 배기 팬 속도. 이 속도는 필라멘트 사용자 정의 Gcode의 속도를 덮어씁니다" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "출력 완료 후 배기 팬 속도" msgid "No cooling for the first" msgstr "처음에는 냉각이 적용되지 않습니다" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "빌드 플레이트의 접착력 향상을 위해 첫 레이어부터 특정 레이어까지의 모든 냉각 " "팬을 정지합니다" @@ -10545,11 +10551,11 @@ msgid "Don't support bridges" msgstr "브릿지에서 서포트 사용안함" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "서포트를 크게 만드는 전체 브릿지 영역에 서포트를 사용하지 않습니다. 브릿지는 " -"일반적으로 매우 길지 않은 경우 서포트 없이 직접 출력할 수 있습니다" +"일반적으로 매우 길지 않은 경우 서포트 없이 직접 출력할 수 있습니다." msgid "Thick external bridges" msgstr "두꺼운 외부 브릿지" @@ -10571,43 +10577,42 @@ msgid "" "have this feature turned on. However, consider turning it off if you are " "using large nozzles." msgstr "" -"활성화되면 두꺼운 내부 브릿지가 사용됩니다. 일반적으로 다음을 권장합니다.이 " -"기능을 켜두세요. 하지만 다음과 같은 경우에는 끄는 것을 고려해 보세요.큰 노즐" -"을 사용합니다." +"활성화되면 두꺼운 내부 브릿지가 사용됩니다. 일반적으로 다음을 권장합니다.이 기" +"능을 켜두세요. 하지만 다음과 같은 경우에는 끄는 것을 고려해 보세요.큰 노즐을 " +"사용합니다." msgid "Extra bridge layers (beta)" msgstr "추가 브릿지 레이어(베타)" msgid "" -"This option enables the generation of an extra bridge layer over internal " -"and/or external bridges.\n" +"This option enables the generation of an extra bridge layer over internal and/" +"or external bridges.\n" "\n" "Extra bridge layers help improve bridge appearance and reliability, as the " -"solid infill is better supported. This is especially useful in fast " -"printers, where the bridge and solid infill speeds vary greatly. The extra " -"bridge layer results in reduced pillowing on top surfaces, as well as " -"reduced separation of the external bridge layer from its surrounding " -"perimeters.\n" +"solid infill is better supported. This is especially useful in fast printers, " +"where the bridge and solid infill speeds vary greatly. The extra bridge layer " +"results in reduced pillowing on top surfaces, as well as reduced separation " +"of the external bridge layer from its surrounding perimeters.\n" "\n" "It is generally recommended to set this to at least 'External bridge only', " "unless specific issues with the sliced model are found.\n" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10619,8 +10624,8 @@ msgstr "" "고속 프린터에서 특히 유용합니다. 브릿지 레이어가 추가되면 상단 표면의 필로우" "가 줄어들고 외부 브릿지 레이어가 주변 경계와 분리되는 현상이 줄어듭니다.\n" "\n" -"일반적으로 슬라이스 모델에 특별한 문제가 발견되지 않는 한 최소한 '외부 브릿" -"지 전용'으로 설정하는 것이 좋습니다.\n" +"일반적으로 슬라이스 모델에 특별한 문제가 발견되지 않는 한 최소한 '외부 브릿지 " +"전용'으로 설정하는 것이 좋습니다.\n" "\n" "옵션\n" "1. 비활성화 - 두 번째 브릿지 레이어를 생성하지 않습니다. 기본값이며 호환성을 " @@ -10631,11 +10636,11 @@ msgstr "" "지 레이어와 평행하게 돌출되어 브릿지 강도를 강화합니다.\n" "3. 내부 브릿지 전용 - 스파스 인필 위에 있는 내부 브릿지에 대해서만 두 번째 브" "릿지 레이어를 생성합니다. 내부 브릿지는 모델의 최상위 셸 레이어 수에 포함된다" -"는 점에 유의하세요. 두 번째 내부 브릿지 레이어는 가능한 한 첫 번째 브릿지 레" -"이어에 수직에 가깝게 돌출됩니다. 동일한 섬에 다양한 다리 각도를 가진 여러 영" -"역이 있는 경우 해당 섬의 마지막 영역이 각도 참조로 선택됩니다.\n" -"4. 모두 적용 - 내부 및 외부를 향한 브릿지 모두에 대한 두 번째 브릿지 레이어" -"를 생성합니다.\n" +"는 점에 유의하세요. 두 번째 내부 브릿지 레이어는 가능한 한 첫 번째 브릿지 레이" +"어에 수직에 가깝게 돌출됩니다. 동일한 섬에 다양한 다리 각도를 가진 여러 영역" +"이 있는 경우 해당 섬의 마지막 영역이 각도 참조로 선택됩니다.\n" +"4. 모두 적용 - 내부 및 외부를 향한 브릿지 모두에 대한 두 번째 브릿지 레이어를 " +"생성합니다.\n" msgid "Disabled" msgstr "비활성" @@ -10655,55 +10660,48 @@ msgstr "작은 내부 브릿지 필터링" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" -"이 옵션을 사용하면 심하게 기울어지거나 구부러진 모델에서 상단 표면의 필링을 " -"줄일 수 있습니다.\n" +"이 옵션을 사용하면 심하게 기울어지거나 구부러진 모델에서 상단 표면의 필링을 줄" +"일 수 있습니다.\n" "\n" "기본적으로 작은 내부 브릿지는 필터링되고 내부 솔리드 인필은 스파스 인필 위에 " -"직접 출력됩니다. 이 방법은 대부분의 경우 잘 작동하여 표면 품질을 크게 저하시" -"키지 않으면서 출력 속도를 높일 수 있습니다.\n" +"직접 출력됩니다. 이 방법은 대부분의 경우 잘 작동하여 표면 품질을 크게 저하시키" +"지 않으면서 출력 속도를 높일 수 있습니다.\n" "\n" "그러나 경사가 심하거나 곡선형 모델, 특히 너무 낮은 스파스 인필 밀도를 사용하" "는 경우 지원되지 않는 솔리드 인필이 말려서 필로우가 발생할 수 있습니다.\n" "\n" -"필터링을 제한하거나 필터링을 사용하지 않도록 설정하면 약간 지원되지 않는 내" -"부 솔리드 인필 위에 내부 브릿지 레이어가 출력됩니다. 아래 옵션은 필터링의 민" -"감도, 즉 내부 브릿지가 생성되는 위치를 제어합니다.\n" +"필터링을 제한하거나 필터링을 사용하지 않도록 설정하면 약간 지원되지 않는 내부 " +"솔리드 인필 위에 내부 브릿지 레이어가 출력됩니다. 아래 옵션은 필터링의 민감" +"도, 즉 내부 브릿지가 생성되는 위치를 제어합니다.\n" "\n" -"1. 필터 - 이 옵션을 활성화합니다. 기본 동작이며 대부분의 경우 잘 작동합니" -"다.\n" +"1. 필터 - 이 옵션을 활성화합니다. 기본 동작이며 대부분의 경우 잘 작동합니다.\n" "\n" -"2. 제한된 필터링 - 불필요한 브릿지를 피하면서 심하게 기울어진 표면에 내부 브" -"릿지를 만듭니다. 이 옵션은 대부분의 어려운 모델에 적합합니다.\n" +"2. 제한된 필터링 - 불필요한 브릿지를 피하면서 심하게 기울어진 표면에 내부 브릿" +"지를 만듭니다. 이 옵션은 대부분의 어려운 모델에 적합합니다.\n" "\n" -"3. 필터링 없음 - 모든 잠재적인 내부 오버행에 내부 브릿지를 생성합니다. 이 옵" -"션은 경사가 심한 윗면 모델에 유용하지만, 대부분의 경우 불필요한 브릿지가 너" -"무 많이 생성됩니다." +"3. 필터링 없음 - 모든 잠재적인 내부 오버행에 내부 브릿지를 생성합니다. 이 옵션" +"은 경사가 심한 윗면 모델에 유용하지만, 대부분의 경우 불필요한 브릿지가 너무 많" +"이 생성됩니다." msgid "Filter" msgstr "필터" @@ -10722,26 +10720,26 @@ msgid "" "bridges to be supported, and set it to a very large value if you don't want " "any bridges to be supported." msgstr "" -"서포트가 필요하지 않은 브릿지의 최대 길이. 모든 브릿지에 서포트를 생성하려면 " -"0으로 설정하고 브릿지에 서포트를 생성하지 않으려면 매우 큰 값으로 설정합니다." +"서포트가 필요하지 않은 브릿지의 최대 길이. 모든 브릿지에 서포트를 생성하려면 0" +"으로 설정하고 브릿지에 서포트를 생성하지 않으려면 매우 큰 값으로 설정합니다." msgid "End G-code" msgstr "종료 Gcode" -msgid "End G-code when finish the whole printing" -msgstr "전체 출력이 끝날때의 종료 Gcode" +msgid "End G-code when finishing the entire print." +msgstr "출력이 종료될 때의 Gcode" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "객체 사이의 Gcode" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" -"객체 사이에 G코드를 삽입하세요. 이 매개변수는 객체별 출력을 사용할 때만 적용" -"됩니다" +"객체 사이에 Gcode를 삽입하세요. 이 매개변수는 객체별 출력을 사용할 때만 적용됩" +"니다" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "이 필라멘트의 출력이 끝날때의 종료 Gcode" msgid "Ensure vertical shell thickness" @@ -10757,11 +10755,11 @@ msgid "" "All: Add solid infill for all suitable sloping surfaces\n" "Default value is All." msgstr "" -"경사면 근처에 견고한 충전재를 추가하여 수직 쉘 두께(상단 + 하단 솔리드 레이" -"어)를 보장합니다.\n" +"경사면 근처에 견고한 충전재를 추가하여 수직 쉘 두께(상단 + 하단 솔리드 레이어)" +"를 보장합니다.\n" "없음: 솔리드 채우기가 어디에도 추가되지 않습니다. 주의: 모델에 경사면이 있는 " "경우 이 옵션을 주의해서 사용하십시오.\n" -"중요 사항: 벽에 견고한 채우기를 추가하지 마십시오.\n" +"중요한 것만: 벽에 견고한 채우기를 추가하지 마십시오.\n" "보통: 경사가 심한 표면에만 견고한 채우기를 추가합니다.\n" "모두: 적합한 모든 경사면에 대해 솔리드 채우기를 추가합니다.\n" "기본값은 모두입니다." @@ -10775,7 +10773,7 @@ msgstr "보통" msgid "Top surface pattern" msgstr "상단 표면 패턴" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "상단 표면 채우기의 선 패턴" msgid "Concentric" @@ -10805,7 +10803,7 @@ msgstr "팔각 나선형" msgid "Bottom surface pattern" msgstr "하단 표면 패턴" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "브릿지 채우기가 아닌 바닥면 채우기의 선 패턴" msgid "Internal solid infill pattern" @@ -10815,8 +10813,8 @@ msgid "" "Line pattern of internal solid infill. if the detect narrow internal solid " "infill be enabled, the concentric pattern will be used for the small area." msgstr "" -"꽉찬 내부 채우기의 선 패턴. 좁은 꽉찬 내부 채우기 감지가 활성화된 경우 작은 " -"영역에 동심원 패턴이 사용됩니다." +"꽉찬 내부 채우기의 선 패턴. 좁은 꽉찬 내부 채우기 감지가 활성화된 경우 작은 영" +"역에 동심원 패턴이 사용됩니다." msgid "" "Line width of outer wall. If expressed as a %, it will be computed over the " @@ -10827,8 +10825,8 @@ msgid "" "Speed of outer wall which is outermost and visible. It's used to be slower " "than inner wall speed to get better quality." msgstr "" -"가장 바깥쪽의 눈에 보이는 외벽의 속도. 더 나은 품질을 얻기 위해 내벽 속도보" -"다 느리게 사용됩니다." +"가장 바깥쪽의 눈에 보이는 외벽의 속도. 더 나은 품질을 얻기 위해 내벽 속도보다 " +"느리게 사용됩니다." msgid "Small perimeters" msgstr "작은 둘레" @@ -10839,25 +10837,25 @@ msgid "" "example: 80%) it will be calculated on the outer wall speed setting above. " "Set to zero for auto." msgstr "" -"이 별도의 설정은 반지름이 가진 둘레의 속도에 영향을 줍니다 <= 작은 둘레 임계" -"값(small_perimeter_threshold) 이하인 둘레(일반적으로 구멍). 백분율로 설정하면" +"이 별도의 설정은 반지름이 가진 둘레의 속도에 영향을 줍니다 <= 작은 둘레 임계값" +"(small_perimeter_threshold) 이하인 둘레(일반적으로 구멍). 백분율로 설정하면" "(예: 80%) 외벽 속도 설정에서 계산됩니다. 자동의 경우 0으로 설정합니다." msgid "Small perimeters threshold" msgstr "작은 둘레 임계값" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "작은 둘레 길이에 대한 임계값을 설정합니다. 기본 임계값은 0mm입니다" msgid "Walls printing order" msgstr "벽 출력 순서" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" -"Use Inner/Outer for best overhangs. This is because the overhanging walls " -"can adhere to a neighbouring perimeter while printing. However, this option " +"Use Inner/Outer for best overhangs. This is because the overhanging walls can " +"adhere to a neighbouring perimeter while printing. However, this option " "results in slightly reduced surface quality as the external perimeter is " "deformed by being squashed to the internal perimeter.\n" "\n" @@ -10867,8 +10865,8 @@ msgid "" "perimeter to print the external wall against. This option requires a minimum " "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " -"internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"internal perimeter. This option is recommended against the Outer/Inner option " +"in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10877,22 +10875,22 @@ msgid "" "\n" " " msgstr "" -"내부(내벽) 및 외부(외벽)의 출력 순서를 지정합니다.\n" +"내벽 및 외벽의 출력 순서를 지정합니다.\n" "\n" -"오버행를 가장 잘 출력하려면 내부/외부를 사용합니다. 이는 돌출된 벽이 출력하" -"는 동안 인접한 경계에 부착될 수 있기 때문입니다. 그러나 이 옵션을 사용하면 외" -"부 경계가 내부 경계에 눌려 변형되므로 표면 품질이 약간 저하됩니다.\n" +"오버행을 가장 잘 출력하려면 내부/외부를 사용합니다. 이는 돌출된 벽이 출력하는 " +"동안 인접한 경계에 부착될 수 있기 때문입니다. 그러나 이 옵션을 사용하면 외부 " +"경계가 내부 경계에 눌려 변형되므로 표면 품질이 약간 저하됩니다.\n" "\n" "내부/외부/내부를 사용하면 외부 벽이 내부 경계에서 방해받지 않고 출력되므로 최" -"상의 외부 표면 마감과 치수 정확도를 얻을 수 있습니다. 그러나 외부 벽을 출력" -"할 내부 경계가 없으므로 오버행 성능이 저하됩니다. 이 옵션은 세 번째 경계부터 " -"내부 벽을 먼저 출력한 다음 외부 경계, 마지막으로 첫 번째 내부 경계를 출력하므" -"로 최소 3개 이상의 벽이 있어야 효과적입니다. 이 옵션은 대부분의 경우 외부/내" -"부 옵션보다 권장됩니다.\n" +"상의 외부 표면 마감과 치수 정확도를 얻을 수 있습니다. 그러나 외부 벽을 출력할 " +"내부 경계가 없으므로 오버행 성능이 저하됩니다. 이 옵션은 세 번째 경계부터 내" +"부 벽을 먼저 출력한 다음 외부 경계, 마지막으로 첫 번째 내부 경계를 출력하므로 " +"최소 3개 이상의 벽이 있어야 효과적입니다. 이 옵션은 대부분의 경우 외부/내부 옵" +"션보다 권장됩니다.\n" "\n" "내부/외부/내부 옵션과 동일한 외벽 품질 및 치수 정확도 이점을 얻으려면 외부/내" -"부를 사용하세요. 그러나 새 레이어의 첫 번째 돌출이 보이는 표면에서 시작되므" -"로 Z 심이 덜 일관되게 나타납니다.\n" +"부를 사용하세요. 그러나 새 레이어의 첫 번째 돌출이 보이는 표면에서 시작되므로 " +"Z 심이 덜 일관되게 나타납니다.\n" "\n" " " @@ -10914,17 +10912,17 @@ msgid "" "\n" "Printing infill first may help with extreme overhangs as the walls have the " "neighbouring infill to adhere to. However, the infill will slightly push out " -"the printed walls where it is attached to them, resulting in a worse " -"external surface finish. It can also cause the infill to shine through the " -"external surfaces of the part." +"the printed walls where it is attached to them, resulting in a worse external " +"surface finish. It can also cause the infill to shine through the external " +"surfaces of the part." msgstr "" "벽/채우기 순서. 확인란을 선택 취소하면 벽이 먼저 출력되며 이는 대부분의 경우 " "가장 잘 작동합니다.\n" "\n" -"충전재를 먼저 출력하면 벽에 접착할 인접 충전재가 있으므로 오버행가 심한 경우 " +"충전재를 먼저 출력하면 벽에 접착할 인접 충전재가 있으므로 오버행이 심한 경우 " "도움이 될 수 있습니다. 그러나 충전재는 출력된 벽이 부착된 부분을 약간 밀어내" -"어 외부 표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛" -"날 수도 있습니다." +"어 외부 표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛날 " +"수도 있습니다." msgid "Wall loop direction" msgstr "벽 루프 방향" @@ -10982,48 +10980,46 @@ msgid "The height of nozzle tip." msgstr "노즐 팁의 높이." msgid "Bed mesh min" -msgstr "배드 메시 최소" +msgstr "베드 메시 최소" msgid "" "This option sets the min point for the allowed bed mesh area. Due to the " "probe's XY offset, most printers are unable to probe the entire bed. To " "ensure the probe point does not go outside the bed area, the minimum and " "maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " -"exceed these min/max points. This information can usually be obtained from " -"your printer manufacturer. The default setting is (-99999, -99999), which " -"means there are no limits, thus allowing probing across the entire bed." +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed " +"these min/max points. This information can usually be obtained from your " +"printer manufacturer. The default setting is (-99999, -99999), which means " +"there are no limits, thus allowing probing across the entire bed." msgstr "" -"이 옵션은 허용되는 배드 메시 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋" -"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트" -"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절" -"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/" -"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니" -"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 " -"(-99999, -99999)입니다. 이는 제한이 없으므로 전체 베드에 걸쳐 프로빙이 가능함" -"을 의미합니다." +"이 옵션은 허용되는 베드 메시 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋으" +"로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트가 베" +"드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절하게 " +"설정해야 합니다. OrcaSlicer는 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 " "probe's XY offset, most printers are unable to probe the entire bed. To " "ensure the probe point does not go outside the bed area, the minimum and " "maximum points of the bed mesh should be set appropriately. OrcaSlicer " -"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " -"exceed these min/max points. This information can usually be obtained from " -"your printer manufacturer. The default setting is (99999, 99999), which " -"means there are no limits, thus allowing probing across the entire bed." +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed " +"these min/max points. This information can usually be obtained from your " +"printer manufacturer. The default setting is (99999, 99999), which means " +"there are no limits, thus allowing probing across the entire bed." msgstr "" -"이 옵션은 허용되는 침대 메시 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋" -"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트" -"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절" -"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/" -"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니" -"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 " -"(99999, 99999)입니다. 이는 제한이 없으므로 전체 베드에 걸쳐 프로빙이 가능함" -"을 의미합니다." +"이 옵션은 허용되는 침대 메시 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋으" +"로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트가 베" +"드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절하게 " +"설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/adaptive_bed_mesh_max 값" +"이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니다. 이 정보는 일반적으로 " +"프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 (99999, 99999)입니다. 이" +"는 제한이 없으므로 전체 베드에 걸쳐 프로빙이 가능함을 의미합니다." msgid "Probe point distance" msgstr "프로브 포인트 거리" @@ -11039,16 +11035,16 @@ msgid "Mesh margin" msgstr "메시 공간" msgid "" -"This option determines the additional distance by which the adaptive bed " -"mesh area should be expanded in the XY directions." +"This option determines the additional distance by which the adaptive bed mesh " +"area should be expanded in the XY directions." msgstr "" -"이 옵션은 적응형 배드 메시 영역이 XY 방향으로 확장되어야 하는 추가 거리를 결" -"정합니다." +"이 옵션은 적응형 베드 메시 영역이 XY 방향으로 확장되어야 하는 추가 거리를 결정" +"합니다." msgid "Extruder Color" msgstr "압출기 색상" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "UI의 시각적 도움말로만 사용됨" msgid "Extruder offset" @@ -11058,11 +11054,11 @@ msgid "Flow ratio" msgstr "압출량 비율" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "재료는 용융 상태와 결정 상태 사이를 전환한 후 부피 변화가 있을 수 있습니다. " "이 설정은 이 필라멘트 코드의 모든 압출 압출량을 비례적으로 변경합니다. 권장 " @@ -11070,36 +11066,36 @@ msgstr "" "값을 조정하여 평평한 표면을 얻을 수 있습니다" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" "재료는 용융 상태와 결정 상태 사이를 전환한 후 부피 변화가 있을 수 있습니다. " -"이 설정은 G코드에서 이 필라멘트의 모든 압출 흐름을 비례적으로 변경합니다. 권" -"장 값 범위는 0.95에서 1.05 사이입니다. 약간의 오버플로 또는 언더플로가 있는 " -"경우 이 값을 조정하여 멋진 평면을 얻을 수 있습니다. \n" +"이 설정은 Gcode에서 이 필라멘트의 모든 압출 흐름을 비례적으로 변경합니다. 권" +"장 값 범위는 0.95에서 1.05 사이입니다. 약간의 오버플로 또는 언더플로가 있는 경" +"우 이 값을 조정하여 멋진 평면을 얻을 수 있습니다.\n" "\n" "최종 객체 흐름 비율은 이 값에 필라멘트 흐름 비율을 곱한 값입니다." msgid "Enable pressure advance" -msgstr "프레셔 어드밴스 활성화" +msgstr "PA 활성화" msgid "" "Enable pressure advance, auto calibration result will be overwritten once " "enabled." msgstr "" -"프레셔 어드밴스를 활성화합니다. 활성화되면 자동 보정 결과를 덮어씁니다." +"PA를 활성화합니다. 활성화되면 자동 보정 결과를 덮어씁니다." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" -msgstr "프레셔 어드밴스(Klipper)/리니어 어드밴스(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." +msgstr "프레셔 어드밴스(Klipper) / 리니어 어드밴스(Marlin)" msgid "Enable adaptive pressure advance (beta)" -msgstr "적응형 압력 진행 활성화(베타)" +msgstr "적응형 PA 활성화(베타)" #, no-c-format, no-boost-format msgid "" @@ -11110,36 +11106,36 @@ msgid "" "used that does not cause too much bulging on features with lower flow speed " "and accelerations while also not causing gaps on faster features.\n" "\n" -"This feature aims to address this limitation by modeling the response of " -"your printer's extrusion system depending on the volumetric flow speed and " +"This feature aims to address this limitation by modeling the response of your " +"printer's extrusion system depending on the volumetric flow speed and " "acceleration it is printing at. Internally, it generates a fitted model that " "can extrapolate the needed pressure advance for any given volumetric flow " -"speed and acceleration, which is then emitted to the printer depending on " -"the current print conditions.\n" +"speed and acceleration, which is then emitted to the printer depending on the " +"current print conditions.\n" "\n" "When enabled, the pressure advance value above is overridden. However, a " "reasonable default value above is strongly recommended to act as a fallback " "and for when tool changing.\n" "\n" msgstr "" -"출력 속도가 증가하고(노즐을 통한 압출 흐름이 증가함) 가속도가 증가함에 따라 " -"일반적으로 유효 PA 값이 감소하는 것으로 관찰되었습니다. 이는 단일 PA 값이 모" -"든 기능에 대해 항상 100% 최적인 것은 아니며 일반적으로 유속과 가속도가 낮은 " -"기능에 너무 많은 돌출을 일으키지 않고 더 빠른 기능에 간격을 유발하지 않는 절" -"충 값이 사용된다는 것을 의미합니다.\n" +"출력 속도가 증가하고(노즐을 통한 압출 흐름이 증가함) 가속도가 증가함에 따라 일" +"반적으로 유효 PA 값이 감소하는 것으로 관찰되었습니다. 이는 단일 PA 값이 모든 " +"기능에 대해 항상 100% 최적인 것은 아니며 일반적으로 유속과 가속도가 낮은 기능" +"에 너무 많은 돌출을 일으키지 않고 더 빠른 기능에 간격을 유발하지 않는 절충 값" +"이 사용된다는 것을 의미합니다.\n" "\n" "이 기능은 출력 중인 압출 흐름 속도와 가속도에 따라 프린터 압출 시스템의 반응" "을 모델링하여 이러한 제한 사항을 해결하는 것을 목표로 합니다. 내부적으로는 주" -"어진 압출 흐름 속도 및 가속도에 대해 필요한 압력 전진을 추정할 수 있는 적합 " -"모델을 생성하며, 이는 현재 출력 조건에 따라 프린터로 방출됩니다.\n" +"어진 압출 흐름 속도 및 가속도에 대해 필요한 PA를 추정할 수 있는 적합 모델을 생" +"성하며, 이는 현재 출력 조건에 따라 프린터로 방출됩니다.\n" "\n" -"활성화되면 위의 압력 전진 값이 무시됩니다. 그러나 대체 수단으로 사용하거나 도" -"구를 변경할 때 위의 합리적인 기본값을 사용하는 것이 좋습니다.\n" +"활성화되면 위의 PA 값이 무시됩니다. 그러나 대체 수단으로 사용하거나 도구를 변" +"경할 때 위의 합리적인 기본값을 사용하는 것이 좋습니다.\n" msgid "Adaptive pressure advance measurements (beta)" -msgstr "적응형 압력 사전 측정(베타)" +msgstr "적응형 PA 측정(베타)" -#, no-c-format, no-boost-format +#, fuzzy, no-c-format, no-boost-format msgid "" "Add sets of pressure advance (PA) values, the volumetric flow speeds and " "accelerations they were measured at, separated by a comma. One set of values " @@ -11155,75 +11151,75 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" -"압력 전진(PA) 값 세트, 측정된 압출 압출량 속도 및 가속도를 쉼표로 구분하여 추" -"가합니다. 한 줄에 하나의 값 세트가 있습니다. 예를 들어\n" +"PA 값 세트, 측정된 압출 압출량 속도 및 가속도를 쉼표로 구분하여 추가합니다. " +"한 줄에 하나의 값 세트가 있습니다. 예를 들어\n" "0.04,3.96,3000\n" "0.033,3.96,10000\n" "0.029,7.91,3000\n" "0.026,7.91,10000\n" "\n" "교정 방법:\n" -"1. 가속도 값당 최소 3개 속도에 대해 압력 전진 테스트를 실행합니다. 최소한 외" -"부 둘레의 속도, 내부 둘레의 속도 및 프로필의 가장 빠른 기능 출력 속도(일반적" -"으로 희박하거나 단단한 충전재)에 대해 테스트를 실행하는 것이 좋습니다. 그런 " -"다음 가장 느리고 가장 빠른 출력 가속을 위해 동일한 속도로 실행하고 Klipper 입" -"력 셰이퍼에서 제공하는 권장 최대 가속보다 빠르지 않게 실행하십시오.\n" +"1. 가속도 값당 최소 3개 속도에 대해 PA 테스트를 실행합니다. 최소한 외부 둘레" +"의 속도, 내부 둘레의 속도 및 프로필의 가장 빠른 기능 출력 속도(일반적으로 희박" +"하거나 단단한 충전재)에 대해 테스트를 실행하는 것이 좋습니다. 그런 다음 가장 " +"느리고 가장 빠른 출력 가속을 위해 동일한 속도로 실행하고 Klipper 입력 셰이퍼에" +"서 제공하는 권장 최대 가속보다 빠르지 않게 실행하십시오.\n" "2. 각 압출 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 " "드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 " "번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA " "값은 압출 압출량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르" "게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA " "값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하" -"십시오.3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필" -"라멘트 프로필을 저장하세요.\n" +"십시오.\n" +"3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필" +"라멘트 프로필을 저장하세요." msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "오버행에 대한 적응형 압력 전진 활성화(베타)" +msgstr "오버행에 대한 적응형 PA 활성화(베타)" msgid "" -"Enable adaptive PA for overhangs as well as when flow changes within the " -"same feature. This is an experimental option, as if the PA profile is not " -"set accurately, it will cause uniformity issues on the external surfaces " -"before and after overhangs.\n" +"Enable adaptive PA for overhangs as well as when flow changes within the same " +"feature. This is an experimental option, as if the PA profile is not set " +"accurately, it will cause uniformity issues on the external surfaces before " +"and after overhangs.\n" msgstr "" -"오버행뿐만 아니라 동일한 기능 내에서 흐름이 변경되는 경우 적응형 PA를 활성화" -"합니다. 이는 실험적인 옵션입니다. PA 프로파일이 정확하게 설정되지 않으면 오버" -"행 전후의 외부 표면에 균일성 문제가 발생할 수 있습니다.\n" +"오버행뿐만 아니라 동일한 기능 내에서 흐름이 변경되는 경우 적응형 PA를 활성화합" +"니다. 이는 실험적인 옵션입니다. PA 프로파일이 정확하게 설정되지 않으면 오버행 " +"전후의 외부 표면에 균일성 문제가 발생할 수 있습니다.\n" msgid "Pressure advance for bridges" -msgstr "브릿지를 위한 압력 전진" +msgstr "브릿지를 위한 PA" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " -"slight under extrusion immediately after bridges. This is caused by the " -"pressure drop in the nozzle when printing in the air and a lower PA helps " -"counteract this." +"A lower PA value when printing bridges helps reduce the appearance of slight " +"under extrusion immediately after bridges. This is caused by the pressure " +"drop in the nozzle when printing in the air and a lower PA helps counteract " +"this." msgstr "" -"브릿지의 압력 전진 값입니다. 비활성화하려면 0으로 설정합니다. \n" +"브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n" "\n" " 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나" -"는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 " -"인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다." +"는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인" +"해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다." msgid "" -"Default line width if other line widths are set to 0. If expressed as a %, " -"it will be computed over the nozzle diameter." +"Default line width if other line widths are set to 0. If expressed as a %, it " +"will be computed over the nozzle diameter." msgstr "" "다른 선 너비가 0으로 설정된 경우 기본 선 너비입니다. %로 입력 시 노즐 직경에 " "대한 비율로 계산됩니다." @@ -11232,35 +11228,32 @@ msgid "Keep fan always on" msgstr "팬 상시 가동" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "이 설정을 활성화하면 출력물 냉각 팬이 정지되지 않으며 팬을 최소 속도로 가동하" "여 시동 및 정지 빈도를 줄입니다" msgid "Don't slow down outer walls" -msgstr "외벽 감속하지 않기" +msgstr "외벽에서 감속하지 않기" msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "활성화되면 최소 레이어 시간을 충족하기 위한 외벽의 출력 속도 감속을 적용하지 " "않습니다. 이 기능은 아래의 경우에 도움이 될 수 있습니다:\n" -"\n" -"1. 유광 필라멘트로 출력할 때 일정한 광택을 유지하기 위한 경우 \n" +"1. 유광 필라멘트로 출력할 때 일정한 광택을 유지하기 위한 경우\n" "2. 외벽 출력 속도의 변화로 인한 외벽의 Z밴딩처럼 보이는 형상이 생성되는 것을 " -"방지하기 위한 경우 \n" -"3. 외벽을 VFA를 발생시키는 속도로 출력하는 것을 방지하기 위한 경우\n" -"\n" +"방지하기 위한 경우\n" +"3. 외벽을 VFA를 발생시키는 속도로 출력하는 것을 방지하기 위한 경우" msgid "Layer time" msgstr "레이어 시간" @@ -11268,7 +11261,7 @@ msgstr "레이어 시간" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "예상 시간이 이 값보다 짧은 레이어에 대해 출력물 냉각 팬이 활성화됩니다. 팬 속" "도는 레이어 출력 시간에 따라 최소 및 최대 팬 속도 사이에서 보간됩니다" @@ -11298,11 +11291,11 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "이 설정은 초당 얼마나 많은 양의 필라멘트를 녹이고 압출할 수 있는지를 나타냅니" -"다. 너무 높고 부적절한 속도 설정의 경우 출력 속도는 최대 압출 속도에 의해 제" -"한됩니다. 0이 될 수 없습니다" +"다. 너무 높고 부적절한 속도 설정의 경우 출력 속도는 최대 압출 속도에 의해 제한" +"됩니다. 0이 될 수 없습니다" msgid "mm³/s" msgstr "mm³/s" @@ -11313,11 +11306,11 @@ msgstr "필라멘트 넣기 시간" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "필라멘트를 교체할 때 새 필라멘트를 로드하는 시간입니다. 일반적으로 단일 압출" -"기 다중 재료 기계에 적용 가능합니다. 공구 교환기 또는 다중 공구 기계의 경우 " -"일반적으로 0입니다. 통계용으로만 사용됩니다" +"기 다중 재료 기계에 적용 가능합니다. 공구 교환기 또는 다중 공구 기계의 경우 일" +"반적으로 0입니다. 통계용으로만 사용됩니다" msgid "Filament unload time" msgstr "필라멘트 빼기 시간" @@ -11325,11 +11318,11 @@ msgstr "필라멘트 빼기 시간" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" -"필라멘트를 교체할 때 오래된 필라멘트를 언로드하는 시간입니다. 일반적으로 단" -"일 압출기 다중 재료 기계에 적용 가능합니다. 공구 교환기 또는 다중 공구 기계" -"의 경우 일반적으로 0입니다. 통계용으로만 사용됩니다" +"필라멘트를 교체할 때 오래된 필라멘트를 언로드하는 시간입니다. 일반적으로 단일 " +"압출기 다중 재료 기계에 적용 가능합니다. 공구 교환기 또는 다중 공구 기계의 경" +"우 일반적으로 0입니다. 통계용으로만 사용됩니다" msgid "Tool change time" msgstr "툴 체인지 시간" @@ -11337,18 +11330,18 @@ msgstr "툴 체인지 시간" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" -"툴 체인지를 전환하는 데 소요되는 시간입니다. 일반적으로 공구 교환기 또는 다" -"중 공구 기계에 적용 가능합니다. 단일 압출기 다중 재료 기계의 경우 일반적으로 " -"0입니다. 통계용으로만 사용됩니다" +"툴 체인지를 전환하는 데 소요되는 시간입니다. 일반적으로 공구 교환기 또는 다중 " +"공구 기계에 적용 가능합니다. 단일 압출기 다중 재료 기계의 경우 일반적으로 0입" +"니다. 통계용으로만 사용됩니다" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" -"필라멘트 직경은 G코드에서 압출량을 계산하는데 사용되므로 중요하며 정확해야 합" -"니다" +"필라멘트 직경은 Gcode에서 압출량을 계산하는데 사용되므로 중요하며 정확해야 합" +"니다." msgid "Pellet flow coefficient" msgstr "펠릿 압출량 계수" @@ -11414,7 +11407,7 @@ msgid "Unloading speed" msgstr "언로드 속도" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "프라임 타워에 필라멘트를 빼는 데 사용되는 속도(채워넣기 직후 빼기 초기 부분에" @@ -11428,12 +11421,12 @@ msgid "" msgstr "채워넣기 직후 필라멘트 끝을 빼는 데 사용되는 속도입니다." msgid "Delay after unloading" -msgstr "빼기 후 지연" +msgstr "언로드 후 지연" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " -"original dimensions." +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to original " +"dimensions." msgstr "" "필라멘트를 뺀 후 기다리는 시간입니다. 원래 치수로 축소되는 데 더 많은 시간이 " "필요할 수 있는 유연한 재료 사용 시 안정적으로 툴 체인지를 할 수 있게 도움이 " @@ -11459,13 +11452,13 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "냉각 튜브 중심에서 측정한 스탬핑 거리" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " -"individual cooling moves (\"stamping\"). This option configures how long " -"this movement should be before the filament is retracted again." +"If set to non-zero value, filament is moved toward the nozzle between the " +"individual cooling moves (\"stamping\"). This option configures how long this " +"movement should be before the filament is retracted again." msgstr "" "0이 아닌 값으로 설정되면 개별 냉각 이동(\"스탬핑\") 사이에 필라멘트가 노즐을 " -"향해 이동합니다. 이 옵션은 필라멘트가 다시 수축되기 전에 이 움직임이 얼마나 " -"오래 지속되어야 하는지를 구성합니다." +"향해 이동합니다. 이 옵션은 필라멘트가 다시 수축되기 전에 이 움직임이 얼마나 오" +"래 지속되어야 하는지를 구성합니다." msgid "Speed of the first cooling move" msgstr "첫 번째 냉각 이동 속도" @@ -11479,14 +11472,14 @@ msgstr "프라임 타워의 최소 청소" msgid "" "After a tool change, the exact position of the newly loaded filament inside " "the nozzle may not be known, and the filament pressure is likely not yet " -"stable. Before purging the print head into an infill or a sacrificial " -"object, Orca Slicer will always prime this amount of material into the wipe " -"tower to produce successive infill or sacrificial object extrusions reliably." +"stable. Before purging the print head into an infill or a sacrificial object, " +"Orca Slicer will always prime this amount of material into the wipe tower to " +"produce successive infill or sacrificial object extrusions reliably." msgstr "" "툴 체인지 후 노즐 내부에 새로 로드된 필라멘트의 정확한 위치를 알 수 없으며 필" "라멘트 압력이 아직 안정적이지 않을 수 있습니다. 프린트 헤드를 채우기 또는 희" -"생 객체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 프라임 타워로 프라" -"이밍하여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다." +"생 객체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 프라임 타워로 프라이" +"밍하여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다." msgid "Speed of the last cooling move" msgstr "마지막 냉각 이동 속도" @@ -11508,10 +11501,10 @@ msgid "Enable ramming for multi-tool setups" msgstr "다중 압출기 설정을 위한 채워넣기 활성화" msgid "" -"Perform ramming when using multi-tool printer (i.e. when the 'Single " -"Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " -"small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"Perform ramming when using multi-tool printer (i.e. when the 'Single Extruder " +"Multimaterial' in Printer Settings is unchecked). When checked, a small " +"amount of filament is rapidly extruded on the wipe tower just before the tool " +"change. This option is only used when the wipe tower is enabled." msgstr "" "다중 압출기 프린터를 사용할 때 채워넣기를 수행합니다(예: 프린터 설정에서 '단" "일 압출기 다중 재료'가 선택 취소된 경우). 활성화하면 툴 체인지 직전 프라임 타" @@ -11521,32 +11514,32 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "다중 압출기 채워넣기 부피" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "툴 체인지 전에 채워넣을 양 입니다." msgid "Multi-tool ramming flow" msgstr "다중 압출기 채워넣기 압출량" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "툴 체인지 전에 필라멘트를 채워넣기에 사용되는 압출량입니다." msgid "Density" msgstr "밀도" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "필라멘트 밀도. 통계 전용" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "필라멘트의 재료 유형" msgid "Soluble material" msgstr "가용성 재료" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "가용성 재료는 일반적으로 서포트 및 서포트 접점을 출력하는 데 사용됩니다" @@ -11554,7 +11547,7 @@ msgid "Support material" msgstr "서포트 재료" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "서포트 재료는 일반적으로 서포트 및 서포트 접점을 출력하는 데 사용됩니다" @@ -11563,8 +11556,8 @@ msgstr "연화 온도" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "이 온도에서는 재료가 부드러워지므로 베드 온도가 이 온도 이상일 경우 막힘을 방" "지하기 위해 전면 도어를 열거나 상단 유리를 제거하는 것이 좋습니다." @@ -11572,7 +11565,7 @@ msgstr "" msgid "Price" msgstr "가격" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "필라멘트 가격. 통계 전용" msgid "money/kg" @@ -11581,7 +11574,7 @@ msgstr "가격/kg" msgid "Vendor" msgstr "제조사" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "필라멘트 제조사" msgid "(Undefined)" @@ -11592,7 +11585,7 @@ msgstr "드문 채우기 방향" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "선의 시작 또는 주 방향을 제어하는 드문 채우기 패턴에 대한 각도" msgid "Solid infill direction" @@ -11600,8 +11593,8 @@ msgstr "꽉찬 채우기 방향" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" -msgstr "선의 시작 또는 기본 방향을 제어하는 ​​솔리드 채우기 패턴의 각도" +"of line." +msgstr "선의 시작 또는 기본 방향을 제어하는 솔리드 채우기 패턴의 각도" msgid "Rotate solid infill direction" msgstr "솔리드 채우기 방향 회전" @@ -11615,7 +11608,7 @@ msgstr "드문 채우기 밀도" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "내부 드문 채우기의 밀도, 100%는 모든 드문 채우기를 꽉찬 내부 채우기로 변경하" "고 채우기에는 패턴이 사용됩니다" @@ -11623,7 +11616,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "드문 채우기 패턴" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "드문 내부 채우기의 선 패턴" msgid "Grid" @@ -11669,8 +11662,8 @@ msgid "Lattice angle 1" msgstr "격자 각도 1" msgid "" -"The angle of the first set of 2D lattice elements in the Z direction. Zero " -"is vertical." +"The angle of the first set of 2D lattice elements in the Z direction. Zero is " +"vertical." msgstr "Z 방향의 첫 번째 2D 격자 요소 집합의 각도입니다. 0은 수직입니다." msgid "Lattice angle 2" @@ -11688,11 +11681,10 @@ msgid "" "Connect an infill line to an internal perimeter with a short segment of an " "additional perimeter. If expressed as percentage (example: 15%) it is " "calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter " -"segment shorter than infill_anchor_max is found, the infill line is " -"connected to a perimeter segment at just one side and the length of the " -"perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"close infill lines to a short perimeter segment. If no such perimeter segment " +"shorter than infill_anchor_max is found, the infill line is connected to a " +"perimeter segment at just one side and the length of the perimeter segment " +"taken is limited to this parameter, but no longer than anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -11719,42 +11711,41 @@ msgid "" "Connect an infill line to an internal perimeter with a short segment of an " "additional perimeter. If expressed as percentage (example: 15%) it is " "calculated over infill extrusion width. Orca Slicer tries to connect two " -"close infill lines to a short perimeter segment. If no such perimeter " -"segment shorter than this parameter is found, the infill line is connected " -"to a perimeter segment at just one side and the length of the perimeter " -"segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"close infill lines to a short perimeter segment. If no such perimeter segment " +"shorter than this parameter is found, the infill line is connected to a " +"perimeter segment at just one side and the length of the perimeter segment " +"taken is limited to infill_anchor, but no longer than this parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" "추가 둘레의 짧은 세그먼트를 사용하여 채우기 선을 내부 둘레에 연결합니다. 백분" -"율(예: 15%)로 표시되는 경우 채우기 돌출 너비에 대해 계산됩니다. Orca Slicer" -"은 두 개의 가까운 채우기 선을 짧은 주변 세그먼트에 연결하려고 합니다. 이 매개" -"변수보다 짧은 주변 세그먼트가 발견되지 않으면 채우기 선은 한쪽 측면의 주변 세" -"그먼트에 연결되고 사용된 주변 세그먼트의 길이는 앵커 채우기(infill_anchor)로 " -"제한되지만 이 매개변수보다 길지 않습니다.\n" +"율(예: 15%)로 표시되는 경우 채우기 돌출 너비에 대해 계산됩니다. Orca Slicer은 " +"두 개의 가까운 채우기 선을 짧은 주변 세그먼트에 연결하려고 합니다. 이 매개변수" +"보다 짧은 주변 세그먼트가 발견되지 않으면 채우기 선은 한쪽 측면의 주변 세그먼" +"트에 연결되고 사용된 주변 세그먼트의 길이는 앵커 채우기(infill_anchor)로 제한" +"되지만 이 매개변수보다 길지 않습니다.\n" "0으로 설정하면 채우기 연결에 대한 이전 알고리즘이 사용되며 1000 & 0과 동일한 " "결과를 생성해야 합니다." msgid "0 (Simple connect)" msgstr "0 (단순 연결)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "외벽의 가속도" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "내벽의 가속도" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "이동 가속도" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "상단 표면 가속도. 낮은 값을 사용하면 상단 표면 품질이 향상될 수 있습니다" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "외벽의 가속도. 낮은 값을 사용하면 품질이 향상 될 수 있습니다" msgid "" @@ -11784,15 +11775,14 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" -"초기 레이어 가속도. 낮은 값을 사용하면 빌드 플레이트 안착률을 높일 수 있습니" -"다" +"초기 레이어 가속도. 낮은 값을 사용하면 빌드 플레이트 안착률을 높일 수 있습니다" msgid "Enable accel_to_decel" msgstr "가속/감속 활성화" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Klipper의 max_accel_to_decel은 자동으로 조정됩니다" msgid "accel_to_decel" @@ -11800,25 +11790,26 @@ msgstr "가속/감속" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" -msgstr "Klipper의 max_accel_to_decel은 가속도의 %%로 조정됩니다" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." +msgstr "" +"Klipper의 max_accel_to_decel은 가속도의 %%로 조정됩니다" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "외벽 저크" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "내벽 저크" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "상단 표면 저크" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "채우기 저크" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "초기 레이어 저크" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "이동 저크" msgid "" @@ -11831,24 +11822,24 @@ msgstr "초기 레이어 높이" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" -"초기 레이어의 높이입니다. 초기 레이어 높이를 약간 두껍게 하면 빌드 플레이트 " -"접착력을 향상시킬 수 있습니다" +"초기 레이어의 높이입니다. 초기 레이어 높이를 약간 두껍게 하면 빌드 플레이트 접" +"착력을 향상시킬 수 있습니다" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "꽉찬 채우기 부분을 제외한 초기 레이어 속도" msgid "Initial layer infill" msgstr "초기 레이어 채우기" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "초기 레이어의 꽉찬 채우기 속도" msgid "Initial layer travel speed" msgstr "초기 레이어 이동 속도" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "초기 레이어 이동 속도" msgid "Number of slow layers" @@ -11858,13 +11849,13 @@ msgid "" "The first few layers are printed slower than normal. The speed is gradually " "increased in a linear fashion over the specified number of layers." msgstr "" -"처음 몇 개의 레이어는 평소보다 느리게 출력됩니다. 속도는 지정된 레이어 수에 " -"걸쳐 선형 방식으로 점차 증가합니다." +"처음 몇 개의 레이어는 평소보다 느리게 출력됩니다. 속도는 지정된 레이어 수에 걸" +"쳐 선형 방식으로 점차 증가합니다." msgid "Initial layer nozzle temperature" msgstr "초기 레이어 노즐 온도" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "이 필라멘트를 사용할 때 초기 레이어를 출력하기 위한 노즐 온도" msgid "Full fan speed at layer" @@ -11890,15 +11881,15 @@ msgstr "서포트 접점 팬 속도" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" "This setting is overridden by disable_fan_first_layers." msgstr "" "이 파트 냉각 팬 속도는 서포트 인터페이스를 출력할 때 적용됩니다. 이 파라미터" -"를 일반 속도보다 높게 설정하면 서포트와 서포트 파트 사이의 레이어 결합 강도" -"가 감소하여 쉽게 분리할 수 있습니다.\n" +"를 일반 속도보다 높게 설정하면 서포트와 서포트 파트 사이의 레이어 결합 강도가 " +"감소하여 쉽게 분리할 수 있습니다.\n" "비활성화하려면 -1로 설정합니다.\n" "이 설정은 disable_fan_first_layers로 재정의됩니다." @@ -11921,10 +11912,10 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" -"벽을 출력하는 동안 무작위로 지터가 발생하여 표면이 거칠게 보입니다. 이 설정" -"은 퍼지 위치를 제어합니다" +"벽을 출력하는 동안 무작위로 지터가 발생하여 표면이 거칠게 보입니다. 이 설정은 " +"퍼지 위치를 제어합니다" msgid "Contour" msgstr "윤곽" @@ -11940,7 +11931,7 @@ msgstr "퍼지 스킨 두께" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "임의로 움직일 너비입니다. 외벽 선 너비 보다 얇게 하는 것이 좋습니다" msgid "Fuzzy skin point distance" @@ -11948,25 +11939,25 @@ msgstr "퍼지 스킨 지점 거리" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "각 선의 분절에 도입된 임의의 지점간 평균 거리" msgid "Apply fuzzy skin to first layer" msgstr "첫 번째 레이어에 퍼지 스킨 적용" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "첫 번째 레이어에 퍼지 스킨을 적용할지 여부" msgid "Fuzzy skin noise type" msgstr "퍼지 스킨 노이즈 유형" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" -"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates " -"marble-like textures.\n" +"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates marble-" +"like textures.\n" "Voronoi: Divides the surface into voronoi cells, and displaces each one by a " "random amount. Creates a patchwork texture." msgstr "" @@ -11974,10 +11965,10 @@ msgstr "" "클래식: 클래식 균일 랜덤 노이즈.\n" "펄린: 펄린 노이즈: 보다 일관된 텍스처를 제공하는 펄린 노이즈입니다.\n" "빌로우: 펄린 노이즈와 비슷하지만 더 뭉툭합니다.\n" -"리지드 멀티프랙탈: 날카롭고 들쭉날쭉한 특징을 가진 리지드 노이즈입니다. 대리" -"석과 같은 텍스처를 만듭니다.\n" -"보로노이: 보로노이: 표면을 보로노이 셀로 나누고 각 셀을 임의의 양만큼 이동시" -"킵니다. 패치워크 텍스처를 만듭니다." +"리지드 멀티프랙탈: 날카롭고 들쭉날쭉한 특징을 가진 리지드 노이즈입니다. 대리석" +"과 같은 텍스처를 만듭니다.\n" +"보로노이: 보로노이: 표면을 보로노이 셀로 나누고 각 셀을 임의의 양만큼 이동시킵" +"니다. 패치워크 텍스처를 만듭니다." msgid "Classic" msgstr "클래식" @@ -12010,8 +12001,8 @@ msgid "" "The number of octaves of coherent noise to use. Higher values increase the " "detail of the noise, but also increase computation time." msgstr "" -"사용할 일관된 노이즈의 옥타브 수입니다. 값이 클수록 노이즈의 디테일이 증가하" -"지만 계산 시간도 늘어납니다." +"사용할 일관된 노이즈의 옥타브 수입니다. 값이 클수록 노이즈의 디테일이 증가하지" +"만 계산 시간도 늘어납니다." msgid "Fuzzy skin noise persistence" msgstr "퍼지 스킨 노이즈 지속성" @@ -12040,10 +12031,10 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" -"간격 채우기 속도. 간격은 일반적으로 선 너비가 불규칙하므로 더 천천히 출력해" -"야 합니다" +"간격 채우기 속도. 간격은 일반적으로 선 너비가 불규칙하므로 더 천천히 출력해야 " +"합니다" msgid "Precise Z height" msgstr "정확한 Z 높이" @@ -12053,35 +12044,35 @@ msgid "" "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" -"슬라이싱 후 객체의 정확한 z 높이를 얻으려면 이 옵션을 활성화하세요. 마지막 " -"몇 레이어의 레이어 높이를 미세 조정하여 정확한 객체 높이를 얻습니다. 이는 실" -"험적인 매개변수입니다." +"슬라이싱 후 객체의 정확한 z 높이를 얻으려면 이 옵션을 활성화하세요. 마지막 몇 " +"레이어의 레이어 높이를 미세 조정하여 정확한 객체 높이를 얻습니다. 이는 실험적" +"인 매개변수입니다." msgid "Arc fitting" msgstr "원호 맞춤" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " -"Klipper does not benefit from arc commands as these are split again into " -"line segments by the firmware. This results in a reduction in surface " -"quality as line segments are converted to arcs by the slicer and then back " -"to line segments by the firmware." +"Klipper does not benefit from arc commands as these are split again into line " +"segments by the firmware. This results in a reduction in surface quality as " +"line segments are converted to arcs by the slicer and then back to line " +"segments by the firmware." msgstr "" -"G2 및 G3 이동이 있는 Gcode 파일을 얻으려면 이 옵션을 활성화하십시오. 피팅 공" -"차는 분해능과 동일합니다. \n" +"G2 및 G3 이동이 있는 Gcode 파일을 얻으려면 이 옵션을 활성화하십시오. 피팅 공차" +"는 분해능과 동일합니다.\n" "\n" -"참고: Klipper 기계의 경우 이 옵션을 비활성화하는 것이 좋습니다. Klipper는 " -"arc 명령이 펌웨어에 의해 라인 세그먼트로 다시 분할되므로 이점을 얻지 못합니" -"다. 이로 인해 선 세그먼트가 슬라이서에 의해 호로 변환된 다음 펌웨어에 의해 다" -"시 선 세그먼트로 변환되므로 표면 품질이 저하됩니다." +"참고: Klipper 기계의 경우 이 옵션을 비활성화하는 것이 좋습니다. Klipper는 arc " +"명령이 펌웨어에 의해 라인 세그먼트로 다시 분할되므로 이점을 얻지 못합니다. 이" +"로 인해 선 세그먼트가 슬라이서에 의해 호로 변환된 다음 펌웨어에 의해 다시 선 " +"세그먼트로 변환되므로 표면 품질이 저하됩니다." msgid "Add line number" msgstr "라인 번호 추가" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "각 Gcode 라인의 시작 부분에 라인 번호(Nx)를 추가하려면 이 기능을 활성화하세요" @@ -12090,7 +12081,7 @@ msgstr "첫 레이어 스캔" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "프린터의 카메라가 첫 레이어의 품질을 확인할 수 있도록 하려면 이 옵션을 활성화" "하세요" @@ -12100,10 +12091,10 @@ msgstr "노즐 유형" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" -"노즐의 금속 재질. 노즐의 내마모성을 결정하고 어떤 종류의 필라멘트를 출력할 " -"수 있는지를 결정합니다" +"노즐의 금속 재질. 노즐의 내마모성을 결정하고 어떤 종류의 필라멘트를 출력할 수 " +"있는지를 결정합니다" msgid "Undefine" msgstr "알 수 없음" @@ -12132,7 +12123,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "프린터 구조" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "출력 장치의 물리적 배열 및 구성 요소" msgid "CoreXY" @@ -12154,8 +12145,8 @@ msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "베드 모양 w.r.t. 범위 [0,1] 내에서 가장 좋은 자동 정렬 위치입니다." msgid "" -"Enable this option if machine has auxiliary part cooling fan. G-code " -"command: M106 P2 S(0-255)." +"Enable this option if machine has auxiliary part cooling fan. G-code command: " +"M106 P2 S(0-255)." msgstr "" "장치에 보조 출력물 냉각팬이 있는 경우 이 옵션을 활성화합니다. Gcode 명령: " "M106 P2 S(0-255)." @@ -12165,17 +12156,17 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start G-" +"code' is activated.\n" "Use 0 to deactivate." msgstr "" "목표한 시작 시간보다 이 시간(소수 초를 사용할 수 있음) 일찍 팬을 시작합니다. " "이 시간 추정을 위해 무한 가속을 가정하고 G1 및 G0 이동만 고려합니다(원호 맞춤" "은 지원되지 않음).\n" -"사용자 정의 G코드에서 팬 명령을 이동하지 않습니다(일종의 '장벽' 역할을 함).\n" -"'사용자 정의 시작 G코드만'이 활성화된 경우 팬 명령을 시작 G코드로 이동하지 않" +"사용자 정의 Gcode에서 팬 명령을 이동하지 않습니다(일종의 '장벽' 역할을 함).\n" +"'사용자 정의 시작 Gcode만'이 활성화된 경우 팬 명령을 시작 Gcode로 이동하지 않" "습니다.\n" "비활성화하려면 0을 사용하세요." @@ -12195,8 +12186,8 @@ msgid "" "fan started spinning from a stop, or to get the fan up to speed faster.\n" "Set to 0 to deactivate." msgstr "" -"목표 속도로 줄이기 전에 냉각 팬을 시동하기 위해 이 시간만큼 일찍 최대 팬 속" -"도 명령을 내립니다.\n" +"목표 속도로 줄이기 전에 냉각 팬을 시동하기 위해 이 시간만큼 일찍 최대 팬 속도 " +"명령을 내립니다.\n" "이 기능은 낮은 PWM/전력으로는 팬이 정지 상태에서 회전을 시작하거나 팬의 속도" "를 빠르게 향상시키기에 부족할 수 있는 팬에게 유용합니다.\n" "비활성화하려면 0으로 설정합니다." @@ -12204,7 +12195,7 @@ msgstr "" msgid "Time cost" msgstr "시간비용" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "시간당 프린터 비용" msgid "money/h" @@ -12233,7 +12224,7 @@ msgstr "" msgid "G-code flavor" msgstr "Gcode 유형" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "프린터와 호환되는 Gcode 종류" msgid "Klipper" @@ -12242,35 +12233,35 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "펠릿 프린터" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "프린터가 필라멘트 대신 펠릿을 사용할 경우 활성화하세요" msgid "Support multi bed types" -msgstr "멀티 배드 유형 지원" +msgstr "멀티 베드 유형 지원" -msgid "Enable this option if you want to use multiple bed types" -msgstr "여러 배드 유형을 사용하려면 이 옵션을 활성화하세요" +msgid "Enable this option if you want to use multiple bed types." +msgstr "여러 베드 유형을 사용하려면 이 옵션을 활성화하세요" msgid "Label objects" msgstr "객체 이름표" # Wipe into this object;s infill/Wipe into this object msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " -"object they belong to, which is useful for the Octoprint CancelObject " -"plugin. This settings is NOT compatible with Single Extruder Multi Material " -"setup and Wipe into Object / Wipe into Infill." +"Enable this to add comments into the G-code labeling print moves with what " +"object they belong to, which is useful for the Octoprint CancelObject plugin. " +"This settings is NOT compatible with Single Extruder Multi Material setup and " +"Wipe into Object / Wipe into Infill." msgstr "" "이 옵션을 선택하면 Gcode 출력시 이동에 설명을 추가할 수 있습니다. 이는 " -"Octoprint CancelObject 플러그인에 유용합니다. \n" +"Octoprint CancelObject 플러그인에 유용합니다.\n" "이 설정은 단일 압출기 다중 재료 설정 및 객체에서 노즐 청소 / 채우기에서 노즐 " "청소와 호환되지 않습니다." msgid "Exclude objects" msgstr "객체 제외" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "G코드에 객체 제외 명령을 추가하려면 이 옵션을 활성화하세요" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." +msgstr "Gcode에 객체 제외 명령을 추가하려면 이 옵션을 활성화하세요." msgid "Verbose G-code" msgstr "상세한 Gcode" @@ -12281,8 +12272,8 @@ msgid "" "file could make your firmware slow down." msgstr "" "주석이 달린 Gcode 파일을 가져오려면 이 기능을 활성화하세요. 각 라인은 설명 텍" -"스트로 설명됩니다. SD 카드에서 출력하는 경우 파일의 추가 크기로 인해 펌웨어 " -"속도가 느려질 수 있습니다." +"스트로 설명됩니다. SD 카드에서 출력하는 경우 파일의 추가 크기로 인해 펌웨어 속" +"도가 느려질 수 있습니다." msgid "Infill combination" msgstr "채우기 결합" @@ -12291,14 +12282,14 @@ msgid "" "Automatically Combine sparse infill of several layers to print together to " "reduce time. Wall is still printed with original layer height." msgstr "" -"여러 레이어의 드문 채우기를 자동으로 결합 후 함께 출력하여 시간을 단축합니" -"다. 벽은 여전히 설정된 레이어 높이로 출력됩니다." +"여러 레이어의 드문 채우기를 자동으로 결합 후 함께 출력하여 시간을 단축합니다. " +"벽은 여전히 설정된 레이어 높이로 출력됩니다." msgid "Infill combination - Max layer height" msgstr "채우기 조합 - 최대 레이어 높이" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12306,16 +12297,16 @@ msgid "" "The number of layers over which infill is combined is derived by dividing " "this value with the layer height and rounded down to the nearest decimal.\n" "\n" -"Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " -"(eg 80%). This value must not be larger than the nozzle diameter." +"Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values (eg " +"80%). This value must not be larger than the nozzle diameter." msgstr "" -"결합된 희소 채우기의 최대 레이어 높이입니다. \n" +"결합된 희소 채우기의 최대 레이어 높이입니다.\n" "\n" -"노즐 직경(출력 시간을 최대로 줄이기 위해)을 사용하려면 0 또는 100%로 설정하" -"고 희박한 채우기 강도를 최대화하려면 ~80% 값으로 설정합니다.\n" +"노즐 직경(출력 시간을 최대로 줄이기 위해)을 사용하려면 0 또는 100%로 설정하고 " +"희박한 채우기 강도를 최대화하려면 ~80% 값으로 설정합니다.\n" "\n" -"채우기가 결합되는 레이어 수는 이 값을 레이어 높이로 나누고 가장 가까운 소수" -"점 이하 자릿수로 반내림하여 파생됩니다.\n" +"채우기가 결합되는 레이어 수는 이 값을 레이어 높이로 나누고 가장 가까운 소수점 " +"이하 자릿수로 반내림하여 파생됩니다.\n" "\n" "절대 mm 값(예: 0.4mm 노즐의 경우 0.32mm) 또는 % 값(예: 80%)을 사용합니다. 이 " "값은 노즐 직경보다 커서는 안 됩니다." @@ -12334,14 +12325,14 @@ msgstr "채우기/벽 겹치기" #, no-c-format, no-boost-format msgid "" -"Infill area is enlarged slightly to overlap with wall for better bonding. " -"The percentage value is relative to line width of sparse infill. Set this " -"value to ~10-15% to minimize potential over extrusion and accumulation of " -"material resulting in rough top surfaces." +"Infill area is enlarged slightly to overlap with wall for better bonding. The " +"percentage value is relative to line width of sparse infill. Set this value " +"to ~10-15% to minimize potential over extrusion and accumulation of material " +"resulting in rough top surfaces." msgstr "" "채우기 영역은 더 나은 접착을 위해 벽과 겹치도록 약간 확대됩니다. 백분율 값은 " -"희박한 채우기의 선 너비를 기준으로 합니다. 거친 상단 표면을 초래하는 재료의 " -"압출 및 축적 가능성을 최소화하려면 이 값을 ~10-15%로 설정하십시오." +"희박한 채우기의 선 너비를 기준으로 합니다. 거친 상단 표면을 초래하는 재료의 압" +"출 및 축적 가능성을 최소화하려면 이 값을 ~10-15%로 설정하십시오." msgid "Top/Bottom solid infill/wall overlap" msgstr "상하단 솔리드 채우기/벽 겹침" @@ -12349,23 +12340,23 @@ msgstr "상하단 솔리드 채우기/벽 겹침" #, no-c-format, no-boost-format msgid "" "Top solid infill area is enlarged slightly to overlap with wall for better " -"bonding and to minimize the appearance of pinholes where the top infill " -"meets the walls. A value of 25-30% is a good starting point, minimizing the " +"bonding and to minimize the appearance of pinholes where the top infill meets " +"the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "상단 솔리드 채우기 영역은 더 나은 접착을 위해 벽과 겹치도록 약간 확대되고 상" "단 채우기가 벽과 만나는 핀홀의 모양을 최소화합니다. 25-30%의 값은 핀홀의 모양" "을 최소화하는 좋은 출발점입니다. 백분율 값은 희박한 채우기의 선 너비를 기준으" "로 합니다" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "내부 드문 채우기 속도" msgid "Inherits profile" msgstr "프로필 상속" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "부모 프로필 이름" msgid "Interface shells" @@ -12374,7 +12365,7 @@ msgstr "접점 쉘" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "인접한 재료/압출 사이에 꽉찬 쉘을 강제로 생성합니다. 투명한 재료 또는 용해성 " "서포트 재료를 사용하는 다중 압출기 출력에 유용합니다" @@ -12391,13 +12382,13 @@ msgstr "분할된 영역의 연동 깊이" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "분할된 영역의 연동 깊이. \"mmu_segmented_region_max_width\"가 0이거나 " "\"mmu_segmented_region_interlocking_length\"가 " -"\"mmu_segmented_region_max_width\"보다 크면 무시됩니다. 0은 이 기능을 비활성" -"화합니다." +"\"mmu_segmented_region_max_width\"보다 크면 무시됩니다. 0은 이 기능을 비활성화" +"합니다." msgid "Use beam interlocking" msgstr "인터로킹 빔 사용" @@ -12408,8 +12399,8 @@ msgid "" "models printed in different materials." msgstr "" "서로 다른 필라멘트가 접촉하는 곳에 맞물리는 구조의 인터로킹 빔을 생성합니다. " -"이 기능은 필라멘트 간의 결합력을 향상시키며, 서로 다른 재료로 출력한 모델에 " -"특히 유용합니다." +"이 기능은 필라멘트 간의 결합력을 향상시키며, 서로 다른 재료로 출력한 모델에 특" +"히 유용합니다." msgid "Interlocking beam width" msgstr "인터로킹 빔 너비" @@ -12430,8 +12421,8 @@ msgid "" "The height of the beams of the interlocking structure, measured in number of " "layers. Less layers is stronger, but more prone to defects." msgstr "" -"맞물림 구조의 높이를 레이어 수로 나타낸 값입니다. 레이어 수가 적을수록 강도" -"가 올라가나, 결함이 발생하기 더 쉬워집니다." +"맞물림 구조의 높이를 레이어 수로 나타낸 값입니다. 레이어 수가 적을수록 강도가 " +"올라가나, 결함이 발생하기 더 쉬워집니다." msgid "Interlocking depth" msgstr "맞물림 깊이" @@ -12440,8 +12431,8 @@ msgid "" "The distance from the boundary between filaments to generate interlocking " "structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" -"필라멘트 간의 접촉면으로부터 맞물림 구조를 생성할 거리를 셀의 수로 나타낸 값" -"입니다. 너무 적은 수의 셀을 사용할 경우 결합력이 저하될 수 있습니다." +"필라멘트 간의 접촉면으로부터 맞물림 구조를 생성할 거리를 셀의 수로 나타낸 값입" +"니다. 너무 적은 수의 셀을 사용할 경우 결합력이 저하될 수 있습니다." msgid "Interlocking boundary avoidance" msgstr "맞물림 방지 거리" @@ -12476,7 +12467,7 @@ msgstr "모든 꽉찬 레이어" msgid "Ironing Pattern" msgstr "다림질 패턴" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "다림질할 때 사용할 패턴" msgid "Ironing flow" @@ -12484,15 +12475,15 @@ msgstr "다림질 압출량" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" -"다림질 중에 압출할 재료의 양입니다. 정상 레이어 높이의 압출량에 상대적입니" -"다. 값이 너무 높으면 표면에 과다 압출이 발생합니다" +"다림질 중에 압출할 재료의 양입니다. 정상 레이어 높이의 압출량에 상대적입니다. " +"값이 너무 높으면 표면에 과다 압출이 발생합니다" msgid "Ironing line spacing" msgstr "다림질 선 간격" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "다림질 선 간격" msgid "Ironing inset" @@ -12500,14 +12491,14 @@ msgstr "다림질 삽입" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "가장자리로부터 유지할 거리입니다. 값이 0이면 노즐 직경의 절반으로 설정됩니다." msgid "Ironing speed" msgstr "다림질 속도" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "다림질 선의 출력 속도" msgid "Ironing angle" @@ -12517,47 +12508,47 @@ msgid "" "The angle ironing is done at. A negative number disables this function and " "uses the default method." msgstr "" -"다림질이 해당 각도에서 실행됩니다. 음수는 이 기능을 비활성화하고 기본값을 사" -"용합니다." +"다림질이 해당 각도에서 실행됩니다. 음수는 이 기능을 비활성화하고 기본값을 사용" +"합니다." -msgid "This gcode part is inserted at every layer change after lift z" -msgstr "이 G코드는 Z올리기 이후 모든 레이어 변경에 삽입됩니다" +msgid "This G-code is inserted at every layer change after the Z lift." +msgstr "이 Gcode는 Z올리기 이후 모든 레이어 변경에 삽입됩니다" msgid "Supports silent mode" msgstr "무음 모드 지원" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "기기가 낮은 가속도를 사용하여 출력하는 무음 모드 지원 여부" msgid "Emit limits to G-code" -msgstr "G코드에 대한 방출 제한" +msgstr "Gcode에 대한 방출 제한" msgid "Machine limits" msgstr "장치 한계" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "활성화되면 기계의 한계가 Gcode 파일로 내보내집니다.\n" "Gcode 유형이 Klipper로 설정된 경우 이 옵션은 무시됩니다." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" -"이 G코드는 출력 일시 정지를 위한 코드로 사용됩니다. 사용자는 Gcode 뷰어에서 " -"일시 정지 G코드를 삽입할 수 있습니다" +"이 Gcode는 출력 일시 정지를 위한 코드로 사용됩니다. 사용자는 Gcode 뷰어에서 일" +"시 정지 Gcode를 삽입할 수 있습니다" -msgid "This G-code will be used as a custom code" -msgstr "이 G코드는 사용자 정의 코드로 사용됩니다" +msgid "This G-code will be used as a custom code." +msgstr "이 Gcode는 사용자 정의 코드로 사용됩니다" msgid "Small area flow compensation (beta)" msgstr "작은 영역 압출량 보상 (베타)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "작은 채우기 영역에 대한 압출량 보상 활성화" msgid "Flow Compensation Model" @@ -12672,12 +12663,12 @@ msgstr "후퇴 중 최대 가속도 (M204 R)" msgid "Maximum acceleration for travel" msgstr "이동 최대 가속도" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "이동 시 최대 가속도(M204 T)는 Marlin 2에만 적용됩니다" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "자동 냉각이 활성화되면 출력물 냉각 팬 속도가 증가할 수 있습니다. 이는 출력물 " "냉각 팬의 최대 속도 제한입니다" @@ -12686,46 +12677,45 @@ msgid "Max" msgstr "최대" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" -"압출기의 출력 가능한 최대 레이어 높이입니다. 사용된 값은 적응형 레이어 높이" -"를 활성화할 때 최대 레이어 높이를 제한합니다" +"압출기의 출력 가능한 최대 레이어 높이입니다. 사용된 값은 적응형 레이어 높이를 " +"활성화할 때 최대 레이어 높이를 제한합니다" msgid "Extrusion rate smoothing" -msgstr "유연한 압출 압출량" +msgstr "유연한 압출량" msgid "" -"This parameter smooths out sudden extrusion rate changes that happen when " -"the printer transitions from printing a high flow (high speed/larger width) " +"This parameter smooths out sudden extrusion rate changes that happen when the " +"printer transitions from printing a high flow (high speed/larger width) " "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " -"Voron) this value is usually not needed. However it can provide some " -"marginal benefit in certain cases where feature speeds vary greatly. For " -"example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " -"transition.\n" +"Voron) this value is usually not needed. However it can provide some marginal " +"benefit in certain cases where feature speeds vary greatly. For example, when " +"there are aggressive slowdowns due to overhangs. In these cases a high value " +"of around 300-350 mm³/s² is recommended as this allows for just enough " +"smoothing to assist pressure advance achieve a smoother flow transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" "Note: this parameter disables arc fitting." msgstr "" -"이 매개변수는 프린터가 높은 압출량(고속/더 큰 너비) 압출에서 낮은 압출량(낮" -"은 속도/더 작은 너비) 압출로 또는 그 반대로 출력할 때 발생하는 급격한 압출 속" -"도 변화를 완화합니다.\n" +"이 매개변수는 프린터가 높은 압출량(고속/더 큰 너비) 압출에서 낮은 압출량(낮은 " +"속도/더 작은 너비) 압출로 또는 그 반대로 출력할 때 발생하는 급격한 압출 속도 " +"변화를 완화합니다.\n" "\n" "이는 압출된 압출 압출량(mm3/초)이 시간에 따라 변할 수 있는 최대 속도를 정의합" "니다. 값이 높을수록 더 높은 압출 속도 변경이 허용되어 속도 전환이 더 빨라진다" @@ -12734,18 +12724,18 @@ msgstr "" "값이 0이면 기능이 비활성화됩니다.\n" "\n" "고속, 고압출량 직접 구동 프린터(예: 뱀부랩 또는 보론)의 경우 일반적으로 이 값" -"이 필요하지 않습니다. 그러나 기능 속도가 크게 달라지는 특정 경우에는 약간의 " -"이점을 제공할 수 있습니다. 예를 들어 오버행로 인해 급격하게 감속이 발생하는 " -"경우입니다. 이러한 경우 약 300-350mm3/s2의 높은 값이 권장됩니다. 이렇게 하면 " -"프레셔 어드밴스가 더 부드러운 압출량 전환을 달성하는 데 도움이 될 만큼 충분" -"히 매끄러워질 수 있기 때문입니다.\n" +"이 필요하지 않습니다. 그러나 기능 속도가 크게 달라지는 특정 경우에는 약간의 이" +"점을 제공할 수 있습니다. 예를 들어 오버행로 인해 급격하게 감속이 발생하는 경우" +"입니다. 이러한 경우 약 300-350 mm³/s²의 높은 값이 권장됩니다. 이렇게 하면 프레" +"셔 어드밴스가 더 부드러운 압출량 전환을 달성하는 데 도움이 될 만큼 충분히 매끄" +"러워질 수 있기 때문입니다.\n" "\n" "프레셔 어드밴스 기능이 없는 느린 프린터의 경우 값을 훨씬 낮게 설정해야 합니" -"다. 10-15mm3/s2 값은 직접 구동 압출기의 좋은 시작점이고 보우덴 스타일의 경우 " -"5-10mm3/s2입니다.\n" +"다. 10-15 mm³/s² 값은 직접 구동 압출기의 좋은 시작점이고 보우덴 스타일의 경우 " +"5-10 mm³/s²입니다.\n" "\n" -"이 기능은 Prusa 슬라이서에서는 프레셔 이퀄라이저(Pressure Equalizer)로 알려" -"져 있습니다.\n" +"이 기능은 Prusa 슬라이서에서는 프레셔 이퀄라이저(Pressure Equalizer)로 알려져 " +"있습니다.\n" "\n" "참고: 이 매개변수는 원호 피팅(Arc fitting)을 비활성화합니다." @@ -12757,16 +12747,16 @@ msgstr "유연 분할 길이" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" -"값이 낮을수록 압출 속도 전환이 더 부드러워집니다. 그러나 이 경우 g코드 파일" -"이 상당히 커지고 프린터가 처리해야 할 지침이 더 많아집니다.\n" +"값이 낮을수록 압출 속도 전환이 더 부드러워집니다. 그러나 이 경우 g코드 파일이 " +"상당히 커지고 프린터가 처리해야 할 지침이 더 많아집니다.\n" "\n" "기본값인 3이 대부분의 경우에 적합합니다. 프린터가 끊기는 경우 이 값을 늘려 조" "정 횟수를 줄이십시오.\n" @@ -12779,14 +12769,14 @@ msgstr "외부 기능에만 적용" msgid "" "Applies extrusion rate smoothing only on external perimeters and overhangs. " "This can help reduce artefacts due to sharp speed transitions on externally " -"visible overhangs without impacting the print speed of features that will " -"not be visible to the user." +"visible overhangs without impacting the print speed of features that will not " +"be visible to the user." msgstr "" "외부 경계와 오버행에만 돌출 속도 평활화를 적용합니다. 이렇게 하면 사용자에게 " "보이지 않는 피처의 출력 속도에는 영향을 주지 않으면서 외부에 보이는 오버행의 " "급격한 속도 전환으로 인한 아티팩트를 줄일 수 있습니다." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "출력물 냉각 팬의 최소 속도" msgid "" @@ -12798,18 +12788,18 @@ msgid "" msgstr "" "보조 출력물 냉각팬의 속도. 냉각 레이어가 없는 것으로 정의된 처음 여러 레이어" "를 제외하고 출력 중에 보조 팬이 이 속도로 작동합니다.\n" -"이 기능을 사용하려면 프린터 설정에서 보조 팬을 활성화하세요. Gcode 명령: " -"M106 P2 S(0-255)" +"이 기능을 사용하려면 프린터 설정에서 보조 팬을 활성화하세요. Gcode 명령: M106 " +"P2 S(0-255)" msgid "Min" msgstr "최소" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" -"압출기의 출력 가능한 최저 레이어 높이입니다. 사용된 값은 적응형 레이어 높이" -"를 활성화할 때 최소 레이어 높이를 제한합니다" +"압출기의 출력 가능한 최저 레이어 높이입니다. 사용된 값은 적응형 레이어 높이를 " +"활성화할 때 최소 레이어 높이를 제한합니다" msgid "Min print speed" msgstr "최소 출력 속도" @@ -12832,8 +12822,7 @@ msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." msgstr "" -"여기에 개인 메모를 넣을 수 있습니다. 이 텍스트는 Gcode 헤더 설명에 추가됩니" -"다." +"여기에 개인 메모를 넣을 수 있습니다. 이 텍스트는 Gcode 헤더 설명에 추가됩니다." msgid "Host Type" msgstr "호스트 유형" @@ -12848,7 +12837,7 @@ msgstr "" msgid "Nozzle volume" msgstr "노즐 부피" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "커터와 노즐 끝단 사이의 노즐 부피" msgid "Cooling tube position" @@ -12871,9 +12860,9 @@ msgid "" "filament exchange sequence to allow for rapid ramming feed rates and to " "overcome resistance when loading a filament with an ugly shaped tip." msgstr "" -"필라멘트 교체 순서 중에 압출기 모터 전류를 증가시켜 빠른 채워넣기 공급 속도" -"를 허용하고 보기 흉한 모양의 팁이 있는 필라멘트를 로드할 때 저항을 극복하는 " -"데 이점이 있습니다." +"필라멘트 교체 순서 중에 압출기 모터 전류를 증가시켜 빠른 채워넣기 공급 속도를 " +"허용하고 보기 흉한 모양의 팁이 있는 필라멘트를 로드할 때 저항을 극복하는 데 이" +"점이 있습니다." msgid "Filament parking position" msgstr "필라멘트 주차 위치" @@ -12882,7 +12871,7 @@ msgid "" "Distance of the extruder tip from the position where the filament is parked " "when unloaded. This should match the value in printer firmware." msgstr "" -"빼기 시 필라멘트가 고정되는 위치에서 압출기 끝까지의 거리입니다. 이는 프린터 " +"언로드시 필라멘트가 고정되는 위치에서 압출기 끝까지의 거리입니다. 이는 프린터 " "펌웨어의 값과 일치해야 합니다." msgid "Extra loading distance" @@ -12891,12 +12880,12 @@ msgstr "추가 압출 거리" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " -"than unloading." +"positive, it is loaded further, if negative, the loading move is shorter than " +"unloading." msgstr "" -"0으로 설정하면 압출 중에 필라멘트가 주차 위치에서 이동한 거리는 빼기 중에 다" +"0으로 설정하면 압출 중에 필라멘트가 파킹 위치에서 이동한 거리는 언로드 중에 다" "시 이동한 거리와 정확히 동일합니다. 양수이면 더 많이 압출되고, 음수이면 압출 " -"이동이 빼기 이동보다 짧습니다." +"이동이 언로드 이동보다 짧습니다." msgid "Start end points" msgstr "시작점과 끝점" @@ -12910,7 +12899,7 @@ msgstr "채우기 후퇴 감소" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "이동 구간이 채우기 영역에 있을 때 수축하지 마십시오. 즉, 스며드는 것을 볼 수 " "없습니다. 이는 복잡한 모델의 후퇴 시간을 줄이고 출력 시간을 절약할 수 있지만 " @@ -12924,7 +12913,7 @@ msgstr "이 옵션은 비활성 압출기의 온도를 낮추어 스며드는 msgid "Filename format" msgstr "파일 이름 형식" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "사용자가 내보낼 파일 이름을 자체 정의할 수 있습니다" msgid "Make overhangs printable" @@ -12941,16 +12930,16 @@ msgid "" "printable.90° will not change the model at all and allow any overhang, while " "0 will replace all overhangs with conical material." msgstr "" -"더 가파른 오버행를 출력할 수 있게 허용되는 오버행의 최대 각도. 90°는 형상을 " -"전혀 변경하지 않고 오버행를 허용하는 반면, 0은 모든 오버행를 원뿔형 재료로 대" -"체합니다." +"더 가파른 오버행를 출력할 수 있게 허용되는 오버행의 최대 각도. 90°는 형상을 전" +"혀 변경하지 않고 오버행를 허용하는 반면, 0은 모든 오버행를 원뿔형 재료로 대체" +"합니다." msgid "Make overhangs printable - Hole area" msgstr "오버행 형상 변경 구멍 영역" msgid "" -"Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"Maximum area of a hole in the base of the model before it's filled by conical " +"material. A value of 0 will fill all the holes in the model base." msgstr "" "원뿔형 재료로 채워지기 전에 모델 베이스에 있는 구멍의 최대 면적입니다. 값이 0" "이면 모델 베이스의 모든 구멍이 채워집니다." @@ -12963,8 +12952,8 @@ msgstr "오버행 벽 감지" #, c-format, boost-format msgid "" -"Detect the overhang percentage relative to line width and use different " -"speed to print. For 100%% overhang, bridge speed is used." +"Detect the overhang percentage relative to line width and use different speed " +"to print. For 100%% overhang, bridge speed is used." msgstr "" "선 너비에 비례하여 오버행 백분율을 감지하고 다른 속도를 사용하여 출력합니다. " "100%% 오버행의 경우 브릿지 속도가 사용됩니다." @@ -12977,10 +12966,10 @@ msgid "" "nozzle diameter." msgstr "내벽의 선 너비. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "내벽 속도" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "모든 레이어의 벽 수" msgid "Alternate extra wall" @@ -12988,10 +12977,10 @@ msgstr "대체 추가 벽" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" -"When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"When this option is enabled, the ensure vertical shell thickness option needs " +"to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -13011,7 +13000,7 @@ msgid "" "argument, and they can access the Orca Slicer config settings by reading " "environment variables." msgstr "" -"사용자 정의 스크립트를 통해 출력 G코드를 처리하려면 여기에 절대 경로를 나열하" +"사용자 정의 스크립트를 통해 출력 Gcode를 처리하려면 여기에 절대 경로를 나열하" "세요. 여러 스크립트는 세미콜론(;)으로 구분합니다. 스크립트는 Gcode 파일의 절" "대 경로를 첫 번째 값으로 전달하며 환경 변수를 읽어 Orca Slicer 구성 설정에 접" "근할 수 있습니다." @@ -13034,25 +13023,25 @@ msgstr "프린터 변형" msgid "Raft contact Z distance" msgstr "라프트 접점 Z 거리" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "객체와 라프트 사이의 Z 거리. 가용성 재료의 접점은 무시됨" msgid "Raft expansion" msgstr "라프트 확장" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "XY 평면에서 모든 라프트 레이어 확장" msgid "Initial layer density" msgstr "초기 레이어 밀도" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "첫 번째 라프트 또는 서포트의 밀도" msgid "Initial layer expansion" msgstr "초기 레이어 확장" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "베드 플레이트 안착을 향상시키기 위해 첫 번째 라프트 또는 서포트 확장" msgid "Raft layers" @@ -13060,42 +13049,42 @@ msgstr "라프트 레이어" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "객체를 이 레이어 수 많큼 들어올립니다. 이 기능을 사용하여 ABS 출력 시 뒤틀림" "(워핑)을 방지합니다" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to avoid " +"too many points and G-code lines. Smaller value means higher resolution and " +"more time to slice." msgstr "" -"Gcode 경로는 Gcode 파일에서 너무 많은 점과 Gcode 라인을 방지하기 위해 모델의 " -"윤곽을 단순화한 후 생성됩니다. 작은 값은 높은 해상도와 많은 슬라이스 시간을 " -"의미합니다" +"Gcode 경로는 너무 많은 점과 Gcode 선을 피하기 위해 모델의 윤곽을 단순화한 후 " +"생성됩니다. 값이 작을수록 해상도가 높아지고 슬라이스에 더 많은 시간이 소요됩니" +"다." msgid "Travel distance threshold" msgstr "이동 거리 임계값" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "이동 거리가 이 임계값보다 긴 경우에만 후퇴를 실행합니다" msgid "Retract amount before wipe" msgstr "노즐 청소 전 후퇴량" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" -"후퇴 길이에 비례한 노즐 청소 전 후퇴량(노즐 청소를 시작하기 전에 일부 필라멘" -"트를 후퇴시키면 노즐 끝에 녹아있는 소량의 필라멘트만 남게되어 추가 누수 위험" -"이 줄어들 수 있습니다)" +"후퇴 길이에 비례한 노즐 청소 전 후퇴량(노즐 청소를 시작하기 전에 일부 필라멘트" +"를 후퇴시키면 노즐 끝에 녹아있는 소량의 필라멘트만 남게되어 추가 누수 위험이 " +"줄어들 수 있습니다)" msgid "Retract when change layer" msgstr "레이어 변경 시 후퇴" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "레이어 변경 시 강제로 후퇴를 실행합니다" msgid "Retract on top layer" @@ -13103,7 +13092,7 @@ msgstr "상단 레이어에서 후퇴" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "상단 레이어에 강제 후퇴를 적용합니다. 비활성화하면 힐버트 곡선과 같이 작은 움" "직임이 있는 매우 느린 패턴에서 막힘을 방지할 수 있습니다." @@ -13118,26 +13107,26 @@ msgstr "" "긴 이동 중에 필라멘트가 흘러나오는 것을 방지하기 위해 압출기의 일정량의 재료" "를 뒤로 당깁니다. 후퇴를 비활성화하려면 0을 설정하세요" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "절단 시 긴 후퇴(실험적)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"실험적 기능. 퍼지를 최소화하기 위해 변경하는 동안 더 먼 거리에서 필라멘트를 " -"집어넣고 절단합니다. 이렇게 하면 플러시가 크게 줄어들지만 노즐 막힘이나 기타 " -"출력 문제가 발생할 위험이 높아질 수도 있습니다." +"실험적 기능. 퍼지를 최소화하기 위해 변경하는 동안 더 먼 거리에서 필라멘트를 집" +"어넣고 절단합니다. 이렇게 하면 플러시가 크게 줄어들지만 노즐 막힘이나 기타 출" +"력 문제가 발생할 위험이 높아질 수도 있습니다." msgid "Retraction distance when cut" msgstr "절단 시 후퇴 거리" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" -msgstr "실험적 기능. 필라멘트 교체 시 절단 전 후퇴 길이" +"Experimental feature: Retraction length before cutting off during filament " +"change." +msgstr "실험적 기능. 필라멘트 교체 시 절단 전 후퇴 길이." msgid "Z-hop height" msgstr "Z올리기 높이" @@ -13145,28 +13134,28 @@ msgstr "Z올리기 높이" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "후퇴가 완료될 때마다 노즐이 약간 올라가서 노즐과 출력물 사이에 간격이 생깁니" "다. 이동 시 노즐이 출력물에 닿는 것을 방지합니다. 나선형 선을 사용하여 z를 들" "어 올리면 스트링 현상을 방지할 수 있습니다" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Z 올리기 하한 경계" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"Z 올리기는 Z가 이 값보다 크고 \"Z 올리기 상한 경계\" 매개변수 아래인 경우에" -"만 적용됩니다." +"Z 올리기는 Z가 이 값보다 크고 \"Z 올리기 상한 경계\" 매개변수 아래인 경우에만 " +"적용됩니다." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Z 올리기 상한 경계" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "이 값이 양수인 경우 Z 올리기는 Z가 매개변수 \"Z 올리기 하한 경계\"보다 높고 " "이 값보다 낮을 때만 적용됩니다" @@ -13174,9 +13163,6 @@ msgstr "" msgid "Z-hop type" msgstr "Z올리기 유형" -msgid "Z hop type" -msgstr "Z 올리기 유형" - msgid "Slope" msgstr "경사" @@ -13187,11 +13173,11 @@ msgid "Traveling angle" msgstr "이동 각도" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results in " +"Normal Lift." msgstr "" -"경사나 나선형 Z 올리기 유형에 사용할 이동 각도입니다. 90°로 설정할 경우 일반" -"적인 Z 올리기가 적용됩니다" +"경사나 나선형 Z 올리기 유형에 사용할 이동 각도입니다. 90°로 설정할 경우 일반적" +"인 Z 올리기가 적용됩니다." msgid "Only lift Z above" msgstr "Z값 위에서만 올리기" @@ -13200,8 +13186,7 @@ msgid "" "If you set this to a positive value, Z lift will only take place above the " "specified absolute Z." msgstr "" -"이 값을 양의 값으로 설정하면 Z 올리기는 지정된 Z의 절대값 위에서만 발생합니" -"다." +"이 값을 양의 값으로 설정하면 Z 올리기는 지정된 Z의 절대값 위에서만 발생합니다." msgid "Only lift Z below" msgstr "Z값 아래에서만 올리기" @@ -13217,11 +13202,11 @@ msgid "On surfaces" msgstr "표면에서" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" -"Z 올리기 동작을 수행합니다. 이 설정은 위의 설정의 영향을 받습니다 (위에서/아" -"래에서만 Z 올리기)." +"Z 올리기 동작을 수행합니다. 이 설정은 위의 설정의 영향을 받습니다 (위에서/아래" +"에서만 Z 올리기)." msgid "All Surfaces" msgstr "모든 표면" @@ -13254,15 +13239,15 @@ msgstr "" msgid "Retraction Speed" msgstr "후퇴 속도" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "후퇴 속도" msgid "De-retraction Speed" msgstr "후퇴 복귀 속도" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "필라멘트를 압출기에 다시 로드하는 속도입니다. 0은 후퇴와 동일한 속도를 의미합" "니다" @@ -13284,13 +13269,13 @@ msgid "Disable set remaining print time" msgstr "설정된 남은 출력 시간 비활성화" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" -msgstr "M73 생성 비활성화: 최종 G코드에 남은 출력 시간 설정" +"Disable generating of the M73: Set remaining print time in the final G-code." +msgstr "M73 생성 비활성화: 최종 Gcode에 남은 출력 시간을 설정합니다." msgid "Seam position" msgstr "재봉선 위치" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "외벽 각 부분의 출력 시작 위치" msgid "Nearest" @@ -13312,22 +13297,22 @@ msgid "" "This option causes the inner seams to be shifted backwards based on their " "depth, forming a zigzag pattern." msgstr "" -"이 옵션을 사용하면 내부 재봉선가 깊이에 따라 뒤로 이동하여 지그재그 패턴을 형" +"이 옵션을 사용하면 내부 재봉선의 깊이에 따라 뒤로 이동하여 지그재그 패턴을 형" "성합니다." msgid "Seam gap" msgstr "재봉선 간격" msgid "" -"In order to reduce the visibility of the seam in a closed loop extrusion, " -"the loop is interrupted and shortened by a specified amount.\n" -"This amount can be specified in millimeters or as a percentage of the " -"current extruder diameter. The default value for this parameter is 10%." +"In order to reduce the visibility of the seam in a closed loop extrusion, the " +"loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the current " +"extruder diameter. The default value for this parameter is 10%." msgstr "" "폐쇄 루프 압출에서 재봉선의 가시성을 줄이기 위해 루프가 중단되고 지정된 양만" "큼 짧아집니다.\n" -"이 양은 밀리미터로 지정하거나 현재 압출기 직경의 백분율로 지정할 수 있습니" -"다. 이 매개 변수의 기본값은 10%입니다." +"이 양은 mm로 지정하거나 현재 압출기 직경의 백분율로 지정할 수 있습니다. 이 매" +"개 변수의 기본값은 10%입니다." msgid "Scarf joint seam (beta)" msgstr "스카프 조인트 재봉선(베타)" @@ -13353,9 +13338,9 @@ 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°." +"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" @@ -13369,35 +13354,34 @@ msgstr "조건부 오버행 임계값" msgid "" "This option determines the overhang threshold for the application of scarf " "joint seams. If the unsupported portion of the perimeter is less than this " -"threshold, scarf joint seams will be applied. The default threshold is set " -"at 40% of the external wall's width. Due to performance considerations, the " +"threshold, scarf joint seams will be applied. The default threshold is set at " +"40% of the external wall's width. Due to performance considerations, the " "degree of overhang is estimated." msgstr "" -"이 옵션은 스카프 조인트 이음새 적용을 위한 돌출 임계값을 결정합니다. 둘레의 " -"지지되지 않은 부분이 이 임계값보다 작으면 스카프 조인트 심이 적용됩니다. 기" -"본 임계값은 외벽 너비의 40% of로 설정됩니다. 성능 고려 사항으로 인해 돌출 정" -"도가 추정됩니다." +"이 옵션은 스카프 조인트 이음새 적용을 위한 돌출 임계값을 결정합니다. 둘레의 지" +"지되지 않은 부분이 이 임계값보다 작으면 스카프 조인트 심이 적용됩니다. 기본 임" +"계값은 외벽 너비의 40% of로 설정됩니다. 성능 고려 사항으로 인해 돌출 정도가 추" +"정됩니다." 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%." +"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%로 설정되어 있" -"습니다." +"도와 크게 다른 경우 '압출 속도 평탄화'를 활성화하는 것이 좋습니다. 여기에 지정" +"된 속도가 외부 또는 내부 벽의 속도보다 높을 경우 프린터는 기본적으로 두 가지 " +"속도 중 더 느린 속도로 설정됩니다. 백분율(예: 80%)로 지정되면 속도는 각각의 외" +"부 또는 내부 벽 속도를 기준으로 계산됩니다. 기본값은 100%로 설정되어 있습니다." msgid "Scarf joint flow ratio" msgstr "스카프 조인트 압출량 비율" @@ -13410,12 +13394,12 @@ 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." +"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입니다." +"이 양은 mm 또는 현재 레이어 높이의 백분율로 지정할 수 있습니다. 이 매개변수의 " +"기본값은 0입니다." msgid "Scarf around entire wall" msgstr "전체 벽 주위에 스카프" @@ -13449,11 +13433,11 @@ msgid "Role base wipe speed" msgstr "역할 기반 노즐 청소 속도" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" -"노즐 청소 속도는 현재 압출기의 속도에 따라 결정됩니다. ex)외벽 압출 직후에 노" +"노즐 청소 속도는 현재 압출기의 속도에 따라 결정됩니다. 예)외벽 압출 직후에 노" "즐 청소 동작을 실행하면 외벽 압출 속도가 노즐 청소에 사용됩니다." msgid "Wipe on loops" @@ -13463,43 +13447,43 @@ msgid "" "To minimize the visibility of the seam in a closed loop extrusion, a small " "inward movement is executed before the extruder leaves the loop." msgstr "" -"폐쇄 루프 압출에서 재봉선의 가시성을 최소화하기 위해 압출기가 루프를 떠나기 " -"전에 안쪽으로의 작은 이동이 실행됩니다." +"폐쇄 루프 압출에서 재봉선의 가시성을 최소화하기 위해 압출기가 루프를 떠나기 전" +"에 안쪽으로의 작은 이동이 실행됩니다." msgid "Wipe before external loop" msgstr "외부 루프 전 닦아내기" msgid "" -"To minimize visibility of potential overextrusion at the start of an " -"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " -"print order, the de-retraction is performed slightly on the inside from the " -"start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"To minimize visibility of potential overextrusion at the start of an external " +"perimeter when printing with Outer/Inner or Inner/Outer/Inner wall print " +"order, the de-retraction is performed slightly on the inside from the start " +"of the external perimeter. That way any potential over extrusion is hidden " +"from the outside surface.\n" "\n" -"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " -"print order as in these modes it is more likely an external perimeter is " -"printed immediately after a de-retraction move." +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall print " +"order as in these modes it is more likely an external perimeter is printed " +"immediately after a de-retraction move." msgstr "" "외부/내부 또는 내부/외부/내부 벽 출력 순서로 출력할 때 외부 둘레 시작 부분에" "서 잠재적인 과잉 압출의 가시성을 최소화하기 위해 외부 둘레 시작 부분에서 내부" "에 후퇴가 약간 수행됩니다. 이렇게 하면 압출에 대한 모든 잠재력이 외부 표면에" "서 숨겨집니다.\n" "\n" -"외부/내부 또는 내부/외부/내부 벽 출력 순서로 출력할 때 유용합니다. 이러한 모" -"드에서는 후퇴 이동 직후 외부 둘레가 출력될 가능성이 더 높기 때문입니다." +"외부/내부 또는 내부/외부/내부 벽 출력 순서로 출력할 때 유용합니다. 이러한 모드" +"에서는 후퇴 이동 직후 외부 둘레가 출력될 가능성이 더 높기 때문입니다." msgid "Wipe speed" msgstr "노즐 청소 속도" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "노즐 청소 속도는 이 구성에 지정된 속도 설정에 따라 결정됩니다. 값이 백분율" -"(예: 80%)로 표시되면 이동 속도 설정을 기준으로 계산됩니다. 이 매개 변수의 기" -"본값은 80%입니다" +"(예: 80%)로 표시되면 이동 속도 설정을 기준으로 계산됩니다. 이 매개 변수의 기본" +"값은 80%입니다." msgid "Skirt distance" msgstr "스커트 거리" @@ -13514,25 +13498,27 @@ msgid "" "Angle from the object center to skirt start point. Zero is the most right " "position, counter clockwise is positive angle." msgstr "" -"객체 중심에서 스커트 시작점까지의 각도입니다. 0은 가장 올바른 위치이고 시계 " -"반대 방향은 양의 각도입니다." +"객체 중심에서 스커트 시작점까지의 각도입니다. 0은 가장 올바른 위치이고 시계 반" +"대 방향은 양의 각도입니다." msgid "Skirt height" msgstr "스커트 높이" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "" -"얼마나 많은 스커트 레이어를 생성할지 결정합니다. 일반적으로 한개의 레이어를 " -"사용합니다" +"얼마나 많은 스커트 레이어를 생성할지 결정합니다. 일반적으로 한개의 레이어를 사" +"용합니다" msgid "Single loop draft shield" -msgstr "" +msgstr "단일 루프 드래프트 실드" msgid "" "Limits the draft shield loops to one wall after the first layer. This is " "useful, on occasion, to conserve filament but may cause the draft shield to " "warp / crack." msgstr "" +"드래프트 실드 루프를 첫 번째 레이어 뒤의 한 벽으로 제한합니다. 이 방법은 필라" +"멘트를 보존하는 데 유용하지만 드래프트 실드가 휘어지거나 갈라질 수 있습니다." msgid "Draft shield" msgstr "드래프트 실드" @@ -13540,7 +13526,7 @@ msgstr "드래프트 실드" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -13549,14 +13535,14 @@ msgid "" "with them. To avoid this, increase the skirt distance value.\n" msgstr "" "드래프트 실드는 바람으로 인해 ABS 또는 ASA 출력물이 뒤틀리거나 출력 베드에서 " -"분리되는 것을 방지하는 데 유용합니다. 일반적으로 오픈 프레임 프린터, 즉 인클" -"로저가 없는 경우에만 필요합니다. \n" +"분리되는 것을 방지하는 데 유용합니다. 일반적으로 오픈 프레임 프린터, 즉 인클로" +"저가 없는 경우에만 필요합니다.\n" "\n" -"활성화 = 스커트가 가장 높은 출력물의 높이와 같습니다. 그렇지 않으면 '스커트 " -"높이'가 사용됩니다.\n" +"활성화 = 스커트가 가장 높은 출력물의 높이와 같습니다. 그렇지 않으면 '스커트 높" +"이'가 사용됩니다.\n" "참고: 드래프트 실드가 활성화되면 스커트는 객체로부터 스커트 거리에 출력됩니" -"다. 따라서 챙이 활성화된 경우 챙과 교차할 수 있습니다. 이를 방지하려면 스커" -"트 거리 값을 늘리십시오.\n" +"다. 따라서 챙이 활성화된 경우 챙과 교차할 수 있습니다. 이를 방지하려면 스커트 " +"거리 값을 늘리십시오.\n" msgid "Enabled" msgstr "활성화" @@ -13565,8 +13551,7 @@ msgid "Skirt type" msgstr "스커트 유형" msgid "" -"Combined - single skirt for all objects, Per object - individual object " -"skirt." +"Combined - single skirt for all objects, Per object - individual object skirt." msgstr "결합 - 모든 객체에 대한 단일 스커트, 객체별 - 개별 객체 스커트." msgid "Combined" @@ -13578,7 +13563,7 @@ msgstr "객체당" msgid "Skirt loops" msgstr "스커트 루프" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "스커트의 루프 수입니다. 0은 스커트 비활성화를 의미합니다" msgid "Skirt speed" @@ -13594,13 +13579,13 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" -"스커트를 출력할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성화" -"되었음을 의미합니다.\n" +"스커트를 출력할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성화되" +"었음을 의미합니다.\n" "\n" "프린터가 프라임 라인 없이 출력하도록 설정된 경우 0이 아닌 값을 사용하는 것이 " "유용합니다.\n" @@ -13608,18 +13593,19 @@ msgstr "" "한 경우에는 루프 수를 늘리십시오." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" -"G코드의 출력 속도는 예상 레이어 시간이 이 값보다 짧은 경우 레이어의 냉각을 개" -"선하기 위해 느려집니다" +"Gcode의 출력 속도는 예상 레이어 시간이 이 값보다 짧은 경우 레이어의 냉각을 개" +"선하기 위해 느려집니다." msgid "Minimum sparse infill threshold" msgstr "최소 드문 채우기 임계값" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "임계값보다 작은 드문 채우기 영역은 꽉찬 내부 채우기로 대체됩니다" msgid "Solid infill" @@ -13629,18 +13615,18 @@ msgid "Filament to print solid infill" msgstr "솔리드 인필을 출력하는 필라멘트" msgid "" -"Line width of internal solid infill. If expressed as a %, it will be " -"computed over the nozzle diameter." +"Line width of internal solid infill. If expressed as a %, it will be computed " +"over the nozzle diameter." msgstr "" "꽉찬 내부 채우기 선 너비. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "상단 및 하단 표면을 제외한 꽉찬 내부 채우기 속도" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "나선형은 외부 윤곽선의 z 이동을 부드럽게 합니다. 그리고 객체를 꽉찬 하단 레이" "어가 있는 단일 벽으로 출력합니다. 최종 생성된 출력물에는 재봉선가 없습니다" @@ -13650,7 +13636,7 @@ msgstr "부드러운 나선형" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "부드러운 나선형은 X와 Y의 움직임을 매끄럽게 처리하여 수직이 아닌 벽의 XY 방향" "에서도 이음새가 전혀 보이지 않습니다" @@ -13661,10 +13647,10 @@ msgstr "최대 XY 스무딩" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" -"부드러운 나선형을 얻기 위해 점을 XY로 이동하는 최대 거리 %로 표시할 경우 노" -"즐 직경에 대해 계산됩니다" +"부드러운 나선형을 얻기 위해 점을 XY로 이동하는 최대 거리 %로 표시할 경우 노즐 " +"직경에 대해 계산됩니다" msgid "Spiral starting flow ratio" msgstr "나선형 시작 유량비" @@ -13673,8 +13659,8 @@ msgstr "나선형 시작 유량비" msgid "" "Sets the starting flow ratio while transitioning from the last bottom layer " "to the spiral. Normally the spiral transition scales the flow ratio from 0% " -"to 100% during the first loop which can in some cases lead to under " -"extrusion at the start of the spiral." +"to 100% during the first loop which can in some cases lead to under extrusion " +"at the start of the spiral." msgstr "" "마지막 하단 레이어에서 나선형으로 전환하는 동안 시작 압출량 비율을 설정합니" "다. 일반적으로 나선형 전환은 첫 번째 루프 동안 압출량 비율을 0% 에서 100% 로 " @@ -13683,32 +13669,31 @@ msgstr "" msgid "Spiral finishing flow ratio" msgstr "나선형 종료 유량비" -#, fuzzy, no-c-format, no-boost-format +#, no-c-format, no-boost-format msgid "" "Sets the finishing flow ratio while ending the spiral. Normally the spiral " "transition scales the flow ratio from 100% to 0% during the last loop which " "can in some cases lead to under extrusion at the end of the spiral." msgstr "" -"나선형을 끝내는 동안 마무리 압출량을 설정합니다. 일반적으로 나선형 전환은 마" -"지막 루프 동안 압출량 비율을 100% 에서 0% 로 스케일링하므로 경우에 따라 나선" -"형 끝에서 압출이 미달될 수 있습니다." +"나선형을 끝내는 동안 마무리 압출량을 설정합니다. 일반적으로 나선형 전환은 마지" +"막 루프 동안 압출량 비율을 100% 에서 0% 로 스케일링하므로 경우에 따라 나선형 " +"끝에서 압출이 미달될 수 있습니다." msgid "" "If smooth or traditional mode is selected, a timelapse video will be " "generated for each print. After each layer is printed, a snapshot is taken " -"with the chamber camera. All of these snapshots are composed into a " -"timelapse video when printing completes. If smooth mode is selected, the " -"toolhead will move to the excess chute after each layer is printed and then " -"take a snapshot. Since the melt filament may leak from the nozzle during the " -"process of taking a snapshot, prime tower is required for smooth mode to " -"wipe nozzle." +"with the chamber camera. All of these snapshots are composed into a timelapse " +"video when printing completes. If smooth mode is selected, the toolhead will " +"move to the excess chute after each layer is printed and then take a " +"snapshot. Since the melt filament may leak from the nozzle during the process " +"of taking a snapshot, prime tower is required for smooth mode to wipe nozzle." msgstr "" "유연 또는 기존 모드를 선택한 경우 각 출력에 대해 타임랩스 비디오가 생성됩니" -"다. 각 레이어가 출력된 후 챔버 카메라로 스냅샷을 찍습니다. 이 모든 스냅샷은 " -"출력이 완료되면 타임랩스 비디오로 구성됩니다. 유연 모드를 선택하면 각 레이어" -"가 출력된 후 툴 헤드가 여유 공간으로 이동한 다음 스냅샷을 찍습니다. 스냅샷을 " -"찍는 과정에서 노즐에서 녹은 필라멘트가 새어 나올 수 있기 때문에 유연 모드에" -"서 노즐을 닦으려면 프라임 타워가 필요합니다." +"다. 각 레이어가 출력된 후 챔버 카메라로 스냅샷을 찍습니다. 이 모든 스냅샷은 출" +"력이 완료되면 타임랩스 비디오로 구성됩니다. 유연 모드를 선택하면 각 레이어가 " +"출력된 후 툴 헤드가 여유 공간으로 이동한 다음 스냅샷을 찍습니다. 스냅샷을 찍" +"는 과정에서 노즐에서 녹은 필라멘트가 새어 나올 수 있기 때문에 유연 모드에서 노" +"즐을 닦으려면 프라임 타워가 필요합니다." msgid "Traditional" msgstr "기존" @@ -13719,7 +13704,7 @@ msgstr "온도 가변" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " +"value is not used when 'idle_temperature' in filament settings is set to non-" "zero value." msgstr "" "압출기가 작동하지 않을 때 적용되는 온도차입니다. 필라멘트 설정의 " @@ -13735,14 +13720,14 @@ msgid "" "the tool in advance." msgstr "" "툴 체인지 후 대기 시간을 줄이기 위해 Orca는 현재 도구가 계속 사용되는 동안 다" -"음 도구를 예열할 수 있습니다. 이 설정은 다음 도구를 예열하는 시간을 초 단위" -"로 지정합니다. Orca는 도구를 미리 예열하기 위해 M104 명령을 삽입합니다." +"음 도구를 예열할 수 있습니다. 이 설정은 다음 도구를 예열하는 시간을 초 단위로 " +"지정합니다. Orca는 도구를 미리 예열하기 위해 M104 명령을 삽입합니다." msgid "Preheat steps" msgstr "예열 단계" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "여러 예열 명령(예: M104.1)을 삽입하세요. Prusa XL에만 유용합니다. 다른 프린터" @@ -13751,16 +13736,16 @@ msgstr "" msgid "Start G-code" msgstr "시작 Gcode" -msgid "Start G-code when start the whole printing" -msgstr "전체 출력을 시작할 때의 시작 Gcode" +msgid "Start G-code when starting the entire print." +msgstr "출력을 시작할 때의 Gcode" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "이 필라멘트의 출력을 시작할 때의 시작 Gcode" msgid "Single Extruder Multi Material" msgstr "단일 압출기 다중 재료" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "단일 노즐을 사용하여 다중 필라멘트 출력" msgid "Manual Filament Change" @@ -13773,32 +13758,32 @@ msgid "" "printing, where we use M600/PAUSE to trigger the manual filament change " "action." msgstr "" -"출력 시작 시에만 사용자 정의 필라멘트 변경 G코드를 생략하려면 이 옵션을 활성" -"화합니다. 툴 변경 명령(예: T0)은 전체 출력 과정에서 건너뜁니다. 이는 M600/" -"PAUSE를 사용하여 수동 필라멘트 교체 작업을 실행하는 수동 다중 재료 출력에 유" -"용합니다." +"출력 시작 시에만 사용자 정의 필라멘트 변경 Gcode를 생략하려면 이 옵션을 활성화" +"합니다. 툴 변경 명령(예: T0)은 전체 출력 과정에서 건너뜁니다. 이는 M600/PAUSE" +"를 사용하여 수동 필라멘트 교체 작업을 실행하는 수동 다중 재료 출력에 유용합니" +"다." msgid "Purge in prime tower" msgstr "프라임 타워에서 청소" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "남은 필라멘트를 프라임 타워에서 제거" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "필라멘트 채워넣기 활성화" msgid "No sparse layers (beta)" msgstr "희소 레이어 없음(베타)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " -"print the wipe tower. User is responsible for ensuring there is no collision " -"with the print." +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to print " +"the wipe tower. User is responsible for ensuring there is no collision with " +"the print." msgstr "" "활성화되면 툴 체인지 없이 레이어에 프라임 타워가 출력되지 않습니다. 툴 체인지" -"가 있는 레이어에서는 압출기가 아래쪽으로 이동하여 프라임 타워를 출력합니다. " -"출력물과의 충돌이 없는지 확인하는 것은 사용자의 책임입니다." +"가 있는 레이어에서는 압출기가 아래쪽으로 이동하여 프라임 타워를 출력합니다. 출" +"력물과의 충돌이 없는지 확인하는 것은 사용자의 책임입니다." msgid "Prime all printing extruders" msgstr "모든 활성화된 압출기 프라이밍" @@ -13819,15 +13804,15 @@ msgid "" "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" "간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬라이싱 중에 채워집니다. 간" -"격 채우기 작업은 최종 출력 해상도를 감소시킬 수 있으므로 값을 합리적으로 낮" -"게 유지하는 것이 좋습니다." +"격 채우기 작업은 최종 출력 해상도를 감소시킬 수 있으므로 값을 합리적으로 낮게 " +"유지하는 것이 좋습니다." msgid "Slicing Mode" msgstr "슬라이싱 모드" msgid "" -"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " -"close all holes in the model." +"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close " +"all holes in the model." msgstr "" "3DLabPrint 비행기 모델에는 \"짝수-홀수\"를 사용하세요. \"구멍 닫기\"를 사용하" "여 모델의 모든 구멍을 닫습니다." @@ -13850,10 +13835,10 @@ msgid "" "example, if your endstop zero actually leaves the nozzle 0.3mm far from the " "print bed, set this to -0.3 (or fix your endstop)." msgstr "" -"이 값은 출력 G코드의 모든 Z 좌표에 더해지거나 뺍니다. 이는 잘못된 Z 엔드스톱 " -"위치를 보정하는 데 사용됩니다. 예를 들어 엔드스톱 제로가 실제로 출력 베드에" -"서 노즐을 0.3mm 멀리 벗어나는 경우 이 값을 -0.3으로 설정합니다 (또는 엔드스톱" -"을 직접 수정하세요)." +"이 값은 출력 Gcode의 모든 Z 좌표에 더해지거나 뺍니다. 이는 잘못된 Z 엔드스톱 " +"위치를 보정하는 데 사용됩니다. 예를 들어 엔드스톱 제로가 실제로 출력 베드에서 " +"노즐을 0.3mm 멀리 벗어나는 경우 이 값을 -0.3으로 설정합니다 (또는 엔드스톱을 " +"직접 수정하세요)." msgid "Enable support" msgstr "서포트 사용" @@ -13862,9 +13847,9 @@ msgid "Enable support generation." msgstr "서포트 생성을 활성화 합니다." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "일반(자동) 및 트리(자동)는 서포트를 자동으로 생성하는 데 사용됩니다. 일반(수" "동) 또는 트리(수동)를 선택하면 서포트 시행자만 생성됩니다." @@ -13884,14 +13869,14 @@ msgstr "트리(수동)" msgid "Support/object xy distance" msgstr "서포트/객체 XY 거리" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "객체와 서포트를 분리하는 XY 간격" msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "서포트/객체 첫 번째 레이어 간격" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "첫 번째 레이어에서 객체와 서포트 사이의 XY 분리." msgid "Pattern angle" msgstr "패턴 각도" @@ -13902,7 +13887,7 @@ msgstr "이 설정을 사용하여 수평면에서 서포트 패턴을 회전합 msgid "On build plate only" msgstr "빌드 플레이트에만 생성" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "모델 표면에 서포트를 생성하지 않고 빌드 플레이트에만 생성합니다" msgid "Support critical regions only" @@ -13924,13 +13909,13 @@ msgstr "서포트가 필요하지 않은 작은 오버행에서 서포트를 제 msgid "Top Z distance" msgstr "상단 Z 거리" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "서포트 상단과 객체 접점의 간격" msgid "Bottom Z distance" msgstr "하단 Z 거리" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "서포트 하단과 객체 접점의 간격" msgid "Support/raft base" @@ -13938,10 +13923,10 @@ msgstr "서포트/라프트 기본" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" -"기본 서포트 및 라프트를 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 특" -"정 필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다" +"기본 서포트 및 라프트를 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 특정 " +"필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다" msgid "Avoid interface filament for base" msgstr "베이스용 인터페이스 필라멘트 줄이기" @@ -13969,21 +13954,21 @@ msgstr "서포트/라프트 접점" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" -"서포트 및 라프트 접점을 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 특" -"정 필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다" +"서포트 및 라프트 접점을 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 특정 " +"필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다" msgid "Top interface layers" msgstr "상단 접점 레이어" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "상단 접점 레이어 수" msgid "Bottom interface layers" msgstr "하단 접점 레이어" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "하단 인터페이스 레이어 수" msgid "Same as top" @@ -13992,22 +13977,22 @@ msgstr "위와 동일" msgid "Top interface spacing" msgstr "상단 접점 선 간격" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "상단 접점 선의 간격. 0은 꽉찬 접점을 의미합니다" msgid "Bottom interface spacing" msgstr "하단 접점 선 간격" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "하단 접점 선의 간격. 0은 꽉찬 접점을 의미합니다" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "서포트 접점 속도" msgid "Base pattern" msgstr "기본 패턴" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "서포트 기본 패턴" msgid "Rectilinear grid" @@ -14022,7 +14007,7 @@ msgstr "접점 패턴" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "서포트 접점의 선 패턴. 비가용성 서포트 접점의 기본 패턴은 직선인 반면 가용성 " "서포트 접점의 기본 패턴은 동심입니다" @@ -14033,16 +14018,16 @@ msgstr "엇갈린 직선" msgid "Base pattern spacing" msgstr "기본 패턴 간격" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "서포트 선 사이의 간격" msgid "Normal Support expansion" msgstr "일반 서포트 확장" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "일반 서포트의 수평 범위를 확대(+) 또는 축소(-)합니다" -msgid "Speed of support" +msgid "Speed of support." msgstr "서포트 속도" msgid "" @@ -14050,9 +14035,8 @@ msgid "" "into a regular grid will create more stable supports (default), while snug " "support towers will save material and reduce object scarring.\n" "For tree support, slim and organic style will merge branches more " -"aggressively and save a lot of material (default organic), while hybrid " -"style will create similar structure to normal support under large flat " -"overhangs." +"aggressively and save a lot of material (default organic), while hybrid style " +"will create similar structure to normal support under large flat overhangs." msgstr "" "서포트의 스타일과 모양. 일반 서포트의 경우, 격자는 보다 안정적인 서포트(기본" "값)가 생성되는 반면, 맞춤 서포트는 재료를 절약하고 서포트 자국을 줄입니다.\n" @@ -14061,7 +14045,7 @@ msgstr "" "에 일반 서포트와 유사한 구조를 만듭니다." msgid "Default (Grid/Organic)" -msgstr "기본값(그리드/오가닉" +msgstr "기본값(그리드/오가닉)" msgid "Snug" msgstr "맞춤" @@ -14070,25 +14054,25 @@ msgid "Organic" msgstr "유기체" msgid "Tree Slim" -msgstr "얇은 나무" +msgstr "얇은 트리" msgid "Tree Strong" -msgstr "강한 나무" +msgstr "강한 트리" msgid "Tree Hybrid" -msgstr "혼합 나무" +msgstr "혼합 트리" msgid "Independent support layer height" msgstr "독립적 서포트 레이어 높이" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "서포트 레이어는 객체 레이어와 독립적인 레이어 높이를 사용합니다. 이것은 Z 거" -"리 사용자 정의를 지원하고 출력 시간을 절약하기 위한 것입니다. 프라임 타워가 " -"활성화되면 이 옵션은 유효하지 않습니다." +"리 사용자 정의를 지원하고 출력 시간을 절약하기 위한 것입니다. 프라임 타워가 활" +"성화되면 이 옵션은 유효하지 않습니다." msgid "Threshold angle" msgstr "임계값 각도" @@ -14106,20 +14090,19 @@ msgid "" "overlap is below the threshold. The smaller this value is, the steeper the " "overhang that can be printed without support." msgstr "" -"임계각이 0이면 오버행이 임계값 미만인 오버행에 대한 서포트가 생성됩니다. 이 " -"값이 작을수록 서포트 없이 출력할 수 있는 오버행이 가파르게 됩니다." +"임계각이 0이면 오버행이 임계값 미만인 오버행에 대한 서포트가 생성됩니다. 이 값" +"이 작을수록 서포트 없이 출력할 수 있는 오버행이 가파르게 됩니다." msgid "Tree support branch angle" msgstr "트리 서포트 가지 각도" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "이 설정은 트리 서포트의 가지가 만들 수 있는 오버행의 최대 각도를 결정합니다. " -"각도가 증가하면 가지가 멀리까지 닿을 수 있도록 더 수평으로 출력될 수 있습니" -"다." +"각도가 증가하면 가지가 멀리까지 닿을 수 있도록 더 수평으로 출력될 수 있습니다." msgid "Preferred Branch Angle" msgstr "선호하는 가지 각도" @@ -14130,9 +14113,9 @@ msgid "" "model. Use a lower angle to make them more vertical and more stable. Use a " "higher angle for branches to merge faster." msgstr "" -"모델을 피할 필요가 없을 때 가지의 선호 각도입니다. 더 수직적이고 안정적으로 " -"만들려면 더 낮은 각도를 사용하세요. 가지를 더 빠르게 병합하려면 더 높은 각도" -"를 사용하세요." +"모델을 피할 필요가 없을 때 가지의 선호 각도입니다. 더 수직적이고 안정적으로 만" +"들려면 더 낮은 각도를 사용하세요. 가지를 더 빠르게 병합하려면 더 높은 각도를 " +"사용하세요." msgid "Tree support branch distance" msgstr "트리 서포트 가지 거리" @@ -14146,23 +14129,22 @@ msgstr "가지 밀도" #. TRN PrintSettings: "Organic supports" > "Branch Density" msgid "" -"Adjusts the density of the support structure used to generate the tips of " -"the branches. A higher value results in better overhangs but the supports " -"are harder to remove, thus it is recommended to enable top support " -"interfaces instead of a high branch density value if dense interfaces are " -"needed." +"Adjusts the density of the support structure used to generate the tips of the " +"branches. A higher value results in better overhangs but the supports are " +"harder to remove, thus it is recommended to enable top support interfaces " +"instead of a high branch density value if dense interfaces are needed." msgstr "" "가지 끝을 생성하는 데 사용되는 서포트의 밀도를 조정합니다. 값이 높을수록 오버" -"행가 더 좋아지지만 서포트를 제거하기가 더 어렵습니다. 따라서 조밀한 인터페이" -"스가 필요한 경우 높은 가지 밀도 값 대신 상단 지지 인터페이스를 활성화하는 것" -"이 좋습니다." +"행가 더 좋아지지만 서포트를 제거하기가 더 어렵습니다. 따라서 조밀한 인터페이스" +"가 필요한 경우 높은 가지 밀도 값 대신 상단 지지 인터페이스를 활성화하는 것이 " +"좋습니다." msgid "Adaptive layer height" msgstr "적응형 레이어 높이" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "이 옵션을 활성화하면 첫 번째 레이어를 제외한 트리 서포트의 레이어 높이가 자동" "으로 계산됩니다 " @@ -14172,17 +14154,17 @@ msgstr "트리 서포트 자동 브림 너비" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "옵션을 활성화하면 트리 서포트의 브림 너비가 자동으로 계산됩니다" msgid "Tree support brim width" msgstr "트리 서포트 브림 너비" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "트리 서포트 가지에서 가장 바깥쪽 브림까지의 거리" msgid "Tip Diameter" -msgstr "끝 직경" +msgstr "노즐 직경" #. TRN PrintSettings: "Organic supports" > "Tip Diameter" msgid "Branch tip diameter for organic supports." @@ -14206,8 +14188,8 @@ msgid "" "support." msgstr "" "아래로 갈수록 가지의 직경이 점차 굵어지는 각도. 각도가 0이면 가지가 균일한 두" -"께를 가지는 가지가 됩니다. 약간의 각도는 유기체 서포트의 안정성을 증가시킬 " -"수 있습니다." +"께를 가지는 가지가 됩니다. 약간의 각도는 유기체 서포트의 안정성을 증가시킬 수 " +"있습니다." msgid "Support wall loops" msgstr "서포트 벽 루프" @@ -14223,7 +14205,7 @@ msgstr "채우기가 있는 트리 서포트" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "이 설정은 트리 서포트의 큰 공동 내부에 채우기를 추가할지 여부를 지정합니다" @@ -14232,11 +14214,10 @@ msgstr "온도 제어 활성화" msgid "" "Enable this option for automated chamber temperature control. This option " -"activates the emitting of an M191 command before the " -"\"machine_start_gcode\"\n" +"activates the emitting of an M191 command before the \"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14245,10 +14226,10 @@ msgstr "" "자동화된 챔버 온도 제어를 위해 이 옵션을 활성화합니다. 이 옵션은 " "\"machine_start_gcode\" 이전에 M191 명령 내보내기를 활성화합니다.\n" " 챔버 온도를 설정하고 온도에 도달할 때까지 기다립니다. 또한 출력가 끝나면 챔" -"버 히터를 끄는 M141 명령을 내보냅니다(있는 경우). \n" +"버 히터를 끄는 M141 명령을 내보냅니다(있는 경우).\n" "\n" -"이 옵션은 매크로를 통해 또는 기본적으로 M191 및 M141 명령을 지원하는 펌웨어" -"에 의존하며 일반적으로 활성 챔버 히터가 설치된 경우 사용됩니다." +"이 옵션은 매크로를 통해 또는 기본적으로 M191 및 M141 명령을 지원하는 펌웨어에 " +"의존하며 일반적으로 활성 챔버 히터가 설치된 경우 사용됩니다." msgid "Chamber temperature" msgstr "챔버 온도" @@ -14258,24 +14239,24 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " -"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " -"be useful if your printer does not support M141/M191 commands, or if you " -"desire to handle heat soaking in the print start macro if no active chamber " -"heater is installed." +"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may be " +"useful if your printer does not support M141/M191 commands, or if you desire " +"to handle heat soaking in the print start macro if no active chamber heater " +"is installed." msgstr "" "ABS, ASA, PC 및 PA와 같은 고온 재료의 경우 챔버 온도가 높을수록 뒤틀림을 억제" "하거나 줄이는 데 도움이 될 수 있으며 잠재적으로 층간 결합 강도가 높아질 수 있" "습니다. 그러나 동시에 챔버 온도가 높을수록 ABS 및 ASA의 공기 여과 효율성이 감" -"소합니다. \n" +"소합니다.\n" "\n" "PLA, PETG, TPU, PVA 및 기타 저온 재료의 경우 열 차단 시 재료 연화로 인한 압출" "기 막힘을 방지하기 위해 챔버 온도가 낮아야 하므로 이 옵션을 비활성화(0으로 설" @@ -14283,11 +14264,11 @@ msgstr "" "\n" "활성화된 경우 이 매개변수는 원하는 챔버 온도를 출력 시작 매크로 또는 " "PRINT_START(기타 변수) CHAMBER_TEMP=[chamber_temp]와 같은 열 흡수 매크로에 전" -"달하는 데 사용할 수 있는 Chamber_temp라는 Gcode 변수도 설정합니다. 이는 프린" -"터가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 출" -"력 시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다." +"달하는 데 사용할 수 있는 Chamber_temp라는 Gcode 변수도 설정합니다. 이는 프린터" +"가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 출력 " +"시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "초기 레이어 이후의 노즐 온도" msgid "Detect thin wall" @@ -14295,27 +14276,27 @@ msgstr "얇은 벽 감지" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "두개의 선 너비를 포함할 수 없는 얇은 벽을 감지합니다. 그리고 한 선으로 출력합" "니다. 폐쇄 루프가 아니기 때문에 출력이 잘 되지 않을 수 있습니다" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" -"이 G코드는 툴 체인지을 유발하는 T 명령을 포함하여 필라멘트를 변경할 때 삽입됩" +"이 Gcode는 툴 체인지을 유발하는 T 명령을 포함하여 필라멘트를 변경할 때 삽입됩" "니다" -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "이 G코드는 압출 역할이 변경될 때 삽입됩니다" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "이 Gcode는 압출 역할이 변경될 때 삽입됩니다" msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " "the nozzle diameter." msgstr "상단 표면의 선 너비. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "꽉찬 상단 표면 채우기 속도" msgid "Top shell layers" @@ -14324,7 +14305,7 @@ msgstr "상단 쉘 레이어" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "상단 표면을 포함한 상단 쉘의 꽉찬 레이어 수입니다. 이 값으로 계산한 두께가 상" "단 쉘 두께보다 얇으면 상단 쉘 레이어가 증가합니다" @@ -14340,36 +14321,36 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "상단 쉘 레이어로 계산된 두께가 이 값보다 얇은 경우 슬라이싱할 때 상단 꽉찬 레" "이어의 수가 증가합니다. 이렇게 하면 레이어 높이가 작을 때 쉘이 너무 얇아지는 " "것을 방지할 수 있습니다. 0은 이 설정이 비활성화되고 상단 쉘의 두께가 절대적으" "로 상단 쉘 레이어에 의해 결정됨을 의미합니다" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "압출이 없을 때의 이동 속도" msgid "Wipe while retracting" msgstr "후퇴 시 노즐 청소" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any leaked " +"material on the nozzle. This can minimize blobs when printing a new part " +"after traveling." msgstr "" "노즐에서 흘러내린된 재료를 청소하기 위해 후퇴할 때 마지막 압출 경로를 따라 노" -"즐을 이동합니다. 이동 후 출력을 시작할 때 방울을 최소화할 수 있습니다" +"즐을 이동합니다. 이동 후 출력을 시작할 때 방울을 최소화할 수 있습니다." msgid "Wipe Distance" msgstr "노즐 청소 거리" msgid "" -"Describe how long the nozzle will move along the last path when " -"retracting. \n" +"Describe how long the nozzle will move along the last path when retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " -"extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"extruder/filament retraction settings are, a retraction move may be needed to " +"retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -14403,12 +14384,12 @@ msgstr "" "실제 버리기 볼륨은 버리기 승수에 테이블의 버리기 볼륨을 곱한 것과 같습니다." msgid "Prime volume" -msgstr "프라임 부피" +msgstr "프라임양" msgid "The volume of material to prime extruder on tower." msgstr "탑에서 압출을 실행할 재료의 부피." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "프라임 타워의 너비" msgid "Wipe tower rotation angle" @@ -14444,16 +14425,16 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" "For the wipe tower external perimeters the internal perimeter speed is used " "regardless of this setting." msgstr "" -"와이프 타워에서 퍼징하고 와이프 타워 희박 레이어를 출력할 때 최대 출력 속도입" -"니다. 퍼징 시 희소 충전 속도 또는 필라멘트 최대 압출 속도에서 계산된 속도가 " -"더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n" +"와이프 타워에서 버리기하고 와이프 타워 희박 레이어를 출력할 때 최대 출력 속도" +"입니다. 버리기 시 희소 충전 속도 또는 필라멘트 최대 압출 속도에서 계산된 속도" +"가 더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n" "\n" "희소 레이어를 출력할 때 내부 주변 속도 또는 필라멘트 최대 압출 속도에서 계산" "된 속도가 더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n" @@ -14472,10 +14453,10 @@ msgid "" "use the one that is available (non-soluble would be preferred)." msgstr "" "프라임 타워의 둘레를 출력할 때 사용하는 압출기입니다. 사용 가능한 압출기를 사" -"용하려면 0으로 설정하세요(비가용성 재료가 적절함)." +"용하려면 0으로 설정하세요 (비가용성 재료가 적절합니다)." msgid "Purging volumes - load/unload volumes" -msgstr "제거 부피 - 넣기/빼기 부피" +msgstr "버리기량 - 로드/언로드량" msgid "" "This vector saves required volumes to change from/to each tool used on the " @@ -14493,8 +14474,8 @@ msgid "" msgstr "" "필라멘트 교체 후 버리기는 객체의 채우기 내부에서 수행됩니다. 이렇게 하면 낭비" "되는 양이 줄어들고 출력 시간이 단축될 수 있습니다. 벽이 투명 필라멘트로 출력" -"된 경우 혼합 색상 충전재가 외부에 보입니다. 프라임 타워가 활성화되지 않으면 " -"적용되지 않습니다." +"된 경우 혼합 색상 충전재가 외부에 보입니다. 프라임 타워가 활성화되지 않으면 적" +"용되지 않습니다." msgid "" "Purging after filament change will be done inside objects' support. This may " @@ -14502,17 +14483,17 @@ msgid "" "effect, unless the prime tower is enabled." msgstr "" "필라멘트 변경 후 버리기는 객체의 서포트 내부에서 수행됩니다. 이렇게 하면 낭비" -"되는 양이 줄어들고 출력 시간이 단축될 수 있습니다. 프라임 타워가 활성화되지 " -"않으면 적용되지 않습니다." +"되는 양이 줄어들고 출력 시간이 단축될 수 있습니다. 프라임 타워가 활성화되지 않" +"으면 적용되지 않습니다." msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" -"이 객체는 필라멘트를 절약하고 출력 시간을 줄이기 위해 필라멘트 변경 후 노즐" -"에 남은 잔류물을 제거하는 데 사용됩니다. 결과적으로 객체의 색상이 혼합됩니" -"다. 기본 타워가 활성화되지 않으면 적용되지 않습니다." +"이 객체는 필라멘트를 절약하고 출력 시간을 줄이기 위해 필라멘트 변경 후 노즐에 " +"남은 잔류물을 제거하는 데 사용됩니다. 결과적으로 객체의 색상이 혼합됩니다. 기" +"본 타워가 활성화되지 않으면 적용되지 않습니다." msgid "Maximal bridging distance" msgstr "최대 브릿지 거리" @@ -14531,48 +14512,51 @@ msgstr "퍼지를 위한 추가 흐름" msgid "" "Extra flow used for the purging lines on the wipe tower. This makes the " -"purging lines thicker or narrower than they normally would be. The spacing " -"is adjusted automatically." +"purging lines thicker or narrower than they normally would be. The spacing is " +"adjusted automatically." msgstr "" -"와이프 타워의 퍼지 라인에 추가 흐름이 사용됩니다. 이렇게 하면 퍼지 라인이 평" -"소보다 두껍거나 좁아집니다. 간격은 자동으로 조정됩니다." +"와이프 타워의 퍼지 라인에 추가 흐름이 사용됩니다. 이렇게 하면 퍼지 라인이 평소" +"보다 두껍거나 좁아집니다. 간격은 자동으로 조정됩니다." msgid "Idle temperature" msgstr "공회전 온도" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "도구가 현재 다중 도구 설정에서 사용되지 않을 때의 노즐 온도. 이는 출력 설정에" -"서 '흘러내림 방지'가 활성화된 경우에만 사용됩니다. 비활성화하려면 0으로 설정" -"합니다." +"서 '흘러내림 방지'가 활성화된 경우에만 사용됩니다. 비활성화하려면 0으로 설정합" +"니다." msgid "X-Y hole compensation" msgstr "X-Y 구멍 보정" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" -"객체의 구멍(Holes)은 구성된 값에 의해 XY 평면에서 커지거나 줄어듭니다. 양수 " -"값은 구멍을 더 크게 만듭니다. 음수 값은 구멍을 더 작게 만듭니다. 이 기능은 개" -"체의 조립 문제가 있을 때 크기를 약간 조정하는 데 사용됩니다" +"객체의 구멍은 구성된 값에 의해 XY 평면에서 커지거나 줄어듭니다. 양수 값은 구멍" +"을 더 크게 만듭니다. 음수 값은 구멍을 더 작게 만듭니다. 이 기능은 개체의 조립 " +"문제가 있을 때 크기를 약간 조정하는 데 사용됩니다" msgid "X-Y contour compensation" msgstr "X-Y 윤곽 보상" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" -"객체의 윤곽은 구성된 값에 의해 XY 평면에서 커지거나 줄어듭니다. 양수 값은 윤" -"곽선을 더 크게 만듭니다. 음수 값은 윤곽선을 더 작게 만듭니다. 이 기능은 객체" -"의 조립 문제가 있을 때 크기를 약간 조정하는 데 사용됩니다" +"객체의 윤곽은 구성된 값에 의해 XY 평면에서 커지거나 줄어듭니다. 양수 값은 윤곽" +"선을 더 크게 만듭니다. 음수 값은 윤곽선을 더 작게 만듭니다. 이 기능은 객체의 " +"조립 문제가 있을 때 크기를 약간 조정하는 데 사용됩니다" msgid "Convert holes to polyholes" msgstr "구멍을 폴리홀로 변환" @@ -14601,8 +14585,8 @@ msgid "" "In mm or in % of the radius." msgstr "" "원의 추정 반경에 대한 모서리의 최대 변위.\n" -"원통은 다양한 크기의 삼각형으로 내보내지는 경우가 많기 때문에 모서리가 원 둘" -"레에 위치하지 않을 수 있습니다. 이 설정을 사용하면 감지 범위를 넓힐 수 있습니" +"원통은 다양한 크기의 삼각형으로 내보내지는 경우가 많기 때문에 모서리가 원 둘레" +"에 위치하지 않을 수 있습니다. 이 설정을 사용하면 감지 범위를 넓힐 수 있습니" "다.\n" "mm 또는 반경의 % o단위입니다." @@ -14627,7 +14611,7 @@ msgstr "Gcode 미리보기 형식" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Gcode 미리보기 포맷: 최고 품질은 PNG, 최소 크기는 JPG, 저메모리 펌웨어는 QOI" @@ -14635,23 +14619,23 @@ msgid "Use relative E distances" msgstr "상대적 E 거리 사용" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" -"\"label_objects\" 옵션을 사용할 때는 상대 압출을 권장합니다. 일부 압출기는 " -"이 옵션을 선택하지 않은 경우(절대 압출 모드) 더 잘 작동합니다. 와이프 타워는 " -"상대 모드와만 호환됩니다. 대부분의 프린터에 권장됩니다. 기본값이 선택되어 있" -"습니다" +"\"label_objects\" 옵션을 사용할 때는 상대 압출을 권장합니다. 일부 압출기는 이 " +"옵션을 선택하지 않은 경우(절대 압출 모드) 더 잘 작동합니다. 와이프 타워는 상" +"대 모드와만 호환됩니다. 대부분의 프린터에 권장됩니다. 기본값이 선택되어 있습니" +"다" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" -"클래식 벽 생성기는 돌출 폭이 일정한 벽을 생성하며 매우 얇은 영역에는 간격 채" -"움이 사용됩니다. 아라크네 엔진은 압출 폭이 가변적인 벽을 생성합니다." +"클래식 벽 생성기는 돌출 폭이 일정한 벽을 생성하며 매우 얇은 영역에는 간격 채움" +"이 사용됩니다. 아라크네 엔진은 압출 폭이 가변적인 벽을 생성합니다." msgid "Arachne" msgstr "아라크네" @@ -14662,11 +14646,10 @@ msgstr "벽 변환 길이" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" -"부품이 얇아짐에 따라 벽의 수가 변화하는 경우, 벽 구간을 분할하거나 결합하기 " -"위해 일정한 공간이 할당됩니다. 이는 노즐 지름을 기준으로 한 백분율로 표현됩니" -"다" +"부품이 얇아짐에 따라 벽의 수가 변화하는 경우, 벽 구간을 분할하거나 결합하기 위" +"해 일정한 공간이 할당됩니다. 이는 노즐 지름을 기준으로 한 백분율로 표현됩니다" msgid "Wall transitioning filter margin" msgstr "벽 변환 필터 마진" @@ -14674,17 +14657,17 @@ msgstr "벽 변환 필터 마진" msgid "" "Prevent transitioning back and forth between one extra wall and one less. " "This margin extends the range of extrusion widths which follow to [Minimum " -"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " -"margin reduces the number of transitions, which reduces the number of " -"extrusion starts/stops and travel time. However, large extrusion width " -"variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"wall width - margin, 2 * Minimum wall width + margin]. Increasing this margin " +"reduces the number of transitions, which reduces the number of extrusion " +"starts/stops and travel time. However, large extrusion width variation can " +"lead to under- or overextrusion problems. It's expressed as a percentage over " +"nozzle diameter" msgstr "" "출력물의 벽 두께를 한 번 두껍게 한 다음 다시 한 번 더 얇게 하는 것을 방지합니" -"다. 이 마진은 다음의 범위로 압출 너비를 확장합니다: [최소 벽 너비 - 마진, 2 " -"* 최소 벽 너비 + 마진]. 이 마진이 증가하면 변환 횟수가 줄어들어 압출 시작/중" -"지 횟수와 이동 시간이 줄어듭니다. 그러나, 큰 압출 너비 변동은 압출 과다 또는 " -"압출 과소 문제를 일으킬 수 있습니다. 노즐 직경을 기준으로 백분율로 표시됩니다" +"다. 이 마진은 다음의 범위로 압출 너비를 확장합니다: [최소 벽 너비 - 마진, 2 * " +"최소 벽 너비 + 마진]. 이 마진이 증가하면 변환 횟수가 줄어들어 압출 시작/중지 " +"횟수와 이동 시간이 줄어듭니다. 그러나, 큰 압출 너비 변동은 압출 과다 또는 압" +"출 과소 문제를 일으킬 수 있습니다. 노즐 직경을 기준으로 백분율로 표시됩니다" msgid "Wall transitioning threshold angle" msgstr "벽 변환 임계값" @@ -14694,35 +14677,36 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" -"벽의 짝수와 홀수 사이에 변환을 만드는 시기. 이 설정보다 큰 각도의 쐐기 모양" -"은 변환되지 않으며 나머지 공간 채우기를 위해 중앙에 벽이 출력되지 않습니다. " -"이 설정을 줄이면 중앙 벽의 수와 길이가 줄어들지만 간격이 남거나 과도하게 돌출" -"될 수 있습니다" +"벽의 짝수와 홀수 사이에 변환을 만드는 시기. 이 설정보다 큰 각도의 쐐기 모양은 " +"변환되지 않으며 나머지 공간 채우기를 위해 중앙에 벽이 출력되지 않습니다. 이 설" +"정을 줄이면 중앙 벽의 수와 길이가 줄어들지만 간격이 남거나 과도하게 돌출될 수 " +"있습니다" msgid "Wall distribution count" msgstr "벽 분포 수" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" -"변환을 분산해야 하는 벽의 개수(중심에서 카운트)입니다. 값이 낮으면 외벽의 너" -"비가 변경되지 않습니다" +"변환을 분산해야 하는 벽의 개수(중심에서 카운트)입니다. 값이 낮으면 외벽의 너비" +"가 변경되지 않습니다" msgid "Minimum feature size" msgstr "최소 형상 크기" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "얇은 형상의 최소 두께. 이 값보다 얇은 모델 형상은 출력되지 않으며, 최소 형상 " -"크기보다 두꺼운 형상은 최소 벽 너비로 확대됩니다. 노즐 직경에 대한 백분율로 " -"표시됩니다" +"크기보다 두꺼운 형상은 최소 벽 너비로 확대됩니다. 노즐 직경에 대한 백분율로 표" +"시됩니다" msgid "Minimum wall length" msgstr "최소 벽 길이" @@ -14733,30 +14717,29 @@ msgid "" "\n" "NOTE: Bottom and top surfaces will not be affected by this value to prevent " "visual gaps on the outside of the model. Adjust 'One wall threshold' in the " -"Advanced settings below to adjust the sensitivity of what is considered a " -"top-surface. 'One wall threshold' is only visible if this setting is set " -"above the default value of 0.5, or if single-wall top surfaces is enabled." +"Advanced settings below to adjust the sensitivity of what is considered a top-" +"surface. 'One wall threshold' is only visible if this setting is set above " +"the default value of 0.5, or if single-wall top surfaces is enabled." msgstr "" "짧고 닫히지 않은 벽이 출력되는 것을 방지하려면 이 값을 조정하십시오. 이로 인" -"해 출력 시간이 늘어날 수 있습니다. 값이 높을수록 더 많은 벽과 긴 벽이 제거됩" -"니다.\n" +"해 출력 시간이 늘어날 수 있습니다. 값이 높을수록 더 많은 벽과 긴 벽이 제거됩니" +"다.\n" "\n" "참고: 모델 외부의 시각적 틈을 방지하기 위해 하단 및 상단 표면은 이 값의 영향" -"을 받지 않습니다. 상단 표면으로 간주되는 항목의 감도를 조정하려면 아래 고급 " -"설정에서 '벽 하나의 임계값'을 조정하세요. '하나의 벽 임계값'은 이 설정이 기본" -"값인 0.5보다 높게 설정되거나 단일 벽 상단 표면이 활성화된 경우에만 표시됩니" -"다." +"을 받지 않습니다. 상단 표면으로 간주되는 항목의 감도를 조정하려면 아래 고급 설" +"정에서 '벽 하나의 임계값'을 조정하세요. '하나의 벽 임계값'은 이 설정이 기본값" +"인 0.5보다 높게 설정되거나 단일 벽 상단 표면이 활성화된 경우에만 표시됩니다." msgid "First layer minimum wall width" msgstr "첫 레이어 최소 벽 너비" msgid "" -"The minimum wall width that should be used for the first layer is " -"recommended to be set to the same size as the nozzle. This adjustment is " -"expected to enhance adhesion." +"The minimum wall width that should be used for the first layer is recommended " +"to be set to the same size as the nozzle. This adjustment is expected to " +"enhance adhesion." msgstr "" -"첫 번째 레이어에 사용되는 최소 벽 너비는 노즐과 동일한 크기로 설정하는 것이 " -"좋습니다. 이러한 조정을 통해 접착력이 향상될 수 있습니다." +"첫 번째 레이어에 사용되는 최소 벽 너비는 노즐과 동일한 크기로 설정하는 것이 좋" +"습니다. 이러한 조정을 통해 접착력이 향상될 수 있습니다." msgid "Minimum wall width" msgstr "최소 벽 너비" @@ -14765,23 +14748,23 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" -"모델의 얇은 형상(최소 형상 크기에 따름)을 대체할 벽의 너비입니다. 최소 벽 너" -"비가 형상의 두께보다 얇은 경우 벽은 형상 자체만큼 두꺼워집니다. 노즐 직경에 " -"대한 백분율로 표시됩니다" +"모델의 얇은 형상(최소 형상 크기에 따름)을 대체할 벽의 너비입니다. 최소 벽 너비" +"가 형상의 두께보다 얇은 경우 벽은 형상 자체만큼 두꺼워집니다. 노즐 직경에 대" +"한 백분율로 표시됩니다" msgid "Detect narrow internal solid infill" msgstr "좁은 꽉찬 내부 채우기 감지" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" -"이 옵션은 좁은 꽉찬 내부 채우기 영역을 자동으로 감지합니다. 활성화하면 출력 " -"속도를 높이기 위해 해당 영역에 동심 패턴이 사용됩니다. 그렇지 않으면 기본적으" -"로 직선 패턴이 사용됩니다." +"이 옵션은 좁은 꽉찬 내부 채우기 영역을 자동으로 감지합니다. 활성화하면 출력 속" +"도를 높이기 위해 해당 영역에 동심 패턴이 사용됩니다. 그렇지 않으면 기본적으로 " +"직선 패턴이 사용됩니다." msgid "invalid value " msgstr "잘못된 값 " @@ -14810,7 +14793,7 @@ msgstr "슬라이싱 데이터 폴더로 내보내기." msgid "Load slicing data" msgstr "슬라이싱 데이터 로드" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "디렉토리에 캐시된 슬라이싱 데이터 로드" msgid "Export STL" @@ -14822,8 +14805,8 @@ msgstr "객체를 단일 STL로 내보냅니다." msgid "Export multiple STLs" msgstr "여러 STL을 내보내기" -msgid "Export the objects as multiple STLs to directory" -msgstr "객ㅊ를 디렉터리에 여러 STL로 내보내기" +msgid "Export the objects as multiple STLs to directory." +msgstr "객체를 여러 STL로 경로에 내보내기" msgid "Slice" msgstr "슬라이스" @@ -14845,13 +14828,13 @@ msgstr "하향 머신 점검" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "현재 머신이 목록에 있는 머신과 하위 호환되는지 확인합니다." msgid "Load default filaments" msgstr "기본 필라멘트 로드" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "로드되지 않은 경우 기본값으로 첫 번째 필라멘트 로드" msgid "Minimum save" @@ -14875,7 +14858,7 @@ msgstr "플레이트당 최대 슬라이싱 시간(초)" msgid "No check" msgstr "확인 안 함" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "Gcode 경로 충돌 검사와 같은 유효성 검사를 실행하지 마십시오." msgid "Normative check" @@ -14908,20 +14891,20 @@ msgstr "정렬 옵션" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "정렬 옵션: 0-사용 안 함, 1-사용, 기타-자동" -msgid "Repetions count" +msgid "Repetition count" msgstr "반복 횟수" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "전체 모델의 반복 횟수" msgid "Ensure on bed" msgstr "베드에서 확인" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" -"객체의 일부가 베드 아래에 있을 때 베드 위로 객체를 들어올립니다. 기본적으로 " -"비활성화됩니다" +"객체의 일부가 베드 아래에 있을 때 베드 위로 객체를 들어올립니다. 기본적으로 비" +"활성화됩니다" msgid "" "Arrange the supplied models in a plate and merge them in a single model in " @@ -14933,7 +14916,7 @@ msgstr "" msgid "Convert Unit" msgstr "단위 변환" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "모델의 단위를 변환" msgid "Orient Options" @@ -14951,67 +14934,67 @@ msgstr "Y를 중심으로 회전" msgid "Rotation angle around the Y axis in degrees." msgstr "Y축을 중심으로 한 회전 각도입니다." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "부동 소수점 계수로 모델 크기 조정" msgid "Load General Settings" msgstr "일반 설정 로드" -msgid "Load process/machine settings from the specified file" -msgstr "지정된 파일에서 프로세스/기계 설정 로드" +msgid "Load process/machine settings from the specified file." +msgstr "지정된 파일에서 프로세스/장치 설정 로드" msgid "Load Filament Settings" msgstr "필라멘트 설정 로드" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "지정된 파일 목록에서 필라멘트 설정 불러오기" msgid "Skip Objects" msgstr "객체 건너뛰기" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "이 출력에서 일부 객체를 건너뜁니다" msgid "Clone Objects" msgstr "객체 복제" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "로드 목록에서 객체 복제" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "uptodate 사용 시 최신 프로세스/프린터 설정 로드" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "uptodate를 사용할 때 지정된 파일에서 최신 프로세스/프린터 설정을 로드합니다" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "최신 필라멘트 설정 사용 시 최신 필라멘트 설정 로드" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" "최신 필라멘트 설정을 사용할 때 지정된 파일에서 최신 필라멘트 설정을 로드합니" "다." msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "활성화된 경우 현재 컴퓨터가 목록에 있는 컴퓨터와 하위 호환되는지 확인합니다." -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "하향 머신 설정" -msgid "the machine settings list need to do downward checking" -msgstr "머신 설정 목록에서 아래쪽을 확인해야 합니다." +msgid "The machine settings list needs to do downward checking." +msgstr "머신 설정 목록에서 아래쪽을 확인해야 합니다" msgid "Load assemble list" msgstr "조립 목록 로드" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "구성 파일에서 조립 객체 목록 로드" msgid "Data directory" @@ -15044,14 +15027,15 @@ msgstr "" msgid "Enable timelapse for print" msgstr "출력에 타임랩스 활성화" -msgid "If enabled, this slicing will be considered using timelapse" -msgstr "활성화하면 타임랩스를 사용하여 이 슬라이싱을 고려합니다." +msgid "If enabled, this slicing will be considered using timelapse." +msgstr "활성화하면 타임랩스를 사용하여 이 슬라이싱을 고려합니다" -msgid "Load custom gcode" +#, fuzzy +msgid "Load custom G-code" msgstr "사용자 정의 Gcode 불러오기" -msgid "Load custom gcode from json" -msgstr "사용자 정의 G코드를 json에서 불러오기" +msgid "Load custom G-code from json." +msgstr "사용자 정의 Gcode를 json에서 불러오기." msgid "Load filament ids" msgstr "필라멘트 ID 불러오기" @@ -15059,31 +15043,33 @@ msgstr "필라멘트 ID 불러오기" msgid "Load filament ids for each object" msgstr "각 객체에 대한 필라멘트 ID 로드" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "한 플레이트에서 여러 색상 허용" -msgid "If enabled, the arrange will allow multiple color on one plate" -msgstr "활성화하면 하나의 플레이트에 여러 색상을 허용합니다." +msgid "If enabled, Arrange will allow multiple colors on one plate." +msgstr "활성화하면 하나의 플레이트에 여러 색상을 허용합니다" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "정렬할 때 회전 허용" -msgid "If enabled, the arrange will allow rotations when place object" -msgstr "활성화하면 객체를 배치할 때 배열이 회전을 허용합니다." +msgid "If enabled, Arrange will allow rotation when placing objects." +msgstr "활성화하면 객체를 배치할 때 배열이 회전을 허용합니다" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "정렬 시 돌출 보정 영역을 피하십시오." msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" -msgstr "활성화하면 객체를 배치할 때 돌출 보정 영역을 피합니다." +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." +msgstr "활성화하면 객체를 배치할 때 돌출 보정 영역을 피합니다" -msgid "Skip modified gcodes in 3mf" +#, fuzzy +msgid "Skip modified G-code in 3mf" msgstr "3mf에서 수정된 Gcode 건너뛰기" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" -msgstr "프린터 또는 필라멘트 사전 설정에서 3mf의 수정된 gcodes 건너뛰기" +#, fuzzy +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." +msgstr "프린터 또는 필라멘트 사전 설정에서 3mf의 수정된 Gcode 건너뛰기" msgid "MakerLab name" msgstr "메이커 랩 이름" @@ -15109,13 +15095,13 @@ msgstr "메타데이터 값 목록" msgid "metadata value list added into 3mf" msgstr "메타데이터 값 목록이 3MF에 추가됨" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "최신 버전의 3mf를 슬라이스하도록 허용" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "현재 Z올리기" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "사용자 정의 Gcode 블록의 시작 부분에 있는 Z올리기를 포함합니다." msgid "" @@ -15123,24 +15109,24 @@ msgid "" "custom G-code travels somewhere else, it should write to this variable so " "OrcaSlicer knows where it travels from when it gets control back." msgstr "" -"사용자 정의 Gcode 블록 시작 부분의 압출기 위치입니다. 사용자 정의 G코드가 다" -"른 곳으로 이동하는 경우 PrusaSlicer가 제어권을 다시 얻을 때 이동 위치를 알 " -"수 있도록 이 변수에 기록해야 합니다." +"사용자 정의 Gcode 블록 시작 부분의 압출기 위치입니다. 사용자 정의 Gcode가 다" +"른 곳으로 이동하는 경우 PrusaSlicer가 제어권을 다시 얻을 때 이동 위치를 알 수 " +"있도록 이 변수에 기록해야 합니다." msgid "" -"Retraction state at the beginning of the custom G-code block. If the custom " -"G-code moves the extruder axis, it should write to this variable so " -"OrcaSlicer de-retracts correctly when it gets control back." +"Retraction state at the beginning of the custom G-code block. If the custom G-" +"code moves the extruder axis, it should write to this variable so OrcaSlicer " +"de-retracts correctly when it gets control back." msgstr "" -"사용자 정의 Gcode 블록 시작 부분의 후퇴 상태입니다. 사용자 정의 G코드가 압출" +"사용자 정의 Gcode 블록 시작 부분의 후퇴 상태입니다. 사용자 정의 Gcode가 압출" "기 축을 이동하는 경우 PrusaSlicer가 다시 제어권을 얻었을 때 올바르게 후퇴할 " "수 있도록 이 변수에 기록해야 합니다." msgid "Extra de-retraction" -msgstr "추가 철회" +msgstr "추가 후퇴" msgid "Currently planned extra extruder priming after de-retraction." -msgstr "현재 철회 후 추가 압출기 프라이밍이 계획되어 있습니다." +msgstr "현재 후퇴 후 추가 압출기 프라이밍이 계획되어 있습니다." msgid "Absolute E position" msgstr "절대 E 위치" @@ -15207,10 +15193,10 @@ msgstr "압출기당 부피" msgid "Total filament volume extruded per extruder during the entire print." msgstr "전체 프린트 동안 압출기당 압출된 총 필라멘트 양입니다." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "총 툴 체인지" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "출력 중 도구 교환 횟수." msgid "Total volume" @@ -15233,8 +15219,8 @@ msgid "Total weight" msgstr "총 무게" msgid "" -"Total weight of the print. Calculated from filament_density value in " -"Filament Settings." +"Total weight of the print. Calculated from filament_density value in Filament " +"Settings." msgstr "" "출력물의 총 무게입니다. 필라멘트 설정의 filment_density 값에서 계산됩니다." @@ -15265,8 +15251,8 @@ msgid "" "index 0).\n" "Example: 'x:100% y:50% z:100'." msgstr "" -"개별 객체에 어떤 크기 조정이 적용되었는지에 대한 정보가 포함된 문자열을 포함" -"합니다. 객체의 인덱싱은 0부터 시작합니다(첫 번째 객체의 인덱스는 0입니다).\n" +"개별 객체에 어떤 크기 조정이 적용되었는지에 대한 정보가 포함된 문자열을 포함합" +"니다. 객체의 인덱싱은 0부터 시작합니다(첫 번째 객체의 인덱스는 0입니다).\n" "예: 'x:100% y:50% z:100'." msgid "Input filename without extension" @@ -15280,8 +15266,8 @@ msgid "" msgstr "벡터에는 점의 x 및 y 좌표라는 두 가지 요소가 있습니다. 값(mm)" msgid "" -"The vector has two elements: x and y dimension of the bounding box. Values " -"in mm." +"The vector has two elements: x and y dimension of the bounding box. Values in " +"mm." msgstr "벡터에는 경계 상자의 x 및 y 차원이라는 두 가지 요소가 있습니다. 값(mm)" msgid "First layer convex hull" @@ -15359,8 +15345,8 @@ msgid "Number of extruders" msgstr "압출기 수" msgid "" -"Total number of extruders, regardless of whether they are used in the " -"current print." +"Total number of extruders, regardless of whether they are used in the current " +"print." msgstr "현재 프린트에 사용되는지 여부에 관계없이 총 압출기 수입니다." msgid "Layer number" @@ -15421,8 +15407,8 @@ msgid "" "It seems object %s has %s. Please re-orient the object or enable support " "generation." msgstr "" -"객체 %s에 %s이(가) 있는 것 같습니다. 물체의 방향을 바꾸거나 서포트 생성을 활" -"성화하세요." +"객체 %s에 %s가 있는 것 같습니다. 물체의 방향을 바꾸거나 서포트 생성을 활성화하" +"세요." msgid "Generating support" msgstr "서포트 생성 중" @@ -15443,7 +15429,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "객체의 XY 크기 보정은 색으로 칠해져 있기 때문에 사용되지 않습니다.\n" "XY 크기 보정은 컬러 페인팅과 결합할 수 없습니다." @@ -15454,8 +15440,8 @@ msgstr "서포트: 접점 생성" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"알 수 없는 파일 형식: 입력 파일의 확장자는 .stl, .obj 또는 .amf(.xml)여야 합" -"니다." +"알 수 없는 파일 형식: 입력 파일의 확장자는 .stl, .obj 또는 .amf(.xml)여야 합니" +"다." msgid "Loading of a model file failed." msgstr "모델 파일 로드에 실패했습니다." @@ -15464,11 +15450,7 @@ msgid "The supplied file couldn't be read because it's empty" msgstr "제공된 파일이 비어 있어 읽을 수 없습니다" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." -msgstr "" -"알 수 없는 파일 형식: 입력 파일의 확장자는.3mf 또는.zip.amf여야 합니다." - -msgid "Canceled" -msgstr "취소됨" +msgstr "알 수 없는 파일 형식: 입력 파일의 확장자는.3mf 또는.zip.amf여야 합니다." msgid "load_obj: failed to parse" msgstr "load_obj: 구문 분석에 실패" @@ -15571,8 +15553,8 @@ msgid "The name cannot be empty." msgstr "이름은 비워둘 수 없습니다." #, c-format, boost-format -msgid "The selected preset: %s is not found." -msgstr "선택한 사전 설정: %s을(를) 찾을 수 없습니다." +msgid "The selected preset: %s was not found." +msgstr "선택한 사전 설정: %s을 찾을 수 없습니다." msgid "The name cannot be the same as the system preset name." msgstr "이름은 시스템 사전 설정 이름과 동일할 수 없습니다." @@ -15600,15 +15582,15 @@ msgid "The input value size must be 3." msgstr "입력 값 크기는 3이어야 합니다." msgid "" -"This machine type can only hold 16 history results per nozzle. You can " -"delete the existing historical results and then start calibration. Or you " -"can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"This machine type can only hold 16 history results per nozzle. You can delete " +"the existing historical results and then start calibration. Or you can " +"continue the calibration, but you cannot create new calibration historical " +"results.\n" "Do you still want to continue the calibration?" msgstr "" -"이 기계 유형은 노즐당 16개의 기록 결과만 보유할 수 있습니다. 기존 기록 결과" -"를 삭제한 후 교정을 시작할 수 있습니다. 또는 교정을 계속할 수 있지만 새로운 " -"교정 기록 결과를 생성할 수는 없습니다.\n" +"이 기계 유형은 노즐당 16개의 기록 결과만 보유할 수 있습니다. 기존 기록 결과를 " +"삭제한 후 교정을 시작할 수 있습니다. 또는 교정을 계속할 수 있지만 새로운 교정 " +"기록 결과를 생성할 수는 없습니다.\n" "그래도 교정을 계속하시겠습니까?" msgid "Connecting to printer..." @@ -15617,14 +15599,14 @@ msgstr "프린터에 연결하는 중..." msgid "The failed test result has been dropped." msgstr "실패한 테스트 결과가 삭제되었습니다." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "동적 압출량 교정 결과가 프린터에 저장되었습니다" #, c-format, boost-format msgid "" -"There is already a historical calibration result with the same name: %s. " -"Only one of the results with the same name is saved. Are you sure you want " -"to override the historical result?" +"There is already a historical calibration result with the same name: %s. Only " +"one of the results with the same name is saved. Are you sure you want to " +"override the historical result?" msgstr "" "동일한 이름을 가진 기록 교정 결과가 이미 있습니다: %s. 동일한 이름의 결과 중 " "하나만 저장됩니다. 과거 결과를 재정의하시겠습니까?" @@ -15643,10 +15625,10 @@ msgstr "내부 오류" msgid "Please select at least one filament for calibration" msgstr "교정을 위해 하나 이상의 필라멘트를 선택하세요" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "압출량 교정 결과가 사전 설정에 저장되었습니다" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "최대 압출 속도 교정 결과가 사전 설정에 저장되었습니다" msgid "When do you need Flow Dynamics Calibration" @@ -15654,19 +15636,19 @@ msgstr "동적 압출량 교정이 필요한 경우" msgid "" "We now have added the auto-calibration for different filaments, which is " -"fully automated and the result will be saved into the printer for future " -"use. You only need to do the calibration in the following limited cases:\n" -"1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"fully automated and the result will be saved into the printer for future use. " +"You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the filament " +"is damp;\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" -"이제 다양한 필라멘트에 대한 자동 교정 기능이 추가되었습니다. 이 기능은 완전" -"히 자동화되었으며 결과는 나중에 사용할 수 있도록 프린터에 저장됩니다. 다음과 " -"같은 제한된 경우에만 보정을 수행해야 합니다.\n" -"1. 다른 브랜드/모델의 새로운 필라멘트를 도입하거나 필라멘트가 습기에 노출된 " -"경우;\n" +"이제 다양한 필라멘트에 대한 자동 교정 기능이 추가되었습니다. 이 기능은 완전히 " +"자동화되었으며 결과는 나중에 사용할 수 있도록 프린터에 저장됩니다. 다음과 같" +"은 제한된 경우에만 보정을 수행해야 합니다.\n" +"1. 다른 브랜드/모델의 새로운 필라멘트를 도입하거나 필라멘트가 습기에 노출된 경" +"우;\n" "2. 노즐이 낡았거나 새것으로 교체한 경우\n" "3. 필라멘트 설정에서 최대 압출 속도나 출력 온도가 변경된 경우." @@ -15678,10 +15660,10 @@ msgid "" "\n" "Usually the calibration is unnecessary. When you start a single color/" "material print, with the \"flow dynamics calibration\" option checked in the " -"print start menu, the printer will follow the old way, calibrate the " -"filament before the print; When you start a multi color/material print, the " -"printer will use the default compensation parameter for the filament during " -"every filament switch which will have a good result in most cases.\n" +"print start menu, the printer will follow the old way, calibrate the filament " +"before the print; When you start a multi color/material print, the printer " +"will use the default compensation parameter for the filament during every " +"filament switch which will have a good result in most cases.\n" "\n" "Please note that there are a few cases that can make the calibration results " "unreliable, such as insufficient adhesion on the build plate. Improving " @@ -15696,18 +15678,18 @@ msgstr "" "\n" "일반적으로 교정은 필요하지 않습니다. 출력 시작 메뉴에서 \"동적 압출량 교정\" " "옵션을 선택한 상태에서 단일 색상/재료 출력을 시작하면 프린터는 이전 방식을 따" -"르며 출력 전에 필라멘트를 교정합니다. 다중 색상/재료 출력을 시작하면 프린터" -"는 모든 필라멘트 전환 중에 필라멘트에 대한 기본 보상 매개변수를 사용하므로 대" -"부분의 경우 좋은 결과를 얻을 수 있습니다.\n" +"르며 출력 전에 필라멘트를 교정합니다. 다중 색상/재료 출력을 시작하면 프린터는 " +"모든 필라멘트 전환 중에 필라멘트에 대한 기본 보상 매개변수를 사용하므로 대부분" +"의 경우 좋은 결과를 얻을 수 있습니다.\n" "\n" "교정 결과를 신뢰할 수 없게 만드는 몇 가지 경우가 있습니다. 텍스처 플레이트를 " -"사용하여 보정을 수행합니다. 빌드 플레이트의 접착력이 좋지 않습니다. (빌드 플" -"레이트를 세척하거나 풀을 바르십시오!) ...위키에서 자세한 내용을 확인할 수 있" -"습니다.\n" +"사용하여 보정을 수행합니다. 빌드 플레이트의 접착력이 좋지 않습니다. (빌드 플레" +"이트를 세척하거나 풀을 바르십시오!) ...위키에서 자세한 내용을 확인할 수 있습니" +"다.\n" "\n" -"테스트에서 교정 결과에는 약 10%의 오차가 있으며, 이로 인해 각 교정에서 결과" -"가 정확히 동일하지 않을 수 있습니다. 새로운 업데이트로 개선하기 위해 근본 원" -"인을 계속 조사하고 있습니다." +"테스트에서 교정 결과에는 약 10%의 오차가 있으며, 이로 인해 각 교정에서 결과가 " +"정확히 동일하지 않을 수 있습니다. 새로운 업데이트로 개선하기 위해 근본 원인을 " +"계속 조사하고 있습니다." msgid "When to use Flow Rate Calibration" msgstr "압출량 교정을 사용해야 하는 경우" @@ -15716,17 +15698,17 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"동적 압출량 교정을 사용한 후에도 다음과 같은 압출 문제가 여전히 발생할 수 있" -"습니다.\n" -"1. 과다 압출: 출력된 객체에 재료가 너무 많아 얼룩이나 잡티가 형성되거나 레이" -"어가 예상보다 두껍고 균일하지 않은 것처럼 보입니다.\n" +"동적 압출량 교정을 사용한 후에도 다음과 같은 압출 문제가 여전히 발생할 수 있습" +"니다.\n" +"1. 과다 압출: 출력된 객체에 재료가 너무 많아 얼룩이나 잡티가 형성되거나 레이어" +"가 예상보다 두껍고 균일하지 않은 것처럼 보입니다.\n" "2. 과소 압출: 레이어가 매우 얇거나 충전 강도가 약하거나 천천히 출력할 때에도 " "모델 상단 레이어에 틈이 있습니다.\n" "3. 표면 품질 불량: 출력물의 표면이 거칠거나 울퉁불퉁해 보입니다.\n" @@ -15745,29 +15727,28 @@ msgstr "" msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " "volumes. The default setting works well in Bambu Lab printers and official " -"filaments as they were pre-calibrated and fine-tuned. For a regular " -"filament, you usually won't need to perform a Flow Rate Calibration unless " -"you still see the listed defects after you have done other calibrations. For " -"more details, please check out the wiki article." +"filaments as they were pre-calibrated and fine-tuned. For a regular filament, " +"you usually won't need to perform a Flow Rate Calibration unless you still " +"see the listed defects after you have done other calibrations. For more " +"details, please check out the wiki article." msgstr "" "압출량 교정은 예상되는 압출량과 실제 압출량의 비율을 측정합니다. 기본 설정은 " -"사전 보정되고 미세 조정된 뱀부랩 프린터 및 공식 필라멘트에서 잘 작동합니다. " -"일반 필라멘트의 경우 일반적으로 다른 교정을 수행한 후에도 나열된 결함이 표시" -"되지 않는 한 압출량 교정을 수행할 필요가 없습니다. 자세한 내용은 위키를 확인" -"하시기 바랍니다." +"사전 보정되고 미세 조정된 뱀부랩 프린터 및 공식 필라멘트에서 잘 작동합니다. 일" +"반 필라멘트의 경우 일반적으로 다른 교정을 수행한 후에도 나열된 결함이 표시되" +"지 않는 한 압출량 교정을 수행할 필요가 없습니다. 자세한 내용은 위키를 확인하시" +"기 바랍니다." msgid "" "Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " "directly measuring the calibration patterns. However, please be advised that " "the efficacy and accuracy of this method may be compromised with specific " "types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" +"transparent, sparkling-particled, or have a high-reflective finish may not be " +"suitable for this calibration and can produce less-than-desirable results.\n" "\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" +"The calibration results may vary between each calibration or filament. We are " +"still improving the accuracy and compatibility of this calibration through " +"firmware updates over time.\n" "\n" "Caution: Flow Rate Calibration is an advanced process, to be attempted only " "by those who fully understand its purpose and implications. Incorrect usage " @@ -15777,16 +15758,16 @@ msgstr "" "자동 압출량 교정은 뱀부랩의 마이크로 라이다 기술을 활용하여 교정 패턴을 직접 " "측정합니다. 그러나 특정 유형의 재료를 사용하면 이 방법의 효율성과 정확성이 저" "하될 수 있다는 점에 유의하시기 바랍니다. 특히, 투명 또는 반투명, 반짝이는 입" -"자 또는 고반사 마감 처리된 필라멘트는 이 교정에 적합하지 않을 수 있으며 바람" -"직하지 않은 결과를 생성할 수 있습니다.\n" +"자 또는 고반사 마감 처리된 필라멘트는 이 교정에 적합하지 않을 수 있으며 바람직" +"하지 않은 결과를 생성할 수 있습니다.\n" "\n" "교정 결과는 각 교정 또는 필라멘트마다 다를 수 있습니다. 우리는 시간이 지남에 " "따라 펌웨어 업데이트를 통해 이 교정의 정확성과 호환성을 계속 개선하고 있습니" "다.\n" "\n" "주의: 압출량 교정은 목적과 의미를 완전히 이해하는 사람만이 시도할 수 있는 고" -"급 프로세스입니다. 잘못 사용하면 수준 이하의 출력이나 프린터 손상이 발생할 " -"수 있습니다. 반드시 절차를 주의 깊게 읽고 이해하신 후 진행하시기 바랍니다." +"급 프로세스입니다. 잘못 사용하면 수준 이하의 출력이나 프린터 손상이 발생할 수 " +"있습니다. 반드시 절차를 주의 깊게 읽고 이해하신 후 진행하시기 바랍니다." msgid "When you need Max Volumetric Speed Calibration" msgstr "최대 압출 속도 교정이 필요한 경우" @@ -15807,15 +15788,15 @@ msgid "We found the best Flow Dynamics Calibration Factor" msgstr "최고의 동적 압출량 교정 계수를 찾았습니다" msgid "" -"Part of the calibration failed! You may clean the plate and retry. The " -"failed test result would be dropped." +"Part of the calibration failed! You may clean the plate and retry. The failed " +"test result would be dropped." msgstr "" "교정의 일부가 실패했습니다! 플레이트를 청소하고 다시 시도할 수 있습니다. 실패" "한 테스트 결과는 삭제됩니다." msgid "" -"*We recommend you to add brand, materia, type, and even humidity level in " -"the Name" +"*We recommend you to add brand, materia, type, and even humidity level in the " +"Name" msgstr "*이름에 브랜드, 재질, 유형, 습도까지 추가하는 것이 좋습니다" msgid "Failed" @@ -15829,10 +15810,9 @@ msgstr "이름은 40자를 초과할 수 없습니다." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" -"단 하나의 결과만을 같은 이름으로 저장할 수 있습니다. 다른 결과들을 덮어쓸까" -"요?" +"단 하나의 결과만을 같은 이름으로 저장할 수 있습니다. 다른 결과들을 덮어쓸까요?" msgid "Please find the best line on your plate" msgstr "당신의 플레이트에서 가장 좋은 선을 찾아보세요" @@ -15883,9 +15863,6 @@ msgstr "교정2 건너뛰기" msgid "flow ratio : %s " msgstr "압출량 비율 : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "상단 표면이 가장 매끄러운 블록을 선택하세요" - msgid "Please choose a block with smoothest top surface." msgstr "상단 표면이 가장 매끄러운 블록을 선택하세요." @@ -15908,8 +15885,8 @@ msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." msgstr "" -"테스트 모델이 출력됩니다. 교정 전에 빌드 플레이트를 청소하고 히트 베드에 다" -"시 올려놓으십시오." +"테스트 모델이 출력됩니다. 교정 전에 빌드 플레이트를 청소하고 히트 베드에 다시 " +"올려놓으십시오." msgid "Printing Parameters" msgstr "출력 매개변수" @@ -15929,7 +15906,7 @@ msgstr "교정할 필라멘트" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "교정 재료에 대한 팁:\n" "- 동일한 히트베드 온도를 공유할 수 있는 소재\n" @@ -16032,7 +16009,7 @@ msgid "" "There are several IP addresses resolving to hostname %1%.\n" "Please select one that should be used." msgstr "" -"호스트 이름 %1%(으)로 확인되는 IP 주소가 여러 개 있습니다.\n" +"호스트 이름 %1%으로 확인되는 IP 주소가 여러 개 있습니다.\n" "사용 할 IP를 선택해 주세요." msgid "PA Calibration" @@ -16066,19 +16043,19 @@ msgid "PA step: " msgstr "PA 단계: " msgid "Accelerations: " -msgstr "" +msgstr "가속: " msgid "Speeds: " -msgstr "" +msgstr "속도: " msgid "Print numbers" msgstr "출력 수" msgid "Comma-separated list of printing accelerations" -msgstr "" +msgstr "쉼표로 구분된 출력 가속 목록" msgid "Comma-separated list of printing speeds" -msgstr "" +msgstr "쉼표로 구분된 출력 속도 목록" msgid "" "Please input valid values:\n" @@ -16190,8 +16167,8 @@ msgstr "후퇴 종료 길이: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" -msgstr "G코드를 프린터 호스트로 보내기" +msgid "Send G-code to printer host" +msgstr "Gcode를 프린터 호스트로 보내기" msgid "Upload to Printer Host with the following filename:" msgstr "다음 파일 이름으로 프린터 호스트에 업로드:" @@ -16237,7 +16214,7 @@ msgstr "선택 취소" msgid "Show error message" msgstr "오류 메시지 표시" -msgid "Enqueued" +msgid "Queued" msgstr "대기 중" msgid "Uploading" @@ -16250,8 +16227,8 @@ msgid "Error uploading to print host" msgstr "출력 호스트에 업로드하는 중 오류가 발생했습니다" msgid "" -"The selected bed type does not match the file. Please confirm before " -"starting the print." +"The selected bed type does not match the file. Please confirm before starting " +"the print." msgstr "" "선택한 베드 유형이 파일과 일치하지 않습니다. 출력을 시작하기 전에 확인해 주세" "요." @@ -16328,13 +16305,13 @@ msgstr "시스템 버전:" msgid "DNS Server:" msgstr "DNS 서버:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "OrcaSlicer 테스트(깃허브)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "OrcaSlicer 테스트(깃허브):" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "테스트 Bing.com" msgid "Test bing.com:" @@ -16396,11 +16373,11 @@ msgstr "공급업체가 선택되지 않았습니다. 공급업체를 다시 선 msgid "Custom vendor is not input, please input custom vendor." msgstr "" -"사용자 정의 공급업체가 입력되지 않았습니다. 사용자 정의 공급업체를 입력해 주" -"세요." +"사용자 정의 공급업체가 입력되지 않았습니다. 사용자 정의 공급업체를 입력해 주세" +"요." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"뱀부\" 또는 \"일반적인\"은 맞춤형 필라멘트 공급업체로 사용할 수 없습니다." @@ -16422,7 +16399,7 @@ msgstr "" "사용자 정의 공급업체 또는 일련번호의 모든 입력은 공백입니다. 다시 입력해 주세" "요." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "공급업체는 숫자가 될 수 없습니다. 다시 입력하세요." msgid "" @@ -16431,7 +16408,7 @@ msgstr "아직 프린터나 사전 설정을 선택하지 않았습니다. 하 #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -16450,8 +16427,7 @@ msgstr "" "다시 작성하시겠습니까?" msgid "" -"We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" +"We would rename the presets as \"Vendor Type Serial @printer you selected\".\n" "To add preset for more printers, Please go to printer selection" msgstr "" "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" @@ -16478,7 +16454,7 @@ msgstr "사전 설정 가져오기" msgid "Create Type" msgstr "유형 생성" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "모델을 찾을 수 없습니다. 공급업체를 다시 선택하세요." msgid "Select Model" @@ -16521,16 +16497,16 @@ msgstr "파일이 %d MB를 초과합니다. 다시 가져오십시오." msgid "Exception in obtaining file size, please import again." msgstr "파일 크기를 가져오는 중 예외가 발생했습니다. 다시 가져오세요." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "사전 설정 경로를 찾을 수 없습니다. 공급업체를 다시 선택하세요." msgid "The printer model was not found, please reselect." msgstr "프린터 모델을 찾을 수 없습니다. 다시 선택하세요." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "노즐 직경이 마음에 들지 않으면 다시 선택하세요." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "프린터 사전 설정이 마음에 들지 않습니다. 다시 선택하세요." msgid "Printer Preset" @@ -16559,8 +16535,8 @@ msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." msgstr "" -"첫 번째 페이지의 출력 가능 영역 섹션에 잘못된 입력을 입력했습니다. 작성 전 " -"꼭 확인해주세요." +"첫 번째 페이지의 출력 가능 영역 섹션에 잘못된 입력을 입력했습니다. 작성 전 꼭 " +"확인해주세요." msgid "The custom printer or model is not entered, please enter it." msgstr "사용자 정의 프린터 또는 모델이 입력되지 않았습니다. 입력하세요." @@ -16593,7 +16569,7 @@ msgstr "필라멘트 사전 설정 생성에 실패했습니다. 다음과 같 msgid "Create process presets failed. As follows:\n" msgstr "프로세스 사전 설정 생성에 실패했습니다. 다음과 같이:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "공급업체를 찾을 수 없습니다. 다시 선택하세요." msgid "Current vendor has no models, please reselect." @@ -16603,21 +16579,21 @@ msgid "" "You have not selected the vendor and model or entered the custom vendor and " "model." msgstr "" -"공급업체 및 모델을 선택하지 않았거나 맞춤 공급업체 및 모델을 입력하지 않았습" -"니다." +"공급업체 및 모델을 선택하지 않았거나 맞춤 공급업체 및 모델을 입력하지 않았습니" +"다." msgid "" "There may be escape characters in the custom printer vendor or model. Please " "delete and re-enter." msgstr "" -"사용자 정의 프린터 공급업체 또는 모델에 이스케이프 문자가 있을 수 있습니다. " -"삭제하고 다시 입력해주세요." +"사용자 정의 프린터 공급업체 또는 모델에 이스케이프 문자가 있을 수 있습니다. 삭" +"제하고 다시 입력해주세요." msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" -"사용자 정의 프린터 공급업체 또는 모델의 모든 입력은 공백입니다. 다시 입력해 " -"주세요." +"사용자 정의 프린터 공급업체 또는 모델의 모든 입력은 공백입니다. 다시 입력해 주" +"세요." msgid "Please check bed printable shape and origin input." msgstr "출력 가능한 베드 형태를 확인해주세요." @@ -16626,10 +16602,10 @@ msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "노즐을 교체할 프린터를 아직 선택하지 않으셨습니다. 선택해 주세요." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "프린터 생성 성공" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "필라멘트 생성 성공" msgid "Printer Created" @@ -16656,7 +16632,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -16703,8 +16679,8 @@ msgstr "내보내기 성공" #, c-format, boost-format msgid "" -"The '%s' folder already exists in the current directory. Do you want to " -"clear it and rebuild it.\n" +"The '%s' folder already exists in the current directory. Do you want to clear " +"it and rebuild it.\n" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" @@ -16712,14 +16688,14 @@ msgstr "" "그렇지 않은 경우 시간 접미사가 추가되며 생성 후 이름을 수정할 수 있습니다." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "프린터와 프린터에 속한 모든 필라멘트 및 프로세스 사전 설정.\n" "다른 사람과 공유할 수 있습니다." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "사용자의 필라멘트 사전 설정입니다.\n" @@ -16753,12 +16729,11 @@ msgstr "" msgid "" "Only printer names with changed process presets will be displayed, \n" -"and all user process presets in each printer name you select will be " -"exported as a zip." +"and all user process presets in each printer name you select will be exported " +"as a zip." msgstr "" "프로세스 사전 설정이 변경된 프린터 이름만 표시됩니다.\n" -"선택한 각 프린터 이름의 모든 사용자 프로세스 사전 설정은 zip으로 내보내집니" -"다." +"선택한 각 프린터 이름의 모든 사용자 프로세스 사전 설정은 zip으로 내보내집니다." msgid "Please select at least one printer or filament." msgstr "프린터나 필라멘트를 하나 이상 선택해 주세요." @@ -16776,13 +16751,13 @@ msgid "Filament presets under this filament" msgstr "이 필라멘트 아래의 필라멘트 사전 설정" msgid "" -"Note: If the only preset under this filament is deleted, the filament will " -"be deleted after exiting the dialog." +"Note: If the only preset under this filament is deleted, the filament will be " +"deleted after exiting the dialog." msgstr "" "참고: 이 필라멘트 아래의 유일한 사전 설정이 삭제되면 대화 상자를 종료한 후 필" "라멘트가 삭제됩니다." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "다른 사전 설정에 상속된 사전 설정은 삭제할 수 없습니다" msgid "The following presets inherits this preset." @@ -16805,7 +16780,7 @@ msgid "Delete Filament" msgstr "필라멘트 삭제" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" @@ -16851,8 +16826,8 @@ msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" msgstr "" -"미리 설정된 노즐 직경이 기억된 노즐 직경과 일치하지 않습니다.직경. 최근에 노" -"즐을 바꾸셨나요?" +"미리 설정된 노즐 직경이 기억된 노즐 직경과 일치하지 않습니다.직경. 최근에 노즐" +"을 바꾸셨나요?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" @@ -16902,8 +16877,8 @@ msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" -"HTTPS CA 파일은 선택 사항입니다. 자체 서명된 인증서와 함께 HTTPS를 사용하는 " -"경우에만 필요합니다." +"HTTPS CA 파일은 선택 사항입니다. 자체 서명된 인증서와 함께 HTTPS를 사용하는 경" +"우에만 필요합니다." msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" msgstr "인증서 파일 (*.crt, *.pem)|*.crt;*.pem|All files|*.*" @@ -16922,8 +16897,8 @@ msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." msgstr "" -"사용자 정의 CA 파일을 사용하려면 CA 파일을 인증서 저장소/키체인으로 가져오십" -"시오." +"사용자 정의 CA 파일을 사용하려면 CA 파일을 인증서 저장소/키체인으로 가져오십시" +"오." msgid "Login/Test" msgstr "로그인/테스트" @@ -16935,16 +16910,16 @@ msgstr "출력 호스트를 통해 연결된 프린터에 연결하지 못했습 msgid "Mismatched type of print host: %s" msgstr "일치하지 않는 출력 호스트 유형: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "AstroBox 연결이 올바르게 작동합니다." msgid "Could not connect to AstroBox" msgstr "AstroBox에 연결할 수 없습니다" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "참고: AstroBox 버전 1.1.0 이상이 필요합니다." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "Duet 연결이 제대로 작동합니다." msgid "Could not connect to Duet" @@ -16962,7 +16937,7 @@ msgstr "새 연결을 생성하기 위한 리소스를 얻을 수 없습니다" msgid "Upload not enabled on FlashAir card." msgstr "FlashAir 카드에서는 업로드가 활성화되지 않았습니다." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "FlashAir 연결이 올바르게 작동하고 업로드가 활성화되었습니다." msgid "Could not connect to FlashAir" @@ -16975,28 +16950,28 @@ msgstr "" "참고: 펌웨어 2.00.02 또는 이후 버전을 사용중이며 업로드 기능이 활성화된 " "FlashAir가 필요합니다." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "MKS에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to MKS" msgstr "MKS에 연결할 수 없습니다" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrint에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to OctoPrint" msgstr "OctoPrint에 연결할 수 없습니다" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "참고: OctoPrint 버전 1.1.0 이상이 필요합니다." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Prusa SL1 / SL1S에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to Prusa SLA" msgstr "Prusa SLA에 연결할 수 없습니다" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "PrusaLink에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to PrusaLink" @@ -17020,19 +16995,19 @@ msgstr "%1%: 여유 공간이 없습니다" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "업로드에 실패했습니다. %1%에 적합한 저장소가 없습니다." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Prusa Connect에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to Prusa Connect" msgstr "Prusa Connect에 연결할 수 없습니다" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Repetier에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to Repetier" msgstr "Repetier에 연결할 수 없습니다" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "참고: 최소 0.90.0 이상의 반복 버전이 필요합니다." #, boost-format @@ -17064,109 +17039,108 @@ msgstr "" "오류: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" -"레이어 높이가 작기 때문에 레이어 라인이 거의 무시할 수 있고 출력 품질이 높습" -"니다. 대부분의 일반적인 출력 케이스에 적합합니다." +"레이어 높이가 작기 때문에 레이어 라인이 거의 무시할 수 있고 출력 품질이 높습니" +"다. 대부분의 일반적인 출력 케이스에 적합합니다." msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and " +"acceleration, and the sparse infill pattern is Gyroid. This results in much " +"higher print quality but a much longer print time." msgstr "" -"0.2mm 노즐의 기본 프로파일과 비교하면 속도와 가속도가 낮고 성긴 채우기 패턴" -"은 자이로이드입니다. 따라서 출력 품질은 훨씬 높아지지만 출력 시간은 훨씬 길어" -"집니다." +"0.2mm 노즐의 기본 프로파일과 비교하면 속도와 가속도가 낮고 성긴 채우기 패턴은 " +"자이로이드입니다. 따라서 출력 품질은 훨씬 높아지지만 출력 시간은 훨씬 길어집니" +"다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 약간 더 크고 레이어 라인" "이 거의 무시할 수 있으며 출력 시간이 약간 짧아집니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 선이 약간 " "눈에 띄지만 출력 시간은 더 짧아집니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print quality " +"but shorter print time." msgstr "" -"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인이 " -"거의 보이지 않고 출력 품질이 높아지지만 출력 시간은 단축됩니다." +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인이 거" +"의 보이지 않고 출력 품질이 높아지지만 출력 시간은 단축됩니다." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" -"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 라인이 더 작고 속도와 가속도가 " -"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 선이 거의 보이지 않" -"고 출력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." - -msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." -msgstr "" -"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인이 " -"최소화되고 출력 품질이 높아지지만 출력 시간은 단축됩니다." - -msgid "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 라인이 더 작고 속도와 가속도가 " -"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 라인이 최소화되고 " +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 라인이 더 작고 속도와 가속도가 낮" +"으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 선이 거의 보이지 않고 " "출력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." +msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인이 최" +"소화되고 출력 품질이 높아지지만 출력 시간은 단축됩니다." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality but " +"much longer print time." +msgstr "" +"0.2mm 노즐의 기본 프로파일과 비교하면 레이어 라인이 더 작고 속도와 가속도가 낮" +"으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 라인이 최소화되고 출" +"력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." + +msgid "" +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "이는 일반적인 레이어 높이를 가지며 일반적인 레이어 선과 출력 품질을 가져옵니" "다. 대부분의 일반적인 출력 케이스에 적합합니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength but " +"more filament consumption and longer print time." msgstr "" -"0.4mm 노즐의 기본 프로파일과 비교하여 더 많은 벽 루프와 더 높은 성긴 채우기 " -"밀도를 갖습니다. 따라서 출력 강도는 높아지지만 필라멘트 소비가 늘어나고 출력 " -"시간이 길어집니다." +"0.4mm 노즐의 기본 프로파일과 비교하여 더 많은 벽 루프와 더 높은 성긴 채우기 밀" +"도를 갖습니다. 따라서 출력 강도는 높아지지만 필라멘트 소비가 늘어나고 출력 시" +"간이 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 더 " "뚜렷해지고 출력 품질이 낮아지지만 출력 시간은 약간 짧아집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 더 " "뚜렷해지고 출력 품질이 낮아지지만 출력 시간은 짧아집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선이 덜 " "뚜렷하고 출력 품질이 높아지지만 출력 시간은 길어집니다." @@ -17174,17 +17148,17 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" -"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작고 속도와 가속도가 " -"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 선이 덜 뚜렷해지고 " -"출력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작고 속도와 가속도가 낮" +"으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 선이 덜 뚜렷해지고 출" +"력 품질이 훨씬 높아지지만 출력 시간은 훨씬 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아 레이어 라인이 거" "의 무시할 수 있고 출력 품질이 높아지지만 출력 시간은 길어집니다." @@ -17192,81 +17166,80 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" -"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작고 속도와 가속도가 " -"낮으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 라인은 거의 무시할 " -"수 있고 출력 품질은 훨씬 높지만 출력 시간은 훨씬 길어집니다." +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작고 속도와 가속도가 낮" +"으며 성긴 채우기 패턴은 자이로이드입니다. 따라서 레이어 라인은 거의 무시할 수 " +"있고 출력 품질은 훨씬 높지만 출력 시간은 훨씬 길어집니다." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" -"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인을 " -"거의 무시할 수 있고 출력 시간이 길어집니다." +"0.4mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 라인을 거" +"의 무시할 수 있고 출력 시간이 길어집니다." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "레이어 높이가 커서 레이어 선이 뚜렷이 보이고 출력 품질과 출력 시간이 보통입니" "다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength but " +"more filament consumption and longer print time." msgstr "" -"0.6mm 노즐의 기본 프로파일과 비교하여 더 많은 벽 루프와 더 높은 성긴 채우기 " -"밀도를 갖습니다. 따라서 출력 강도는 높아지지만 필라멘트 소비가 늘어나고 출력 " -"시간이 길어집니다." +"0.6mm 노즐의 기본 프로파일과 비교하여 더 많은 벽 루프와 더 높은 성긴 채우기 밀" +"도를 갖습니다. 따라서 출력 강도는 높아지지만 필라멘트 소비가 늘어나고 출력 시" +"간이 길어집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 더 " "뚜렷해지고 출력 품질이 낮아지지만 일부 출력의 경우 출력 시간이 짧아집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 훨" -"씬 더 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 짧" -"아집니다." +"씬 더 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 짧아" +"집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선이 덜 " "뚜렷해지고 출력 품질이 약간 높아지지만 출력 시간은 길어집니다." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "0.6mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선이 덜 " "뚜렷하고 출력 품질이 높아지지만 출력 시간이 길어집니다." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" -"레이어 높이가 매우 커서 레이어 선이 매우 뚜렷하고 출력 품질이 낮으며 일반적" -"인 출력 시간이 소요됩니다." +"레이어 높이가 매우 커서 레이어 선이 매우 뚜렷하고 출력 품질이 낮으며 일반적인 " +"출력 시간이 소요됩니다." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 크고 레이어 라인이 매" "우 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 짧아집" @@ -17274,18 +17247,17 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 훨씬 더 크고 레이어 라인" -"이 매우 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 " -"훨씬 짧아집니다." +"이 매우 뚜렷해지고 출력 품질이 훨씬 낮아지지만 일부 출력의 경우 출력 시간이 훨" +"씬 짧아집니다." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 약간 더 작아서 약간 적지" "만 여전히 뚜렷한 레이어 라인이 나타나고 출력 품질이 약간 높아지지만 일부 출력" @@ -17293,12 +17265,12 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" -"0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선은 적" -"지만 여전히 뚜렷하고 출력 품질은 약간 높지만 일부 출력의 경우 출력 시간이 길" -"어집니다." +"0.8mm 노즐의 기본 프로파일과 비교하면 레이어 높이가 더 작아서 레이어 선은 적지" +"만 여전히 뚜렷하고 출력 품질은 약간 높지만 일부 출력의 경우 출력 시간이 길어집" +"니다." msgid "Connected to Obico successfully!" msgstr "Obico에 성공적으로 연결되었습니다!" @@ -17322,7 +17294,7 @@ msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" "SimplyPrint 계정이 연결되지 않았습니다. 연결 옵션으로 이동하여 설정합니다." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "플래시포지 연결이 정상적으로 작동합니다." msgid "Could not connect to Flashforge" @@ -17338,7 +17310,7 @@ msgid "Something unexpected happened when trying to log in, please try again." msgstr "" "로그인을 시도하는 동안 예기치 않은 문제가 발생했습니다. 다시 시도해 주세요." -msgid "User cancelled." +msgid "User canceled." msgstr "사용자가 취소했습니다." msgid "Head diameter" @@ -17369,11 +17341,10 @@ msgid "Adjust section view" msgstr "섹션 보기 조정" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not take " +"effect!" msgstr "" -"경고: 브림 유형이 “페인트”로 설정되어 있지 않으면 브림 귀가 적용되지 않습니" -"다!" +"경고: 브림 유형이 “페인트”로 설정되어 있지 않으면 브림 귀가 적용되지 않습니다!" msgid "Set the brim type to \"painted\"" msgstr "브림 유형을 “페인트”로 설정합니다." @@ -17405,8 +17376,8 @@ msgid "" "overhangs?" msgstr "" "샌드위치 모드\n" -"모델에 가파른 오버행가 없는 경우 샌드위치 모드(내부-외부-내부)를 사용하여 정" -"밀도와 레이어 일관성을 향상시킬 수 있다는 것을 알고 계셨나요?" +"모델에 가파른 오버행이 없는 경우 샌드위치 모드(내부-외부-내부)를 사용하여 정밀" +"도와 레이어 일관성을 향상시킬 수 있다는 것을 알고 계셨나요?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -17423,8 +17394,8 @@ msgid "" "beloved calibration solution in OrcaSlicer." msgstr "" "보정\n" -"프린터를 보정하면 놀라운 효과를 얻을 수 있다는 사실을 알고 계셨나요? 많은 사" -"랑을 받고 있는 OrcaSlicer의 보정 솔루션을 확인해 보세요." +"프린터를 보정하면 놀라운 효과를 얻을 수 있다는 사실을 알고 계셨나요? 많은 사랑" +"을 받고 있는 OrcaSlicer의 보정 솔루션을 확인해 보세요." #: resources/data/hints.ini: [hint:Auxiliary fan] msgid "" @@ -17464,7 +17435,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "키보드 단축키를 사용하는 방법\n" "Orca Slicer는 다양한 키보드 단축키와 3D 장면 작업을 제공합니다." @@ -17472,12 +17443,12 @@ msgstr "" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" "Reverse on odd\n" -"Did you know that Reverse on odd feature can significantly improve " -"the surface quality of your overhangs?" +"Did you know that Reverse on odd feature can significantly improve the " +"surface quality of your overhangs?" msgstr "" "홀수에 반전\n" -"홀수에 반전 기능이 오버행의 표면 품질을 크게 향상시킬 수 있다는 사실" -"을 알고 계셨나요?" +"홀수에 반전 기능이 오버행의 표면 품질을 크게 향상시킬 수 있다는 사실을 " +"알고 계셨나요?" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -17486,8 +17457,7 @@ msgid "" "cutting tool?" msgstr "" "절단 도구\n" -"절단 도구로 원하는 각도와 위치에서 모델을 자를 수 있다는 사실을 알고 계셨나" -"요?" +"절단 도구로 원하는 각도와 위치에서 모델을 자를 수 있다는 사실을 알고 계셨나요?" #: resources/data/hints.ini: [hint:Fix Model] msgid "" @@ -17510,7 +17480,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "자동 정렬\n" "프로젝트의 모든 객체를 자동 정렬할 수 있다는 것을 알고 계섰나요?" @@ -17519,7 +17489,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "자동 방향 지정\n" "간단한 클릭만으로 객체를 최적의 출력 방향으로 회전할 수 있다는 것을 알고 계셨" @@ -17533,8 +17503,8 @@ msgid "" "F key." msgstr "" "면에 위치\n" -"모델의 바닥 표면을 빠르게 지정하여 출력 베드에 놓을 수 있다는 것을 알고 계셨" -"나요? 면에 배치 기능을 선택하십시오. 또는F 키를 누르세요." +"모델의 바닥 표면을 빠르게 지정하여 출력 베드에 놓을 수 있다는 것을 알고 계셨나" +"요? 면에 배치 기능을 선택하십시오. 또는F 키를 누르세요." #: resources/data/hints.ini: [hint:Object List] msgid "" @@ -17543,8 +17513,8 @@ msgid "" "settings for each object/part?" msgstr "" "객체 목록\n" -"목록의 모든 객체/부품을 보고 각 객체/부품에 대한 설정을 변경할 수 있다는 것" -"을 알고 계섰나요?" +"목록의 모든 객체/부품을 보고 각 객체/부품에 대한 설정을 변경할 수 있다는 것을 " +"알고 계섰나요?" #: resources/data/hints.ini: [hint:Search Functionality] msgid "" @@ -17553,8 +17523,8 @@ msgid "" "Slicer setting?" msgstr "" "검색 기능\n" -"검색 도구를 사용하여 원하는 Orca Slicer 설정을 빠르게 찾을 수 있다는 사실을 " -"알고 계섰나요?" +"검색 도구를 사용하여 원하는 Orca Slicer 설정을 빠르게 찾을 수 있다는 사실을 알" +"고 계섰나요?" #: resources/data/hints.ini: [hint:Simplify Model] msgid "" @@ -17563,8 +17533,8 @@ msgid "" "Simplify mesh feature? Right-click the model and select Simplify model." msgstr "" "모델 단순화\n" -"메시 단순화 기능을 사용하여 메시의 삼각형 수를 줄일 수 있다는 것을 알고 계셨" -"나요? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택하세요." +"메시 단순화 기능을 사용하여 메시의 삼각형 수를 줄일 수 있다는 것을 알고 계셨나" +"요? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택하세요." #: resources/data/hints.ini: [hint:Slicing Parameter Table] msgid "" @@ -17594,9 +17564,9 @@ msgid "" "directly in Orca Slicer." msgstr "" "부품 빼기\n" -"네거티브 부분 수정자를 사용하여 하나의 메시를 다른 메시에서 뺄 수 있다는 것" -"을 알고 계섰나요? 예를 들어, 이렇게 하면 Orca Slicer에서 직접 쉽게 크기 조정" -"이 가능한 구멍을 만들 수 있습니다." +"네거티브 부분 수정자를 사용하여 하나의 메시를 다른 메시에서 뺄 수 있다는 것을 " +"알고 계섰나요? 예를 들어, 이렇게 하면 Orca Slicer에서 직접 쉽게 크기 조정이 가" +"능한 구멍을 만들 수 있습니다." #: resources/data/hints.ini: [hint:STEP] msgid "" @@ -17609,8 +17579,8 @@ msgstr "" "STEP\n" "STL 대신 STEP 파일을 슬라이싱하여 출력 품질을 향상시킬 수 있다는 사실을 알고 " "계섰나요?\n" -"Orca Slicer는 STEP 파일 슬라이싱을 지원하며, 저해상도 STL을 사용할 때 보다 " -"더 부드러운 결과를 얻을 수 있습니다. 시도해 보세요!" +"Orca Slicer는 STEP 파일 슬라이싱을 지원하며, 저해상도 STL을 사용할 때 보다 더 " +"부드러운 결과를 얻을 수 있습니다. 시도해 보세요!" #: resources/data/hints.ini: [hint:Z seam location] msgid "" @@ -17621,15 +17591,15 @@ msgid "" msgstr "" "Z 재봉선 위치\n" "Z 재봉선의 위치를 사용자 정의하고 출력물에 칠하여 잘 보이지 않는 위치에 배치" -"할 수 있다는 사실을 알고 계섰나요? 이렇게 하면 모델의 전반적인 모양이 향상됩" -"니다. 확인해 보세요!" +"할 수 있다는 사실을 알고 계섰나요? 이렇게 하면 모델의 전반적인 모양이 향상됩니" +"다. 확인해 보세요!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] msgid "" "Fine-tuning for flow rate\n" -"Did you know that flow rate can be fine-tuned for even better-looking " -"prints? Depending on the material, you can improve the overall finish of the " -"printed model by doing some fine-tuning." +"Did you know that flow rate can be fine-tuned for even better-looking prints? " +"Depending on the material, you can improve the overall finish of the printed " +"model by doing some fine-tuning." msgstr "" "압출량 미세 조정\n" "더 보기 좋은 출력물을 위해 압출량을 미세 조정할 수 있다는 사실을 알고 계셨나" @@ -17644,8 +17614,8 @@ msgid "" "track of all the parts." msgstr "" "출력을 플레이트로 분할\n" -"부품이 많은 모델을 출력할 준비가 된 개별 플레이트로 분할할 수 있다는 사실을 " -"알고 계섰나요? 이렇게 하면 모든 부품을 추적하는 프로세스가 간소화됩니다." +"부품이 많은 모델을 출력할 준비가 된 개별 플레이트로 분할할 수 있다는 사실을 알" +"고 계섰나요? 이렇게 하면 모든 부품을 추적하는 프로세스가 간소화됩니다." #: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer #: Height] @@ -17662,8 +17632,8 @@ msgstr "" msgid "" "Support painting\n" "Did you know that you can paint the location of your supports? This feature " -"makes it easy to place the support material only on the sections of the " -"model that actually need it." +"makes it easy to place the support material only on the sections of the model " +"that actually need it." msgstr "" "서포트 칠하기\n" "서포트의 위치를 칠할 수 있다는 것을 알고 계섰나요? 이 기능을 사용하면 실제로 " @@ -17678,8 +17648,8 @@ msgid "" msgstr "" "다양한 유형의 서포트\n" "여러 유형의 서포트 중에서 선택할 수 있다는 것을 알고 계섰나요? 트리 서포트는 " -"필라멘트를 절약하고 출력 속도를 향상시키면서 유기 모델에 적합합니다. 확인해 " -"보세요!" +"필라멘트를 절약하고 출력 속도를 향상시키면서 유기 모델에 적합합니다. 확인해 보" +"세요!" #: resources/data/hints.ini: [hint:Printing Silk Filament] msgid "" @@ -17695,8 +17665,8 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " -"the printing surface, it's recommended to use a brim?" +"Did you know that when printed models have a small contact interface with the " +"printing surface, it's recommended to use a brim?" msgstr "" "접착력이 더 좋아지는 브림\n" "모델을 출력할 때 베드 표면과의 접촉면이 작을 경우 브림을 사용하는 것이 권장된" @@ -17706,11 +17676,11 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "여러 객체에 대한 매개변수 설정\n" -"선택한 모든 객체에 대한 슬라이싱 매개변수를 한 번에 설정할 수 있다는 사실을 " -"알고 계섰나요?" +"선택한 모든 객체에 대한 슬라이싱 매개변수를 한 번에 설정할 수 있다는 사실을 알" +"고 계섰나요?" #: resources/data/hints.ini: [hint:Stack objects] msgid "" @@ -17723,12 +17693,12 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "서포트/객체/채우기에 내보내기\n" -"필라멘트를 교체하는 동안 낭비되는 필라멘트를 서포트/객체/채우기 출력에 활용" -"할 수 있다는 사실을 알고 계섰나요?" +"필라멘트를 교체하는 동안 낭비되는 필라멘트를 서포트/객체/채우기 출력에 활용할 " +"수 있다는 사실을 알고 계섰나요?" #: resources/data/hints.ini: [hint:Improve strength] msgid "" @@ -17740,25 +17710,26 @@ msgstr "" "더 많은 외벽과 더 높은 드문 채우기 밀도를 사용하여 모델의 강도를 높일 수 있다" "는 사실을 알고 계섰나요?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "프린터 도어를 연 상태로 출력해야 하는 경우\n" "더 높은 프린터 내부 온도로 낮은 온도의 필라멘트를 출력할 때 프린터 도어를 열" -"면 압출기/핫엔드가 막힐 가능성을 줄일 수 있다는 것을 알고 계섰나요? 이에 대" -"한 자세한 내용은 Wiki에서 확인하세요." +"면 압출기/핫엔드가 막힐 가능성을 줄일 수 있다는 것을 알고 계섰나요? 이에 대한 " +"자세한 내용은 Wiki에서 확인하세요." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "뒤틀림 방지\n" "ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 " @@ -17769,27 +17740,17 @@ msgstr "" #~ "support volume but weaker strength.\n" #~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." #~ msgstr "" -#~ "서포트 부피는 작지만 강도는 약한 것이 특징인 실험적 모양 \"얇은 나무\"를 " -#~ "추가했습니다.\n" +#~ "서포트 부피는 작지만 강도는 약한 것이 특징인 실험적 모양 \"얇은 트리\"를 추" +#~ "가했습니다.\n" #~ "접점 레이어 0, 상단 Z 거리 0, 벽 루프 2 와 함께 사용하는 것이 좋습니다." #~ msgid "" -#~ "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the " -#~ "following settings: at least 2 interface layers, at least 0.1mm top z " -#~ "distance or using support materials on interface." +#~ "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following " +#~ "settings: at least 2 interface layers, at least 0.1mm top z distance or " +#~ "using support materials on interface." #~ msgstr "" -#~ "\"강한 나무\" 및 \"혼합 나무\" 모양의 경우 최소 접점 레이어 2, 상단 Z 거" -#~ "리 0.1 또는 접점에서 서포트 재료를 사용하는 설정을 권장합니다." - -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "서포트 접점에 서포트 재료를 사용하는 경우 다음 설정을 권장합니다:\n" -#~ "상단 Z 거리 0, 접점 간격 0, 접점 패턴 동심원 및 독립적 서포트 높이 비활성" -#~ "화" +#~ "\"강한 트리\" 및 \"혼합 트리\" 모양의 경우 최소 접점 레이어 2, 상단 Z 거리 " +#~ "0.1 또는 접점에서 서포트 재료를 사용하는 설정을 권장합니다." #~ msgid "Branch Diameter with double walls" #~ msgstr "이중 벽이 있는 가지 직경" @@ -17860,8 +17821,7 @@ msgstr "" #~ msgid "" #~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN." #~ msgstr "" -#~ "1단계, Orca Slicer와 프린터가 동일한 네트워크에 연결되어 있는지 확인하세" -#~ "요." +#~ "1단계, Orca Slicer와 프린터가 동일한 네트워크에 연결되어 있는지 확인하세요." #~ msgid "" #~ "Step 2, if the IP and Access Code below are different from the actual " @@ -17893,9 +17853,9 @@ msgstr "" #~ "wall which has large overhang degree. Forcing cooling for overhang and " #~ "bridge can get better quality for these part" #~ msgstr "" -#~ "돌출부 정도가 큰 브릿지나 돌출부 벽을 출력할 때 출력물 냉각 팬을 이 속도" -#~ "로 강제합니다. 돌출부와 브릿지를 강제 냉각하면 이러한 부품의 품질이 향상" -#~ "될 수 있습니다" +#~ "돌출부 정도가 큰 브릿지나 돌출부 벽을 출력할 때 출력물 냉각 팬을 이 속도로 " +#~ "강제합니다. 돌출부와 브릿지를 강제 냉각하면 이러한 부품의 품질이 향상될 수 " +#~ "있습니다" #~ msgid "Cooling overhang threshold" #~ msgstr "돌출부 냉각 임계값" @@ -17907,9 +17867,9 @@ msgstr "" #~ "width of the line without support from lower layer. 0% means forcing " #~ "cooling for all outer wall no matter how much overhang degree" #~ msgstr "" -#~ "출력물의 돌출부 정도가 이 값을 초과하면 냉각 팬이 특정 속도가 되도록 강제" -#~ "합니다. 지지대가 없는 하단 레이어 선 너비의 백분율로 표시됩니다. 0은 돌출" -#~ "부 정도에 관계없이 모든 외벽을 강제 냉각한다는 의미입니다" +#~ "출력물의 돌출부 정도가 이 값을 초과하면 냉각 팬이 특정 속도가 되도록 강제합" +#~ "니다. 서포트가 없는 하단 레이어 선 너비의 백분율로 표시됩니다. 0은 돌출부 " +#~ "정도에 관계없이 모든 외벽을 강제 냉각한다는 의미입니다" #~ msgid "Bridge infill direction" #~ msgstr "브릿지 채우기 방향" @@ -17920,8 +17880,7 @@ msgstr "" #~ msgid "" #~ "Density of external bridges. 100% means solid bridge. Default is 100%." #~ msgstr "" -#~ "외부 브릿지의 밀도. 100%는 단단한 브릿지를 의미합니다. 기본값은 100%입니" -#~ "다." +#~ "외부 브릿지의 밀도. 100%는 단단한 브릿지를 의미합니다. 기본값은 100%입니다." #~ msgid "" #~ "Improve shell precision by adjusting outer wall spacing. This also " @@ -17929,8 +17888,8 @@ msgstr "" #~ "Note: This setting will only take effect if the wall sequence is " #~ "configured to Inner-Outer" #~ msgstr "" -#~ "외벽 간격을 조정하여 쉘 정밀도를 향상시킵니다. 이는 또한 레이어 일관성을 " -#~ "향상시킵니다.\n" +#~ "외벽 간격을 조정하여 쉘 정밀도를 향상시킵니다. 이는 또한 레이어 일관성을 향" +#~ "상시킵니다.\n" #~ "참고: 이 설정은 벽 시퀀스가 내부-외부로 구성된 경우에만 적용됩니다" #~ msgid "Thick bridges" @@ -17940,21 +17899,21 @@ msgstr "" #~ msgstr "작은 내부 브릿지 필터링(베타)" #~ msgid "" -#~ "This option can help reducing pillowing on top surfaces in heavily " -#~ "slanted or curved models.\n" +#~ "This option can help reducing pillowing on top surfaces in heavily slanted " +#~ "or curved models.\n" #~ "\n" -#~ "By default, small internal bridges are filtered out and the internal " -#~ "solid infill is printed directly over the sparse infill. This works well " -#~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "By default, small internal bridges are filtered out and the internal solid " +#~ "infill is printed directly over the sparse infill. This works well in most " +#~ "cases, speeding up printing without too much compromise on top surface " +#~ "quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " #~ "unsupported solid infill, causing pillowing.\n" #~ "\n" #~ "Disabling this option will print internal bridge layer over slightly " -#~ "unsupported internal solid infill. The options below control the amount " -#~ "of filtering, i.e. the amount of internal bridges created.\n" +#~ "unsupported internal solid infill. The options below control the amount of " +#~ "filtering, i.e. the amount of internal bridges created.\n" #~ "\n" #~ "Filter - enable this option. This is the default behavior and works well " #~ "in most cases.\n" @@ -17967,30 +17926,30 @@ msgstr "" #~ "overhang. This option is useful for heavily slanted top surface models. " #~ "However, in most cases it creates too many unnecessary bridges." #~ msgstr "" -#~ "이 옵션은 심하게 기울어지거나 곡선이 있는 모델의 상단 표면이 눌리는 현상" -#~ "을 줄이는 데 도움이 될 수 있습니다.\n" +#~ "이 옵션은 심하게 기울어지거나 곡선이 있는 모델의 상단 표면이 눌리는 현상을 " +#~ "줄이는 데 도움이 될 수 있습니다.\n" #~ "\n" #~ "기본적으로 작은 내부 브릿지는 필터링되고 내부 솔리드 채우기는 희박한 채우" -#~ "기 위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질" -#~ "을 크게 저하시키지 않고 출력 속도를 높입니다. \n" +#~ "기 위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 " +#~ "크게 저하시키지 않고 출력 속도를 높입니다.\n" #~ "\n" -#~ "그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡" -#~ "선 모델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습" -#~ "니다.\n" +#~ "그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡선 " +#~ "모델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습니" +#~ "다.\n" #~ "\n" -#~ "이 옵션을 비활성화하면 약간 지원되지 않는 내부 솔리드 채우기 위에 내부 브" -#~ "릿지 레이어가 출력됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양" -#~ "을 제어합니다.\n" +#~ "이 옵션을 비활성화하면 약간 지원되지 않는 내부 솔리드 채우기 위에 내부 브릿" +#~ "지 레이어가 출력됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 " +#~ "제어합니다.\n" #~ "\n" -#~ "필터 - 이 옵션을 활성화합니다. 이는 기본 동작이며 대부분의 경우 잘 작동합" -#~ "니다.\n" +#~ "필터 - 이 옵션을 활성화합니다. 이는 기본 동작이며 대부분의 경우 잘 작동합니" +#~ "다.\n" #~ "\n" -#~ "제한된 필터링 - 불필요한 내부 브릿지 생성을 방지하면서 심하게 기울어진 표" -#~ "면에 내부 브릿지를 생성합니다. 이는 대부분의 어려운 모델에 적합합니다.\n" +#~ "제한된 필터링 - 불필요한 내부 브릿지 생성을 방지하면서 심하게 기울어진 표면" +#~ "에 내부 브릿지를 생성합니다. 이는 대부분의 어려운 모델에 적합합니다.\n" #~ "\n" -#~ "필터링 없음 - 잠재적인 모든 내부 돌출부에 내부 브릿지를 생성합니다. 이 옵" -#~ "션은 심하게 기울어진 상단 표면 모델에 유용합니다. 그러나 대부분의 경우 불" -#~ "필요한 브릿지가 너무 많이 생성됩니다." +#~ "필터링 없음 - 잠재적인 모든 내부 돌출부에 내부 브릿지를 생성합니다. 이 옵션" +#~ "은 심하게 기울어진 상단 표면 모델에 유용합니다. 그러나 대부분의 경우 불필요" +#~ "한 브릿지가 너무 많이 생성됩니다." #~ msgid "" #~ "This fan speed is enforced during all support interfaces, to be able to " @@ -17998,29 +17957,11 @@ msgstr "" #~ "Set to -1 to disable this override.\n" #~ "Can only be overridden by disable_fan_first_layers." #~ msgstr "" -#~ "이 설정값은 높은 팬 속도로 접점의 결합을 약화시킬 수 있도록 모든 지지대 접" +#~ "이 설정값은 높은 팬 속도로 접점의 결합을 약화시킬 수 있도록 모든 서포트 접" #~ "점(Support interface)에 적용됩니다.\n" #~ "사용하지 않으려면 -1로 설정합니다.\n" #~ "disable_fan_first_layers로만 재정의할 수 있습니다." -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "값이 낮을수록 압출 속도 전환이 더 유연해집니다. 하지만 G코드 파일이 상당" -#~ "히 커지고 프린터가 처리해야 할 연산이 더 많아집니다.\n" -#~ "\n" -#~ "기본값인 3은 대부분의 경우에 적합합니다. 프린터가 끊기는 경우 이 값을 늘" -#~ "려 조정 횟수를 줄이십시오.\n" -#~ "\n" -#~ "허용되는 값: 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -18032,10 +17973,10 @@ msgstr "" #~ msgid "" #~ "normal(auto) and tree(auto) is used to generate support automatically. If " #~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" +#~ "generated." #~ msgstr "" -#~ "일반(자동) 및 나무(자동)은 지지대를 자동으로 생성합니다. 일반(수동) 또는 " -#~ "나무(수동) 선택시에는 강제된 지지대만 생성됩니다" +#~ "일반(자동) 및 트리(자동)은 서포트를 자동으로 생성합니다. 일반(수동) 또는 트" +#~ "리(수동) 선택시에는 강제된 서포트만 생성됩니다" #~ msgid "ShiftLeft mouse button" #~ msgstr "Shift + 왼쪽 마우스 버튼" @@ -18047,16 +17988,10 @@ msgstr "" #~ msgid "Scale" #~ msgstr "규모" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "쿨 플레이트" - #~ msgid "Lift Z Enforcement" #~ msgstr "강제 Z 올리기" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "후퇴 시 Z 올리기" #, no-c-format, no-boost-format @@ -18083,34 +18018,34 @@ msgstr "" #~ "역방향 돌출부 위에 부분이 있는 돌출 둘레홀수 레이어의 방향입니다. 이 교대 " #~ "패턴은 크게 향상될 수 있습니다.가파른 돌출부.\n" #~ "\n" -#~ "이 설정은 또한 감소로 인한 부품 뒤틀림을 줄이는 데 도움이 될 수 있습니다." -#~ "부분 벽의 응력." +#~ "이 설정은 또한 감소로 인한 부품 뒤틀림을 줄이는 데 도움이 될 수 있습니다.부" +#~ "분 벽의 응력." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " #~ "maintaining external wall quality. This feature can be very useful for " #~ "warp prone material, like ABS/ASA, and also for elastic filaments, like " -#~ "TPU and Silk PLA. It can also help reduce warping on floating regions " -#~ "over supports.\n" +#~ "TPU and Silk PLA. It can also help reduce warping on floating regions over " +#~ "supports.\n" #~ "\n" #~ "For this setting to be the most effective, it is recommended to set the " #~ "Reverse Threshold to 0 so that all internal walls print in alternating " #~ "directions on odd layers irrespective of their overhang degree." #~ msgstr "" -#~ "내부 경계에만 역방향 경계 논리를 적용합니다. \n" +#~ "내부 경계에만 역방향 경계 논리를 적용합니다.\n" #~ "\n" -#~ "이 설정은 부품 응력이 이제 분산되어 있으므로 부품 응력을 크게 줄여줍니다." -#~ "교대 방향. 이렇게 하면 부품 뒤틀림도 줄어들고 동시에 외벽 품질 유지. 이 기" -#~ "능은 워프에 매우 유용할 수 있습니다.ABS/ASA와 같은 취약한 소재와 TPU 및 탄" -#~ "성 필라멘트에도 사용 가능실크 PLA. 또한 부동 영역의 뒤틀림을 줄이는 데 도" -#~ "움이 될 수 있습니다.지원합니다.\n" +#~ "이 설정은 부품 응력이 이제 분산되어 있으므로 부품 응력을 크게 줄여줍니다.교" +#~ "대 방향. 이렇게 하면 부품 뒤틀림도 줄어들고 동시에 외벽 품질 유지. 이 기능" +#~ "은 워프에 매우 유용할 수 있습니다.ABS/ASA와 같은 취약한 소재와 TPU 및 탄성 " +#~ "필라멘트에도 사용 가능실크 PLA. 또한 부동 영역의 뒤틀림을 줄이는 데 도움이 " +#~ "될 수 있습니다.지원합니다.\n" #~ "\n" #~ "이 설정을 가장 효과적으로 사용하려면 다음을 설정하는 것이 좋습니다.모든 내" -#~ "부 벽이 교대로 출력되도록 임계값을 0으로 역방향오버행 정도에 관계없이 홀" -#~ "수 레이어의 방향입니다." +#~ "부 벽이 교대로 출력되도록 임계값을 0으로 역방향오버행 정도에 관계없이 홀수 " +#~ "레이어의 방향입니다." #, no-c-format, no-boost-format #~ msgid "" @@ -18123,20 +18058,20 @@ msgstr "" #~ "값 0은 관계없이 모든 홀수 레이어에서 반전을 활성화합니다." #~ msgid "" -#~ "The direction which the wall loops are extruded when looking down from " -#~ "the top.\n" +#~ "The direction which the wall loops are extruded when looking down from the " +#~ "top.\n" #~ "\n" #~ "By default all walls are extruded in counter-clockwise, unless Reverse on " -#~ "odd is enabled. Set this to any option other than Auto will force the " -#~ "wall direction regardless of the Reverse on odd.\n" +#~ "odd is enabled. Set this to any option other than Auto will force the wall " +#~ "direction regardless of the Reverse on odd.\n" #~ "\n" #~ "This option will be disabled if spiral vase mode is enabled." #~ msgstr "" #~ "위에서 아래를 내려다볼 때 벽 루프가 돌출되는 방향입니다.\n" #~ "\n" -#~ "홀수에 반전 설정이 활성화되지 않은 경우 기본적으로 모든 벽은 시계 반대 방" -#~ "향으로 출력됩니다. 이것을 Auto 이외의 옵션으로 설정하면 홀수에 반전 설정" -#~ "과 관계없이 벽 방향이 강제됩니다.\n" +#~ "홀수에 반전 설정이 활성화되지 않은 경우 기본적으로 모든 벽은 시계 반대 방향" +#~ "으로 출력됩니다. 이것을 Auto 이외의 옵션으로 설정하면 홀수에 반전 설정과 관" +#~ "계없이 벽 방향이 강제됩니다.\n" #~ "\n" #~ "나선형 꽃병 모드가 활성화된 경우 이 옵션은 비활성화됩니다." @@ -18147,40 +18082,10 @@ msgstr "" #~ "객체별 출력시 압출기가 스커트와 충돌할 수 있습니다.\n" #~ "스커트 레이어를 1로 재설정하여 이를 방지합니다." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "날카로운 각도를 감지하기 전에 형상이 무시됩니다. 이 매개변수는 무시하는 형" -#~ "상의 최소 길이를 나타냅니다.\n" -#~ "0으로 비활성화합니다" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "목표한 시작 시간보다 이 시간(소수 초를 사용할 수 있음) 일찍 팬을 시작합니" -#~ "다. 이 시간 추정을 위해 무한 가속을 가정하고 G1 및 G0 이동만 고려합니다(원" -#~ "호 맞춤은 지원되지 않음).\n" -#~ "사용자 정의 G코드에서 팬 명령을 이동하지 않습니다(일종의 '장벽' 역할을 " -#~ "함).\n" -#~ "'사용자 정의 시작 G코드만'이 활성화된 경우 팬 명령을 시작 G코드로 이동하" -#~ "지 않습니다.\n" -#~ "비활성화하려면 0을 사용하세요." - #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " -#~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "detaching from print bed due to wind draft. It is usually needed only with " +#~ "open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -18191,33 +18096,20 @@ msgstr "" #~ "with them. To avoid this, increase the skirt distance value.\n" #~ msgstr "" #~ "드래프트 쉴드는 바람으로 인해 ABS 또는 ASA 인쇄물이 뒤틀리거나 인쇄 베드에" -#~ "서 분리되는 것을 방지하는 데 유용합니다. 일반적으로 오픈 프레임 프린터, " -#~ "즉 인클로저가 없는 경우에만 필요합니다. \n" +#~ "서 분리되는 것을 방지하는 데 유용합니다. 일반적으로 오픈 프레임 프린터, 즉 " +#~ "인클로저가 없는 경우에만 필요합니다.\n" #~ "\n" #~ "옵션:\n" #~ "활성화됨 = 스커트가 가장 높은 인쇄물의 높이와 같습니다.\n" #~ "제한됨 = 스커트가 스커트 높이에 지정된 높이만큼 높습니다.\n" #~ "\n" -#~ "참고: 드래프트 쉴드가 활성화되면 스커트는 객체로부터 스커트 거리에 인쇄됩" -#~ "니다. 따라서 챙이 활성화된 경우 챙과 교차할 수 있습니다. 이를 방지하려면 " -#~ "스커트 거리 값을 늘리십시오.\n" +#~ "참고: 드래프트 쉴드가 활성화되면 스커트는 객체로부터 스커트 거리에 인쇄됩니" +#~ "다. 따라서 챙이 활성화된 경우 챙과 교차할 수 있습니다. 이를 방지하려면 스커" +#~ "트 거리 값을 늘리십시오.\n" #~ msgid "Limited" #~ msgstr "제한됨" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "스커트를 인쇄할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성" -#~ "화되었음을 의미합니다.\n" -#~ "\n" -#~ "프린터가 프라임 라인 없이 인쇄하도록 설정된 경우 0이 아닌 값을 사용하는 것" -#~ "이 유용합니다." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -18235,30 +18127,30 @@ msgstr "" #~ "거됩니다.\n" #~ "\n" #~ "참고: 모델 외부의 시각적 틈을 방지하기 위해 하단 및 상단 표면은 이 값의 영" -#~ "향을 받지 않습니다. 상단 표면으로 간주되는 항목의 감도를 조정하려면 아래 " -#~ "고급 설정에서 '벽 하나의 임계값'을 조정하세요. '하나의 벽 임계값'은 이 설" -#~ "정이 기본값인 0.5보다 높게 설정되거나 단일 벽 상단 표면이 활성화된 경우에" -#~ "만 표시됩니다." +#~ "향을 받지 않습니다. 상단 표면으로 간주되는 항목의 감도를 조정하려면 아래 고" +#~ "급 설정에서 '벽 하나의 임계값'을 조정하세요. '하나의 벽 임계값'은 이 설정" +#~ "이 기본값인 0.5보다 높게 설정되거나 단일 벽 상단 표면이 활성화된 경우에만 " +#~ "표시됩니다." #~ msgid "Don't filter out small internal bridges (beta)" #~ msgstr "작은 내부 브릿지를 필터링하지 마세요(베타)" #~ msgid "" -#~ "This option can help reducing pillowing on top surfaces in heavily " -#~ "slanted or curved models.\n" +#~ "This option can help reducing pillowing on top surfaces in heavily slanted " +#~ "or curved models.\n" #~ "\n" -#~ "By default, small internal bridges are filtered out and the internal " -#~ "solid infill is printed directly over the sparse infill. This works well " -#~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "By default, small internal bridges are filtered out and the internal solid " +#~ "infill is printed directly over the sparse infill. This works well in most " +#~ "cases, speeding up printing without too much compromise on top surface " +#~ "quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " #~ "unsupported solid infill, causing pillowing.\n" #~ "\n" #~ "Enabling this option will print internal bridge layer over slightly " -#~ "unsupported internal solid infill. The options below control the amount " -#~ "of filtering, i.e. the amount of internal bridges created.\n" +#~ "unsupported internal solid infill. The options below control the amount of " +#~ "filtering, i.e. the amount of internal bridges created.\n" #~ "\n" #~ "Disabled - Disables this option. This is the default behavior and works " #~ "well in most cases.\n" @@ -18271,30 +18163,30 @@ msgstr "" #~ "overhang. This option is useful for heavily slanted top surface models. " #~ "However, in most cases it creates too many unnecessary bridges." #~ msgstr "" -#~ "이 옵션은 심하게 기울어지거나 곡선이 있는 모델의 상단 표면이 눌리는 현상" -#~ "을 줄이는 데 도움이 될 수 있습니다.\n" +#~ "이 옵션은 심하게 기울어지거나 곡선이 있는 모델의 상단 표면이 눌리는 현상을 " +#~ "줄이는 데 도움이 될 수 있습니다.\n" #~ "\n" #~ "기본적으로 작은 내부 브릿지는 필터링되고 내부 솔리드 채우기는 희박한 채우" -#~ "기 위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질" -#~ "을 크게 저하시키지 않고 출력 속도를 높입니다.\n" +#~ "기 위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 " +#~ "크게 저하시키지 않고 출력 속도를 높입니다.\n" #~ "\n" -#~ "그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡" -#~ "선 모델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습" -#~ "니다.\n" +#~ "그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡선 " +#~ "모델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습니" +#~ "다.\n" #~ "\n" #~ "이 옵션을 활성화하면 약간 지원되지 않는 내부 솔리드 채우기 위에 내부 브릿" #~ "지 레이어가 출력됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 " #~ "제어합니다.\n" #~ "\n" -#~ "비활성화됨 - 이 옵션을 비활성화합니다. 이는 기본 동작이며 대부분의 경우 " -#~ "잘 작동합니다.\n" +#~ "비활성화됨 - 이 옵션을 비활성화합니다. 이는 기본 동작이며 대부분의 경우 잘 " +#~ "작동합니다.\n" #~ "\n" #~ "제한된 필터링 - 불필요한 내부 브릿지 생성을 피하면서 크게 기울어진 표면에 " #~ "내부 브릿지를 생성합니다. 이는 가장 어려운 모델에 적합합니다.\n" #~ "\n" -#~ "필터링 없음 - 잠재적인 모든 내부 돌출부에 내부 브릿지를 생성합니다. 이 옵" -#~ "션은 심하게 기울어진 상단 표면 모델에 유용합니다. 그러나 대부분의 경우 불" -#~ "필요한 브릿지가 너무 많이 생성됩니다." +#~ "필터링 없음 - 잠재적인 모든 내부 돌출부에 내부 브릿지를 생성합니다. 이 옵션" +#~ "은 심하게 기울어진 상단 표면 모델에 유용합니다. 그러나 대부분의 경우 불필요" +#~ "한 브릿지가 너무 많이 생성됩니다." #~ msgid "Shrinkage" #~ msgstr "수축" @@ -18311,35 +18203,34 @@ msgstr "" #~ "only\n" #~ "3. Nowhere: Disables gap fill\n" #~ msgstr "" -#~ "선택한 표면에 대해 간격 채우기를 활성화합니다. 채워질 최소 간격 길이는 아" -#~ "래의 작은 간격 필터링 옵션에서 제어할 수 있습니다.\n" +#~ "선택한 표면에 대해 간격 채우기를 활성화합니다. 채워질 최소 간격 길이는 아래" +#~ "의 작은 간격 필터링 옵션에서 제어할 수 있습니다.\n" #~ "\n" #~ "옵션:\n" -#~ "1. 어디에서나: 상단, 하단 및 내부 솔리드 표면에 간격 채우기를 적용합니" -#~ "다.\n" +#~ "1. 어디에서나: 상단, 하단 및 내부 솔리드 표면에 간격 채우기를 적용합니다.\n" #~ "2. 상단 및 하단 표면: 상단 및 하단 표면에만 간격 채우기를 적용합니다.\n" #~ "3. 아무데도: 간격 채우기를 비활성화합니다.\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "이 값을 약간(예: 0.9) 줄여 브릿지의 압출량을 줄여 처짐을 개선합니다" #~ msgid "" -#~ "This value governs the thickness of the internal bridge layer. This is " -#~ "the first layer over sparse infill. Decrease this value slightly (for " -#~ "example 0.9) to improve surface quality over sparse infill." +#~ "This value governs the thickness of the internal bridge layer. This is the " +#~ "first layer over sparse infill. Decrease this value slightly (for example " +#~ "0.9) to improve surface quality over sparse infill." #~ msgstr "" -#~ "이 값은 내부 브릿지 레이어의 두께를 결정합니다. 이것은 드문 채우기 위의 " -#~ "첫 번째 레이어입니다. 드문 채우기보다 표면 품질을 향상시키려면 이 값을 약" -#~ "간(예: 0.9) 줄입니다." +#~ "이 값은 내부 브릿지 레이어의 두께를 결정합니다. 이것은 드문 채우기 위의 첫 " +#~ "번째 레이어입니다. 드문 채우기보다 표면 품질을 향상시키려면 이 값을 약간" +#~ "(예: 0.9) 줄입니다." #~ msgid "" #~ "This factor affects the amount of material for top solid infill. You can " #~ "decrease it slightly to have smooth surface finish" #~ msgstr "" -#~ "이 값은 상단 꽉찬 내부 채우기의 재료의 양에 영향을 미칩니다. 부드러운 표" -#~ "면 마감을 위해 약간 줄여도 됩니다" +#~ "이 값은 상단 꽉찬 내부 채우기의 재료의 양에 영향을 미칩니다. 부드러운 표면 " +#~ "마감을 위해 약간 줄여도 됩니다" #~ msgid "This factor affects the amount of material for bottom solid infill" #~ msgstr "이 값은 하단 꽉찬 내부 채우기의 재료의 양에 영향을 미칩니다" @@ -18358,14 +18249,13 @@ msgstr "" #~ "Speed of internal bridge. If the value is expressed as a percentage, it " #~ "will be calculated based on the bridge_speed. Default value is 150%." #~ msgstr "" -#~ "내부 브릿지 속도. 값을 백분율로 표시하면 외부 브릿지 속도를 기준으로 계산" -#~ "됩니다. 기본값은 150%입니다." +#~ "내부 브릿지 속도. 값을 백분율로 표시하면 외부 브릿지 속도를 기준으로 계산됩" +#~ "니다. 기본값은 150%입니다." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "필라멘트 교체 시 새 필라멘트를 넣는 시간입니다. 통계에만 사용됩니다" -#~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ msgid "Time to unload old filament when switch filament. For statistics only" #~ msgstr "" #~ "필라멘트를 교체할 때 기존 필라멘트를 빼는 시간입니다. 통계에만 사용됩니다" @@ -18379,13 +18269,13 @@ msgstr "" #~ "시간에 추가됩니다." #~ msgid "" -#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload " -#~ "a filament during a tool change (when executing the T code). This time is " +#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a " +#~ "filament during a tool change (when executing the T code). This time is " #~ "added to the total print time by the G-code time estimator." #~ msgstr "" -#~ "툴 교체 중(T 코드 실행 시) 프린터 펌웨어(또는 Multi Material Unit 2.0)가 " -#~ "필라멘트를 빼는 시간입니다. 이 시간은 G코드 시간 계산기에 의해 총 출력 시" -#~ "간에 추가됩니다." +#~ "툴 교체 중(T 코드 실행 시) 프린터 펌웨어(또는 Multi Material Unit 2.0)가 필" +#~ "라멘트를 빼는 시간입니다. 이 시간은 G코드 시간 계산기에 의해 총 출력 시간" +#~ "에 추가됩니다." #~ msgid "Filter out gaps smaller than the threshold specified" #~ msgstr "지정된 임계값보다 작은 간격을 필터링합니다" @@ -18402,21 +18292,21 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" #~ msgstr "" -#~ "챔버 온도가 높을수록 뒤틀림을 억제하거나 줄이는 데 도움이 될 수 있으며 잠" -#~ "재적으로 ABS, ASA, PC, PA 등과 같은 고온 재료의 층간 결합 강도가 높아질 " -#~ "수 있습니다. 동시에 ABS 및 ASA의 공기 여과는 더욱 악화됩니다. PLA, PETG, " -#~ "TPU, PVA 및 기타 저온 재료의 경우 막힘을 방지하려면 실제 챔버 온도가 높지 " -#~ "않아야 하므로 꺼짐을 의미하는 0을 적극 권장합니다" +#~ "챔버 온도가 높을수록 뒤틀림을 억제하거나 줄이는 데 도움이 될 수 있으며 잠재" +#~ "적으로 ABS, ASA, PC, PA 등과 같은 고온 재료의 층간 결합 강도가 높아질 수 있" +#~ "습니다. 동시에 ABS 및 ASA의 공기 여과는 더욱 악화됩니다. PLA, PETG, TPU, " +#~ "PVA 및 기타 저온 재료의 경우 막힘을 방지하려면 실제 챔버 온도가 높지 않아" +#~ "야 하므로 꺼짐을 의미하는 0을 적극 권장합니다" #~ msgid "" -#~ "Different nozzle diameters and different filament diameters is not " -#~ "allowed when prime tower is enabled." +#~ "Different nozzle diameters and different filament diameters is not allowed " +#~ "when prime tower is enabled." #~ msgstr "" #~ "다른 노즐 직경과 다른 필라멘트 직경은 허용되지 않습니다.프라임 타워가 활성" #~ "화되면." @@ -18426,8 +18316,7 @@ msgstr "" #~ msgstr "" #~ "현재 프라임 타워가 활성화된 상태에서는 누출 방지가 지원되지 않습니다." -#~ msgid "" -#~ "Interlocking depth of a segmented region. Zero disables this feature." +#~ msgid "Interlocking depth of a segmented region. Zero disables this feature." #~ msgstr "분할된 영역의 깊이를 연동합니다. 0은 이 기능을 비활성화합니다." #~ msgid "Wipe tower extruder" @@ -18437,8 +18326,8 @@ msgstr "" #~ "File size exceeds the 100MB upload limit. Please upload your file through " #~ "the panel." #~ msgstr "" -#~ "파일 크기가 업로드 제한인 100MB를 초과했습니다. 패널을 통해 파일을 업로드" -#~ "하세요." +#~ "파일 크기가 업로드 제한인 100MB를 초과했습니다. 패널을 통해 파일을 업로드하" +#~ "세요." #~ msgid "Please input a valid value (K in 0~0.3)" #~ msgstr "유효한 값을 입력하세요(K는 0~0.3)" @@ -18467,12 +18356,11 @@ msgstr "" #~ "the print start menu, the printer will follow the old way, calibrate the " #~ "filament before the print; When you start a multi color/material print, " #~ "the printer will use the default compensation parameter for the filament " -#~ "during every filament switch which will have a good result in most " -#~ "cases.\n" +#~ "during every filament switch which will have a good result in most cases.\n" #~ "\n" #~ "Please note there are a few cases that will make the calibration result " -#~ "not reliable: using a texture plate to do the calibration; the build " -#~ "plate does not have good adhesion (please wash the build plate or apply " +#~ "not reliable: using a texture plate to do the calibration; the build plate " +#~ "does not have good adhesion (please wash the build plate or apply " #~ "gluestick!) ...You can find more from our wiki.\n" #~ "\n" #~ "The calibration results have about 10 percent jitter in our test, which " @@ -18482,31 +18370,31 @@ msgstr "" #~ "우리 위키에서 동적 압출량 교정에 대한 자세한 내용을 찾아보세요.\n" #~ "\n" #~ "일반적으로 교정은 필요하지 않습니다. 출력 시작 메뉴에서 \"동적 압출량 교정" -#~ "\" 옵션을 선택한 상태에서 단일 색상/재료 출력을 시작하면 프린터는 이전 방" -#~ "식을 따르며 출력 전에 필라멘트를 교정합니다. 다중 색상/재료 출력을 시작하" -#~ "면 프린터는 모든 필라멘트 전환 중에 필라멘트에 대한 기본 보상 매개변수를 " -#~ "사용하므로 대부분의 경우 좋은 결과를 얻을 수 있습니다.\n" +#~ "\" 옵션을 선택한 상태에서 단일 색상/재료 출력을 시작하면 프린터는 이전 방식" +#~ "을 따르며 출력 전에 필라멘트를 교정합니다. 다중 색상/재료 출력을 시작하면 " +#~ "프린터는 모든 필라멘트 전환 중에 필라멘트에 대한 기본 보상 매개변수를 사용" +#~ "하므로 대부분의 경우 좋은 결과를 얻을 수 있습니다.\n" #~ "\n" #~ "교정 결과를 신뢰할 수 없게 만드는 몇 가지 경우가 있습니다. 텍스처 플레이트" #~ "를 사용하여 보정을 수행합니다. 빌드 플레이트의 접착력이 좋지 않습니다. (빌" #~ "드 플레이트를 세척하거나 풀을 바르십시오!) ...위키에서 자세한 내용을 확인" #~ "할 수 있습니다.\n" #~ "\n" -#~ "테스트에서 교정 결과에는 약 10%의 오차가 있으며, 이로 인해 각 교정에서 결" -#~ "과가 정확히 동일하지 않을 수 있습니다. 새로운 업데이트로 개선하기 위해 근" -#~ "본 원인을 계속 조사하고 있습니다." +#~ "테스트에서 교정 결과에는 약 10%의 오차가 있으며, 이로 인해 각 교정에서 결과" +#~ "가 정확히 동일하지 않을 수 있습니다. 새로운 업데이트로 개선하기 위해 근본 " +#~ "원인을 계속 조사하고 있습니다." #~ msgid "" -#~ "Only one of the results with the same name will be saved. Are you sure " -#~ "you want to overrides the other results?" +#~ "Only one of the results with the same name will be saved. Are you sure you " +#~ "want to overrides the other results?" #~ msgstr "" #~ "동일한 이름을 가진 결과 중 하나만 저장됩니다. 다른 결과에 덮어쓰겠습니까?" #, c-format, boost-format #~ msgid "" #~ "There is already a historical calibration result with the same name: %s. " -#~ "Only one of the results with the same name is saved. Are you sure you " -#~ "want to overrides the historical result?" +#~ "Only one of the results with the same name is saved. Are you sure you want " +#~ "to overrides the historical result?" #~ msgstr "" #~ "동일한 이름을 가진 교정 기록 결과가 이미 있습니다: %s. 동일한 이름의 결과 " #~ "중 하나만 저장됩니다. 과거 결과에 덮어쓰겠습니까?" @@ -18514,41 +18402,32 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "완벽한 압출각도를 가진 모서리를 찾아주세요" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Order of wall/infill. When the tickbox is unchecked the walls are printed " #~ "first, which works best in most cases.\n" #~ "\n" -#~ "Printing walls first may help with extreme overhangs as the walls have " -#~ "the neighbouring infill to adhere to. However, the infill will slightly " -#~ "push out the printed walls where it is attached to them, resulting in a " -#~ "worse external surface finish. It can also cause the infill to shine " -#~ "through the external surfaces of the part." +#~ "Printing walls first may help with extreme overhangs as the walls have the " +#~ "neighbouring infill to adhere to. However, the infill will slightly push " +#~ "out the printed walls where it is attached to them, resulting in a worse " +#~ "external surface finish. It can also cause the infill to shine through the " +#~ "external surfaces of the part." #~ msgstr "" #~ "벽/채우기 순서. 확인란을 선택 취소하면 벽이 먼저 출력되며 이는 대부분의 경" #~ "우 가장 잘 작동합니다.\n" #~ "\n" #~ "벽에 접착할 이웃 충전재가 있으므로 벽을 먼저 출력하면 과도한 돌출부에 도움" -#~ "이 될 수 있습니다. 그러나 충전재는 출력된 벽이 부착된 부분을 약간 밀어내" -#~ "어 외부 표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 " -#~ "빛날 수도 있습니다." - -#~ msgid "V" -#~ msgstr "V" +#~ "이 될 수 있습니다. 그러나 충전재는 출력된 벽이 부착된 부분을 약간 밀어내어 " +#~ "외부 표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛날 " +#~ "수도 있습니다." #~ msgid "" -#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " -#~ "Ranellucci and the RepRap community" +#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from PrusaSlicer " +#~ "by Prusa Research. PrusaSlicer is from Slic3r by Alessandro Ranellucci and " +#~ "the RepRap community" #~ msgstr "" -#~ "Orca Slicer는 Prusa Research의 PrusaSlicer에서 나온 뱀부랩의 BambuStudio" -#~ "를 기반으로 합니다. PrusaSlicer는 Alessandro Ranellucci와 RepRap 커뮤니티" -#~ "의 Slic3r에서 제작되었습니다" +#~ "Orca Slicer는 Prusa Research의 PrusaSlicer에서 나온 뱀부랩의 BambuStudio를 " +#~ "기반으로 합니다. PrusaSlicer는 Alessandro Ranellucci와 RepRap 커뮤니티의 " +#~ "Slic3r에서 제작되었습니다" #~ msgid "Export &Configs" #~ msgstr "설정 내보내기 (&C)" @@ -18574,8 +18453,8 @@ msgstr "" #~ "Infill area is enlarged slightly to overlap with wall for better bonding. " #~ "The percentage value is relative to line width of sparse infill" #~ msgstr "" -#~ "채우기 영역이 벽과 겹치도록 약간 확장되어 접착력이 향상됩니다. 드문 채우" -#~ "기 선 너비의 백분율 값입니다" +#~ "채우기 영역이 벽과 겹치도록 약간 확장되어 접착력이 향상됩니다. 드문 채우기 " +#~ "선 너비의 백분율 값입니다" #~ msgid "Export Configs" #~ msgstr "구성 내보내기" @@ -18583,37 +18462,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "필라멘트 언로드" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "AMS 슬롯을 선택한 후 \"넣기\" 또는 \"빼기\" 버튼을 눌러 필라멘트를 자동으" -#~ "로 넣거나 뺍니다." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "메인보드" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- ℃" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "active" #~ msgstr "활성화" @@ -18643,19 +18494,19 @@ msgstr "" #~ msgid "" #~ "Note: When the lid is open or the desiccant pack is changed, it can take " #~ "hours or a night to absorb the moisture. Low temperatures also slow down " -#~ "the process. During this time, the indicator may not represent the " -#~ "chamber accurately." +#~ "the process. During this time, the indicator may not represent the chamber " +#~ "accurately." #~ msgstr "" #~ "참고: 뚜껑이 열려 있거나 건조제 팩을 교체한 경우 수분을 흡수하는 데 몇 시" #~ "간 또는 하룻밤이 걸릴 수 있습니다. 온도가 낮으면 흡수 속도도 느려집니다. " #~ "이 시간 동안 표시기가 챔버를 정확하게 나타내지 못할 수 있습니다." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" -#~ "참고: 출력 중에 새 필라멘트를 삽입하면 출력이 완료될 때까지 AMS가 자동으" -#~ "로 어떤 정보도 읽지 않습니다." +#~ "참고: 출력 중에 새 필라멘트를 삽입하면 출력이 완료될 때까지 AMS가 자동으로 " +#~ "어떤 정보도 읽지 않습니다." #, boost-format #~ msgid "Succeed to export G-code to %1%" @@ -18699,9 +18550,6 @@ msgstr "" #~ msgid "Failed to fetching model information from printer." #~ msgstr "프린터에서 모델 정보를 가져오지 못했습니다." -#~ msgid "Failed to parse model informations." -#~ msgstr "모델 정보를 해석하지 못했습니다." - #~ msgid "Connection lost. Please retry." #~ msgstr "연결이 끊어졌습니다. 다시 시도해 주세요." @@ -18710,7 +18558,7 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -18718,7 +18566,7 @@ msgstr "" #~ "사전 설정 전환 후 변경된 설정(새 값)을 유지하시겠습니까?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -18731,12 +18579,12 @@ msgstr "" #~ msgid "" #~ "Please go to filament setting to edit your presets if you need.\n" #~ "Please note that nozzle temperature, hot bed temperature, and maximum " -#~ "volumetric speed have a significant impact on printing quality. Please " -#~ "set them carefully." +#~ "volumetric speed have a significant impact on printing quality. Please set " +#~ "them carefully." #~ msgstr "" #~ "필요한 경우 필라멘트 설정으로 이동하여 사전 설정을 편집하세요.\n" -#~ "노즐 온도, 핫베드 온도 및 최대 체적 속도는 출력 품질에 큰 영향을 미칩니" -#~ "다. 신중하게 설정해 주세요." +#~ "노즐 온도, 핫베드 온도 및 최대 체적 속도는 출력 품질에 큰 영향을 미칩니다. " +#~ "신중하게 설정해 주세요." #~ msgid "Studio Version:" #~ msgstr "스튜디오 버전:" @@ -18781,8 +18629,8 @@ msgstr "" #~ msgstr "테스트 저장소 업로드" #~ msgid "" -#~ "The speed setting exceeds the printer's maximum speed " -#~ "(machine_max_speed_x/machine_max_speed_y).\n" +#~ "The speed setting exceeds the printer's maximum speed (machine_max_speed_x/" +#~ "machine_max_speed_y).\n" #~ "Orca will automatically cap the print speed to ensure it doesn't surpass " #~ "the printer's capabilities.\n" #~ "You can adjust the maximum speed setting in your printer's configuration " @@ -18801,7 +18649,7 @@ msgstr "" #~ "대체 추가 벽은 수직 쉘 두께 보장을 비활성화한 상태에서만 작동합니다. " #~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " #~ "wall\n" #~ "No - Don't use alternate extra wall" @@ -18817,9 +18665,6 @@ msgstr "" #~ "경사진 표면 근처에 꽉찬 내부 채우기를 추가하여 수직 쉘 두께를 보장합니다 " #~ "(상단+하단 꽉찬 레이어)" -#~ msgid " " -#~ msgstr " " - #~ msgid "Text-Rotate" #~ msgstr "텍스트 회전" @@ -18837,18 +18682,18 @@ msgstr "" #~ "layer cooling is enabled, when printing overhangs and when feature speeds " #~ "are not specified explicitly." #~ msgstr "" -#~ "보다 나은 레이어 냉각을 위해 속도를 늦출 때, 돌출부 출력 속도가 명시적으" -#~ "로 지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다." +#~ "보다 나은 레이어 냉각을 위해 속도를 늦출 때, 돌출부 출력 속도가 명시적으로 " +#~ "지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다." #~ msgid "" #~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" +#~ "selected\".\n" #~ "To add preset for more prinetrs, Please go to printer selection" #~ msgstr "" #~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n" #~ "더 많은 프린터에 대한 사전 설정을 추가하려면 프린터 선택으로 이동하세요" -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "구성을 로드할 수 없습니다." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -18858,16 +18703,6 @@ msgstr "" #~ msgid "wiki" #~ msgstr "위키" -#~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" -#~ msgstr "" -#~ "상대적 압출은 \"label_objects\" 옵션(기타; 객체 이름표)을 사용할 때 권장됩" -#~ "니다. 일부 압출기는 이 옵션을 해제하면 더 잘 작동합니다(절대 압출 모드). " -#~ "닦기 타워는 상대 모드에서만 호환됩니다" - #~ msgid "Movement:" #~ msgstr "이동:" @@ -18896,7 +18731,7 @@ msgstr "" #~ msgstr "커넥터가 객체에서 벗어났습니다" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" #~ "잘못된 상태입니다.\n" @@ -18909,17 +18744,17 @@ msgstr "" #~ "Orca recalculates your flushing volumes every time the filament colors " #~ "change. You can change this behavior in Preferences." #~ msgstr "" -#~ "Orca Slicer는 필라멘트 색상이 바뀔 때마다 플러싱 볼륨을 다시 계산합니다. " -#~ "환경 설정에서 이 동작을 변경할 수 있습니다." +#~ "Orca Slicer는 필라멘트 색상이 바뀔 때마다 플러싱 볼륨을 다시 계산합니다. 환" +#~ "경 설정에서 이 동작을 변경할 수 있습니다." #~ msgid "" #~ "The printer timed out while receiving a print job. Please check if the " #~ "network is functioning properly and send the print again." #~ msgstr "" -#~ "프린터가 인쇄 작업을 수신하는 동안 시간이 초과되었습니다.네트워크가 제대" -#~ "로 작동하는지 확인하고 인쇄를 다시 보내십시오." +#~ "프린터가 인쇄 작업을 수신하는 동안 시간이 초과되었습니다.네트워크가 제대로 " +#~ "작동하는지 확인하고 인쇄를 다시 보내십시오." -#~ msgid "The beginning of the vendor can not be a number. Please re-enter." +#~ msgid "The beginning of the vendor cannot be a number. Please re-enter." #~ msgstr "공급업체의 시작 부분은 숫자일 수 없습니다. 다시 입력해 주세요." #~ msgid "Edit Text" @@ -18934,9 +18769,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "SLA 압축파일 선택:" -#~ msgid "Import file" -#~ msgstr "파일 가져오기" - #~ msgid "Import model and profile" #~ msgstr "모델과 파일 가져오기" @@ -18973,8 +18805,8 @@ msgstr "" #~ msgstr "" #~ "모델 단순화\n" #~ "메쉬 단순화 기능을 사용하여 메쉬의 삼각형 수를 줄일 수 있다는 사실을 알고 " -#~ "있습니까? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택합니" -#~ "다. 자세한 내용은 설명서를 참조하십시오." +#~ "있습니까? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택합니다. " +#~ "자세한 내용은 설명서를 참조하십시오." #~ msgid "" #~ "Subtract a Part\n" @@ -18983,10 +18815,9 @@ msgstr "" #~ "resizable holes directly in Orca Slicer. Read more in the documentation." #~ msgstr "" #~ "부품 비우기\n" -#~ "네거티브 부분 수정자를 사용하여 하나의 메시를 다른 메시에서 뺄 수 있다는 " -#~ "것을 알고 계셨습니까? 예를 들어, 이렇게 하면 Orca Slicer에서 직접 쉽게 크" -#~ "기 조정이 가능한 구멍을 만들 수 있습니다. 설명서에서 자세한 내용을 읽어보" -#~ "세요." +#~ "네거티브 부분 수정자를 사용하여 하나의 메시를 다른 메시에서 뺄 수 있다는 것" +#~ "을 알고 계셨습니까? 예를 들어, 이렇게 하면 Orca Slicer에서 직접 쉽게 크기 " +#~ "조정이 가능한 구멍을 만들 수 있습니다. 설명서에서 자세한 내용을 읽어보세요." #~ msgid "Filling bed " #~ msgstr "베드 채우기 " @@ -19004,13 +18835,13 @@ msgstr "" #~ "예 - 자동으로 직선 패턴으로 전환합니다\n" #~ "아니요 - 밀도를 기본값(100%가 아닌 값)으로 자동 재설정합니다" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "필라멘트를 로드하기 전에 노즐을 170도 이상으로 가열하십시오." -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "G코드 창 표시" -#~ msgid "If enabled, g-code window will be displayed." +#~ msgid "If enabled, G-code window will be displayed." #~ msgstr "활성화된 경우 G코드 창이 표시됩니다." #, c-format @@ -19019,18 +18850,15 @@ msgstr "" #~ "내부 드문 내부 채우기 밀도, 100은 전체가 꽉찬 내부 채우기임을 의미합니다" #~ msgid "Tree support wall loops" -#~ msgstr "나무 지지대 벽 루프" +#~ msgstr "트리 서포트 벽 루프" #~ msgid "This setting specify the count of walls around tree support" -#~ msgstr "이 설정은 나무 지지대의 벽 수를 지정합니다" +#~ msgstr "이 설정은 트리 서포트의 벽 수를 지정합니다" #, c-format, boost-format #~ msgid " doesn't work at 100%% density " #~ msgstr " 100%% 밀도에서 작동하지 않음 " -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "바닥면 선택 도구" @@ -19079,8 +18907,8 @@ msgstr "" #~ "direction on odd layers. This alternating pattern can drastically improve " #~ "steep overhang." #~ msgstr "" -#~ "돌출부 위의 홀수 레이어의 둘레를 반대 방향으로 압출시킵니다. 이러한 교대 " -#~ "패턴은 가파른 돌출부를 대폭 개선할 수 있습니다." +#~ "돌출부 위의 홀수 레이어의 둘레를 반대 방향으로 압출시킵니다. 이러한 교대 패" +#~ "턴은 가파른 돌출부를 대폭 개선할 수 있습니다." #~ msgid "Order of inner wall/outer wall/infil" #~ msgstr "내벽/외벽/내부 채우기 순서" @@ -19117,7 +18945,7 @@ msgstr "" #~ msgstr "X축을 중심으로 한 회전 각도입니다." #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "선택한 사전 설정: %1%을(를) 찾을 수 없습니다." #~ msgid "" @@ -19126,38 +18954,18 @@ msgstr "" #~ "touchpanel in the 3D scene?" #~ msgstr "" #~ "3D 화면 작업\n" -#~ "3D 화면에서 마우스와 터치패널로 보기 및 객체/부품 선택을 제어하는 방법을 " -#~ "알고 있습니까?" - -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "모델 수리\n" -#~ "많은 슬라이싱 문제를 피하기 위해 손상된 3D 모델을 수리할 수 있다는 것을 알" +#~ "3D 화면에서 마우스와 터치패널로 보기 및 객체/부품 선택을 제어하는 방법을 알" #~ "고 있습니까?" -#~ msgid "" -#~ "When need to print with the printer door opened\n" -#~ "Opening the printer door can reduce the probability of extruder/hotend " -#~ "clogging when printing lower temperature filament with a higher enclosure " -#~ "temperature. More info about this in the Wiki." -#~ msgstr "" -#~ "프린터 도어를 열어 놓은 상태로 출력해야 하는 경우\n" -#~ "더 높은 내부 온도로 낮은 온도의 필라멘트를 출력할 때 프린터 도어를 열면 압" -#~ "출기/핫엔드가 막힐 가능성을 줄일 수 있습니다. 이에 대한 자세한 내용은 Wiki" -#~ "에서 확인하세요." - #~ msgid "Embedded" #~ msgstr "매입" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" -#~ "OrcaSlicer 구성 파일이 손상되어 구문 분석할 수 없습니다. 파일을 삭제하고 " -#~ "다시 시도하십시오." +#~ "OrcaSlicer 구성 파일이 손상되어 구문 분석할 수 없습니다. 파일을 삭제하고 다" +#~ "시 시도하십시오." #~ msgid "Online Models" #~ msgstr "온라인 모델" @@ -19170,12 +18978,11 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" -#~ "(Currently supporting automatic supply of consumables with the same " -#~ "brand, material type, and color)" +#~ "automatic replenishment is currently not possible.\n" +#~ "(Currently supporting automatic supply of consumables with the same brand, " +#~ "material type, and color)" #~ msgstr "" -#~ "현재 동일한 예비 소모품을 사용할 수 없으며 자동 보충도 현재 불가능합니" -#~ "다.\n" +#~ "현재 동일한 예비 소모품을 사용할 수 없으며 자동 보충도 현재 불가능합니다.\n" #~ "(현재 동일한 브랜드, 재질, 색상의 소모품 자동공급 지원)" #~ msgid "Invalid nozzle diameter" @@ -19185,8 +18992,8 @@ msgstr "" #~ "The bed temperature exceeds filament's vitrification temperature. Please " #~ "open the front door of printer before printing to avoid nozzle clog." #~ msgstr "" -#~ "베드 온도가 필라멘트의 유리화 온도를 초과합니다. 노즐 막힘을 방지하기 위" -#~ "해 출력하기 전에 프린터의 도어를 여십시오." +#~ "베드 온도가 필라멘트의 유리화 온도를 초과합니다. 노즐 막힘을 방지하기 위해 " +#~ "출력하기 전에 프린터의 도어를 여십시오." #~ msgid "Activate for better air filtration" #~ msgstr "더 나은 공기 여과를 위해 활성화하세요" @@ -19216,8 +19023,8 @@ msgstr "" #~ "during printing except the first several layers which is defined by no " #~ "cooling layers" #~ msgstr "" -#~ "보조 출력 냉각 팬의 속도입니다. 냉각 중지 레이어로 정의된 처음 몇 개의 레" -#~ "이어를 제외하고 출력 중에 보조 팬이 이 속도로 작동됩니다" +#~ "보조 출력 냉각 팬의 속도입니다. 냉각 중지 레이어로 정의된 처음 몇 개의 레이" +#~ "어를 제외하고 출력 중에 보조 팬이 이 속도로 작동됩니다" #~ msgid "" #~ "Filter out gaps smaller than the threshold specified. This setting won't " @@ -19238,17 +19045,13 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "압출 교정" -#~ msgid "Push new filament into the extruder" -#~ msgstr "새 필라멘트를 압출기에 밀어 넣으세요" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" -#~ "다른 레이어의 베드 온도가 초기 레이어의 베드 온도보다 %d°C 이상 낮습니" -#~ "다.\n" +#~ "다른 레이어의 베드 온도가 초기 레이어의 베드 온도보다 %d°C 이상 낮습니다.\n" #~ "이로 인해 출력 중에 모델이 빌드 플레이트에서 탈출할 수 있습니다" #~ msgid "" @@ -19291,31 +19094,26 @@ msgstr "" #~ msgstr "고온 플레이트" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "고온 플레이트 설치 시 베드 온도. 값 0은 필라멘트가 고온 플레이트에 출력하" #~ "는 것을 지원하지 않음을 의미합니다" #~ msgid "Internal bridge support thickness" -#~ msgstr "내부 다리 지지대 두께" +#~ msgstr "내부 다리 서포트 두께" #~ msgid "" -#~ "If enabled, support loops will be generated under the contours of " -#~ "internal bridges.These support loops could prevent internal bridges from " -#~ "extruding over the air and improve the top surface quality, especially " -#~ "when the sparse infill density is low.This value determines the thickness " -#~ "of the support loops. 0 means disable this feature" +#~ "If enabled, support loops will be generated under the contours of internal " +#~ "bridges. These support loops could prevent internal bridges from extruding " +#~ "over the air and improve the top surface quality, especially when the " +#~ "sparse infill density is low. This value determines the thickness of the " +#~ "support loops. 0 means disable this feature" #~ msgstr "" -#~ "활성화된 경우 내부 다리의 윤곽선 아래에 지지대 루프를 생성합니다. 이러한 " -#~ "지지대 루프는 내부 다리를 공중에서 압출하는 것을 방지하고, 특히 드문 채우" -#~ "기 밀도가 낮을 때 상단 표면 품질을 향상시킬 수 있습니다. 이 값은 지지대 루" -#~ "프의 두께를 결정하며 0은 이 기능을 사용하지 않음을 의미합니다" - -#, c-format, boost-format -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "Klipper의 max_accel_to_decel이 이 가속도 % o로 조정됩니다" +#~ "활성화된 경우 내부 다리의 윤곽선 아래에 서포트 루프를 생성합니다. 이러한 서" +#~ "포트 루프는 내부 다리를 공중에서 압출하는 것을 방지하고, 특히 드문 채우기 " +#~ "밀도가 낮을 때 상단 표면 품질을 향상시킬 수 있습니다. 이 값은 서포트 루프" +#~ "의 두께를 결정하며 0은 이 기능을 사용하지 않음을 의미합니다" #~ msgid "" #~ "Style and shape of the support. For normal support, projecting the " @@ -19325,11 +19123,11 @@ msgstr "" #~ "save a lot of material (default), while hybrid style will create similar " #~ "structure to normal support under large flat overhangs." #~ msgstr "" -#~ "지지대의 모양. 일반 지지대의 경우, 격자는 보다 안정적인 지지대(기본값)가 " -#~ "생성되는 반면 맞춤 지지대는 재료를 절약하고 객체 자국을 줄입니다.\n" -#~ "나무 지지대의 경우 얇은 모양은 가지를 더 적극적으로 병합하고 많은 재료를 " -#~ "절약합니다(기본값). 반면 혼합 스타일은 크고 평평한 오버행 아래에 일반 지지" -#~ "대와 유사한 구조를 만듭니다." +#~ "서포트의 모양. 일반 서포트의 경우, 격자는 보다 안정적인 서포트(기본값)가 생" +#~ "성되는 반면 맞춤 서포트는 재료를 절약하고 객체 자국을 줄입니다.\n" +#~ "트리 서포트의 경우 얇은 모양은 가지를 더 적극적으로 병합하고 많은 재료를 절" +#~ "약합니다(기본값). 반면 혼합 스타일은 크고 평평한 오버행 아래에 일반 지지대" +#~ "와 유사한 구조를 만듭니다." #~ msgid "Target chamber temperature" #~ msgstr "설정할 챔버 온도" @@ -19339,12 +19137,12 @@ msgstr "" #~ msgid "" #~ "Do not recommend bed temperature of other layer to be lower than initial " -#~ "layer for more than this threshold. Too low bed temperature of other " -#~ "layer may cause the model broken free from build plate" +#~ "layer for more than this threshold. Too low bed temperature of other layer " +#~ "may cause the model broken free from build plate" #~ msgstr "" -#~ "이 임계값 이상으로 다른 레이어의 베드 온도를 초기 레이어보다 낮추는 것을 " -#~ "권장하지 않습니다. 다른 레이어의 베드 온도가 너무 낮으면 빌드 플레이트에" -#~ "서 모델이 깨질 수 있습니다" +#~ "이 임계값 이상으로 다른 레이어의 베드 온도를 초기 레이어보다 낮추는 것을 권" +#~ "장하지 않습니다. 다른 레이어의 베드 온도가 너무 낮으면 빌드 플레이트에서 모" +#~ "델이 깨질 수 있습니다" #~ msgid "Orient the model" #~ msgstr "모델 방향 설정" diff --git a/localization/i18n/list.txt b/localization/i18n/list.txt index 2cb4d18c5f..f922c7878b 100644 --- a/localization/i18n/list.txt +++ b/localization/i18n/list.txt @@ -47,7 +47,7 @@ src/slic3r/GUI/Jobs/UpgradeNetworkJob.cpp src/slic3r/GUI/AboutDialog.cpp src/slic3r/GUI/AMSMaterialsSetting.cpp src/slic3r/GUI/ExtrusionCalibration.cpp -src/slic3r/GUI/AMSMappingPopup.cpp +src/slic3r/GUI/AmsMappingPopup.cpp src/slic3r/GUI/AMSSetting.cpp src/slic3r/GUI/BBLTopbar.cpp src/slic3r/GUI/DownloadProgressDialog.cpp @@ -172,4 +172,4 @@ src/slic3r/Utils/SimplyPrint.cpp src/slic3r/Utils/Flashforge.cpp src/slic3r/GUI/Jobs/OAuthJob.cpp src/slic3r/GUI/BackgroundSlicingProcess.cpp -src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp \ No newline at end of file +src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po new file mode 100644 index 0000000000..4e69ab84f9 --- /dev/null +++ b/localization/i18n/lt/OrcaSlicer_lt.po @@ -0,0 +1,18608 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-03-16 22:32+0800\n" +"PO-Revision-Date: 2025-03-21 21:00+0200\n" +"Last-Translator: Gintaras Kučinskas \n" +"Language-Team: \n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : " +"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n" +"X-Generator: Poedit 3.5\n" + +msgid "Support Painting" +msgstr "Palaiko piešimą" + +msgid "Alt + Mouse wheel" +msgstr "Alt + pelės ratukas" + +msgid "Section view" +msgstr "Sekcijų peržiūra" + +msgid "Reset direction" +msgstr "Atstatyti kryptį" + +msgid "Ctrl + Mouse wheel" +msgstr "Ctrl + pelės ratukas" + +msgid "Pen size" +msgstr "Pieštuko dydis" + +msgid "Left mouse button" +msgstr "Kairys pelės mygtukas" + +msgid "Enforce supports" +msgstr "Priverstinės atramos" + +msgid "Right mouse button" +msgstr "Dešinys pelės mygtukas" + +msgid "Block supports" +msgstr "Blokuoti atramas" + +msgid "Shift + Left mouse button" +msgstr "Shift + kairys pelės mygtukas" + +msgid "Erase" +msgstr "Ištrinti" + +msgid "Erase all painting" +msgstr "Ištrinti visą piešinį" + +msgid "Highlight overhang areas" +msgstr "Paryškinti kabančias vietas" + +msgid "Gap fill" +msgstr "Plyšių užpildymas" + +msgid "Perform" +msgstr "Atlikti" + +msgid "Gap area" +msgstr "Plyšio vieta" + +msgid "Tool type" +msgstr "Įrankio tipas" + +msgid "Smart fill angle" +msgstr "Išmanaus užpildymo kampas" + +msgid "On overhangs only" +msgstr "Tik kabantiems" + +msgid "Auto support threshold angle: " +msgstr "Automatinių atramų generavimo kampas: " + +msgid "Circle" +msgstr "Apskritimas" + +msgid "Sphere" +msgstr "Sfera" + +msgid "Fill" +msgstr "Užpildymas" + +msgid "Gap Fill" +msgstr "Plyšių užpildymas" + +#, boost-format +msgid "Allows painting only on facets selected by: \"%1%\"" +msgstr "Leidžia piešti tik tuos aspektus, kuriuos pasirinko: „%1%“" + +msgid "Highlight faces according to overhang angle." +msgstr "Paryškinti paviršius pagal iškyšos kampą." + +msgid "No auto support" +msgstr "Nenaudoti automatinių atramų" + +msgid "Support Generated" +msgstr "Atramos sugeneruotos" + +msgid "Gizmo-Place on Face" +msgstr "Gizmo-Patalpinti ant paviršiaus" + +msgid "Lay on face" +msgstr "Paguldyti ant paviršiaus" + +#, boost-format +msgid "" +"Filament count exceeds the maximum number that painting tool supports. Only " +"the first %1% filaments will be available in painting tool." +msgstr "" +"Gijų skaičius viršija didžiausią palaikomą piešimo įrankio. Piešimo įrankyje " +"bus pasiekiami tik pirmosios %1% gijos." + +msgid "Color Painting" +msgstr "Spalvotas piešimas" + +msgid "Pen shape" +msgstr "Rašiklio forma" + +msgid "Paint" +msgstr "Piešti" + +msgid "Key 1~9" +msgstr "Klavišai 1~9" + +msgid "Choose filament" +msgstr "Pasirinkite giją" + +msgid "Edge detection" +msgstr "Briaunų aptikimas" + +msgid "Triangles" +msgstr "Trikampiai" + +msgid "Filaments" +msgstr "Gijos" + +msgid "Brush" +msgstr "Teptukas" + +msgid "Smart fill" +msgstr "Išmanus užpildymas" + +msgid "Bucket fill" +msgstr "Kibiro užpildymas" + +msgid "Height range" +msgstr "Aukščio diapazonas" + +msgid "Alt + Shift + Enter" +msgstr "Alt + Shift + Enter" + +msgid "Toggle Wireframe" +msgstr "Perjungti \"vielinį\" vaizdą" + +msgid "Shortcut Key " +msgstr "Spartusis klavišas " + +msgid "Triangle" +msgstr "Trikampis" + +msgid "Height Range" +msgstr "Aukščio diapazonas" + +msgid "Vertical" +msgstr "Vertikaliai" + +msgid "Horizontal" +msgstr "Horizontaliai" + +msgid "Remove painted color" +msgstr "Pašalinti dažytą spalvą" + +#, boost-format +msgid "Painted using: Filament %1%" +msgstr "Piešta naudojant: Gija %1%" + +msgid "Move" +msgstr "Perkelti" + +msgid "Gizmo-Move" +msgstr "Gizmo-Judėjimas" + +msgid "Rotate" +msgstr "Pasukti" + +msgid "Gizmo-Rotate" +msgstr "Gizmo-Pasukimas" + +msgid "Optimize orientation" +msgstr "Optimizuoti orientaciją" + +msgid "Apply" +msgstr "Taikyti" + +msgid "Scale" +msgstr "Mastelis" + +msgid "Gizmo-Scale" +msgstr "Gizmo-Skalė" + +msgid "Error: Please close all toolbar menus first" +msgstr "Klaida: Prašome pirmiau uždaryti visus įrankių juostos meniu" + +msgid "in" +msgstr "" + +msgid "mm" +msgstr "mm" + +msgid "Position" +msgstr "Padėtis" + +#. TRN - Input label. Be short as possible +#. Angle between Y axis and text line direction. +#. TRN - Input label. Be short as possible +msgid "Rotation" +msgstr "Pasukimas" + +msgid "Scale ratios" +msgstr "Mastelis" + +msgid "Object Operations" +msgstr "Objekto veiksmai" + +msgid "Volume Operations" +msgstr "Tūrio veiksmai" + +msgid "Translate" +msgstr "Išversti" + +msgid "Group Operations" +msgstr "Grupės veiksmai" + +msgid "Set Position" +msgstr "Nustatyti padėtį" + +msgid "Set Orientation" +msgstr "Nustatyti orientaciją" + +msgid "Set Scale" +msgstr "Nustatyti mastelį" + +msgid "Reset Position" +msgstr "Atstatyti padėtį" + +msgid "Reset Rotation" +msgstr "Iš naujo nustatyti pasukimą" + +msgid "World coordinates" +msgstr "Pasaulio koordinatės" + +msgid "Object coordinates" +msgstr "Objekto koordinatės" + +msgid "°" +msgstr "°" + +#. TRN - Input label. Be short as possible +msgid "Size" +msgstr "Dydis" + +msgid "%" +msgstr "%" + +msgid "uniform scale" +msgstr "vienoda skalė" + +msgid "Planar" +msgstr "Planarinis" + +msgid "Dovetail" +msgstr "Šakinis sujungimas" + +msgid "Auto" +msgstr "Automatiškai" + +msgid "Manual" +msgstr "Rankiniu būdu" + +msgid "Plug" +msgstr "Kištukas" + +msgid "Dowel" +msgstr "Kaištis" + +msgid "Snap" +msgstr "Snapelis" + +msgid "Prism" +msgstr "Prizmė" + +msgid "Frustum" +msgstr "Nukirsta piramidė" + +msgid "Square" +msgstr "Kvadratas" + +msgid "Hexagon" +msgstr "Šešiakampis" + +msgid "Keep orientation" +msgstr "Išlaikyti padėtį" + +msgid "Place on cut" +msgstr "Padėti ant pjūvio" + +msgid "Flip upside down" +msgstr "Apversti aukštyn kojom" + +msgid "Connectors" +msgstr "Jungtys" + +msgid "Type" +msgstr "Tipas" + +msgid "Style" +msgstr "Stilius" + +msgid "Shape" +msgstr "Figūra" + +#. TRN - Input label. Be short as possible +#. Size in emboss direction +#. TRN - Input label. Be short as possible +msgid "Depth" +msgstr "Gyliai" + +msgid "Groove" +msgstr "Griovelis" + +msgid "Width" +msgstr "Plotis" + +msgid "Flap Angle" +msgstr "Atvertimo kampas" + +msgid "Groove Angle" +msgstr "Griovelio kampas" + +msgid "Part" +msgstr "Dalis" + +msgid "Object" +msgstr "Objektas" + +msgid "" +"Click to flip the cut plane\n" +"Drag to move the cut plane" +msgstr "" +"Paspauskite, norėdami apversti pjūvio plokštumą\n" +"Vilkite, norėdami perkelti pjūvio plokštumą" + +msgid "" +"Click to flip the cut plane\n" +"Drag to move the cut plane\n" +"Right-click a part to assign it to the other side" +msgstr "" +"Paspauskite, norėdami apversti pjūvio plokštumą\n" +"Vilkite, norėdami perkelti pjūvio plokštumą\n" +"Dešiniuoju pelės mygtuku spustelėkite dalį, kad ją priskirtumėte kitai pusei" + +msgid "Move cut plane" +msgstr "Perkelti pjūvio plokštumą" + +msgid "Mode" +msgstr "Režimas" + +msgid "Change cut mode" +msgstr "Keisti pjūvio režimą" + +msgid "Tolerance" +msgstr "Paklaidos" + +msgid "Drag" +msgstr "Vilkti" + +msgid "Draw cut line" +msgstr "Brėžti pjūvio liniją" + +msgid "Left click" +msgstr "Kairysis spustelėjimas" + +msgid "Add connector" +msgstr "Įtraukti jungtį" + +msgid "Right click" +msgstr "Spustelėti dešinįjį pelės mygtuką" + +msgid "Remove connector" +msgstr "Pašalinti jungtį" + +msgid "Move connector" +msgstr "Perkelti jungtį" + +msgid "Add connector to selection" +msgstr "Įtraukti jungtį į pasirinktą" + +msgid "Remove connector from selection" +msgstr "Pašalinti jungtį iš pasirinkto" + +msgid "Select all connectors" +msgstr "Pasirinkti visas jungtis" + +msgid "Cut" +msgstr "Pjauti" + +msgid "Rotate cut plane" +msgstr "Sukti pjovimo plokštumą" + +msgid "Remove connectors" +msgstr "Pašalinti jungtis" + +msgid "Bulge" +msgstr "Iškilimas" + +msgid "Bulge proportion related to radius" +msgstr "Iškilimo proporcija spindulio atžvilgiu" + +msgid "Space" +msgstr "Tarpas" + +msgid "Space proportion related to radius" +msgstr "Tarpo proporcija spindulio atžvilgiu" + +msgid "Confirm connectors" +msgstr "Patvirtinti jungtis" + +msgid "Cancel" +msgstr "Atšaukti" + +msgid "Build Volume" +msgstr "Spausdinimo tūris" + +msgid "Flip cut plane" +msgstr "Apversti pjovimo plokštumą" + +msgid "Groove change" +msgstr "Griovelio kaita" + +msgid "Reset" +msgstr "Nustatyti iš naujo" + +#. TRN: This is an entry in the Undo/Redo stack. The whole line will be 'Edited: (name of whatever was edited)'. +msgid "Edited" +msgstr "Taisyta" + +msgid "Cut position" +msgstr "Pjovimo vieta" + +msgid "Reset cutting plane" +msgstr "Atstatyti pjovimo plokštumą" + +msgid "Edit connectors" +msgstr "Taisyti jungtis" + +msgid "Add connectors" +msgstr "Įtraukti jungtis" + +msgid "Reset cut" +msgstr "Atstatyti pjovimą" + +msgid "Reset cutting plane and remove connectors" +msgstr "Atstatyti pjovimo plokštumą ir pašalinti jungtis" + +msgid "Upper part" +msgstr "Viršutinė dalis" + +msgid "Lower part" +msgstr "Apatinė dalis" + +msgid "Keep" +msgstr "Laikyti" + +msgid "Flip" +msgstr "Apversti" + +msgid "After cut" +msgstr "Po pjovimo" + +msgid "Cut to parts" +msgstr "Supjaustyti į dalis" + +msgid "Perform cut" +msgstr "Atlikti pjūvį" + +msgid "Warning" +msgstr "Įspėjimas" + +msgid "Invalid connectors detected" +msgstr "Nustatytos netinkamos jungtys" + +#, c-format, boost-format +msgid "%1$d connector is out of cut contour" +msgid_plural "%1$d connectors are out of cut contour" +msgstr[0] "%1$d jungtis išeina už pjovimo kontūro" +msgstr[1] "%1$d jungtys išeina už pjovimo kontūro" +msgstr[2] "%1$d jungčių išeina už pjovimo kontūro" + +#, c-format, boost-format +msgid "%1$d connector is out of object" +msgid_plural "%1$d connectors are out of object" +msgstr[0] "%1$d jungtis yra už objekto ribų" +msgstr[1] "%1$d jungtys yra už objekto ribų" +msgstr[2] "%1$d jungčių yra už objekto ribų" + +msgid "Some connectors are overlapped" +msgstr "Kai kurios jungtys persidengia" + +msgid "Select at least one object to keep after cutting." +msgstr "Pasirinkite bent vieną objektą, kurį norite išlaikyti po pjūvio." + +msgid "Cut plane is placed out of object" +msgstr "Pjovimo plokštuma nesiekia objekto" + +msgid "Cut plane with groove is invalid" +msgstr "Neteisinga pjovimo plokštuma su grioveliu" + +msgid "Connector" +msgstr "Jungtis" + +msgid "Cut by Plane" +msgstr "Iškirpti su plokštuma" + +msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" +msgstr "" +"netinkami kraštai atsirado dėl pjovimo įrankio. Ar norite sutvarkyti dabar?" + +msgid "Repairing model object" +msgstr "Taisomas modelio objektas" + +msgid "Cut by line" +msgstr "Pjovimas pagal liniją" + +msgid "Delete connector" +msgstr "Ištrinti jungtį" + +msgid "Mesh name" +msgstr "Figūros pavadinimas" + +msgid "Detail level" +msgstr "Detalių lygis" + +msgid "Decimate ratio" +msgstr "Dešimtainis santykis" + +#, boost-format +msgid "" +"Processing model '%1%' with more than 1M triangles could be slow. It is " +"highly recommended to simplify the model." +msgstr "" +"Modelio „%1%“ apdorojimas su daugiau nei 1 milijonu trikampių gali būti " +"lėtas. Labai rekomenduojama supaprastinti modelį." + +msgid "Simplify model" +msgstr "Supaprastinti modelį" + +msgid "Simplify" +msgstr "Supaprastinti" + +msgid "Simplification is currently only allowed when a single part is selected" +msgstr "" +"Šiuo metu supaprastinimas leidžiamas tik tada, kai pasirenkama viena dalis" + +msgid "Error" +msgstr "Klaida" + +msgid "Extra high" +msgstr "Papildomas aukštis" + +msgid "High" +msgstr "Aukštas" + +msgid "Medium" +msgstr "Vidutinis" + +msgid "Low" +msgstr "Žemas" + +msgid "Extra low" +msgstr "Itin žemas" + +#, c-format, boost-format +msgid "%d triangles" +msgstr "%d trikampiai" + +msgid "Show wireframe" +msgstr "Rodyti vielinį rėmą" + +#, boost-format +msgid "%1%" +msgstr "%1%" + +msgid "Can't apply when processing preview." +msgstr "Negalima taikyti, kai atliekama proceso peržiūra." + +msgid "Operation already cancelling. Please wait a few seconds." +msgstr "Operacija jau atšaukiama. Palaukite kelias sekundes." + +msgid "Face recognition" +msgstr "Paviršių atpažinimas" + +msgid "Perform Recognition" +msgstr "Atlikti atpažinimą" + +msgid "Brush size" +msgstr "Teptuko dydis" + +msgid "Brush shape" +msgstr "Teptuko forma" + +msgid "Enforce seam" +msgstr "Priverstinė siūlė" + +msgid "Block seam" +msgstr "Blokuoti siūlę" + +msgid "Seam painting" +msgstr "Siūlių piešimas" + +msgid "Remove selection" +msgstr "Pašalinti pasirinkimą" + +msgid "Entering Seam painting" +msgstr "Įjungiamas siūlių piešimas" + +msgid "Leaving Seam painting" +msgstr "Išjungiamas siūlių piešimas" + +msgid "Paint-on seam editing" +msgstr "Taisomos pieštos siūlės" + +#. TRN - Input label. Be short as possible +#. Select look of letter shape +msgid "Font" +msgstr "Šriftas" + +msgid "Thickness" +msgstr "Storis" + +msgid "Text Gap" +msgstr "Teksto plyšiai" + +msgid "Angle" +msgstr "Kampas" + +msgid "" +"Embedded\n" +"depth" +msgstr "" +"Įspaudimo\n" +"gylis" + +msgid "Input text" +msgstr "Įveskite tekstą" + +msgid "Surface" +msgstr "Paviršius" + +msgid "Horizontal text" +msgstr "Horizontalus tekstas" + +msgid "Shift + Mouse move up or down" +msgstr "Shift + pelės judėjimas aukštyn arba žemyn" + +msgid "Rotate text" +msgstr "Sukti tekstą" + +msgid "Text shape" +msgstr "Formuoti tekstą" + +#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe +msgid "Text rotate" +msgstr "Sukti tekstą" + +#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface +msgid "Text move" +msgstr "Perkelti tekstą" + +msgid "Set Mirror" +msgstr "Nustatyti veidrodį" + +msgid "Embossed text" +msgstr "Iškilus tekstas" + +msgid "Enter emboss gizmo" +msgstr "Įjungti iškilimo įrankį" + +msgid "Leave emboss gizmo" +msgstr "Palikti reljefinio rašto įrankį" + +msgid "Embossing actions" +msgstr "Reljefiniai veiksmai" + +msgid "Emboss" +msgstr "Iškelti" + +msgid "NORMAL" +msgstr "ĮPRASTAS" + +msgid "SMALL" +msgstr "MAŽAS" + +msgid "ITALIC" +msgstr "KURSYVAS" + +msgid "SWISS" +msgstr "KLASIKINIS" + +msgid "MODERN" +msgstr "MODERNUS" + +msgid "First font" +msgstr "Pirmas šriftas" + +msgid "Default font" +msgstr "Numatytasis šriftas" + +msgid "Advanced" +msgstr "Plačiau" + +msgid "" +"The text cannot be written using the selected font. Please try choosing a " +"different font." +msgstr "Pasirinktu šriftu negalima rašyti teksto. Pasirinkite kitą šriftą." + +msgid "Embossed text cannot contain only white spaces." +msgstr "Reljefinis tekstas negali būti sudarytas vien iš tarpų." + +msgid "Text contains character glyph (represented by '?') unknown by font." +msgstr "Texte yra simbolių (žymimi '?' ), kurių šriftas neatpažįsta." + +msgid "Text input doesn't show font skew." +msgstr "Teksto įvestis nerodo šrifto pasvirimo." + +msgid "Text input doesn't show font boldness." +msgstr "Teksto įvestis nerodo šrifto paryškinimo." + +msgid "Text input doesn't show gap between lines." +msgstr "Teksto įvestis nerodo tarpelio tarp eilučių." + +msgid "Too tall, diminished font height inside text input." +msgstr "Per aukštas, - sumažintas šrifto aukštis teksto įvedimo laukelyje." + +msgid "Too small, enlarged font height inside text input." +msgstr "Per mažas, - padidintas šrifto aukštis teksto įvedimo laukelyje." + +msgid "Text doesn't show current horizontal alignment." +msgstr "Tekstas nerodo dabartinio horizontalaus išlyginimo." + +msgid "Revert font changes." +msgstr "Grąžinti šriftą į pradinę būseną." + +#, boost-format +msgid "Font \"%1%\" can't be selected." +msgstr "Nepavyksta pasirinkti \"%1%\" šrifto ." + +msgid "Operation" +msgstr "Operacija" + +msgid "Join" +msgstr "Sulieti" + +msgid "Click to change text into object part." +msgstr "Spustelėkite, kad tekstas taptų objekto dalimi." + +msgid "You can't change a type of the last solid part of the object." +msgstr "Negalite pakeisti paskutinės vientisos objekto dalies tipo." + +msgctxt "EmbossOperation" +msgid "Cut" +msgstr "Pjauti" + +msgid "Click to change part type into negative volume." +msgstr "Spustelėkite, kad dalies tipą pakeistumėte į neigiamą tūrį (ertmę)." + +msgid "Modifier" +msgstr "Modifikatorius" + +msgid "Click to change part type into modifier." +msgstr "Spustelėkite, kad dalies tipą pakeistumėte į modifikatorių." + +msgid "Change Text Type" +msgstr "Pakeisti teksto tipą" + +#, boost-format +msgid "Rename style (%1%) for embossing text" +msgstr "Pervadinkite (%1%) stilių reljefiniam tekstui" + +msgid "Name can't be empty." +msgstr "Pavadinimas negali būti tuščias." + +msgid "Name has to be unique." +msgstr "Pavadinimas privalo būti unikalus." + +msgid "OK" +msgstr "Gerai" + +msgid "Rename style" +msgstr "Pervardinti stilių" + +msgid "Rename current style." +msgstr "Pervardinti dabartinį stilių." + +msgid "Can't rename temporary style." +msgstr "Negalima pervardinti laikino stiliaus." + +msgid "First Add style to list." +msgstr "Pirmiausia įtraukite stilių į sąrašą." + +#, boost-format +msgid "Save %1% style" +msgstr "Išsaugoti %1% stilių" + +msgid "No changes to save." +msgstr "Nėra jokių pakeitimų." + +msgid "New name of style" +msgstr "Naujas stiliaus pavadinimas" + +msgid "Save as new style" +msgstr "Išsaugoti kaip naują stilių" + +msgid "Only valid font can be added to style." +msgstr "Į stilių gali būti įtrauktas tik tinkamas šriftas." + +msgid "Add style to my list." +msgstr "Įtraukti stilių į mano sąrašą." + +msgid "Save as new style." +msgstr "Išsaugoti kaip naują stilių." + +msgid "Remove style" +msgstr "Pašalinti stilių" + +msgid "Can't remove the last existing style." +msgstr "Negalima pašalinti paskutinio stiliaus." + +#, boost-format +msgid "Are you sure you want to permanently remove the \"%1%\" style?" +msgstr "Ar tikrai norite visiškai pašalinti \"%1%\" stilių?" + +#, boost-format +msgid "Delete \"%1%\" style." +msgstr "Ištrinti \"%1%\" stilių." + +#, boost-format +msgid "Can't delete \"%1%\". It is last style." +msgstr "Negalima ištrinti \"%1%\" stiliaus, nes jis yra paskutinis." + +#, boost-format +msgid "Can't delete temporary style \"%1%\"." +msgstr "Negalima pašalinti laikino \"%1%\" stiliaus." + +#, boost-format +msgid "Modified style \"%1%\"" +msgstr "Pakeistas \"%1%\" stilius" + +#, boost-format +msgid "Current style is \"%1%\"" +msgstr "Dabartinis stilius yra \"%1%\"" + +#, boost-format +msgid "" +"Changing style to \"%1%\" will discard current style modification.\n" +"\n" +"Would you like to continue anyway?" +msgstr "" +"Stilius bus pakeistas į \"%1%“. Dėl to bus panaikinti visi dabartinio " +"stiliaus pakeitimai.\n" +"\n" +"Ar vis tiek norite tęsti?" + +msgid "Not valid style." +msgstr "Netinkamas stilius." + +#, boost-format +msgid "Style \"%1%\" can't be used and will be removed from a list." +msgstr "" +"\"%1%\" stilius negali būti naudojimas, todėl bus pašalintas iš sąrašo." + +msgid "Unset italic" +msgstr "Išjungti kursyvą" + +msgid "Set italic" +msgstr "Įjungti kursyvą" + +msgid "Unset bold" +msgstr "Išjungti paryškinimą" + +msgid "Set bold" +msgstr "Įjungti paryškinimą" + +msgid "Revert text size." +msgstr "Atstatyti teksto dydį." + +msgid "Revert embossed depth." +msgstr "Atstatyti reljefo gylį." + +msgid "" +"Advanced options cannot be changed for the selected font.\n" +"Select another font." +msgstr "" +"Pasirinktam šriftui negalima keisti išplėstinių parinkčių.\n" +"Pasirinkite kitą šriftą." + +msgid "Revert using of model surface." +msgstr "Atstatyti modelio paviršiaus naudojimą." + +msgid "Revert Transformation per glyph." +msgstr "Atstatyti simbolio pakeitimus." + +msgid "Set global orientation for whole text." +msgstr "Nustatyti viso teksto bendrą orientaciją." + +msgid "Set position and orientation per glyph." +msgstr "Nustatyti kiekvieno simbolio atskirą poziciją ir orientaciją." + +msgctxt "Alignment" +msgid "Left" +msgstr "Kairė" + +msgctxt "Alignment" +msgid "Center" +msgstr "Centras" + +msgctxt "Alignment" +msgid "Right" +msgstr "Dešinė" + +msgctxt "Alignment" +msgid "Top" +msgstr "Viršutinis" + +msgctxt "Alignment" +msgid "Middle" +msgstr "Vidurys" + +msgctxt "Alignment" +msgid "Bottom" +msgstr "Apatinis" + +msgid "Revert alignment." +msgstr "Atstatyti lygiavimą." + +#. TRN EmbossGizmo: font units +msgid "points" +msgstr "taškai" + +msgid "Revert gap between characters" +msgstr "Atstatyti tarpus tarp raidžių" + +msgid "Distance between characters" +msgstr "Atstumas tarp simbolių" + +msgid "Revert gap between lines" +msgstr "Atstatyti tarpus tarp eilučių" + +msgid "Distance between lines" +msgstr "Atstumas tarp eilučių" + +msgid "Undo boldness" +msgstr "Panaikinti paryškinimą" + +msgid "Tiny / Wide glyphs" +msgstr "Siauri / platūs simboliai" + +msgid "Undo letter's skew" +msgstr "Panaikinti raidės pasvirimą" + +msgid "Italic strength ratio" +msgstr "Kursyvo pasvirimo kampas" + +msgid "Undo translation" +msgstr "Panaikinti vertimą" + +msgid "Distance of the center of the text to the model surface." +msgstr "Atstumas nuo teksto centro iki modelio paviršiaus." + +msgid "Undo rotation" +msgstr "Panaikinti pasukimą" + +msgid "Rotate text Clock-wise." +msgstr "Sukti tekstą pagal laikrodžio rodyklę." + +msgid "Unlock the text's rotation when moving text along the object's surface." +msgstr "Leisti tekstui laisvai suktis jį stumdant objekto paviršiumi." + +msgid "Lock the text's rotation when moving text along the object's surface." +msgstr "Neleisti tekstui laisvai suktis jį stumdant objekto paviršiumi." + +msgid "Select from True Type Collection." +msgstr "Pasirinkti iš TrueType rinkinio." + +msgid "Set text to face camera" +msgstr "Pasukti tekstą taip, kad jis žiūrėtų į kamerą" + +msgid "Orient the text towards the camera." +msgstr "Pasukti tekstą į kameros pusę." + +#, boost-format +msgid "Font \"%1%\" can't be used. Please select another." +msgstr "Šrifto „%1%“ negalima naudoti. Pasirinkite kitą." + +#, boost-format +msgid "" +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." +msgstr "" +"Negalima įkelti lygiai tokio paties šrifto (\"%1%\"). Programa pasirinko " +"panašų šriftą(\"%2%\"). Turite nurodyti šriftą, kad būtų galima redaguoti " +"tekstą." + +msgid "No symbol" +msgstr "Nėra simbolio" + +msgid "Loading" +msgstr "Įkeliama" + +msgid "In queue" +msgstr "Eilėje" + +#. TRN - Input label. Be short as possible +#. Height of one text line - Font Ascent +msgid "Height" +msgstr "Aukštis" + +#. TRN - Input label. Be short as possible +#. Copy surface of model on surface of the embossed text +#. TRN - Input label. Be short as possible +msgid "Use surface" +msgstr "Naudoti paviršių" + +#. TRN - Input label. Be short as possible +#. Option to change projection on curved surface +#. for each character(glyph) in text separately +msgid "Per glyph" +msgstr "Kiekvienam simboliui" + +#. TRN - Input label. Be short as possible +#. Align Top|Middle|Bottom and Left|Center|Right +msgid "Alignment" +msgstr "Lygiavimas" + +#. TRN - Input label. Be short as possible +msgid "Char gap" +msgstr "Tarpas tarp simbolių" + +#. TRN - Input label. Be short as possible +msgid "Line gap" +msgstr "Tarpas tarp eilučių" + +#. TRN - Input label. Be short as possible +msgid "Boldness" +msgstr "Pastorintas" + +#. TRN - Input label. Be short as possible +#. Like Font italic +msgid "Skew ratio" +msgstr "Pasvirimas" + +#. TRN - Input label. Be short as possible +#. Distance from model surface to be able +#. move text as part fully into not flat surface +#. move text as modifier fully out of not flat surface +#. TRN - Input label. Be short as possible +msgid "From surface" +msgstr "Nuo paviršiaus" + +#. TRN - Input label. Be short as possible +#. Keep vector from bottom to top of text aligned with printer Y axis +msgid "Keep up" +msgstr "Laikyti viršun" + +#. TRN - Input label. Be short as possible. +#. Some Font file contain multiple fonts inside and +#. this is numerical selector of font inside font collections +msgid "Collection" +msgstr "Rinkinys" + +#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe +msgid "SVG rotate" +msgstr "SVG sukimas" + +#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface +msgid "SVG move" +msgstr "SVG perkėlimas" + +msgid "Enter SVG gizmo" +msgstr "Pasirinkti SVG įrankį" + +msgid "Leave SVG gizmo" +msgstr "Išeiti iš SVG įrankio" + +msgid "SVG actions" +msgstr "SVG veiksmai" + +msgid "SVG" +msgstr "SVG" + +#, boost-format +msgid "Opacity (%1%)" +msgstr "Permatomumas (%1%)" + +#, boost-format +msgid "Color gradient (%1%)" +msgstr "Spalvos gradientas (%1%)" + +msgid "Undefined fill type" +msgstr "Nenustatytas užpildymo tipas" + +msgid "Linear gradient" +msgstr "Linijinis gradientas" + +msgid "Radial gradient" +msgstr "Centrinis gradientas" + +msgid "Open filled path" +msgstr "Atidaryti uždarą kontūrą" + +msgid "Undefined stroke type" +msgstr "Nenustatytas brūkšnio stilius" + +msgid "Path can't be healed from self-intersection and multiple points." +msgstr "" +"Kelias negali būti sutvarkytas dėl savaiminio susikirtimo ir kelių taškų." + +msgid "" +"Final shape contains self-intersection or multiple points with same " +"coordinate." +msgstr "" +"Galutinėje formoje yra savaiminė sankirta arba keli taškai su tomis pačiomis " +"koordinatėmis." + +#, boost-format +msgid "Shape is marked as invisible (%1%)." +msgstr "Figūra pažymėta kaip nematoma (%1%)." + +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. +#, boost-format +msgid "Fill of shape (%1%) contains unsupported: %2%." +msgstr "Figūros %1% užpildas turi nepalaikomą %2%." + +#, boost-format +msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)." +msgstr "Figūros (%1%) brūkšnys per plonas (minimalus plotis - %2% mm)." + +#, boost-format +msgid "Stroke of shape (%1%) contains unsupported: %2%." +msgstr "Figūros (%1%) brūkšnys turi nepalaikomą %2%." + +msgid "Face the camera" +msgstr "Pasukti į kamerą" + +#. TRN - Preview of filename after clear local filepath. +msgid "Unknown filename" +msgstr "Nežinomas failo pavadinimas" + +#, boost-format +msgid "SVG file path is \"%1%\"" +msgstr "SVG failo kelias yra \"%1%\"" + +msgid "Reload SVG file from disk." +msgstr "Pakartotinai įkelti SVG failą iš disko." + +msgid "Change file" +msgstr "Pakeisti failą" + +msgid "Change to another .svg file" +msgstr "Pakeisti į kitą .svg failą" + +msgid "Forget the file path" +msgstr "Pamiršti failo kelią" + +msgid "" +"Do NOT save local path to 3MF file.\n" +"Also disables 'reload from disk' option." +msgstr "" +"NEsaugoti vietinio failo kelio į 3MF failą.\n" +"Taip pat išjungiama parinktis „pakartotinai įkelti iš disko“." + +#. TRN: An menu option to convert the SVG into an unmodifiable model part. +msgid "Bake" +msgstr "Perkelti detales" + +#. TRN: Tooltip for the menu item. +msgid "Bake into model as uneditable part" +msgstr "Perkelti į modelį kaip netaisomas dalis" + +msgid "Save as" +msgstr "Išsaugoti kaip" + +msgid "Save SVG file" +msgstr "Išsaugoti SVG failą" + +msgid "Save as '.svg' file" +msgstr "Išsaugoti kaip \".svg\" failą" + +msgid "Size in emboss direction." +msgstr "Išspaudimo aukštis." + +#. TRN: The placeholder contains a number. +#, boost-format +msgid "Scale also changes amount of curve samples (%1%)" +msgstr "Mastelis taip pat keičia kreivės taškų skaičių (%1%)" + +msgid "Width of SVG." +msgstr "SVG plotis." + +msgid "Height of SVG." +msgstr "SVG aukštis." + +msgid "Lock/unlock the aspect ratio of the SVG." +msgstr "Įjungti / Išjungti SVG proporcijų laikymąsi." + +msgid "Reset scale" +msgstr "Iš naujo nustatyti skalę" + +msgid "Distance of the center of the SVG to the model surface." +msgstr "Atstumas nuo SVG centro iki modelio paviršiaus." + +msgid "Reset distance" +msgstr "Atstatyti atstumą į numatytąjį" + +msgid "Reset rotation" +msgstr "Iš naujo nustatyti sukimąsi" + +msgid "Lock/unlock rotation angle when dragging above the surface." +msgstr "Įjungti / išjungti sukimosi kampą tempiant paviršiumi." + +msgid "Mirror vertically" +msgstr "Atspindėti vertikaliai" + +msgid "Mirror horizontally" +msgstr "Atspindėti horizontaliai" + +#. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). +msgid "Change SVG Type" +msgstr "Keisti SVG tipą" + +#. TRN - Input label. Be short as possible +msgid "Mirror" +msgstr "Atspindys" + +msgid "Choose SVG file for emboss:" +msgstr "Pasirinkti SVG failą išspaudimui:" + +#, boost-format +msgid "File does NOT exist (%1%)." +msgstr "Failas neegzistuoja (%1%)." + +#, boost-format +msgid "Filename has to end with \".svg\" but you selected %1%" +msgstr "Failo pavadinimas turi turėti plėtinį \".svg\", o jūs pasirinkote %1%" + +#, boost-format +msgid "Nano SVG parser can't load from file (%1%)." +msgstr "„NanoSVG“ analizatorius negali įkelti failo (%1%)." + +#, boost-format +msgid "SVG file does NOT contain a single path to be embossed (%1%)." +msgstr "SVG failas NETURI nė vieno kontūro, tinkamo išspaudimui (%1%)." + +msgid "No feature" +msgstr "Nėra funkcijos" + +msgid "Vertex" +msgstr "Viršūnė" + +msgid "Edge" +msgstr "Briauna" + +msgid "Plane" +msgstr "Plokštuma" + +msgid "Point on edge" +msgstr "Taškas ant briaunos" + +msgid "Point on circle" +msgstr "Taškas ant apskritimo" + +msgid "Point on plane" +msgstr "Taškas ant plokštumos" + +msgid "Center of edge" +msgstr "Briaunos centras" + +msgid "Center of circle" +msgstr "Apskritimo centras" + +msgid "Select feature" +msgstr "Pasirinkti elementą" + +msgid "Select point" +msgstr "Pasirinkti tašką" + +msgid "Delete" +msgstr "Ištrinti" + +msgid "Restart selection" +msgstr "Pasirinkti iš naujo" + +msgid "Esc" +msgstr "Esc" + +msgid "Cancel a feature until exit" +msgstr "Atšaukti funkciją, kol išeisite" + +msgid "Measure" +msgstr "Matuoti" + +msgid "" +"Please confirm explosion ratio = 1, and please select at least one object." +msgstr "" +"Patvirtinkite išplėtimo koeficientą = 1 ir pasirinkite bent vieną objektą" + +msgid "Please select at least one object." +msgstr "Pasirinkite bent vieną objektą." + +msgid "Edit to scale" +msgstr "Taisyti masteliui" + +msgctxt "Verb" +msgid "Scale all" +msgstr "Bendras mastelis" + +msgid "None" +msgstr "Nieko" + +msgid "Diameter" +msgstr "Skersmuo" + +msgid "Length" +msgstr "Ilgis" + +msgid "Selection" +msgstr "Pasirinkimas" + +msgid " (Moving)" +msgstr " (Perkėlimas)" + +msgid "" +"Select 2 faces on objects and \n" +" make objects assemble together." +msgstr "" +"Pasirinkite 2 objektų paviršius ir \n" +" leiskite objektams susijungti." + +msgid "" +"Select 2 points or circles on objects and \n" +" specify distance between them." +msgstr "" +"Pasirinkite 2 taškus arba apskritimus ant \n" +"objektų ir nurodykite atstumą tarp jų." + +msgid "Face" +msgstr "Paviršius" + +msgid " (Fixed)" +msgstr " (Pataisyta)" + +msgid "Point" +msgstr "Taškas" + +msgid "" +"Feature 1 has been reset, \n" +"feature 2 has been feature 1" +msgstr "" +"1 funkcija buvo iš naujo nustatyta, \n" +"2 funkcija buvo 1 funkcija" + +msgid "Warning: please select Plane's feature." +msgstr "Įspėjimas: pasirinkite Plokštumos funkciją." + +msgid "Warning: please select Point's or Circle's feature." +msgstr "Įspėjimas: pasirinkite Taško arba Apskritimo funkciją." + +msgid "Warning: please select two different mesh." +msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." + +msgid "Copy to clipboard" +msgstr "Nukopijuoti į iškarpinę" + +msgid "Perpendicular distance" +msgstr "Statmenas atstumas" + +msgid "Distance" +msgstr "Atstumas" + +msgid "Direct distance" +msgstr "Tiesioginis atstumas" + +msgid "Distance XYZ" +msgstr "Atstumas XYZ" + +msgid "Parallel" +msgstr "Lygiagrečiai" + +msgid "Center coincidence" +msgstr "Centro sutapimas" + +msgid "Feature 1" +msgstr "Funkcija 1" + +msgid "Reverse rotation" +msgstr "Apsukti sukimąsi" + +msgid "Rotate around center:" +msgstr "Pasukti aplink centrą:" + +msgid "Parallel distance:" +msgstr "Lygiagretus atstumas:" + +msgid "Flip by Face 2" +msgstr "Apversti pagal paviršių 2" + +msgid "Ctrl+" +msgstr "Ctrl+" + +msgid "Notice" +msgstr "Įspėjimas" + +msgid "Undefined" +msgstr "Neapibrėžtas" + +#, boost-format +msgid "%1% was replaced with %2%" +msgstr "%1% buvo pakeistas į %2%" + +msgid "The configuration may be generated by a newer version of OrcaSlicer." +msgstr "Konfigūracija gali būti sukurta naujesnėje OrcaSlicer versijoje." + +msgid "Some values have been replaced. Please check them:" +msgstr "Kai kurios vertės buvo pakeistos. Prašome jas patikrinti:" + +msgid "Process" +msgstr "Vykdyti" + +msgid "Filament" +msgstr "Gija" + +msgid "Machine" +msgstr "Įrenginys" + +msgid "Configuration package was loaded, but some values were not recognized." +msgstr "" +"Konfigūracijos paketas buvo įkeltas, tačiau kai kurios reikšmės nebuvo " +"atpažintos." + +#, boost-format +msgid "" +"Configuration file \"%1%\" was loaded, but some values were not recognized." +msgstr "" +"Konfigūracijos failas „%1%“ buvo įkeltas, tačiau kai kurios reikšmės nebuvo " +"atpažintos." + +msgid "" +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " +"It will be appreciated if you report the issue to our team." +msgstr "" +"OrcaSlicer nenumatytai užsidarys, nes pritrūko atminties. Tai gali būti " +"programinės įrangos klaida. Jei galite, praneškite apie šią problemą mūsų " +"komandai." + +msgid "Fatal error" +msgstr "Lemtinga klaida" + +msgid "" +"OrcaSlicer will terminate because of a localization error. It will be " +"appreciated if you report the specific scenario this issue happened." +msgstr "" +"OrcaSlicer užsidarys dėl vertimo klaidos. Būtume dėkingi, jei praneštumėte " +"apie konkrečią situaciją, kai kilo ši problema." + +msgid "Critical error" +msgstr "Kritinė klaida" + +#, boost-format +msgid "OrcaSlicer got an unhandled exception: %1%" +msgstr "OrcaSlicer susidūrė su neapdorota klaida: %1%" + +msgid "Untitled" +msgstr "Be pavadinimo" + +msgid "Downloading Bambu Network Plug-in" +msgstr "Siunčiamas Bambu tinklo papildinys" + +msgid "Login information expired. Please login again." +msgstr "Prisijungimo seansas pasibaigė. Prašome prisijungti iš naujo." + +msgid "Incorrect password" +msgstr "Neteisingas slaptažodis" + +#, c-format, boost-format +msgid "Connect %s failed! [SN:%s, code=%s]" +msgstr "Nepavyko %s prisijungimas! [SN:%s, kodas=%s]" + +msgid "" +"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain " +"features.\n" +"Click Yes to install it now." +msgstr "" +"Norint naudoti kai kurias „OrcaSlicer“ funkcijas, reikalinga „Microsoft " +"WebView2 Runtime“.\n" +"Spustelėkite „Taip“, kad ją įdiegtumėte dabar." + +msgid "WebView2 Runtime" +msgstr "\"WebView2\" paleidimo terpė" + +#, c-format, boost-format +msgid "" +"%s\n" +"Do you want to continue?" +msgstr "" +"%s\n" +"Ar norite tęsti?" + +msgid "Remember my choice" +msgstr "Prisiminti mano pasirinkimą" + +msgid "Loading configuration" +msgstr "Įkeliama konfigūracija" + +#, c-format, boost-format +msgid "Click to download new version in default browser: %s" +msgstr "" +"Spustelėkite, kad atsisiųstumėte naują versiją numatytoje naršyklėje: %s" + +msgid "The Orca Slicer needs an upgrade" +msgstr "OrcaSlicer reikia atnaujinti" + +msgid "This is the newest version." +msgstr "Čia yra naujausia versija." + +msgid "Info" +msgstr "Info" + +msgid "" +"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n" +"OrcaSlicer has attempted to recreate the configuration file.\n" +"Please note, application settings will be lost, but printer profiles will " +"not be affected." +msgstr "" +"OrcaSlicer konfigūracijos failas gali būti sugadintas ir jo negalima " +"apdoroti.\n" +"OrcaSlicer bandė iš naujo sukurti konfigūracijos failą.\n" +"Atkreipkite dėmesį, kad programos nustatymai bus prarasti, tačiau " +"spausdintuvo profiliai neturėtų būti paveikti." + +msgid "Rebuild" +msgstr "Perkurti" + +msgid "Loading current presets" +msgstr "Įkeliami dabartiniai nustatymai" + +msgid "Loading a mode view" +msgstr "Įkeliamas režimo rodinys" + +msgid "Choose one file (3mf):" +msgstr "Pasirinkite vieną failą (3mf):" + +msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" +msgstr "" +"Pasirinkite vieną ar kelis failus (3mf/step/stl/svg/obj/amf/usd*/abc/ply):" + +msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" +msgstr "Pasirinkite vieną ar kelis failus (3mf/step/stl/svg/obj/amf):" + +msgid "Choose ZIP file" +msgstr "Pasirinkite ZIP failą" + +msgid "Choose one file (gcode/3mf):" +msgstr "Pasirinkite vieną failą (gcode/3mf):" + +msgid "Some presets are modified." +msgstr "Kai kurie nustatymai pakeisti." + +msgid "" +"You can keep the modified presets to the new project, discard or save " +"changes as new presets." +msgstr "" +"Pakeistus išankstinius nustatymus galite išsaugoti naujame projekte, išmesti " +"arba išsaugoti pakeitimus kaip naujus išankstinius nustatymus." + +msgid "User logged out" +msgstr "Naudotojas atsijungė" + +msgid "new or open project file is not allowed during the slicing process!" +msgstr "" +"negalima kurti ar atidaryti naujo projekto failo, kai vyksta sluoksniavimo " +"procesas!" + +msgid "Open Project" +msgstr "Atidaryti projektą" + +msgid "" +"The version of Orca Slicer is too low and needs to be updated to the latest " +"version before it can be used normally." +msgstr "" +"OrcaSlicer versija yra pasenusi. Norint naudotis, reikia ją atnaujinti į " +"naujausią versiją" + +msgid "Privacy Policy Update" +msgstr "Privatumo politikos atnaujinimas" + +msgid "" +"The number of user presets cached in the cloud has exceeded the upper limit, " +"newly created user presets can only be used locally." +msgstr "" +"Pasiektas debesyje saugomų naudotojo nustatymų limitas. Naujai sukurti " +"naudotojo nustatymai bus prieinami tik šiame įrenginyje." + +msgid "Sync user presets" +msgstr "Sinchronizuoti naudotojo nustatymus" + +msgid "Loading user preset" +msgstr "Įkeliami naudotojo nustatymai" + +msgid "Switching application language" +msgstr "Perjungiama programoskalba" + +msgid "Select the language" +msgstr "Pasirinkite kalbą" + +msgid "Language" +msgstr "Kalba" + +msgid "*" +msgstr "*" + +msgid "The uploads are still ongoing" +msgstr "Įkėlimai vis dar vyksta" + +msgid "Stop them and continue anyway?" +msgstr "Sustabdyti juos ir vis tiek tęsti?" + +msgid "Ongoing uploads" +msgstr "Vykdomi įkėlimai" + +msgid "Select a G-code file:" +msgstr "Pasirinkite G-kodo failą:" + +msgid "" +"Could not start URL download. Destination folder is not set. Please choose " +"destination folder in Configuration Wizard." +msgstr "" +"Nepavyko pradėti atsisiuntimo iš interneto adreso. Nėra nurodytas paskirties " +"aplankas. Pasirinkite paskirties aplanką konfigūracijos vedlyje." + +msgid "Import File" +msgstr "Importuoti failą" + +msgid "Choose files" +msgstr "Pasirinkite failus" + +msgid "New Folder" +msgstr "Naujas katalogas" + +msgid "Open" +msgstr "Atverti" + +msgid "Rename" +msgstr "Pervardyti" + +msgid "Orca Slicer GUI initialization failed" +msgstr "OrcaSlicer grafinės vartotojo sąsajos inicijavimas nepavyko" + +#, boost-format +msgid "Fatal error, exception caught: %1%" +msgstr "Fatališka klaida, užfiksuota išimtis: %1%" + +msgid "Quality" +msgstr "Kokybė" + +msgid "Shell" +msgstr "Apvalkalas" + +msgid "Infill" +msgstr "Užpildymas" + +msgid "Support" +msgstr "Atramos" + +msgid "Flush options" +msgstr "Gijos išleidimo nustatymai" + +msgid "Speed" +msgstr "Greitis" + +msgid "Strength" +msgstr "Stiprumas" + +msgid "Top Solid Layers" +msgstr "Viršutiniai ištisiniai sluoksniai" + +msgid "Top Minimum Shell Thickness" +msgstr "Mažiausias viršutinio apvalkalo storis" + +msgid "Bottom Solid Layers" +msgstr "Apatiniai ištisiniai sluoksniai" + +msgid "Bottom Minimum Shell Thickness" +msgstr "Mažiausias apatinio apvalkalo storis" + +msgid "Ironing" +msgstr "Lyginimas" + +msgid "Fuzzy Skin" +msgstr "Grublėtas paviršius" + +msgid "Extruders" +msgstr "Ekstruderiai" + +msgid "Extrusion Width" +msgstr "Išspaudimo plotis" + +msgid "Wipe options" +msgstr "Valymo parinktys" + +msgid "Bed adhesion" +msgstr "Sukibimas su pagrindu" + +msgid "Add part" +msgstr "Pridėti dalį" + +msgid "Add negative part" +msgstr "Pridėti neigiamą elementą" + +msgid "Add modifier" +msgstr "Pridėti modifikatorių" + +msgid "Add support blocker" +msgstr "Pridėti atramų blokatorių" + +msgid "Add support enforcer" +msgstr "Pridėti priverstines atramas" + +msgid "Add text" +msgstr "Pridėti tekstą" + +msgid "Add negative text" +msgstr "Pridėti neigiamą tekstą" + +msgid "Add text modifier" +msgstr "Pridėti teksto modifikatorių" + +msgid "Add SVG part" +msgstr "Pridėti SVG dalį" + +msgid "Add negative SVG" +msgstr "Pridėti neigiamą SVG" + +msgid "Add SVG modifier" +msgstr "Pridėti SVG modifikatorių" + +msgid "Select settings" +msgstr "Pasirinkti nustatymus" + +msgid "Hide" +msgstr "Paslėpti" + +msgid "Show" +msgstr "Rodyti" + +msgid "Del" +msgstr "Del" + +msgid "Delete the selected object" +msgstr "Ištrinti pasirinktą objektą" + +msgid "Load..." +msgstr "Įkelti..." + +msgid "Cube" +msgstr "Kubas" + +msgid "Cylinder" +msgstr "Cilindras" + +msgid "Cone" +msgstr "Konusas" + +msgid "Disc" +msgstr "Diskas" + +msgid "Torus" +msgstr "Toras" + +msgid "Orca Cube" +msgstr "Orca kubas" + +msgid "3DBenchy" +msgstr "3DBenchy" + +msgid "Autodesk FDM Test" +msgstr "Autodesk FDM testas" + +msgid "Voron Cube" +msgstr "Vorono kubas" + +msgid "Stanford Bunny" +msgstr "Stanfordo triušis" + +msgid "Orca String Hell" +msgstr "Orca stygų testas" + +msgid "" +"This model features text embossment on the top surface. For optimal results, " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " +"for the 'Only One Wall on Top Surfaces' to work best.\n" +"Yes - Change these settings automatically\n" +"No - Do not change these settings for me" +msgstr "" +"Šiame modelyje viršutinio paviršiaus tekstas yra išgaubtas. Norint pasiekti " +"optimalų rezultatą, rekomenduojama nustatyti „Vienos sienelės slenkstį " +"(minimalus viršutinio paviršiaus plotis)“ į 0, kad funkcija „Tik viena " +"sienelė viršutiniuose paviršiuose“ veiktų geriausiai.\n" +"\n" +"Taip - Pakeisti šiuos nustatymus automatiškai\n" +"Ne - Nekeisti šių nustatymų" + +msgid "Text" +msgstr "Teskstas" + +msgid "Height range Modifier" +msgstr "Aukščio diapazono modifikatorius" + +msgid "Add settings" +msgstr "Pridėti nustatymus" + +msgid "Change type" +msgstr "Keisti tipą" + +msgid "Set as an individual object" +msgstr "Nustatyti kaip atskirą objektą" + +msgid "Set as individual objects" +msgstr "Nustatyti kaip atskirus objektus" + +msgid "Fill bed with copies" +msgstr "Užpildyti pagrindą kopijomis" + +msgid "Fill the remaining area of bed with copies of the selected object" +msgstr "Užpildyti likusią pagrindo vietą pasirinkto objekto kopijomis" + +msgid "Printable" +msgstr "Galima spausdinti" + +msgid "Fix model" +msgstr "Sutaisyti objektą" + +msgid "Export as one STL" +msgstr "Eksportuoti kaip vieną STL" + +msgid "Export as STLs" +msgstr "Eksportuoti kaip kelis STL" + +msgid "Reload from disk" +msgstr "Iš naujo įkelti iš disko" + +msgid "Reload the selected parts from disk" +msgstr "Iš naujo įkelti pasirinktas dalis iš disko" + +msgid "Replace with STL" +msgstr "Pakeisti STL" + +msgid "Replace the selected part with new STL" +msgstr "Pakeisti pasirinktą dalį į naują STL" + +msgid "Change filament" +msgstr "Pakeisti giją" + +msgid "Set filament for selected items" +msgstr "Nustatyti giją pasirinktiems elementams" + +msgid "Default" +msgstr "Numatytas" + +#, c-format, boost-format +msgid "Filament %d" +msgstr "Gija %d" + +msgid "current" +msgstr "dabartinė" + +msgid "Scale to build volume" +msgstr "Mastelis pagal spausdinimo plotą" + +msgid "Scale an object to fit the build volume" +msgstr "Pritaikyti objekto dydį spausdintuvui" + +msgid "Flush Options" +msgstr "Gijos išleidimo nustatymai" + +msgid "Flush into objects' infill" +msgstr "Nuvalyti į objektų užpildą" + +msgid "Flush into this object" +msgstr "Nuvalyti į šį objektą" + +msgid "Flush into objects' support" +msgstr "Nuvalyti į objekto atramas" + +msgid "Edit in Parameter Table" +msgstr "Taisyti Parametrų lentelėje" + +msgid "Convert from inches" +msgstr "Konvertuoti iš colių" + +msgid "Restore to inches" +msgstr "Grąžinti į colius" + +msgid "Convert from meters" +msgstr "Konvertuoti iš metrų" + +msgid "Restore to meters" +msgstr "Grąžinti į metrus" + +msgid "Assemble" +msgstr "Surinkti" + +msgid "Assemble the selected objects to an object with multiple parts" +msgstr "Sujungti pasirinktus objektus į daugiadalį objektą" + +msgid "Assemble the selected objects to an object with single part" +msgstr "Sujungti pasirinktus objektus į vienadalį objektą" + +msgid "Mesh boolean" +msgstr "Objektų jungimo / atėmimo / susikirtimo įrankiai" + +msgid "Mesh boolean operations including union and subtraction" +msgstr "Įrankiai modeliams sujungti ir iškirpti" + +msgid "Along X axis" +msgstr "Išilgai X ašies" + +msgid "Mirror along the X axis" +msgstr "Atspindėti pagal X ašį" + +msgid "Along Y axis" +msgstr "Išilgai Y ašies" + +msgid "Mirror along the Y axis" +msgstr "Atspindėti pagal Y ašį" + +msgid "Along Z axis" +msgstr "Išilgai Z ašies" + +msgid "Mirror along the Z axis" +msgstr "Atspindėti pagal Z ašį" + +msgid "Mirror object" +msgstr "Atspindėti objektą" + +msgid "Edit text" +msgstr "Teksto taisymas" + +msgid "Ability to change text, font, size, ..." +msgstr "Galimybė keisti tekstą, šriftą, dydį..." + +msgid "Edit SVG" +msgstr "Taisyti SVG" + +msgid "Change SVG source file, projection, size, ..." +msgstr "Keičiamas SVG šaltinis, projekcija, dydis..." + +msgid "Invalidate cut info" +msgstr "Atnaujinti pjovimo informaciją" + +msgid "Add Primitive" +msgstr "Pridėti paprastą figūrą" + +msgid "Add Handy models" +msgstr "Pridėti patogius modelius" + +msgid "Add Models" +msgstr "Pridėti modelius" + +msgid "Show Labels" +msgstr "Rodyti etiketes" + +msgid "To objects" +msgstr "Į objektus" + +msgid "Split the selected object into multiple objects" +msgstr "Suskaidyti pasirinktą objektą į kelis objektus" + +msgid "To parts" +msgstr "Į dalis" + +msgid "Split the selected object into multiple parts" +msgstr "Suskaidyti pasirinktą objektą į kelias dalis" + +msgid "Split" +msgstr "Padalinti" + +msgid "Split the selected object" +msgstr "Padalinti pasirinktą objektą" + +msgid "Auto orientation" +msgstr "Automatinė padėtis" + +msgid "Auto orient the object to improve print quality." +msgstr "Automatiškai nustatoma padėtis spausdinimo kokybės pagerinimui." + +msgid "Select All" +msgstr "Pasirinkti viską" + +msgid "select all objects on current plate" +msgstr "pasirinkti visus objektus pasirinktoje plokštėje" + +msgid "Delete All" +msgstr "Ištrinti visus" + +msgid "delete all objects on current plate" +msgstr "ištrinti visus objektus pasirinktoje plokštėje" + +msgid "Arrange" +msgstr "Išdėstyti" + +msgid "arrange current plate" +msgstr "Išdėstyti dabartinės plokštės objektus" + +msgid "Reload All" +msgstr "Pakartotinai užkrauti viską" + +msgid "reload all from disk" +msgstr "dar kartą užkrauti viską iš disko" + +msgid "Auto Rotate" +msgstr "Automatinis pasukimas" + +msgid "auto rotate current plate" +msgstr "Automatiškai pasukti dabartinę plokštę" + +msgid "Delete Plate" +msgstr "Ištrinti plokštę" + +msgid "Remove the selected plate" +msgstr "Pašalinti pasirinktą plokštę" + +msgid "Clone" +msgstr "Klonuoti" + +msgid "Simplify Model" +msgstr "Supaprastinti modelį" + +msgid "Center" +msgstr "Centras" + +msgid "Drop" +msgstr "Pamiršti" + +msgid "Edit Process Settings" +msgstr "Taisyti proceso nustatymus" + +msgid "Edit print parameters for a single object" +msgstr "Taisyti atskiro objekto spausdinimo parametrus" + +msgid "Change Filament" +msgstr "Keisti giją" + +msgid "Set Filament for selected items" +msgstr "Nsutatyti giją pasirinktiems objektams" + +msgid "Unlock" +msgstr "Atrakinti" + +msgid "Lock" +msgstr "Užrakinti" + +msgid "Edit Plate Name" +msgstr "Taisyti plokštės pavadinimą" + +msgid "Name" +msgstr "Pavadinimas" + +msgid "Fila." +msgstr "Gija." + +#, c-format, boost-format +msgid "%1$d error repaired" +msgid_plural "%1$d errors repaired" +msgstr[0] "Ištaisyta %1$d klaida" +msgstr[1] "Ištaisytos %1$d klaidos" +msgstr[2] "Ištaisyta %1$d klaidų" + +#, c-format, boost-format +msgid "Error: %1$d non-manifold edge." +msgid_plural "Error: %1$d non-manifold edges." +msgstr[0] "Klaida: %1$d neuždara briauna." +msgstr[1] "Klaida: %1$d neuždaros briaunos." +msgstr[2] "Klaida: %1$d neuždarų briaunų." + +msgid "Remaining errors" +msgstr "Likusios klaidos" + +#, c-format, boost-format +msgid "%1$d non-manifold edge" +msgid_plural "%1$d non-manifold edges" +msgstr[0] "%1$d neuždara briauna" +msgstr[1] "%1$d neuždaros briaunos" +msgstr[2] "%1$d neuždarų briaunų" + +msgid "Right click the icon to fix model object" +msgstr "Paspauskite dešnįjį pelės mygtuką modelio objekto taisymui" + +msgid "Right button click the icon to drop the object settings" +msgstr "" +"Dešiniuoju pelės mygtuku spustelėkite piktogramą, kad išskleistumėte objekto " +"nustatymus" + +msgid "Click the icon to reset all settings of the object" +msgstr "Spustelėkite piktogramą, kad atstatytumėte visus objekto nustatymus" + +msgid "Right button click the icon to drop the object printable property" +msgstr "" +"Dešiniuoju pelės mygtuku spustelėkite piktogramą, kad išskleistumėte objekto " +"spausdinimo savybių meniu" + +msgid "Click the icon to toggle printable property of the object" +msgstr "" +"Spustelėkite piktogramą, kad įjungtumėte / išjungtumėte objekto spausdinimo " +"galimybę" + +msgid "Click the icon to edit support painting of the object" +msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto atramų piešimą" + +msgid "Click the icon to edit color painting of the object" +msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto spalvinimą" + +msgid "Click the icon to shift this object to the bed" +msgstr "Spustelėkite piktogramą, kad perkeltumėte šį objektą ant pagrindo" + +msgid "Loading file" +msgstr "Įkeliamas failas" + +msgid "Error!" +msgstr "Klaida!" + +msgid "Failed to get the model data in the current file." +msgstr "Nepavyko gauti modelio duomenų iš dabartinio failo." + +msgid "Generic" +msgstr "Bendras" + +msgid "Add Modifier" +msgstr "Pridėti modifikatorių" + +msgid "Switch to per-object setting mode to edit modifier settings." +msgstr "" +"Norėdami redaguoti modifikatoriaus nustatymus, persijunkite į objektų " +"atskirų nustatymų režimą." + +msgid "" +"Switch to per-object setting mode to edit process settings of selected " +"objects." +msgstr "" +"Norėdami redaguoti pasirinktų objektų spausdinimo parametrus, persijunkite į " +"objektų atskirų nustatymų režimą." + +msgid "Delete connector from object which is a part of cut" +msgstr "Pašalinkite jungtį nuo objekto, kuris yra pjūvio dalis" + +msgid "Delete solid part from object which is a part of cut" +msgstr "Ištrinti vientisą objekto dalį, kuri yra pjūvio dalis" + +msgid "Delete negative volume from object which is a part of cut" +msgstr "Pašalinkite neigiamą tūrį iš pjūvyje esančio objekto" + +msgid "" +"To save cut correspondence you can delete all connectors from all related " +"objects." +msgstr "" +"Norėdami nutraukti ryšius, galite ištrinti visus jungtis iš visų susijusių " +"objektų." + +msgid "" +"This action will break a cut correspondence.\n" +"After that model consistency can't be guaranteed.\n" +"\n" +"To manipulate with solid parts or negative volumes you have to invalidate " +"cut information first." +msgstr "" +"Šis veiksmas nutrauks sluoksniavimo atitikmenį.\n" +"Po to modelio nuoseklumas negali būti užtikrintas.\n" +"\n" +"Norėdami manipuliuoti su vientisomis dalimis arba neigiamais tūriais, " +"pirmiausia turite panaikinti pjūvio informaciją." + +msgid "Delete all connectors" +msgstr "Ištrinti visas jungtis" + +msgid "Deleting the last solid part is not allowed." +msgstr "Neleidžiama ištrinti paskutinės ištisinės dalies." + +msgid "The target object contains only one part and cannot be split." +msgstr "Tikslinį objektą sudaro tik viena dalis, todėl jo skaidyti negalima." + +msgid "Assembly" +msgstr "Surinkimas" + +msgid "Cut Connectors information" +msgstr "Pjovimo jungčių informacija" + +msgid "Object manipulation" +msgstr "Manipuliavimas objektu" + +msgid "Group manipulation" +msgstr "Manipuliavimas grupe" + +msgid "Object Settings to modify" +msgstr "Keičiami objekto parametrai" + +msgid "Part Settings to modify" +msgstr "Dalies nustatymai keitimui" + +msgid "Layer range Settings to modify" +msgstr "Keičiami sluoksnių ribų nustatymai" + +msgid "Part manipulation" +msgstr "Manipuliavimas detale" + +msgid "Instance manipulation" +msgstr "Manipuliavimas egzemplioriumi" + +msgid "Height ranges" +msgstr "Aukščio diapazonai" + +msgid "Settings for height range" +msgstr "Aukščio diapazono nustatymai" + +msgid "Layer" +msgstr "Sluoksnis" + +msgid "Selection conflicts" +msgstr "Pasirinkimo konfliktai" + +msgid "" +"If the first selected item is an object, the second should also be an object." +msgstr "" +"Jei pirmasis pasirinktas elementas yra objektas, tuomet ir antrasis privalo " +"būti objektas." + +msgid "" +"If the first selected item is a part, the second should be a part in the " +"same object." +msgstr "" +"Jei pirmasis pasirinktas elementas ira dalis, tuomet antrasis taip pat " +"privalo būti to paties objekto dalis." + +msgid "The type of the last solid object part is not to be changed." +msgstr "Paskutinės vientiso objekto dalies tipas negali būti keičiamas." + +msgid "Negative Part" +msgstr "Neigiama dalis" + +msgid "Support Blocker" +msgstr "Atramų blokatorius" + +msgid "Support Enforcer" +msgstr "Priverstinės atramos" + +msgid "Type:" +msgstr "Tipas:" + +msgid "Choose part type" +msgstr "Pasirinkite dalies tipą" + +msgid "Enter new name" +msgstr "Įvesti naują pavadinimą" + +msgid "Renaming" +msgstr "Pervadinama" + +msgid "Following model object has been repaired" +msgid_plural "Following model objects have been repaired" +msgstr[0] "Šis modelio objektas buvo sutaisytas" +msgstr[1] "Šie modelio objektai buvo sutaisyti" +msgstr[2] "Šių modelio objektų buvo sutaisyta" + +msgid "Failed to repair following model object" +msgid_plural "Failed to repair following model objects" +msgstr[0] "Nepavyko pataisyti šio modelio objekto" +msgstr[1] "Nepavyko pataisyti šio modelio objektų" +msgstr[2] "Nepavyko pataisyti šio modelio objektų" + +msgid "Repairing was canceled" +msgstr "Taisymas buvo atšauktas" + +msgid "Additional process preset" +msgstr "Papildomas apdorojimo nustatymas" + +msgid "Remove parameter" +msgstr "Pašalinti parametrą" + +msgid "to" +msgstr "į" + +msgid "Remove height range" +msgstr "Pašalinti aukščio ribas" + +msgid "Add height range" +msgstr "Pridėti aukščio ribas" + +msgid "Invalid numeric." +msgstr "Netinkamas skaičius." + +msgid "one cell can only be copied to one or multiple cells in the same column" +msgstr "" +"vieną langelį galima nukopijuoti tik į vieną ar daugiau to paties stulpelio " +"langelių" + +msgid "Copying multiple cells is not supported." +msgstr "kelių langelių kopijavimas nepalaikomas" + +msgid "Outside" +msgstr "Išorėje" + +msgid "Layer height" +msgstr "Sluoksnio aukštis" + +msgid "Wall loops" +msgstr "Sienelės linijos" + +msgid "Infill density(%)" +msgstr "Užpildo tankis (%)" + +msgid "Auto Brim" +msgstr "Automatinis pagrindo sluoksnis" + +msgid "Mouse ear" +msgstr "Pelės ausis" + +msgid "Outer brim only" +msgstr "Tik išorinis kraštas" + +msgid "Inner brim only" +msgstr "Tik vidinis kraštas" + +msgid "Outer and inner brim" +msgstr "Išorinis ir vidinis kraštai" + +msgid "No-brim" +msgstr "Nėra pagrindo sluoksnio" + +msgid "Outer wall speed" +msgstr "Išorinių sienų greitis" + +msgid "Plate" +msgstr "Plokštė" + +msgid "Brim" +msgstr "Kraštas" + +msgid "Object/Part Setting" +msgstr "Objekto / Dalies nustatymai" + +msgid "Reset parameter" +msgstr "Grąžinti į pradinį" + +msgid "Multicolor Print" +msgstr "Spalvotas spausdinimas" + +msgid "Line Type" +msgstr "Linijos tipas" + +msgid "More" +msgstr "Daugiau" + +msgid "Open Preferences." +msgstr "Atidaryti nuostatas." + +msgid "Open next tip." +msgstr "Kitas patarimas." + +msgid "Open Documentation in web browser." +msgstr "Atidaryti dokumentaciją žiniatinklio naršyklėje." + +msgid "Color" +msgstr "Spalva" + +msgid "Pause" +msgstr "Pristabdyti" + +msgid "Template" +msgstr "Šablonas" + +msgid "Custom" +msgstr "Pasirinktinis" + +msgid "Pause:" +msgstr "Pauzė:" + +msgid "Custom Template:" +msgstr "Pasirinktinis šablonas:" + +msgid "Custom G-code:" +msgstr "Pasirinktinis G-kodas:" + +msgid "Custom G-code" +msgstr "Pasirinktinis G-kodas" + +msgid "Enter Custom G-code used on current layer:" +msgstr "Įveskite pasirinktinį kodą dabartiniam sluoksniui:" + +msgid "Jump to Layer" +msgstr "Peršokti į sluoksnį" + +msgid "Please enter the layer number" +msgstr "Įveskite sluoksnio numerį" + +msgid "Add Pause" +msgstr "Pridėti pauzę" + +msgid "Insert a pause command at the beginning of this layer." +msgstr "Įterpti pauzės komandą šio sluoksnio pradžioje." + +msgid "Add Custom G-code" +msgstr "Pridėti pasirinktinį G-kodą" + +msgid "Insert custom G-code at the beginning of this layer." +msgstr "Įterpti pasirinktinį G-kodą šio sluoksnio pradžioje." + +msgid "Add Custom Template" +msgstr "Pridėti pasirinktinį šabloną" + +msgid "Insert template custom G-code at the beginning of this layer." +msgstr "Įterpti šablono pasirinktinį G-kodą šio sluoksnio pradžioje." + +msgid "Filament " +msgstr "Gija " + +msgid "Change filament at the beginning of this layer." +msgstr "Pakeisti giją šio sluoksnio pradžioje." + +msgid "Delete Pause" +msgstr "Pašalinti pauzę" + +msgid "Delete Custom Template" +msgstr "Pašalinti pasirinktinį šabloną" + +msgid "Edit Custom G-code" +msgstr "Taisyti pasirinktinį G-kodą" + +msgid "Delete Custom G-code" +msgstr "Ištrinti pasirinktinį G-kodą" + +msgid "Delete Filament Change" +msgstr "Ištrinti gijos keitimą" + +msgid "No printer" +msgstr "Nepasirinktas spausdintuvas" + +msgid "..." +msgstr "..." + +msgid "Failed to connect to the server" +msgstr "Nepavyko prisijungti prie serverio" + +msgid "Check the status of current system services" +msgstr "Patikrinti dabartinių sistemos paslaugų būseną" + +msgid "code" +msgstr "kodas" + +msgid "Failed to connect to cloud service" +msgstr "Nepavyko prisijungti prie debesies paslaugos" + +msgid "Please click on the hyperlink above to view the cloud service status" +msgstr "" +"Spustelėkite nuorodą viršuje, kad pamatytumėte debesies paslaugos būseną" + +msgid "Failed to connect to the printer" +msgstr "Nepavyko prisijungti prie spausdintuvo" + +msgid "Connection to printer failed" +msgstr "Nepavyko prisijungti prie spausdintuvo" + +msgid "Please check the network connection of the printer and Orca." +msgstr "Prašome patikrinti spausdintuvo ir OrcaSlicer ryšį su tinklu." + +msgid "Connecting..." +msgstr "Jungiamasi..." + +msgid "?" +msgstr "?" + +msgid "/" +msgstr "/" + +msgid "Empty" +msgstr "Tuščias" + +msgid "AMS" +msgstr "AMS" + +msgid "Auto Refill" +msgstr "Automatinis papildymas" + +msgid "AMS not connected" +msgstr "AMS neprijungta" + +msgid "Load" +msgstr "Įkelti" + +msgid "Unload" +msgstr "Išleisti" + +msgid "Ext Spool" +msgstr "Išor ritė" + +msgid "Tips" +msgstr "Patarimai" + +msgid "Guide" +msgstr "Instrukcija" + +msgid "Retry" +msgstr "Kartoti" + +msgid "Calibrating AMS..." +msgstr "Kalibruojama AMS..." + +msgid "A problem occurred during calibration. Click to view the solution." +msgstr "Kalibruojant aptikta problema. Paspauskite kad pamatytumėte sprendimą." + +msgid "Calibrate again" +msgstr "Kalibruoti dar kartą" + +msgid "Cancel calibration" +msgstr "Atšaukti kalibravimą" + +msgid "Idling..." +msgstr "Laisvinama..." + +msgid "Heat the nozzle" +msgstr "Įkaitinti purkštuką" + +msgid "Cut filament" +msgstr "Nukirpti giją" + +msgid "Pull back current filament" +msgstr "Išstumti atgal dabartinę giją" + +msgid "Push new filament into extruder" +msgstr "Įstumti naują giją į ekstruderį" + +msgid "Purge old filament" +msgstr "Išmesti seną giją" + +msgid "Feed Filament" +msgstr "Paduoti giją" + +msgid "Confirm extruded" +msgstr "Patvirtinti, kad išspausta" + +msgid "Check filament location" +msgstr "Patikrinti gijos padėtį" + +msgid "Grab new filament" +msgstr "Pasirinkti naują giją" + +msgid "" +"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " +"load or unload filaments." +msgstr "" +"Pasirinkite AMS angą, tada paspauskite \"Įkelti\" arba \"išstumti\" mygtuką, " +"kad automatiškai įkeltumėte arba išstumtumėte gijas." + +msgid "Edit" +msgstr "Redaguoti" + +msgid "" +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." +msgstr "" +"Visi pažymėti objektai yra ant užrakintos plokštės.\n" +"Automatinio išdėstymo šiems objektams atlikti negalima." + +msgid "No arrangeable objects are selected." +msgstr "Nėra pasirinkta jokių tvarkytinų objektų." + +msgid "" +"This plate is locked.\n" +"Cannot auto-arrange on this plate." +msgstr "" +"Ši plokštė užrakinta.\n" +"Automatinio objektų išdėstymo šioje plokštėje atlikti negalima." + +msgid "Arranging..." +msgstr "Išdėstoma..." + +msgid "Arranging" +msgstr "Išdėstymas" + +msgid "Arranging canceled." +msgstr "Išdėstymas atšauktas." + +msgid "" +"Arranging is done but there are unpacked items. Reduce spacing and try again." +msgstr "" +"Išdėstymas atliktas, tačiau liko neapdorotų objektų. Sumažinkite tarpus ir " +"pabandykite dar kartą." + +msgid "Arranging done." +msgstr "Išdėstymas atliktas." + +msgid "" +"Arrange failed. Found some exceptions when processing object geometries." +msgstr "Išdėstymas nepavyko. Apdorojant objektų geometriją aptiktos išimtys." + +#, c-format, boost-format +msgid "" +"Arrangement ignored the following objects which can't fit into a single " +"bed:\n" +"%s" +msgstr "" +"Išdėstymas nepaisė šių objektų, kurie netelpa į vieną pagrindą:\n" +"%s" + +msgid "" +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." +msgstr "" +"Visi pažymėti objektai yra ant užrakintos plokštės.\n" +"Automatinio objektų suorientavimo šiems objektams atlikti negalima." + +msgid "" +"This plate is locked.\n" +"Cannot auto-orient on this plate." +msgstr "" +"Ši plokštė užrakinta.\n" +"Automatinio objektų orientavimo šioje plokštėje atlikti negalima." + +msgid "Orienting..." +msgstr "Orientuojama..." + +msgid "Orienting" +msgstr "Orientuojama" + +msgid "Orienting canceled." +msgstr "Orientavimas atšauktas." + +msgid "Filling" +msgstr "Užpildoma" + +msgid "Bed filling canceled." +msgstr "Pagrindo užpildymas atšauktas." + +msgid "Bed filling done." +msgstr "Pagrindo užpildymas atliktas." + +msgid "Searching for optimal orientation" +msgstr "Optimalios orientacijos paieška" + +msgid "Orientation search canceled." +msgstr "Orientacijos paieška atšaukta." + +msgid "Orientation found." +msgstr "Orientacija rasta." + +msgid "Logging in" +msgstr "Jungiamasi" + +msgid "Login failed" +msgstr "Prisijungti nepavyko" + +msgid "Please check the printer network connection." +msgstr "Prašome patikrinti spausdintuvo kompiuterinio tinklo jungtį." + +msgid "Abnormal print file data. Please slice again." +msgstr "" +"Nenormalūs spausdinimo failo duomenys. Prašome susluoksniuoti dar kartą." + +msgid "Task canceled." +msgstr "Užduotis atšaukta." + +msgid "Upload task timed out. Please check the network status and try again." +msgstr "" +"Įkėlimo užduotis viršijo laukimo laiką. Prašome patikrinti tinklo būseną ir " +"bandyti iš naujo." + +msgid "Cloud service connection failed. Please try again." +msgstr "" +"Nepavyko prisijungti prie debesies paslaugos. Prašome bandyti iš naujo." + +msgid "Print file not found. Please slice again." +msgstr "Nerastas spausdinimo failas. Prašome išsluoksniuoti iš naujo." + +msgid "" +"The print file exceeds the maximum allowable size (1GB). Please simplify the " +"model and slice again." +msgstr "" +"Spausdinimo failas viršija didžiausią leistiną dydį (1GB). Prašome " +"supaprastinti modelį ir išsluoksniuoti iš naujo." + +msgid "Failed to send the print job. Please try again." +msgstr "Nepavyko išsiųsti spausdinimo užduoties. Prašome bandyti iš naujo." + +msgid "Failed to upload file to ftp. Please try again." +msgstr "Nepavyko failo įkelti į ftp serverį. Prašome pabandyti iš naujo." + +msgid "" +"Check the current status of the bambu server by clicking on the link above." +msgstr "" +"Paspaudę nuorodą viršuje, galite patikrinti aktualią Bambu serverio būseną." + +msgid "" +"The size of the print file is too large. Please adjust the file size and try " +"again." +msgstr "" +"Spausdinimo failo dydis per didelis. Prašome pakoreguoti dydį ir bandyti " +"pakartotinai." + +msgid "Print file not found, please slice it again and send it for printing." +msgstr "" +"Nerastas spausdinimo failas. Prašome dar kartą išsluoksniuoti ir išsiųsti " +"spausdinimui." + +msgid "" +"Failed to upload print file to FTP. Please check the network status and try " +"again." +msgstr "" +"Nepavyko spausdinimo failo įkelti į FTP serverį. Patikrinkite tinklo būseną " +"ir bandykite dar kartą." + +msgid "Sending print job over LAN" +msgstr "Spausdinimo užduotis siunčiama vietiniu tinklu" + +msgid "Sending print job through cloud service" +msgstr "Spausdinimo užduotis siunčiama debesies paslauga" + +msgid "Print task sending times out." +msgstr "Spausdinimo užduoties siuntimas viršijo nustatytą laiką." + +msgid "Service Unavailable" +msgstr "Paslauga negalima" + +msgid "Unknown Error." +msgstr "Nežinoma klaida." + +msgid "Sending print configuration" +msgstr "Siunčiama spausdinimo konfigūracija" + +#, c-format, boost-format +msgid "Successfully sent. Will automatically jump to the device page in %ss" +msgstr "" +"Sėkmingai išsiųsta. Automatiškai per %s sek. bus pereita į įrenginio puslapį" + +#, c-format, boost-format +msgid "Successfully sent. Will automatically jump to the next page in %ss" +msgstr "" +"Sėkmingai išsiųsta. Automatiškai per %s sek. bus pereita į kitą puslapį" + +msgid "An SD card needs to be inserted before printing via LAN." +msgstr "Prieš spausdinant per vietinį tinklą, reikia įdėti SD kortelę." + +msgid "Sending G-code file over LAN" +msgstr "Vietiniu tinklu siunčiamas G-kodo failas" + +msgid "Sending G-code file to SD card" +msgstr "Į SD kortelę siunčiamas G-kodo failas" + +#, c-format, boost-format +msgid "Successfully sent. Close current page in %s s" +msgstr "Sėkmingai išsiųsta. Dabartinis puslapis užsivers po %s sek" + +msgid "An SD card needs to be inserted before sending to printer." +msgstr "Prieš siunčiant į spausdintuvą reikia įdėti SD kortelę." + +msgid "Importing SLA archive" +msgstr "Importuojamas SLA archyvas" + +msgid "" +"The SLA archive doesn't contain any presets. Please activate some SLA " +"printer preset first before importing that SLA archive." +msgstr "" +"SLA archyve nėra jokių išankstinių nustatymų. Prieš importuodami SLA " +"archyvą, pirmiausia suaktyvinkite SLA spausdintuvo nustatymą." + +msgid "Importing canceled." +msgstr "Importavimas atšauktas." + +msgid "Importing done." +msgstr "Importavimas atliktas." + +msgid "" +"The imported SLA archive did not contain any presets. The current SLA " +"presets were used as fallback." +msgstr "" +"Importuotame SLA archyve nebuvo jokių išankstinių nustatymų. Dabartiniai SLA " +"nustatymai buvo naudojami kaip atsarginiai." + +msgid "You cannot load SLA project with a multi-part object on the bed" +msgstr "Negalite įkelti SLA projekto su kelių dalių objektu ant pagrindo" + +msgid "Please check your object list before preset changing." +msgstr "Prieš keisdami išankstinius nustatymus, patikrinkite objektų sąrašą." + +msgid "Attention!" +msgstr "Dėmesio!" + +msgid "Downloading" +msgstr "Atsisiunčiama" + +msgid "Download failed" +msgstr "Atsisiuntimas nepavyko" + +msgid "Canceled" +msgstr "Atšaukta" + +msgid "Installed successfully" +msgstr "Sėkmingai įdiegta." + +msgid "Installing" +msgstr "Diegiama" + +msgid "Install failed" +msgstr "Diegimas nepavyko" + +msgid "Portions copyright" +msgstr "Dalys saugomos autorių teisių" + +msgid "Copyright" +msgstr "Autorių teisės" + +msgid "License" +msgstr "Licencija" + +msgid "Orca Slicer is licensed under " +msgstr "Orca Slicer yra licencijuojama pagal " + +msgid "GNU Affero General Public License, version 3" +msgstr "GNU Affero bendroji viešoji licencija, 3 versija" + +msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" +msgstr "Orca Slicer sukurtas remiantis PrusaSlicer ir BambuStudio" + +msgid "Libraries" +msgstr "Bibliotekos" + +msgid "" +"This software uses open source components whose copyright and other " +"proprietary rights belong to their respective owners" +msgstr "" +"Ši programinė įranga naudoja atvirojo kodo komponentus, kurių autorių teisės " +"ir kitos nuosavybės teisės priklauso atitinkamiems savininkams" + +#, c-format, boost-format +msgid "About %s" +msgstr "Apie %s" + +msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer." +msgstr "OrcaSlicer sukurtas remiantis BambuStudio, PrusaSlicer ir SuperSlicer." + +msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." +msgstr "" +"Pradinė BambuStudio programos kūrimo bazė buvo PrusaSlicer iš PrusaResearch." + +msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." +msgstr "" +"Pradinė PrusaSlicer programos kūrimo bazė buvo Slic3r, kurį sukūrė " +"Alessandro Ranellucci." + +msgid "" +"Slic3r was created by Alessandro Ranellucci with the help of many other " +"contributors." +msgstr "Slic3r sukūrė Alessandro Ranellucci su daugelio kitų kūrėjų pagalba." + +msgid "Version" +msgstr "Versija" + +msgid "AMS Materials Setting" +msgstr "AMS medžiagų nuostatos" + +msgid "Confirm" +msgstr "Patvirtinti" + +msgid "Close" +msgstr "Uždaryti" + +msgid "" +"Nozzle\n" +"Temperature" +msgstr "" +"Purkštuko\n" +"temperatūra" + +msgid "max" +msgstr "maks" + +msgid "min" +msgstr "min" + +#, boost-format +msgid "The input value should be greater than %1% and less than %2%" +msgstr "Įvesties reikšmė turi būti didesnė nei %1% ir mažesnė nei %2%" + +msgid "SN" +msgstr "SN" + +msgid "Factors of Flow Dynamics Calibration" +msgstr "Dinaminio srauto kalibravimo veiksniai" + +msgid "PA Profile" +msgstr "PA sąranka" + +msgid "Factor K" +msgstr "Faktorius K" + +msgid "Factor N" +msgstr "Faktorius N" + +msgid "Setting AMS slot information while printing is not supported" +msgstr "Negalima pakeisti AMS angos informacijos kol vyksta spausdinimas" + +msgid "Setting Virtual slot information while printing is not supported" +msgstr "" +"Negalima pakeisti virtualios angos informacijos kol vyksta spausdinimas" + +msgid "Are you sure you want to clear the filament information?" +msgstr "Ar jūs tikrai norite išvalyti gijos informaciją?" + +msgid "You need to select the material type and color first." +msgstr "Pradžioje jums reikia pasirinkti medžiagos tipą ir spalvą." + +#, c-format, boost-format +msgid "Please input a valid value (K in %.1f~%.1f)" +msgstr "Įveskite tinkamą reikšmę (K %.1f~%.1f)" + +#, c-format, boost-format +msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)" +msgstr "Įveskite tinkamą reikšmę (K %.1f~%.1f, N %.1f~%.1f)" + +msgid "Other Color" +msgstr "Kita spalva" + +msgid "Custom Color" +msgstr "Pasirinktinė spalva" + +msgid "Dynamic flow calibration" +msgstr "Dinaminis srauto kalibravimas" + +msgid "" +"The nozzle temp and max volumetric speed will affect the calibration " +"results. Please fill in the same values as the actual printing. They can be " +"auto-filled by selecting a filament preset." +msgstr "" +"Purkštuko temperatūra ir didžiausias tūrinis greitis įtakoja kalibravimo " +"rezultatus. Prašome įvesti tokias pat reikšmes, kaip ir įprastam " +"spausdinime. Jas galima automatiškai užpildyti pasirinkus gijų parametrų " +"sąranką." + +msgid "Nozzle Diameter" +msgstr "Purkštuko diametras" + +msgid "Bed Type" +msgstr "Pagrindo tipas" + +msgid "Nozzle temperature" +msgstr "Purkštuko temperatūra" + +msgid "Bed Temperature" +msgstr "Pagrindo temperatūra" + +msgid "Max volumetric speed" +msgstr "Maksimalus tūrinis greitis" + +msgid "℃" +msgstr "℃" + +msgid "Bed temperature" +msgstr "Pagrindo temperatūra" + +msgid "mm³" +msgstr "mm³" + +msgid "Start calibration" +msgstr "Pradėti kalibravimą" + +msgid "Next" +msgstr "Kitas" + +msgid "" +"Calibration completed. Please find the most uniform extrusion line on your " +"hot bed like the picture below, and fill the value on its left side into the " +"factor K input box." +msgstr "" +"Kalibravimas baigtas. Raskite tolydžiausiai išspausdintą liniją ant " +"kaitinamo pagrindo, (tokią kaip paveikslėlyje žemiau) ir įveskite kairėje " +"pusėje esančią reikšmę į faktoriaus K įvesties laukelį." + +msgid "Save" +msgstr "Išsaugoti" + +msgid "Last Step" +msgstr "Paskutinis žingsnis" + +msgid "Example" +msgstr "Pavyzdys" + +#, c-format, boost-format +msgid "Calibrating... %d%%" +msgstr "Kalibruojama... %d%%" + +msgid "Calibration completed" +msgstr "Kalibravimas baigtas" + +#, c-format, boost-format +msgid "%s does not support %s" +msgstr "%s nepalaiko %s" + +msgid "Dynamic flow Calibration" +msgstr "Dinaminio srauto kalibravimas" + +msgid "Step" +msgstr "Žingsnis" + +msgid "AMS Slots" +msgstr "AMS angos" + +msgid "" +"Note: Only the AMS slots loaded with the same material type can be selected." +msgstr "" +"Pastaba: Galima pasirinkti tik tuos AMS lizdus, kuriose yra tos pačios " +"rūšies medžiaga." + +msgid "Enable AMS" +msgstr "Įjungti AMS" + +msgid "Print with filaments in the AMS" +msgstr "Spausdinti su gijomis iš AMS" + +msgid "Disable AMS" +msgstr "Išjungti AMS" + +msgid "Print with the filament mounted on the back of chassis" +msgstr "Spausdinti su ant dėžės sumontuota gija" + +msgid "Current AMS humidity" +msgstr "Dabartinė AMS drėgmė" + +msgid "" +"Please change the desiccant when it is too wet. The indicator may not " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " +"temperatures also slow down the process." +msgstr "" +"Pasikeiskite drėgmės sugėriklį, kai jis sudrėgsta. Indikatorius gali veikti " +"netiksliai šiais atvejais: kai atidarytas dangtelis, arba pakeistas drėgmės " +"sugėriklio pakelis. Drėgmės sugėrimui reikia keleto valandų. Žema " +"temperatūra taip pat sulėtina šį procesą." + +msgid "" +"Configure which AMS slot should be used for a filament used in the print job." +msgstr "" +"Sukonfigūruokite, kuris AMS lizdas turėtų būti naudojamas spausdinimo " +"užduotyje naudojamai gijai" + +msgid "Filament used in this print job" +msgstr "Šiame spausdinime naudojama gija" + +msgid "AMS slot used for this filament" +msgstr "Šiam spausdinimui naudojamas AMS lizdas" + +msgid "Click to select AMS slot manually" +msgstr "Paspauskite, norėdami rankiniu būdu pasirinkti AMS lizdą" + +msgid "Do not Enable AMS" +msgstr "Nejungti AMS" + +msgid "Print using materials mounted on the back of the case" +msgstr "Spausdinkite naudodami išorinėje ritėje esančią giją" + +msgid "Print with filaments in AMS" +msgstr "Spausdinti AMS gijomis" + +msgid "Print with filaments mounted on the back of the chassis" +msgstr "Spausdinti gijomis, sumontuotomis ant dėžės" + +msgid "" +"When the current material run out, the printer will continue to print in the " +"following order." +msgstr "" +"Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka." + +msgid "Group" +msgstr "Grupė" + +msgid "The printer does not currently support auto refill." +msgstr "Šiuo metu spausdintuvas nepalaiko automatinio papildymo." + +msgid "" +"AMS filament backup is not enabled, please enable it in the AMS settings." +msgstr "AMS atsarginė gija neįjungta, įjunkite ją AMS nustatymuose." + +msgid "" +"If there are two identical filaments in AMS, AMS filament backup will be " +"enabled.\n" +"(Currently supporting automatic supply of consumables with the same brand, " +"material type, and color)" +msgstr "" +"Jei AMS yra dvi identiškos gijos, tuomet bus įjungta AMS atsarginė gija. \n" +"(Šiuo metu palaikomas automatinis to paties prekės ženklo, medžiagos tipo ir " +"spalvos eksploatacinių medžiagų padavimas)" + +msgid "DRY" +msgstr "SAUSA" + +msgid "WET" +msgstr "DRĖGNA" + +msgid "AMS Settings" +msgstr "AMS nustatymai" + +msgid "Insertion update" +msgstr "Įdėklo atnaujinimas" + +msgid "" +"The AMS will automatically read the filament information when inserting a " +"new Bambu Lab filament. This takes about 20 seconds." +msgstr "" +"Įdėjus naują Bambu Lab giją, AMS automatiškai nuskaitys jos informaciją. Tai " +"trunka apie 20 sekundžių." + +msgid "" +"Note: if a new filament is inserted during printing, the AMS will not " +"automatically read any information until printing is completed." +msgstr "" +"Pastaba: jei spausdinimo metu įdedama nauja gija, AMS automatiškai " +"nenuskaitys jokios informacijos, kol spausdinimas nebus baigtas." + +msgid "" +"When inserting a new filament, the AMS will not automatically read its " +"information, leaving it blank for you to enter manually." +msgstr "" +"Įdėjus naują giją, AMS automatiškai nenuskaitys jos informacijos, todėl ją " +"reikės įvesti rankiniu būdu." + +msgid "Power on update" +msgstr "Įjungimo metu atnaujinimas" + +msgid "" +"The AMS will automatically read the information of inserted filament on " +"start-up. It will take about 1 minute. The reading process will roll filament " +"spools." +msgstr "" +"Paleidimo metu AMS automatiškai nuskaitys įdėtos gijos informaciją. Tai " +"truks apie 1 minutę. Skaitymo proceso metu AMS sukios gijų rites." + +msgid "" +"The AMS will not automatically read information from inserted filament " +"during startup and will continue to use the information recorded before the " +"last shutdown." +msgstr "" +"Paleidimo metu AMS automatiškai nenuskaitys įdėtos gijos informacijos ir " +"toliau naudosis prieš paskutinį išjungimą įrašyta informacija." + +msgid "Update remaining capacity" +msgstr "Atnaujinti likusį gijos kiekį" + +msgid "" +"The AMS will estimate Bambu filament's remaining capacity after the filament " +"info is updated. During printing, remaining capacity will be updated " +"automatically." +msgstr "" +"Atnaujinus gijų informaciją, AMS įvertins likusį Bambu gijų kiekį. " +"Spausdinimo metu likęs kiekis bus atnaujinamas automatiškai." + +msgid "AMS filament backup" +msgstr "AMS atsarginė gija" + +msgid "" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." +msgstr "" +"Kai baigsis dabartinė gija, AMS automatiškai tęs darbą kitoje ritėje su " +"tokiomis pačiomis gijos savybėmis" + +msgid "Air Printing Detection" +msgstr "Filamento išspaudimo nebuvimo aptikimas" + +msgid "" +"Detects clogging and filament grinding, halting printing immediately to " +"conserve time and filament." +msgstr "" +"Aptikusi užsikimšimą arba gijos gremžimą, taupant laiką ir giją, sistema iš " +"karto sustabdo spausdinimą." + +msgid "File" +msgstr "Failas" + +msgid "Calibration" +msgstr "Kalibravimas" + +msgid "" +"Failed to download the plug-in. Please check your firewall settings and vpn " +"software, check and retry." +msgstr "" +"Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN " +"programinę įrangą, ir bandykite dar kartą." + +msgid "" +"Failed to install the plug-in. Please check whether it is blocked or deleted " +"by anti-virus software." +msgstr "" +"Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba neištrina " +"antivirusinė programinė įranga." + +msgid "click here to see more info" +msgstr "spustelėkite norėdami gauti daugiau informacijos" + +msgid "Please home all axes (click " +msgstr "Prašome sugrąžinti visas ašis į pradinę padėtį (spauskite " + +msgid "" +") to locate the toolhead's position. This prevents device moving beyond the " +"printable boundary and causing equipment wear." +msgstr "" +") norėdami nustatyti spausdinimo galvutės padėtį. Taip išvengiama, kad " +"įrenginys judėtų už spausdinimo srities ir dėvėtųsi." + +msgid "Go Home" +msgstr "Grįžti į pradinę padėtį" + +msgid "" +"A error occurred. Maybe memory of system is not enough or it's a bug of the " +"program" +msgstr "" +"Įvyko klaida. Sistemoje galėjo pritrūkti atminties arba įvyko programos " +"klaida" + +#, boost-format +msgid "A fatal error occurred: \"%1%\"" +msgstr "Įvyko lemtinga klaida: „%1%“" + +msgid "Please save project and restart the program." +msgstr "Išsaugokite projektą ir iš naujo paleiskite programą." + +msgid "Processing G-code from Previous file..." +msgstr "Vykdomas G-kodas iš prieš tai buvusio failo..." + +msgid "Slicing complete" +msgstr "Sluoksniavimas baigtas" + +msgid "Access violation" +msgstr "Prieigos pažeidimas" + +msgid "Illegal instruction" +msgstr "Netinkama komanda" + +msgid "Divide by zero" +msgstr "Dalyba iš nulio" + +msgid "Overflow" +msgstr "Perpildymas" + +msgid "Underflow" +msgstr "Perteklius" + +msgid "Floating reserved operand" +msgstr "Slankusis rezervuotas operandas" + +msgid "Stack overflow" +msgstr "Steko perpildymas" + +msgid "Running post-processing scripts" +msgstr "Vykdomi papildomo apdorojimo scenarijai" + +msgid "Successfully executed post-processing script" +msgstr "Sėkmingai vykdytas papildomas apdorojimo scenarijus" + +msgid "Unknown error occurred during exporting G-code." +msgstr "Eksportuojant G kodą įvyko nežinoma klaida." + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. Maybe the SD " +"card is write locked?\n" +"Error message: %1%" +msgstr "" +"Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą. Gal draudžiama " +"įrašinėti į SD kortelę?\n" +"Klaidos pranešimas: %1%" + +#, boost-format +msgid "" +"Copying of the temporary G-code to the output G-code failed. There might be " +"problem with target device, please try exporting again or using different " +"device. The corrupted output G-code is at %1%.tmp." +msgstr "" +"Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą. Gali kilti " +"problemų dėl tikslinio įrenginio. Bandykite eksportuoti dar kartą arba " +"naudokite kitą įrenginį. Sugadintas išvesties G-kodas yra %1%.tmp." + +#, boost-format +msgid "" +"Renaming of the G-code after copying to the selected destination folder has " +"failed. Current path is %1%.tmp. Please try exporting again." +msgstr "" +"Nepavyko pervardyti G-kodo nukopijavus į pasirinktą aplanką. Dabartinis " +"kelias yra %1%.tmp. Bandykite eksportuoti dar kartą." + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the original code at %1% " +"couldn't be opened during copy check. The output G-code is at %2%.tmp." +msgstr "" +"Laikinojo G-kodo kopijavimas baigtas, bet pradinio kodo, esančio %1%, " +"nepavyko atidaryti tikrinant kopiją. Išvesties G-kodas yra %2%.tmp." + +#, boost-format +msgid "" +"Copying of the temporary G-code has finished but the exported code couldn't " +"be opened during copy check. The output G-code is at %1%.tmp." +msgstr "" +"Laikinojo G-kodo kopijavimas baigtas, bet eksportuoto kodo nepavyko " +"atidaryti tikrinant kopiją. Išvesties G-kodas yra %1%.tmp." + +#, boost-format +msgid "G-code file exported to %1%" +msgstr "G-kodo failas eksportuotas į %1%" + +msgid "Unknown error when exporting G-code." +msgstr "Nežinoma G kodo eksporto klaida." + +#, boost-format +msgid "" +"Failed to save G-code file.\n" +"Error message: %1%.\n" +"Source file %2%." +msgstr "" +"Nepavyko išsaugoti G-kodo failo.\n" +"Klaidos pranešimas: %1%.\n" +"Šaltinio failas: %2%." + +msgid "Copying of the temporary G-code to the output G-code failed" +msgstr "Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą" + +#, boost-format +msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" +msgstr "" +"Planuojamas įkėlimas į „%1%“. Žr. Langas -> Tinklinio spausdinimo įkėlimo " +"eilė" + +msgid "Device" +msgstr "Įrenginys" + +msgid "Task Sending" +msgstr "Užduotis siunčiama" + +msgid "Task Sent" +msgstr "Užduotis nusiųsta" + +msgid "Edit multiple printers" +msgstr "Taisyti kelis spausdintuvus" + +msgid "Select connected printers (0/6)" +msgstr "Pasirinkite prijungtus spausdintuvus (0/6)" + +#, c-format, boost-format +msgid "Select Connected Printers (%d/6)" +msgstr "Pasirinkite prijungtus spausdintuvus (%d/6)" + +#, c-format, boost-format +msgid "The maximum number of printers that can be selected is %d" +msgstr "Didžiausias pasirenkamų spausdintuvų skaičius yra %d" + +msgid "Offline" +msgstr "Neprisijungus" + +msgid "No task" +msgstr "Nėra užduočių" + +msgid "View" +msgstr "Vaizdas" + +msgid "N/A" +msgstr "N/A" + +msgid "Edit Printers" +msgstr "Taisyti spausdintuvus" + +msgid "Device Name" +msgstr "Įrenginio pavadinimas" + +msgid "Task Name" +msgstr "Užduoties pavadinimas" + +msgid "Device Status" +msgstr "Įrenginio būsena" + +msgid "Actions" +msgstr "Veiksmai" + +msgid "" +"Please select the devices you would like to manage here (up to 6 devices)" +msgstr "" +"Prašome pasirinkti įrenginius, kurios norėsite čia valdyti (iki 6 įrenginių)" + +msgid "Add" +msgstr "Įtraukti" + +msgid "Idle" +msgstr "Tuščias" + +msgid "Printing" +msgstr "Spausdinimas" + +msgid "Upgrading" +msgstr "Atnaujinama" + +msgid "Incompatible" +msgstr "Nesuderinama" + +msgid "syncing" +msgstr "sinchronizuojama" + +msgid "Printing Finish" +msgstr "Spausdinimas baigtas" + +msgid "Printing Failed" +msgstr "Spausdinimas nepavyko" + +msgid "Printing Pause" +msgstr "Spausdinimo pauzė" + +msgid "Prepare" +msgstr "Paruošimas" + +msgid "Slicing" +msgstr "Sluoksniuojama" + +msgid "Pending" +msgstr "Laukiama" + +msgid "Sending" +msgstr "Siunčiama" + +msgid "Sending Finish" +msgstr "Siuntimas baigtas" + +msgid "Sending Cancel" +msgstr "Siuntimas atšauktas" + +msgid "Sending Failed" +msgstr "Siuntimas nepavyko" + +msgid "Print Success" +msgstr "Sėkmingai atspausdinta" + +msgid "Print Failed" +msgstr "Spausdinimas nepavyko" + +msgid "Removed" +msgstr "Pašalinta" + +msgid "Resume" +msgstr "Pratęsti" + +msgid "Stop" +msgstr "Sustabdyti" + +msgid "Task Status" +msgstr "Užduoties būsena" + +msgid "Sent Time" +msgstr "Siuntimo laikas" + +msgid "There are no tasks to be sent!" +msgstr "Čia nėra galimų siųsti užduočių!" + +msgid "No historical tasks!" +msgstr "Be istorinių užduočių!" + +msgid "Loading..." +msgstr "Įkeliama..." + +msgid "No AMS" +msgstr "Be AMS" + +msgid "Send to Multi-device" +msgstr "Siųsti į multiįrenginį" + +msgid "Preparing print job" +msgstr "Spausdinimo užduoties rengimas" + +msgid "Abnormal print file data. Please slice again" +msgstr "" +"Nenormalūs spausdinimo failo duomenys. Atlikite sluoksniavimą dar kartą" + +msgid "There is no device available to send printing." +msgstr "Nėra įrenginio, kuriam būtų galima siųsti spausdinti." + +msgid "The number of printers in use simultaneously cannot be equal to 0." +msgstr "Vienu metu naudojamų spausdintuvų skaičius negali būti lygus 0." + +msgid "Use External Spool" +msgstr "Naudoti išorinę ritę" + +msgid "Use AMS" +msgstr "Naudoti AMS" + +msgid "Select Printers" +msgstr "Pasirinkite spausdintuvus" + +msgid "AMS Status" +msgstr "AMS būsena" + +msgid "Printing Options" +msgstr "Spausdinimo parinktys" + +msgid "Bed Leveling" +msgstr "Lyginimas pagal spausdinimo pagrindą" + +msgid "Timelapse" +msgstr "Greitintas vaizdo įrašas" + +msgid "Flow Dynamic Calibration" +msgstr "Dinaminis srauto kalibravimas" + +msgid "Send Options" +msgstr "Siuntimo parinktys" + +msgid "Send to" +msgstr "Siųsti į" + +msgid "" +"printers at the same time. (It depends on how many devices can undergo " +"heating at the same time.)" +msgstr "" +"spausdintuvus vienu metu. (Priklauso nuo to, kiek įrenginių gali būti " +"kaitinami vienu metu.)" + +msgid "Wait" +msgstr "Laukti" + +msgid "" +"minute each batch. (It depends on how long it takes to complete the heating.)" +msgstr "" +"minutę kiekvienai partijai. (Priklauso nuo to, kiek laiko trunka " +"įkaitinimas.)" + +msgid "Send" +msgstr "Siųsti" + +msgid "Name is invalid;" +msgstr "Pavadinimas netinkamas;" + +msgid "illegal characters:" +msgstr "neleidžiami simboliai:" + +msgid "illegal suffix:" +msgstr "neleidžiamas plėtinys:" + +msgid "The name is not allowed to be empty." +msgstr "Neleidžiama, kad pavadinimas būtų tuščias." + +msgid "The name is not allowed to start with space character." +msgstr "Neleidžiama, kad pavadinimas prasidėtų tarpo simboliu." + +msgid "The name is not allowed to end with space character." +msgstr "Neleidžiama, kad pavadinimas baigtųsi tarpo simboliu." + +msgid "The name length exceeds the limit." +msgstr "Pavadinimas viršijo leistiną dydį." + +msgid "Origin" +msgstr "Pradžia" + +msgid "Size in X and Y of the rectangular plate." +msgstr "Stačiakampės plokštės dydis X ir Y." + +msgid "" +"Distance of the 0,0 G-code coordinate from the front left corner of the " +"rectangle." +msgstr "" +"0,0 G-kodo koordinatės atstumas nuo priekinio kairiojo stačiakampio kampo." + +msgid "" +"Diameter of the print bed. It is assumed that origin (0,0) is located in the " +"center." +msgstr "" +"Spausdinimo pagrindo skersmuo. Daroma prielaida, kad pradžia (0,0) yra " +"centre." + +msgid "Rectangular" +msgstr "Stačiakampis" + +msgid "Circular" +msgstr "Apvalus" + +msgid "Load shape from STL..." +msgstr "Įkelti formą iš STL..." + +msgid "Settings" +msgstr "Nustatymai" + +msgid "Texture" +msgstr "Tekstūra" + +msgid "Remove" +msgstr "Pašalinti" + +msgid "Not found:" +msgstr "Nerasta:" + +msgid "Model" +msgstr "Modelis" + +msgid "Choose an STL file to import bed shape from:" +msgstr "Pasirinkite STL failą, iš kurio norite importuoti pagrindo formą:" + +msgid "Invalid file format." +msgstr "Netinkamas failo formatas." + +msgid "Error! Invalid model" +msgstr "Klaida! Netinkamas modelis" + +msgid "The selected file contains no geometry." +msgstr "Pasirinktame faile nėra geometrijos." + +msgid "" +"The selected file contains several disjoint areas. This is not supported." +msgstr "Pasirinktame faile yra keletas nesusijusių sričių. Tai nepalaikoma." + +msgid "Choose a file to import bed texture from (PNG/SVG):" +msgstr "" +"Pasirinti failą, iš kurio norite importuoti pagrindo tekstūrą (PNG / SVG):" + +msgid "Choose an STL file to import bed model from:" +msgstr "Pasirinkite STL failą, iš kurio norite importuoti pagrindo modelį:" + +msgid "Bed Shape" +msgstr "Pagrindo forma" + +#, fuzzy +msgid "" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" +msgstr "" +"Rekomenduojama minimali temperatūra yra žemesnė nei 190 laipsnių arba " +"maksimali temperatūra aukštesnė nei 300 laipsnių.\n" + +msgid "" +"The recommended minimum temperature cannot be higher than the recommended " +"maximum temperature.\n" +msgstr "" +"Rekomenduojama minimali temperatūra negali būti aukštesnė už rekomenduojamą " +"maksimalią temperatūrą.\n" + +msgid "Please check.\n" +msgstr "Prašome patikrinti.\n" + +msgid "" +"Nozzle may be blocked when the temperature is out of recommended range.\n" +"Please make sure whether to use the temperature to print.\n" +"\n" +msgstr "" +"Spausdinimo galvutė gali užsikimšti, jei temperatūra nėra rekomenduojamose " +"ribose.\n" +"Pasitikrinkite, ar tikrai norite spausdinti šia temperatūra.\n" +"\n" + +#, c-format, boost-format +msgid "" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." +msgstr "" +"Rekomenduojama šio tipo gijos spausdinimo temperatūra yra nuo %d iki %d " +"laipsnių Celsijaus" + +msgid "" +"Too small max volumetric speed.\n" +"Reset to 0.5" +msgstr "" +"Per mažas maksimalus tūrinis greitis.\n" +"Atstatyta į 0,5" + +#, c-format, boost-format +msgid "" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" +msgstr "" +"Dabartinė kameros temperatūra yra aukštesnė už saugią medžiagos temperatūrą, " +"dėl to medžiaga gali suminkštėti ir užkimšti spausdinimo galvutę. Maksimali " +"saugi medžiagos temperatūra yra %d laipsnių Celsijaus" + +msgid "" +"Too small layer height.\n" +"Reset to 0.2" +msgstr "" +"Per mažas sluoksnio aukštis.\n" +"Atstatyta į 0,2" + +msgid "" +"Too small ironing spacing.\n" +"Reset to 0.1" +msgstr "" +"Per mažas lyginimo tarpas.\n" +"Atstatyta į 0,1" + +msgid "" +"Zero initial layer height is invalid.\n" +"\n" +"The first layer height will be reset to 0.2." +msgstr "" +"Netinkamas pradinio sluoksnio aukštis.\n" +"\n" +"Pirmojo sluoksnio aukštis bus atstatytas į 0,2." + +msgid "" +"This setting is only used for model size tunning with small value in some " +"cases.\n" +"For example, when model size has small error and hard to be assembled.\n" +"For large size tuning, please use model scale function.\n" +"\n" +"The value will be reset to 0." +msgstr "" +"Šis nustatymas naudojamas tik nedideliu mastu koreguoti modelio dydį tam " +"tikrais atvejais.\n" +"Pavyzdžiui, kai modelio dydis turi nedidelę paklaidą ir jį sunku surinkti.\n" +"Didelio dydžio koregavimui naudokite modelio mastelio keitimo funkciją.\n" +"\n" +"Ši vertė bus atstatyta į 0." + +msgid "" +"Too large elephant foot compensation is unreasonable.\n" +"If really have serious elephant foot effect, please check other settings.\n" +"For example, whether bed temperature is too high.\n" +"\n" +"The value will be reset to 0." +msgstr "" +"Per didelė dramblio pėdos kompensacija yra nepagrįsta.\n" +"Jei iš tikrųjų pasireiškia rimtas dramblio pėdos efektas, patikrinkite kitus " +"nustatymus.\n" +"Pavyzdžiui, ar pagrindo temperatūra nėra per aukšta.\n" +"\n" +"Reikšmė bus atstatyta į 0." + +msgid "" +"Alternate extra wall does't work well when ensure vertical shell thickness " +"is set to All." +msgstr "" +"Papildoma alternatyvi sienelė neveikia gerai, kai vertikalaus apvalkalo " +"storis nustatytas į Visi." + +msgid "" +"Change these settings automatically?\n" +"Yes - Change ensure vertical shell thickness to Moderate and enable " +"alternate extra wall\n" +"No - Don't use alternate extra wall" +msgstr "" +"Automatiškai pakeisti šiuos nustatymus?\n" +"Taip - pakeiskite vertikalaus apvalkalo storį į vidutinį ir įjunkite " +"pakaitinę papildomą sienelę\n" +"Ne - nenaudoti alternatyvios papildomos sienelės" + +msgid "" +"Prime tower does not work when Adaptive Layer Height or Independent Support " +"Layer Height is on.\n" +"Which do you want to keep?\n" +"YES - Keep Prime Tower\n" +"NO - Keep Adaptive Layer Height and Independent Support Layer Height" +msgstr "" +"Valymo bokštas neveikia, kai įjungtas \"Adaptyvus sluoksnio aukštis\" arba " +"\"Nepriklausomas atramų sluoksnio aukštis\".\n" +"Ką norite išlaikyti?\n" +"TAIP - Išlaikyti valymo bokštą\n" +"NE - Išlaikyti \"Adaptyvų sluoksnio aukštį\" ir \"Nepriklausomą atramų " +"sluoksnio aukštį\"" + +msgid "" +"Prime tower does not work when Adaptive Layer Height is on.\n" +"Which do you want to keep?\n" +"YES - Keep Prime Tower\n" +"NO - Keep Adaptive Layer Height" +msgstr "" +"Valymo bokštas neveikia, kai įjungtas \"Adaptyvus sluoksnio aukštis\".\n" +"Ką norite išlaikyti?\n" +"TAIP - Išlaikyti valymo bokštą\n" +"NE - Išlaikyti \"Adaptyvų sluoksnio aukštį\"" + +msgid "" +"Prime tower does not work when Independent Support Layer Height is on.\n" +"Which do you want to keep?\n" +"YES - Keep Prime Tower\n" +"NO - Keep Independent Support Layer Height" +msgstr "" +"Valymo bokštas neveikia, kai įjungtas \"Nepriklausomas atramų sluoksnio " +"aukštis\".\n" +"Ką norite išlaikyti?\n" +"TAIP - Išlaikyti valymo bokštą\n" +"NE - Išlaikyti \"Nepriklausomą atramų sluoksnio aukštį\"" + +msgid "" +"seam_slope_start_height need to be smaller than layer_height.\n" +"Reset to 0." +msgstr "" +"seam_slope_start_height turi būti mažesnis nei layer_height.\n" +"Atstatoma į 0." + +msgid "" +"Spiral mode only works when wall loops is 1, support is disabled, top shell " +"layers is 0, sparse infill density is 0 and timelapse type is traditional." +msgstr "" +"Spiralės režimas veikia tik tada, kai sienelės sluoksnių skaičius yra 1, " +"atramos yra išjungtos, viršutinių sluoksnių skaičius yra 0, Retas užpildas " +"yra 0% ir pakadrinis įrašymas tipas yra tradicinis." + +msgid " But machines with I3 structure will not generate timelapse videos." +msgstr "" +" Tačiau spausdintuvai su I3 konstrukcija negeneruos pakadrinių vaizdo įrašų." + +msgid "" +"Change these settings automatically?\n" +"Yes - Change these settings and enable spiral mode automatically\n" +"No - Give up using spiral mode this time" +msgstr "" +"Ar pakeisti šiuos nustatymus automatiškai?\n" +"Taip - Pakeisti nurodytus parametrus ir automatiškai įjungti spiralės " +"režimą.\n" +"Ne - Šį kartą nenaudoti spiralės režimo" + +msgid "Auto bed leveling" +msgstr "Automatinis spausdinimo pagrindo lyginimas" + +msgid "Heatbed preheating" +msgstr "Spausdinimo pagrindo pašildymas iš anksto" + +msgid "Sweeping XY mech mode" +msgstr "Kalibravimo judesiai X ir Y ašyse" + +msgid "Changing filament" +msgstr "Gijos keitimas" + +msgid "M400 pause" +msgstr "M400 pauzė" + +msgid "Paused due to filament runout" +msgstr "Pristabdyta dėl gijos pasibaigimo" + +msgid "Heating hotend" +msgstr "Kaitinama galvutė" + +msgid "Calibrating extrusion" +msgstr "Kalibruojamas išspaudimas" + +msgid "Scanning bed surface" +msgstr "Skenuojamas pagrindo paviršius" + +msgid "Inspecting first layer" +msgstr "Tikrinamas pirmasis sluoksnis" + +msgid "Identifying build plate type" +msgstr "Identifikuojamas plokštės tipas" + +msgid "Calibrating Micro Lidar" +msgstr "Kalibruojamas mikro lidaras" + +msgid "Homing toolhead" +msgstr "Galvutės grąžinimas į pradinę padėtį" + +msgid "Cleaning nozzle tip" +msgstr "Purkštuko galiuko valymas" + +msgid "Checking extruder temperature" +msgstr "Tikrinama ekstruderio temperatūra" + +msgid "Printing was paused by the user" +msgstr "Spausdinimas pristabdytas naudotojo" + +msgid "Pause of front cover falling" +msgstr "Pristabdymas dėl priekinio dangtelio gedimo" + +msgid "Calibrating the micro lidar" +msgstr "Mikro lidaro kalibravimas" + +msgid "Calibrating extrusion flow" +msgstr "Gijos išspaudimo srauto kalibravimas" + +msgid "Paused due to nozzle temperature malfunction" +msgstr "Pristabdyta dėl purkštuko temperatūros gedimo" + +msgid "Paused due to heat bed temperature malfunction" +msgstr "Pristabdyta dėl pagrindo temperatūros gedimo" + +msgid "Filament unloading" +msgstr "Gija išstumiama" + +msgid "Skip step pause" +msgstr "Praleisti žingsnio pauzę" + +msgid "Filament loading" +msgstr "Gija įtraukiama" + +msgid "Motor noise calibration" +msgstr "Variklių triukšmo kalibravimas" + +msgid "Paused due to AMS lost" +msgstr "Pristabdyta dėl AMS praradimo" + +msgid "Paused due to low speed of the heat break fan" +msgstr "Pristabdyta dėl per mažo šilumos slenksčio ventiliatoriaus greičio" + +msgid "Paused due to chamber temperature control error" +msgstr "Pristabdyta dėl kameros temperatūros valdymo klaidos" + +msgid "Cooling chamber" +msgstr "Aušinama kamera" + +msgid "Paused by the G-code inserted by user" +msgstr "Pristabdyta dėl naudotojo įterpto G-kodo" + +msgid "Motor noise showoff" +msgstr "Variklio triukšmo demonstravimas" + +msgid "Nozzle filament covered detected pause" +msgstr "Pristabdyta - aptikta užspausta gija antgalyje" + +msgid "Cutter error pause" +msgstr "Pristabdyta dėl pjovimo klaidos" + +msgid "First layer error pause" +msgstr "Pristabdyta dėl pirmojo sluoksnio klaidos" + +msgid "Nozzle clog pause" +msgstr "Pristabdyta dėl galvutės užsikimšimo" + +msgid "Unknown" +msgstr "Nežinomas" + +msgid "Fatal" +msgstr "Kritinė" + +msgid "Serious" +msgstr "Svarbi" + +msgid "Common" +msgstr "Pasikartojanti" + +msgid "Update successful." +msgstr "Atnaujinimas sėkmingas." + +msgid "Downloading failed." +msgstr "Parsisuntimas nepavyko." + +msgid "Verification failed." +msgstr "Patikrinimas nepavyko." + +msgid "Update failed." +msgstr "Atnaujinimas nepavyko." + +msgid "" +"The current chamber temperature or the target chamber temperature exceeds " +"45℃. In order to avoid extruder clogging,low temperature filament (PLA/PETG/" +"TPU) is not allowed to be loaded." +msgstr "" +"Dabartinė kameros temperatūra arba tikslinė kameros temperatūra viršija 45 " +"℃. Norint išvengti ekstruderio užsikimšimo, negalima įkelti žemos " +"temperatūros gijų (PLA/PETG/TPU)." + +msgid "" +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging,it is not allowed to set the chamber temperature " +"above 45℃." +msgstr "" +"Į ekstruderį įkelta žemai temperatūrai skirta gija (PLA/PETG/TPU). Norint " +"išvengti ekstruderio užsikimšimo, kameros temperatūros negalima nustatyti " +"aukštesnės nei 45 ℃." + +msgid "" +"When you set the chamber temperature below 40℃, the chamber temperature " +"control will not be activated, and the target chamber temperature will " +"automatically be set to 0℃." +msgstr "" +"Nustačius kameros temperatūrą žemesnę nei 40 ℃, kameros temperatūros " +"valdymas nebus aktyvuotas. Automatiniu būdu tikslinė kameros temperatūra bus " +"nustatyta į 0 ℃." + +msgid "Failed to start print job" +msgstr "Nepavyko pradėti spausdinimo" + +msgid "" +"This calibration does not support the currently selected nozzle diameter" +msgstr "" +"Ši kalibravimo procedūra nepalaiko šiuo metu pasirinkto purkštuko skersmens" + +msgid "Current flowrate cali param is invalid" +msgstr "Dabartinis ekstruzijos srauto kalibravimo parametras yra neteisingas" + +msgid "Selected diameter and machine diameter do not match" +msgstr "Pasirinktas diametras ir įrenginio diametras nesutampa" + +msgid "Failed to generate cali G-code" +msgstr "Nepavyko sugeneruoti kalibravimo G-kodo" + +msgid "Calibration error" +msgstr "Kalibravimo klaida" + +msgid "TPU is not supported by AMS." +msgstr "AMS nepalaiko TPU." + +msgid "Bambu PET-CF/PA6-CF is not supported by AMS." +msgstr "AMS nepalaiko Bambu PET-CF/PA6-CF." + +msgid "" +"Damp PVA will become flexible and get stuck inside AMS, please take care to " +"dry it before use." +msgstr "" +"Drėgnas PVA taps lankstus ir gali įstrigti AMS. Prieš naudojimą būtinai jį " +"išdžiovinkite." + +msgid "" +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " +"AMS, please use with caution." +msgstr "" +"Pastaba: CF/GF gijos yra kietos ir trapios. Jas lengva nulaužti arba jos " +"gali įstrigti AMS. Naudokite atsargiai." + +msgid "default" +msgstr "numatytas" + +#, boost-format +msgid "Edit Custom G-code (%1%)" +msgstr "Redaguoti pasirinktinį G-kodą (%1%)" + +msgid "Built-in placeholders (Double click item to add to G-code)" +msgstr "" +"Integruoti G-kodo fragmentai (dukart spustelėkite elementą, kad įterptumėte " +"į G-kodą)" + +msgid "Search G-code placeholders" +msgstr "Ieškoti G-kodo elementų" + +msgid "Add selected placeholder to G-code" +msgstr "Įtraukti pasirinktą elementą į G-kodą" + +msgid "Select placeholder" +msgstr "Pasirinkti elementą" + +msgid "[Global] Slicing State" +msgstr "[Globali] Sluoksniavimo būsena" + +msgid "Read Only" +msgstr "Tik skaitoma" + +msgid "Read Write" +msgstr "Skaityti ir rašyti" + +msgid "Slicing State" +msgstr "Sluoksniavimo būsena" + +msgid "Print Statistics" +msgstr "Spausdinimo statistika" + +msgid "Objects Info" +msgstr "Objekto informacija" + +msgid "Dimensions" +msgstr "Išmatavimai" + +msgid "Temperatures" +msgstr "Temperatūros" + +msgid "Timestamps" +msgstr "Laiko žymės" + +#, boost-format +msgid "Specific for %1%" +msgstr "Būdingas %1%" + +msgid "Presets" +msgstr "Profiliai" + +msgid "Print settings" +msgstr "Spausdinimo nustatymai" + +msgid "Filament settings" +msgstr "Gijos parametrai" + +msgid "SLA Materials settings" +msgstr "SLA medžiagų parametrai" + +msgid "Printer settings" +msgstr "Spausdintuvo nustatymai" + +msgid "parameter name" +msgstr "parametro pavadinimas" + +#, c-format, boost-format +msgid "%s can't be a percentage" +msgstr "%s negali būti procentai" + +#, c-format, boost-format +msgid "Value %s is out of range, continue?" +msgstr "Dydis %s netelpa į ribas. Tęsti?" + +msgid "Parameter validation" +msgstr "Parametrų patvirtinimas" + +#, c-format, boost-format +msgid "Value %s is out of range. The valid range is from %d to %d." +msgstr "Dydis %s netelpa į ribas. Tinkami dydžiai yra nuo %d iki %d." + +msgid "Value is out of range." +msgstr "Dydis netelpa į ribas." + +#, c-format, boost-format +msgid "" +"Is it %s%% or %s %s?\n" +"YES for %s%%, \n" +"NO for %s %s." +msgstr "" +"Ar tai %s%% ar %s %s?\n" +"TAIP %s%%, \n" +"NE %s %s." + +#, boost-format +msgid "" +"Invalid input format. Expected vector of dimensions in the following format: " +"\"%1%\"" +msgstr "" +"Netinkamas įvesties formatas. Numatytas matmenų vektorius tokiu formatu: " +"\"%1%\"" + +msgid "Input value is out of range" +msgstr "Įvesties vertė viršija ribas" + +msgid "Some extension in the input is invalid" +msgstr "Kai kurie įvesties plėtiniai yra netinkami" + +#, boost-format +msgid "Invalid format. Expected vector format: \"%1%\"" +msgstr "Netinkamas formatas. Tinkamas vektorinis formatas: \"%1%\"" + +msgid "Layer Height" +msgstr "Sluoksnio aukštis" + +msgid "Line Width" +msgstr "Linijos plotis" + +msgid "Fan Speed" +msgstr "Ventiliatoriaus greitis" + +msgid "Temperature" +msgstr "Temperatūra" + +msgid "Flow" +msgstr "Srautas" + +msgid "Tool" +msgstr "Įrankis" + +msgid "Layer Time" +msgstr "Sluoksnio laikas" + +msgid "Layer Time (log)" +msgstr "Sluoksnio laikas (log)" + +msgid "Height: " +msgstr "Aukštis: " + +msgid "Width: " +msgstr "Plotis: " + +msgid "Speed: " +msgstr "Greitis: " + +msgid "Flow: " +msgstr "Srautas: " + +msgid "Layer Time: " +msgstr "Sluoksnio laikas: " + +msgid "Fan: " +msgstr "Ventiliatorius: " + +msgid "Temperature: " +msgstr "Temperatūra: " + +msgid "Loading G-code" +msgstr "Įkeliami G-kodai" + +msgid "Generating geometry vertex data" +msgstr "Geometrijos viršūnių duomenų generavimas" + +msgid "Generating geometry index data" +msgstr "Geometrijos indeksų duomenų generavimas" + +msgid "Statistics of All Plates" +msgstr "Visų plokščių statistika" + +msgid "Display" +msgstr "Rodyti" + +msgid "Flushed" +msgstr "Pašalinta" + +msgid "Tower" +msgstr "Bokštas" + +msgid "Total" +msgstr "Iš viso" + +msgid "Total Estimation" +msgstr "Bendra sąmata" + +msgid "Total time" +msgstr "Bendras laikas" + +msgid "Total cost" +msgstr "Bendra kaina" + +msgid "up to" +msgstr "iki" + +msgid "above" +msgstr "aukščiau" + +msgid "from" +msgstr "nuo" + +msgid "Color Scheme" +msgstr "Spalvų schema" + +msgid "Time" +msgstr "Laikas" + +msgid "Percent" +msgstr "Procentai" + +msgid "Used filament" +msgstr "Naudota gija" + +msgid "Layer Height (mm)" +msgstr "Sluoksnio aukštis (mm)" + +msgid "Line Width (mm)" +msgstr "Linijos plotis (mm)" + +msgid "Speed (mm/s)" +msgstr "Greitis (mm/s)" + +msgid "Fan Speed (%)" +msgstr "Ventiliatoriaus greitis (%)" + +msgid "Temperature (°C)" +msgstr "Temperatūra (°C)" + +msgid "Volumetric flow rate (mm³/s)" +msgstr "Tūrinis srautas (mm³/s)" + +msgid "Travel" +msgstr "Judėjimas" + +msgid "Seams" +msgstr "Siūlės" + +msgid "Retract" +msgstr "Įtraukti" + +msgid "Unretract" +msgstr "Išleisti" + +msgid "Filament Changes" +msgstr "Gijų keitimai" + +msgid "Wipe" +msgstr "Valymas" + +msgid "Options" +msgstr "Parinktys" + +msgid "travel" +msgstr "judėjimas" + +msgid "Extruder" +msgstr "Ekstruderis" + +msgid "Filament change times" +msgstr "Gijų keitimo laikai" + +msgid "Cost" +msgstr "Kaina" + +msgid "Color change" +msgstr "Spalvos pakeitimas" + +msgid "Print" +msgstr "Spausdinti" + +msgid "Printer" +msgstr "Spausdintuvas" + +msgid "Tool Change" +msgstr "Įrankių keitimas" + +msgid "Time Estimation" +msgstr "Lako sąnaudos" + +msgid "Normal mode" +msgstr "Normalus režimas" + +msgid "Total Filament" +msgstr "Iš viso gijos" + +msgid "Model Filament" +msgstr "Gijos modeliams" + +msgid "Prepare time" +msgstr "Paruošimo laikas" + +msgid "Model printing time" +msgstr "Modelio spausdinimo laikas" + +msgid "Switch to silent mode" +msgstr "Persijungti į tylųjį režimą" + +msgid "Switch to normal mode" +msgstr "Persijungti į normalų režimą" + +msgid "Variable layer height" +msgstr "Kintamas sluoksnio aukštis" + +msgid "Adaptive" +msgstr "Prisitaikantis" + +msgid "Quality / Speed" +msgstr "Kokybė / Greitis" + +msgid "Smooth" +msgstr "Glotniai" + +msgid "Radius" +msgstr "Spindulys" + +msgid "Keep min" +msgstr "Laikyti min" + +msgid "Left mouse button:" +msgstr "Kairysis pelės mygtukas:" + +msgid "Add detail" +msgstr "Pridėti elementą" + +msgid "Right mouse button:" +msgstr "Dešinysis pelės mygtukas:" + +msgid "Remove detail" +msgstr "Pašalinti elementą" + +msgid "Shift + Left mouse button:" +msgstr "Shift + kairysis pelės mygtukas:" + +msgid "Reset to base" +msgstr "Iš naujo nustatyti į pagrindinį" + +msgid "Shift + Right mouse button:" +msgstr "Shift + dešinysis pelės mygtukas:" + +msgid "Smoothing" +msgstr "Glotninimas" + +msgid "Mouse wheel:" +msgstr "Pelės ratukas:" + +msgid "Increase/decrease edit area" +msgstr "Padidinti / sumažinti redagavimo sritį" + +msgid "Sequence" +msgstr "Seka" + +msgid "Mirror Object" +msgstr "Atspindėti objektą" + +msgid "Tool Move" +msgstr "Įrankio judėjimas" + +msgid "Tool Rotate" +msgstr "Įrankio sukimas" + +msgid "Move Object" +msgstr "Perkelti objektą" + +msgid "Auto Orientation options" +msgstr "Automatinio orientavimo parametrai" + +msgid "Enable rotation" +msgstr "Leisti sukimąsi" + +msgid "Optimize support interface area" +msgstr "Optimizuoti atramų sąlyčio plotą" + +msgid "Orient" +msgstr "Orientuoti" + +msgid "Arrange options" +msgstr "Išdėstymo parinktys" + +msgid "Spacing" +msgstr "Tarpai" + +msgid "0 means auto spacing." +msgstr "0 reiškia automatinius tarpus." + +msgid "Auto rotate for arrangement" +msgstr "Automatiškai pasukti išdėstymui" + +msgid "Allow multiple materials on same plate" +msgstr "Leisti skirtingas medžiagas ant tos pačios plokštės" + +msgid "Avoid extrusion calibration region" +msgstr "Vengti išspaudimo kalibravimo ploto" + +msgid "Align to Y axis" +msgstr "Išlygiuoti pagal Y ašį" + +msgid "Add plate" +msgstr "Įtraukti plokštę" + +msgid "Auto orient all/selected objects" +msgstr "Automatiškai orientuoti visi/pasirinkti objektai" + +msgid "Auto orient all objects on current plate" +msgstr "Automatiškai orientuoti visus objektus pasirinktoje plokštėje" + +msgid "Arrange all objects" +msgstr "Išdėstyti visus objektus" + +msgid "Arrange objects on selected plates" +msgstr "Išdėstyti objektus pasirinktose plokštėse" + +msgid "Split to objects" +msgstr "Padalinti į objektus" + +msgid "Split to parts" +msgstr "Padalinti į dalis" + +msgid "Assembly View" +msgstr "Surinkimo vaizdas" + +msgid "Select Plate" +msgstr "Pasirinkti plokštę" + +msgid "Assembly Return" +msgstr "Sugrąžinti surinkimą" + +msgid "Return" +msgstr "Grąžinti" + +msgid "Paint Toolbar" +msgstr "Piešimo įrankių juosta" + +msgid "Explosion Ratio" +msgstr "Plėtimosi santykis" + +msgid "Section View" +msgstr "Sekcijos peržiūra" + +msgid "Assemble Control" +msgstr "Surinkimo valdymas" + +msgid "Total Volume:" +msgstr "Visas tūris:" + +msgid "Assembly Info" +msgstr "Surinkimo informacija" + +msgid "Volume:" +msgstr "Tūris:" + +msgid "Size:" +msgstr "Dydis:" + +#, boost-format +msgid "" +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " +"separate the conflicted objects farther (%s <-> %s)." +msgstr "" +"Rasta G-kode judėjimo kelių konfliktų %d sluoksnyje, z = %.2lf mm. Prašome " +"labiau atskirti konfliktinius objektus (%s <-> %s)." + +msgid "An object is laid over the plate boundaries." +msgstr "Objektas yra už spausdinimo pagrindo ribų." + +msgid "A G-code path goes beyond the max print height." +msgstr "G-kode judėjimo maršrutas viršija maksimalų spausdinimo aukštį." + +msgid "A G-code path goes beyond the plate boundaries." +msgstr "G-kode judėjimo maršrutas išeina už spausdinimo plokštės ribų." + +msgid "Only the object being edited is visible." +msgstr "Matomas tik redaguojamas objektas." + +msgid "" +"An object is laid over the plate boundaries or exceeds the height limit.\n" +"Please solve the problem by moving it totally on or off the plate, and " +"confirming that the height is within the build volume." +msgstr "" +"Objektas yra už spausdinimo plokštės ribų arba viršija aukščio limitą.\n" +"Norėdami išspręsti problemą, perkelkite objektą visiškai ant plokštės arba " +"nuo jos ir įsitikinkite, kad aukštis yra leidžiamame spausdinimo tūryje." + +msgid "Calibration step selection" +msgstr "Kalibravimo žingsnio pasirinkimas" + +msgid "Micro lidar calibration" +msgstr "Mikro lidaro kalibravimas" + +msgid "Bed leveling" +msgstr "Spausdinimo pagrindo išlyginimas" + +msgid "Vibration compensation" +msgstr "Vibracijos kompensacija" + +msgid "Motor noise cancellation" +msgstr "Variklių garso sumažinimas" + +msgid "Calibration program" +msgstr "Kalibravimo programa" + +msgid "" +"The calibration program detects the status of your device automatically to " +"minimize deviation.\n" +"It keeps the device performing optimally." +msgstr "" +"Kalibravimo programa automatiškai nustato jūsų įrenginio būseną, kad " +"minimaliai nukryptų nuo parametrų.\n" +"Taip ji užtikrina optimalų įrenginio veikimą." + +msgid "Calibration Flow" +msgstr "Kalibravimo eiga" + +msgid "Start Calibration" +msgstr "Pradėti kalibravimą" + +msgid "Completed" +msgstr "Užbaigta" + +msgid "Calibrating" +msgstr "Kalibruojama" + +msgid "No step selected" +msgstr "Nepasirinktas žingsnis" + +msgid "Auto-record Monitoring" +msgstr "Automatinio įrašymo stebėjimas" + +msgid "Go Live" +msgstr "Įjungti spausdinimo stebėjimą" + +msgid "Liveview Retry" +msgstr "Pakartoti stebėjimą realiu laiku" + +msgid "Resolution" +msgstr "Skiriamoji geba" + +msgid "Enable" +msgstr "Įgalinti" + +msgid "Hostname or IP" +msgstr "Hosto vardas arba IP" + +msgid "Custom camera source" +msgstr "Pasirinktinės kameros šaltinis" + +msgid "Show \"Live Video\" guide page." +msgstr "Rodyti tiesioginio vaizdo vadovo puslapį." + +msgid "720p" +msgstr "720p" + +msgid "1080p" +msgstr "1080p" + +msgid "Connect Printer (LAN)" +msgstr "Prijungti spausdintuvą (LAN)" + +msgid "Please input the printer access code:" +msgstr "Prašome įvesti spausdintuvo prieigos kodą:" + +msgid "" +"You can find it in \"Settings > Network > Connection code\"\n" +"on the printer, as shown in the figure:" +msgstr "" +"Galite jį rasti spausdintuvo nustatymuose, skiltyje \"Tinklas\" > \n" +"\"Prisijungimo kodas\", kaip parodyta paveikslėlyje:" + +msgid "Invalid input." +msgstr "Netinkama įvestis." + +msgid "New Window" +msgstr "Naujas langas" + +msgid "Open a new window" +msgstr "Atidaryti naują langą" + +msgid "Application is closing" +msgstr "Programa uždaroma" + +msgid "Closing Application while some presets are modified." +msgstr "Programa bus uždaryta, nors kai kurie nustatymai neįrašyti." + +msgid "Logging" +msgstr "Registravimas" + +msgid "Preview" +msgstr "Peržiūra" + +msgid "Multi-device" +msgstr "Multiįrenginys" + +msgid "Project" +msgstr "Projektas" + +msgid "Yes" +msgstr "Taip" + +msgid "No" +msgstr "Ne" + +msgid "will be closed before creating a new model. Do you want to continue?" +msgstr "bus uždaryta prieš sukuriant modelį. Ar norite tęsti?" + +msgid "Slice plate" +msgstr "Sluoksniuoti plokštę" + +msgid "Print plate" +msgstr "Spausdinti plokštę" + +msgid "Slice all" +msgstr "Sluoksniuoti viską" + +msgid "Export G-code file" +msgstr "Eksportuoti G-kodo failą" + +msgid "Export plate sliced file" +msgstr "Eksportuoti sluoksniuotos plokštės failą" + +msgid "Export all sliced file" +msgstr "Eksportuoti visko sluoksniuoto failą" + +msgid "Print all" +msgstr "Spausdinti viską" + +msgid "Send all" +msgstr "Siųsti viską" + +msgid "Keyboard Shortcuts" +msgstr "Klaviatūros nuorodos" + +msgid "Show the list of the keyboard shortcuts" +msgstr "Rodyti sparčiųjų klavišų sąrašą" + +msgid "Setup Wizard" +msgstr "Nustatymų vedlys" + +msgid "Show Configuration Folder" +msgstr "Rodyti konfigūravimo katalogą" + +msgid "Show Tip of the Day" +msgstr "Rodyti dienos patarimą" + +msgid "Check for Update" +msgstr "Patikrinti ar nėra atnaujinimų" + +msgid "Open Network Test" +msgstr "Atidaryti tinklo testą" + +#, c-format, boost-format +msgid "&About %s" +msgstr "&Apie %s" + +msgid "Upload Models" +msgstr "Įkelti modelius" + +msgid "Download Models" +msgstr "Parsisiųsti modelius" + +msgid "Default View" +msgstr "Numatytas vaizdas" + +#. TRN To be shown in the main menu View->Top +msgid "Top" +msgstr "Viršutinis" + +msgid "Top View" +msgstr "Vaizdas iš viršaus" + +#. TRN To be shown in the main menu View->Bottom +msgid "Bottom" +msgstr "Apatinis" + +msgid "Bottom View" +msgstr "Vaizdas iš apačios" + +msgid "Front" +msgstr "Priekis" + +msgid "Front View" +msgstr "Vaizdas iš priekio" + +msgid "Rear" +msgstr "Galas" + +msgid "Rear View" +msgstr "Vaizdas iš galo" + +msgid "Left" +msgstr "Kairė" + +msgid "Left View" +msgstr "Vaizdas iš kairės" + +msgid "Right" +msgstr "Dešinė" + +msgid "Right View" +msgstr "Vaizdas iš dešinės" + +msgid "Start a new window" +msgstr "Pradėti naują langą" + +msgid "New Project" +msgstr "Naujas projektas" + +msgid "Start a new project" +msgstr "Pradėti naują projektą" + +msgid "Open a project file" +msgstr "Atidaryti projekto failą" + +msgid "Recent projects" +msgstr "Naujausi projektai" + +msgid "Save Project" +msgstr "Išsaugoti projektą" + +msgid "Save current project to file" +msgstr "Išsaugoti dabartinį projektą į failą" + +msgid "Save Project as" +msgstr "Išsaugoti projektą kaip" + +msgid "Shift+" +msgstr "Shift+" + +msgid "Save current project as" +msgstr "Išsaugoti dabartinį projektą kaip" + +msgid "Import 3MF/STL/STEP/SVG/OBJ/AMF" +msgstr "Importuoti 3MF/STL/STEP/SVG/OBJ/AMF" + +msgid "Load a model" +msgstr "Įkelti modelį" + +msgid "Import Zip Archive" +msgstr "Importuoti Zip archyvą" + +msgid "Load models contained within a zip archive" +msgstr "Įkelti modelius iš ZIP archyvo" + +msgid "Import Configs" +msgstr "Importuoti konfigūracijas" + +msgid "Load configs" +msgstr "Užkrauti konfigūracijas" + +msgid "Import" +msgstr "Importuoti" + +msgid "Export all objects as one STL" +msgstr "Eksportuoti visus objektus kaip vieną STL" + +msgid "Export all objects as STLs" +msgstr "Eksportuoti visus objektus kaip STL" + +msgid "Export Generic 3MF" +msgstr "Eksportuoti pagrindinį 3MF" + +msgid "Export 3mf file without using some 3mf-extensions" +msgstr "Eksportuoti 3MF failą nenaudojant kai kurių 3MF plėtinių" + +msgid "Export current sliced file" +msgstr "Eksportuoti dabartinį sluoksniuotą failą" + +msgid "Export all plate sliced file" +msgstr "Eksportuoti visų sluoksniuotų plokščių failą" + +msgid "Export G-code" +msgstr "Eksportuoti G-kodą" + +msgid "Export current plate as G-code" +msgstr "Eksportuoti dabartinę plokštę kaip G-kodą" + +msgid "Export Preset Bundle" +msgstr "Eksportuoti parametrų rinkinį" + +msgid "Export current configuration to files" +msgstr "Eksportuoti dabartinę konfigūraciją į failus" + +msgid "Export" +msgstr "Eksportuoti" + +msgid "Quit" +msgstr "Išeiti" + +msgid "Undo" +msgstr "Anuliuoti" + +msgid "Redo" +msgstr "Perdaryti" + +msgid "Cut selection to clipboard" +msgstr "Iškirpti pasirinktą į iškarpinę" + +msgid "Copy" +msgstr "Kopijuoti" + +msgid "Copy selection to clipboard" +msgstr "Nukopijuoti pasirinkimą į mainų sritį" + +msgid "Paste" +msgstr "Įklijuoti" + +msgid "Paste clipboard" +msgstr "Įklijuoti iškarpinės turinį" + +msgid "Delete selected" +msgstr "Ištrinti pasirinktus" + +msgid "Deletes the current selection" +msgstr "Ištrina pasirinktus" + +msgid "Delete all" +msgstr "Ištrinti viską" + +msgid "Deletes all objects" +msgstr "Ištrina visus objektus" + +msgid "Clone selected" +msgstr "Klonuoti pasirinktą" + +msgid "Clone copies of selections" +msgstr "Klonuoti pasirinktų kopijas" + +msgid "Duplicate Current Plate" +msgstr "Dubliuoti dabartinę plokštę" + +msgid "Duplicate the current plate" +msgstr "Dubliuoti dabartinę plokštelę" + +msgid "Select all" +msgstr "Pasirinkti viską" + +msgid "Selects all objects" +msgstr "Parenka visus objektus" + +msgid "Deselect all" +msgstr "Atžymėti visus pasirinkimus" + +msgid "Deselects all objects" +msgstr "Panaikina visų objektų pasirinkimą" + +msgid "Use Perspective View" +msgstr "Naudoti perspektyvinį vaizdą" + +msgid "Use Orthogonal View" +msgstr "Naudoti ortogonalų vaizdą" + +msgid "Auto Perspective" +msgstr "Automatinė perspektyva" + +msgid "" +"Automatically switch between orthographic and perspective when changing from " +"top/bottom/side views." +msgstr "" +"Automatiškai perjungti ortografinį ir perspektyvinį vaizdą, kai perjungiamas " +"vaizdas iš viršaus / apačios / šono." + +msgid "Show &G-code Window" +msgstr "Rodyti &G-kodo langą" + +msgid "Show G-code window in Preview scene." +msgstr "Rodyti g-kodo langą peržiūros vaizde" + +msgid "Show 3D Navigator" +msgstr "Rodyti 3D navigatorių" + +msgid "Show 3D navigator in Prepare and Preview scene." +msgstr "Rodyti 3D navigatorių paruošimo ir peržiūros scenose" + +msgid "Reset Window Layout" +msgstr "Atstatyti lango išdėstymą" + +msgid "Reset to default window layout" +msgstr "Atstatyti į pradinį lango išdėstymą" + +msgid "Show &Labels" +msgstr "Rodyti etiketes" + +msgid "Show object labels in 3D scene." +msgstr "3D scenoje rodyti objektų etiketes" + +msgid "Show &Overhang" +msgstr "Rodyti iškyšas" + +msgid "Show object overhang highlight in 3D scene." +msgstr "3D scenoje paryškinti iškyšas" + +msgid "Show Selected Outline (beta)" +msgstr "Rodyti pasirinktą kontūrą (beta)" + +msgid "Show outline around selected object in 3D scene." +msgstr "Rodyti kontūrą aplink pasirinktą objektą 3D scenoje" + +msgid "Preferences" +msgstr "Parinktys" + +msgid "Help" +msgstr "Pagalba" + +msgid "Temperature Calibration" +msgstr "Temperatūros kalibravimas" + +msgid "Pass 1" +msgstr "1 fazė" + +msgid "Flow rate test - Pass 1" +msgstr "Srauto testas - 1 fazė" + +msgid "Pass 2" +msgstr "2 fazė" + +msgid "Flow rate test - Pass 2" +msgstr "Srauto testas - 2 fazė" + +msgid "YOLO (Recommended)" +msgstr "YOLO (rekomenduojama)" + +msgid "Orca YOLO flowrate calibration, 0.01 step" +msgstr "„Orca YOLO“ srauto kalibravimas, 0,01 žingsnis" + +msgid "YOLO (perfectionist version)" +msgstr "YOLO (perfekcionistinė versija)" + +msgid "Orca YOLO flowrate calibration, 0.005 step" +msgstr "„Orca YOLO“ srauto kalibravimas, 0,005 žingsnis" + +msgid "Flow rate" +msgstr "Srauto greitis" + +msgid "Pressure advance" +msgstr "Filamento tiekimas posūkio metu" + +msgid "Retraction test" +msgstr "Įtraukimo testas" + +msgid "Orca Tolerance Test" +msgstr "Orca tolerancijos testas" + +msgid "Max flowrate" +msgstr "Maks srautas" + +msgid "VFA" +msgstr "VFA" + +msgid "More..." +msgstr "Daugiau..." + +msgid "Tutorial" +msgstr "Pamokos" + +msgid "Calibration help" +msgstr "Kalibravimo pagalba" + +msgid "More calibrations" +msgstr "Daugiau kalibravimų" + +msgid "&Open G-code" +msgstr "Atidaryti G-kodą" + +msgid "Open a G-code file" +msgstr "Atidaryti G-kodo failą" + +msgid "Re&load from Disk" +msgstr "Iš naujo įke<i iš disko" + +msgid "Reload the plater from disk" +msgstr "Iš naujo įkelkite plokštę iš disko" + +msgid "Export &Toolpaths as OBJ" +msgstr "Eksportas ir įrankių trajektorijos kaip OBJ" + +msgid "Export toolpaths as OBJ" +msgstr "Eksportuoti įrankių trajektorijas OBJ formatu" + +msgid "Open &Slicer" +msgstr "Atidaryti &sluoksniuotoją" + +msgid "Open Slicer" +msgstr "Atidaryti sluoksniuotoją" + +msgid "&Quit" +msgstr "Išeiti" + +#, c-format, boost-format +msgid "Quit %s" +msgstr "Išeiti iš %s" + +msgid "&File" +msgstr "&Failas" + +msgid "&View" +msgstr "&Vaizdas" + +msgid "&Help" +msgstr "Pagalba" + +#, c-format, boost-format +msgid "A file exists with the same name: %s, do you want to overwrite it?" +msgstr "Failas tokiu pavadinimu jau egzistuoja: %s. Ar norite jį pakeisti?" + +#, c-format, boost-format +msgid "A config exists with the same name: %s, do you want to overwrite it?" +msgstr "" +"Konfigūracija tokiu pavadinimu jau egzistuoja: %s. Ar norite ją pakeisti?" + +msgid "Overwrite file" +msgstr "Perrašyti failą" + +msgid "Overwrite config" +msgstr "Perrašyti konfigūraciją" + +msgid "Yes to All" +msgstr "Taip viskam" + +msgid "No to All" +msgstr "Ne viskam" + +msgid "Choose a directory" +msgstr "Pasirinkite katalogą" + +#, c-format, boost-format +msgid "There is %d config exported. (Only non-system configs)" +msgid_plural "There are %d configs exported. (Only non-system configs)" +msgstr[0] "Eksportuota %d konfigūracija. (tik nesisteminė konfigūracija)" +msgstr[1] "Eksportuotos %d konfigūracijos. (tik nesisteminės konfigūracijos)" +msgstr[2] "Eksportuota %d konfigūracijų. (tik nesisteminės konfigūracijos)" + +msgid "Export result" +msgstr "Eksportuoti rezultatą" + +msgid "Select profile to load:" +msgstr "Pasirinkite profilį įkėlimui:" + +#, c-format, boost-format +msgid "There is %d config imported. (Only non-system and compatible configs)" +msgid_plural "" +"There are %d configs imported. (Only non-system and compatible configs)" +msgstr[0] "" +"Įkelta %d konfigūracija. (Tik nesisteminė ir suderinama konfigūracija)" +msgstr[1] "" +"Įkeltos %d konfigūracijos. (Tik nesisteminės ir suderinamos konfigūracijos)" +msgstr[2] "" +"Įkelta %d konfigūracijų. (Tik nesisteminės ir suderinamos konfigūracijos)" + +msgid "" +"\n" +"Hint: Make sure you have added the corresponding printer before importing " +"the configs." +msgstr "" +"\n" +"Pastaba: Prieš įkeliant konfigūracijas įsitikinkite, kad pridėjote " +"atitinkamą spausdintuvą." + +msgid "Import result" +msgstr "Importuoti rezultatą" + +msgid "File is missing" +msgstr "Trūksta failo" + +msgid "The project is no longer available." +msgstr "Projektas nebepasiekiamas." + +msgid "Filament Settings" +msgstr "Gijos nustatymai" + +msgid "" +"Do you want to synchronize your personal data from Bambu Cloud?\n" +"It contains the following information:\n" +"1. The Process presets\n" +"2. The Filament presets\n" +"3. The Printer presets" +msgstr "" +"Ar norite sinchronizuoti asmeninius duomenis iš Bambu Cloud?\n" +"Juose yra ši informacija:\n" +"1. Procesų išankstiniai nustatymai\n" +"2. Filamento išankstiniai nustatymai\n" +"3. Spausdintuvo išankstiniai nustatymai" + +msgid "Synchronization" +msgstr "Sinchronizacija" + +msgid "The device cannot handle more conversations. Please retry later." +msgstr "" +"Įrenginys, su kuriuo bandote bendrauti, šiuo metu yra perkrautas ir negali " +"palaikyti daugiau pokalbių. Pabandykite vėliau." + +msgid "Player is malfunctioning. Please reinstall the system player." +msgstr "Grotuvas neveikia tinkamai. Prašome iš naujo įdiegti sistemos grotuvą." + +msgid "The player is not loaded, please click \"play\" button to retry." +msgstr "" +"Grotuvas neįkeltas. Spustelėkite \"paleisti\" mygtuką, kad bandytumėte iš " +"naujo." + +msgid "Please confirm if the printer is connected." +msgstr "Prašome patvirtinti, kas spausdintuvas prijungtas." + +msgid "" +"The printer is currently busy downloading. Please try again after it " +"finishes." +msgstr "" +"Spausdintuvas šiuo metu siunčiasi naujinį. Pabandykite dar kartą, kai " +"atsisiuntimas bus baigtas." + +msgid "Printer camera is malfunctioning." +msgstr "Spausdintuvo kamera neveikia tinkamai." + +msgid "A problem occurred. Please update the printer firmware and try again." +msgstr "" +"Iškilo problema. Atnaujinkite spausdintuvo programinę įrangą ir bandykite " +"dar kartą." + +msgid "" +"LAN Only Liveview is off. Please turn on the liveview on printer screen." +msgstr "" +"LAN tiesioginė peržiūra („Liveview“) išjungta. Įjunkite tiesioginę peržiūrą " +"spausdintuvo ekrane." + +msgid "Please enter the IP of printer to connect." +msgstr "Prašome įvesti norimo prijungti spausdintuvo IP adresą." + +msgid "Initializing..." +msgstr "Inicializuojama..." + +msgid "Connection Failed. Please check the network and try again" +msgstr "Ryšio klaida. Patikrinkite tinklą ir bandykite dar kartą" + +msgid "" +"Please check the network and try again. You can restart or update the " +"printer if the issue persists." +msgstr "" +"Ryšio klaida. Patikrinkite tinklą ir bandykite dar kartą. Jei problema " +"neišnyksta, galite pabandyti iš naujo paleisti arba atnaujinti spausdintuvą." + +msgid "The printer has been logged out and cannot connect." +msgstr "Spausdintuvas atsijungė ir nebegali prisijungti." + +msgid "Video Stopped." +msgstr "Vaizdo įrašas sustabdytas." + +msgid "LAN Connection Failed (Failed to start liveview)" +msgstr "LAN prisijungimo klaida (Nepavyko paleisti tiesioginės peržiūros)" + +msgid "" +"Virtual Camera Tools is required for this task!\n" +"Do you want to install them?" +msgstr "" +"Šiai užduočiai reikia Virtualios kameros įrankių!\n" +"Ar norite juos instaliuoti?" + +msgid "Downloading Virtual Camera Tools" +msgstr "Atsisiunčiami virtualios kameros įrankiai" + +msgid "" +"Another virtual camera is running.\n" +"Orca Slicer supports only a single virtual camera.\n" +"Do you want to stop this virtual camera?" +msgstr "" +"Veikia kita virtuali kamera.\n" +"Orca Slicer palaiko tik vieną virtualią kamerą.\n" +"Ar norite sustabdyti šią virtualią kamerą?" + +#, c-format, boost-format +msgid "Virtual camera initialize failed (%s)!" +msgstr "Nepavyko inicijuoti virtualios kameros (%s)!" + +msgid "Network unreachable" +msgstr "Tinklas nepasiekiamas" + +msgid "Information" +msgstr "Informacija" + +msgid "Playing..." +msgstr "Leidžiama..." + +msgid "Year" +msgstr "Metai" + +msgid "Month" +msgstr "Mėnuo" + +msgid "All Files" +msgstr "Visi failai" + +msgid "Group files by year, recent first." +msgstr "Grupuoti failus pagal metus, naujausi pirmiausia." + +msgid "Group files by month, recent first." +msgstr "Grupuoti failus pagal mėnesį, naujausi pirmiausia." + +msgid "Show all files, recent first." +msgstr "Rodyti visus failus, naujausi pradžioje." + +msgid "Switch to timelapse files." +msgstr "Perjungti į pakadrinio video failus." + +msgid "Video" +msgstr "Video" + +msgid "Switch to video files." +msgstr "Perjungti į video failus." + +msgid "Switch to 3mf model files." +msgstr "Perjungti į 3MF modelių failus." + +msgid "Delete selected files from printer." +msgstr "Ištrinti pasirinktus failus iš spausdintuvo." + +msgid "Download" +msgstr "Parsisiųsti" + +msgid "Download selected files from printer." +msgstr "Atsisiųsti pasirinktus failus iš spausdintuvo." + +msgid "Select" +msgstr "Pasirinkti" + +msgid "Batch manage files." +msgstr "Valdyti fails rinkinyje." + +msgid "Refresh" +msgstr "Atnaujinti" + +msgid "Reload file list from printer." +msgstr "Iš naujo iš spausdintuvo įkelti failų sąrašą." + +msgid "No printers." +msgstr "Bėra spausdintuvų." + +msgid "Loading file list..." +msgstr "Įkeliamas failų sąrašas..." + +msgid "No files" +msgstr "Nėra failų" + +msgid "Load failed" +msgstr "Įkėlimas nepavyko" + +msgid "" +"Browsing file in SD card is not supported in current firmware. Please update " +"the printer firmware." +msgstr "" +"Failų naršymas SD kortelėje nepalaikomas naudojant dabartinę programinę " +"įrangą (firmware). Atnaujinkite spausdintuvo programinę įrangą." + +msgid "" +"Please check if the SD card is inserted into the printer.\n" +"If it still cannot be read, you can try formatting the SD card." +msgstr "" +"Patikrinkite, ar SD kortelė įdėta į spausdintuvą.\n" +"Jei jos vis tiek nepavyksta nuskaityti, galite pabandyti suformatuoti SD " +"kortelę." + +msgid "LAN Connection Failed (Failed to view sdcard)" +msgstr "LAN ryšio klaida (Nepavyko pasiekti SD kortelės)" + +msgid "Browsing file in SD card is not supported in LAN Only Mode." +msgstr "Failų naršymas SD kortelėje nepalaikomas LAN Only režime." + +#, c-format, boost-format +msgid "You are going to delete %u file from printer. Are you sure to continue?" +msgid_plural "" +"You are going to delete %u files from printer. Are you sure to continue?" +msgstr[0] "Ketinate ištrinti %u failą iš spausdintuvo. Ar norite tęsti?" +msgstr[1] "Ketinate ištrinti %u failus iš spausdintuvo. Ar norite tęsti?" +msgstr[2] "Ketinate ištrinti %u failų iš spausdintuvo. Ar norite tęsti?" + +msgid "Delete files" +msgstr "Ištrinti failus" + +#, c-format, boost-format +msgid "Do you want to delete the file '%s' from printer?" +msgstr "Ar norite ištrinti failą \"%s\" iš spausdintuvo?" + +msgid "Delete file" +msgstr "Ištrinti failą" + +msgid "Fetching model information..." +msgstr "Modelio informacijos rinkimas..." + +msgid "Failed to fetch model information from printer." +msgstr "Nepavyko iš spausdintuvo gauti modelio informacijos." + +msgid "Failed to parse model information." +msgstr "Nepavyko apdoroti modelio informacijos." + +msgid "" +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." +msgstr "" +".gcode.3mf faile nėra G-kodo duomenų. Susluoksniuokite failą su Orca Slicer " +"ir eksportuokite naują .gcode.3mf failą." + +#, c-format, boost-format +msgid "File '%s' was lost! Please download it again." +msgstr "Failas '%s' prarastas! Prašome parsisiųsti jį dar kartą." + +#, c-format, boost-format +msgid "" +"File: %s\n" +"Title: %s\n" +msgstr "" +"Failas: %s\n" +"Pavadinimas: %s\n" + +msgid "Download waiting..." +msgstr "Laikia atsisiuntimas..." + +msgid "Play" +msgstr "Leisti" + +msgid "Open Folder" +msgstr "Atverti katalogą" + +msgid "Download finished" +msgstr "Atsisiuntimas baigtas" + +#, c-format, boost-format +msgid "Downloading %d%%..." +msgstr "Atsisiunčiama %d%%..." + +msgid "" +"Reconnecting the printer, the operation cannot be completed immediately, " +"please try again later." +msgstr "" +"Bandant prisijungti prie spausdintuvo, operacija negali būti atlikta iš " +"karto. Pabandykite dar kartą vėliau." + +msgid "File does not exist." +msgstr "Failas neegzistuoja." + +msgid "File checksum error. Please retry." +msgstr "Failo kontrolinės sumos klaida. Prašome pakartoti." + +msgid "Not supported on the current printer version." +msgstr "Nepalaikoma dabartinio spausdintuvo versijos." + +msgid "Storage unavailable, insert SD card." +msgstr "Saugykla nepasiekiama, įdėkite SD kortelę." + +#, c-format, boost-format +msgid "Error code: %d" +msgstr "Klaidos kodas: %d" + +msgid "Speed:" +msgstr "Greitis:" + +msgid "Deadzone:" +msgstr "Akla zona:" + +msgid "Options:" +msgstr "Pasirinkimai:" + +msgid "Zoom" +msgstr "Padidinti" + +msgid "Translation/Zoom" +msgstr "Konvertavimas/Mastelio keitimas" + +msgid "3Dconnexion settings" +msgstr "3Dconnexion nustatymai" + +msgid "Swap Y/Z axes" +msgstr "Sukeisti Y/Z ašis" + +msgid "Invert X axis" +msgstr "Apsukti X ašį" + +msgid "Invert Y axis" +msgstr "Apsukti Y ašį" + +msgid "Invert Z axis" +msgstr "Apsukti Z ašį" + +msgid "Invert Yaw axis" +msgstr "Apsukti posūkio aplink ašį" + +msgid "Invert Pitch axis" +msgstr "Apsukti polinkio ašį" + +msgid "Invert Roll axis" +msgstr "Apsukti ritinio ašį" + +msgid "Printing Progress" +msgstr "Spausdinimo eiga" + +msgid "0" +msgstr "0" + +msgid "Layer: N/A" +msgstr "Sluoksnis: N/A" + +msgid "Clear" +msgstr "Išvalyti" + +msgid "" +"You have completed printing the mall model, \n" +"but the synchronization of rating information has failed." +msgstr "" +"Sėkmingai išspausdinote mažą modelį, tačiau \n" +"įvertinimo informacijos sinchronizavimas nepavyko." + +msgid "How do you like this printing file?" +msgstr "Kaip jums patiko šis spausdinimo failas?" + +msgid "" +"(The model has already been rated. Your rating will overwrite the previous " +"rating.)" +msgstr "" +"(Modelis jau buvo įvertintas. Jūsų įvertinimas perrašys ankstesnį " +"įvertinimą.)" + +msgid "Rate" +msgstr "Įvertinti" + +msgid "Camera" +msgstr "Kamera" + +msgid "SD Card" +msgstr "SD kortelė" + +msgid "Camera Setting" +msgstr "Kameros nustatymai" + +msgid "Switch Camera View" +msgstr "Perjungti kameros vaizdą" + +msgid "Control" +msgstr "Valdyti" + +msgid "Printer Parts" +msgstr "Spasdintuvo dalys" + +msgid "Print Options" +msgstr "Spausdinimo parametrai" + +msgid "100%" +msgstr "100%" + +msgid "Lamp" +msgstr "Apšvietimas" + +msgid "Aux" +msgstr "Papild" + +msgid "Cham" +msgstr "Kam" + +msgid "Bed" +msgstr "Pagrindas" + +msgid "Debug Info" +msgstr "Derinimo informacija" + +msgid "No SD Card" +msgstr "Nėra SD kortelės" + +msgid "SD Card Abnormal" +msgstr "SD kortelė netinkama" + +msgid "Cancel print" +msgstr "Atšaukti spausdinimą" + +msgid "Are you sure you want to cancel this print?" +msgstr "Ar tikrai norite sustabdyti šį spausdinimą?" + +msgid "Downloading..." +msgstr "Atsisunčiama..." + +msgid "Cloud Slicing..." +msgstr "Sluoksniavimas debesyje..." + +#, c-format, boost-format +msgid "In Cloud Slicing Queue, there are %s tasks ahead." +msgstr "Debesies sluoksniavimo eilėje yra dar %s užduotys priekyje." + +#, c-format, boost-format +msgid "Layer: %s" +msgstr "Sluoksnis: %s" + +#, c-format, boost-format +msgid "Layer: %d/%d" +msgstr "Sluoksnis: %d/%d" + +#, fuzzy +msgid "" +"Please heat the nozzle to above 170°C before loading or unloading filament." +msgstr "" +"Prašome prieš įtraukiant ar išstumiant giją įkaitinti purkštuką virš 170 " +"laipsnių." + +msgid "Still unload" +msgstr "Vis dar išstumiama" + +msgid "Still load" +msgstr "Vis dar įtraukiama" + +msgid "Please select an AMS slot before calibration." +msgstr "Prieš kalibruodami pasirinkite AMS lizdą" + +msgid "" +"Cannot read filament info: the filament is loaded to the tool head, please " +"unload the filament and try again." +msgstr "" +"Neįmanoma nuskaityti gijos informacijos: gija įtraukta į galvutę. Prašome " +"išstumti giją ir pabandyti dar kartą." + +msgid "This only takes effect during printing" +msgstr "Tai turi įtakos tik spausdinimo metu" + +msgid "Silent" +msgstr "Tyliai" + +msgid "Standard" +msgstr "Standartinis" + +msgid "Sport" +msgstr "Sportiškai" + +msgid "Ludicrous" +msgstr "Žaibiškai" + +msgid "Can't start this without SD card." +msgstr "Negalima šito pradėti be SD kortelės." + +msgid "Rate the Print Profile" +msgstr "Įvertinkite spausdinimo profilį" + +msgid "Comment" +msgstr "Kometarai" + +msgid "Rate this print" +msgstr "Įvertinkite šį spausdinį" + +msgid "Add Photo" +msgstr "Įtraukti nuotrauką" + +msgid "Delete Photo" +msgstr "Ištrinti nuotrauką" + +msgid "Submit" +msgstr "Viskas tinka" + +msgid "Please click on the star first." +msgstr "Pirmiausia paspauskite žvaigždutę." + +msgid "InFo" +msgstr "Informacija" + +msgid "Get oss config failed." +msgstr "Nepavyko gauti OSS konfigūracijos." + +msgid "Upload Pictures" +msgstr "Įkelti paveikslėlius" + +msgid "Number of images successfully uploaded" +msgstr "Paveiksliukų skaičius sėkmingai įkeltas" + +msgid " upload failed" +msgstr " įkėlimas nepavyko" + +msgid " upload config prase failed\n" +msgstr " nepavyko apdoroti konfigūracijos įkėlimo\n" + +msgid " No corresponding storage bucket\n" +msgstr " Nėra atitinkamo saugojimo talpyklos\n" + +msgid " cannot be opened\n" +msgstr " negalima atverti\n" + +msgid "" +"The following issues occurred during the process of uploading images. Do you " +"want to ignore them?\n" +"\n" +msgstr "" +"Įkeliant vaizdus kilo šios problemos. Ar norite jas ignoruoti?\n" +"\n" + +msgid "info" +msgstr "info" + +msgid "Synchronizing the printing results. Please retry a few seconds later." +msgstr "" +"Sinchronizuojami spausdinimo rezultatai. Pabandykite dar kartą po kelių " +"akimirkų." + +msgid "Upload failed\n" +msgstr "Įkėlimas nepavyko\n" + +msgid "obtaining instance_id failed\n" +msgstr "Nepavyko gauti instance_id\n" + +msgid "" +"Your comment result cannot be uploaded due to the following reasons:\n" +"\n" +" error code: " +msgstr "" +"Jūsų komentaro rezultato nepavyko įkelti dėl kelių priežasčių. Apie jas " +"pranešama toliau:\n" +"\n" +" klaidos kodas: " + +msgid "error message: " +msgstr "klaidos pranešimas: " + +msgid "" +"\n" +"\n" +"Would you like to redirect to the webpage to give a rating?" +msgstr "" +"\n" +"\n" +"Norite būti nukreipti į puslapį, kuriame galima įvertinti?" + +msgid "" +"Some of your images failed to upload. Would you like to redirect to the " +"webpage to give a rating?" +msgstr "" +"Nepavyko įkelti kai kurių jūsų vaizdų. Norite būti nukreipti į puslapį, " +"kuriame galite įvertinti?" + +msgid "You can select up to 16 images." +msgstr "Jūs galite pasirinkti iki 16 paveikslėlių." + +msgid "" +"At least one successful print record of this print profile is required \n" +"to give a positive rating (4 or 5 stars)." +msgstr "" +"Norint palikti teigiamą įvertinimą (4 arba 5 žvaigždutės), būtinas \n" +"bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu." + +msgid "Status" +msgstr "Būsena" + +msgid "Update" +msgstr "Atnaujinti" + +msgid "Don't show again" +msgstr "Daugiau nerodyti" + +#, c-format, boost-format +msgid "%s error" +msgstr "%s klaida" + +#, c-format, boost-format +msgid "%s has encountered an error" +msgstr "%s įvyko klaida" + +#, c-format, boost-format +msgid "%s warning" +msgstr "%s įspėjimas" + +#, c-format, boost-format +msgid "%s has a warning" +msgstr "%s turi įspėjimą" + +#, c-format, boost-format +msgid "%s info" +msgstr "%s info" + +#, c-format, boost-format +msgid "%s information" +msgstr "%s informacija" + +msgid "Skip" +msgstr "Praleisti" + +msgid "Newer 3mf version" +msgstr "Naujesnė 3mf versija" + +msgid "" +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"version." +msgstr "" +"3MF failo versija yra Beta versijos, t.y. naujesnė, negu dabartinė Orca " +"Slicer versija." + +msgid "If you would like to try Orca Slicer Beta, you may click to" +msgstr "Jei norite pabandyti Orca Slicer Beta, turėtumėte spustelėti" + +msgid "Download Beta Version" +msgstr "Atsisiųsti Beta versiją" + +msgid "The 3mf file version is newer than the current Orca Slicer version." +msgstr "3MF versija yra naujesnė, negu dabar naudojama Orca Slicer versija." + +msgid "Update your Orca Slicer could enable all functionality in the 3mf file." +msgstr "" +"Atnaujinus Orca Slicer programinę įrangą galėsite naudoti visas 3mf failo " +"funkcijas." + +msgid "Current Version: " +msgstr "Dabartinė versija: " + +msgid "Latest Version: " +msgstr "Paskutinė versija: " + +msgid "Not for now" +msgstr "Dabar ne" + +msgid "Server Exception" +msgstr "Serverio išimtis" + +msgid "" +"The server is unable to respond. Please click the link below to check the " +"server status." +msgstr "" +"Serveris negali atsakyti. Norėdami patikrinti serverio būseną, spustelėkite " +"toliau pateiktą nuorodą." + +msgid "" +"If the server is in a fault state, you can temporarily use offline printing " +"or local network printing." +msgstr "" +"Jei serveris yra sugedęs, galite laikinai naudoti spausdinimą neprisijungus " +"arba spausdinimą vietiniame tinkle." + +msgid "How to use LAN only mode" +msgstr "Kaip naudoti tik LAN režimą" + +msgid "Don't show this dialog again" +msgstr "Daugiau nerodyti šio dialogo lango" + +msgid "3D Mouse disconnected." +msgstr "3D pelė atjungta." + +msgid "Configuration can update now." +msgstr "Yra nauja konfigūracija. Atnaujinti dabar?" + +msgid "Detail." +msgstr "Daugiau." + +msgid "Integration was successful." +msgstr "Integracija sėkminga." + +msgid "Integration failed." +msgstr "Integracija nepavyko." + +msgid "Undo integration was successful." +msgstr "Integracijos atšaukimas sėkmingas." + +msgid "New network plug-in available." +msgstr "Galimas naujas tinklo papildinys." + +msgid "Details" +msgstr "Smulkiau" + +msgid "New printer config available." +msgstr "Pasiekiama nauja spausdintuvo konfigūracija." + +msgid "Wiki" +msgstr "Wiki" + +msgid "Undo integration failed." +msgstr "Integracijos atšaukimas nepavyko." + +msgid "Exporting." +msgstr "Eksportuojama." + +msgid "Software has New version." +msgstr "Yra atnaujinimas!" + +msgid "Goto download page." +msgstr "Eikite į atsisiuntimo puslapį." + +msgid "Open Folder." +msgstr "Atverti katalogą." + +msgid "Safely remove hardware." +msgstr "Saugiai atjunkite įrangą." + +#, c-format, boost-format +msgid "%1$d Object has custom supports." +msgid_plural "%1$d Objects have custom supports." +msgstr[0] "%1$d objektas turi pasirinktines atramas." +msgstr[1] "%1$d objektai turi pasirinktines atramas." +msgstr[2] "%1$d objektų turi pasirinktines atramas." + +#, c-format, boost-format +msgid "%1$d Object has color painting." +msgid_plural "%1$d Objects have color painting." +msgstr[0] "%1$d objektas yra spalvotas." +msgstr[1] "%1$d objektai yra spalvoti." +msgstr[2] "%1$d objektų yra spalvoti." + +#, c-format, boost-format +msgid "%1$d object was loaded as a part of cut object." +msgid_plural "%1$d objects were loaded as parts of cut object." +msgstr[0] "%1$d objektas įkeltas kaip sluoksniuojamo objekto dalis." +msgstr[1] "%1$d objektai įkelti kaip sluoksniuojamo objekto dalys." +msgstr[2] "%1$d objektų įkelta kaip sluoksniuojamo objekto dalis." + +msgid "ERROR" +msgstr "KLAIDA" + +msgid "COMPLETED" +msgstr "UŽBAIGTA" + +msgid "CANCELED" +msgstr "ATŠAUKTA" + +msgid "Cancel upload" +msgstr "Atšaukti įkėlimą" + +msgid "Jump to" +msgstr "Peršokti į" + +msgid "Error:" +msgstr "Klaida:" + +msgid "Warning:" +msgstr "Dėmesio:" + +msgid "Exported successfully" +msgstr "Sėkmingai eksportuota." + +msgid "Model file downloaded." +msgstr "Modelio failas parsiųstas." + +msgid "Serious warning:" +msgstr "Svarbus įspėjimas:" + +msgid " (Repair)" +msgstr " (Taisyti)" + +msgid " Click here to install it." +msgstr " Spustelkite čia įdiegimui." + +msgid "WARNING:" +msgstr "ĮSPĖJIMAS:" + +msgid "Your model needs support! Please make support material enable." +msgstr "Jūsų modeliui reikia atramų! Prašome įjungti atramų medžiagą." + +msgid "G-code path overlap" +msgstr "G-kodo kelių persidengimas" + +msgid "Support painting" +msgstr "Atramų piešimas" + +msgid "Color painting" +msgstr "Spalvų piešimas" + +msgid "Cut connectors" +msgstr "Pjūvių jungtys" + +msgid "Layers" +msgstr "Sluoksniai" + +msgid "Range" +msgstr "Diapazonas" + +msgid "" +"The application cannot run normally because OpenGL version is lower than " +"2.0.\n" +msgstr "" +"Programa negali normaliai veikti, nes OpenGL versija yra žemesnė nei 2.0.\n" + +msgid "Please upgrade your graphics card driver." +msgstr "Prašome atnaujinti jūsų grafinės plokštės programinę įrangą." + +msgid "Unsupported OpenGL version" +msgstr "Nepalaikoma OpenGL versija" + +#, c-format, boost-format +msgid "" +"Unable to load shaders:\n" +"%s" +msgstr "" +"Neįmanoma įkelti šeiderių:\n" +"%s" + +msgid "Error loading shaders" +msgstr "Įkeliant šeiderius įvyko klaida" + +msgctxt "Layers" +msgid "Top" +msgstr "Viršutinis" + +msgctxt "Layers" +msgid "Bottom" +msgstr "Apatinis" + +msgid "Enable AI monitoring of printing" +msgstr "Įjungti DI spausdinimo stebėjimą" + +msgid "Sensitivity of pausing is" +msgstr "Pristabdymo jautrumas yra" + +msgid "Enable detection of build plate position" +msgstr "Įjungti spausdinimo pagrindo pozicijos atpažinimą" + +msgid "" +"The localization tag of build plate is detected, and printing is paused if " +"the tag is not in predefined range." +msgstr "" +"Spausdinimo pagrindo lokalizavimo žymė įjungta. Spausdinimas bus " +"pristabdytas, jei žymė išeis už nustatytų ribų." + +msgid "First Layer Inspection" +msgstr "Pirmojo sluoksnio apžiūra" + +msgid "Auto-recovery from step loss" +msgstr "Atstatymas po žingsnių praleidimo" + +msgid "Allow Prompt Sound" +msgstr "Leisti garsus" + +msgid "Filament Tangle Detect" +msgstr "Aptikti gijos susipainiojimus" + +msgid "Nozzle Clumping Detection" +msgstr "Antgalio užsikimšimo aptikimas" + +msgid "Check if the nozzle is clumping by filament or other foreign objects." +msgstr "Patikrinti, ar purkštukas neužsikimšo dėl gijos ar pašalinių objektų." + +msgid "Nozzle Type" +msgstr "Purkštuko tipas" + +msgid "Stainless Steel" +msgstr "Nerūdijantis plienas" + +msgid "Hardened Steel" +msgstr "Grūdintas plienas" + +#, c-format, boost-format +msgid "%.1f" +msgstr "%.1f" + +msgid "Global" +msgstr "Bendras" + +msgid "Objects" +msgstr "Objektai" + +msgid "Advance" +msgstr "Detaliau" + +msgid "Compare presets" +msgstr "Palyginti išankstinius nustatymus" + +msgid "View all object's settings" +msgstr "Matyti visus objekto nustatymus" + +msgid "Material settings" +msgstr "Medžiagos nustatymai" + +msgid "Remove current plate (if not last one)" +msgstr "Pašalinti dabartinę plokštę (jei ji ne paskutinė)" + +msgid "Auto orient objects on current plate" +msgstr "Automatiškai suorientuoti objektus dabartinėje plokštėje" + +msgid "Arrange objects on current plate" +msgstr "Išdėstyti objektus dabartinėje plokštėje" + +msgid "Unlock current plate" +msgstr "Atrakinti dabartinę plokštę" + +msgid "Lock current plate" +msgstr "Užrakinti dabartinę plokštę" + +msgid "Edit current plate name" +msgstr "Taisyti dabartinės plokštės pavadinimą" + +msgid "Move plate to the front" +msgstr "Perkelti plokštę į priekį" + +msgid "Customize current plate" +msgstr "Individualizuoti esamą plokštę" + +#, boost-format +msgid " plate %1%:" +msgstr " plokštė %1%:" + +msgid "Invalid name, the following characters are not allowed:" +msgstr "Netinkamas pavadinimas. Neleidžiami simboliai:" + +msgid "Sliced Info" +msgstr "Sluoksniavimo informacija" + +msgid "Used Filament (m)" +msgstr "Naudota gija (m)" + +msgid "Used Filament (mm³)" +msgstr "Naudota gija (mm³)" + +msgid "Used Filament (g)" +msgstr "Naudota gija (g)" + +msgid "Used Materials" +msgstr "Sunaudota medžiagų" + +msgid "Estimated time" +msgstr "Numatomas laikas" + +msgid "Filament changes" +msgstr "Gijos keitimai" + +msgid "Click to edit preset" +msgstr "Spustelėkite norėdami redaguoti išankstinį nustatymą" + +msgid "Connection" +msgstr "Ryšys" + +msgid "Bed type" +msgstr "Pagrindo tipas" + +msgid "Flushing volumes" +msgstr "Valymo tūriai" + +msgid "Add one filament" +msgstr "Pridėti vieną giją" + +msgid "Remove last filament" +msgstr "Pašalinti paskutinę giją" + +msgid "Synchronize filament list from AMS" +msgstr "Sinchronizuoti gijų sąrašą iš AMS" + +msgid "Set filaments to use" +msgstr "Nustatyti gijas naudojimui" + +msgid "Search plate, object and part." +msgstr "Plokštės, objekto ir dalies paieška." + +msgid "Pellets" +msgstr "Granulės" + +msgid "" +"No AMS filaments. Please select a printer in 'Device' page to load AMS info." +msgstr "" +"Nėra AMS gijų. Kad būtų galima įkelti AMS informaciją, pasirinkite " +"spausdintuvą \"Įrenginių\" puslapyje." + +msgid "Sync filaments with AMS" +msgstr "Sinchronizuoti gijas su AMS" + +msgid "" +"Sync filaments with AMS will drop all current selected filament presets and " +"colors. Do you want to continue?" +msgstr "" +"Sinchronizuojant gijas su AMS bus prarasti visi dabartiniai gijų parametrai " +"ir spalvos. Ar norite tęsti?" + +msgid "" +"Already did a synchronization, do you want to sync only changes or resync " +"all?" +msgstr "" +"Sinchronizavimas jau atliktas. Ar norite sinchronizuoti tik pakeitimus, ar " +"iš naujo sinchronizuoti viską?" + +msgid "Sync" +msgstr "Sinchronizuoti" + +msgid "Resync" +msgstr "Viską" + +msgid "There are no compatible filaments, and sync is not performed." +msgstr "Čia nėra suderinamų gijų, sinchronizacija nebuvo atlikta." + +msgid "" +"There are some unknown filaments mapped to generic preset. Please update " +"Orca Slicer or restart Orca Slicer to check if there is an update to system " +"presets." +msgstr "" +"Yra keletas nežinomų gijų, priskirtų bendram išankstiniam nustatymui. " +"Atnaujinkite Orca Slicer arba paleiskite Orca Slicer iš naujo, kad " +"patikrintų, ar yra sistemos išankstinių nustatymų atnaujinimas." + +#, boost-format +msgid "Do you want to save changes to \"%1%\"?" +msgstr "Ar norite išsaugoti \"%1%\" pakeitimus?" + +#, c-format, boost-format +msgid "" +"Successfully unmounted. The device %s (%s) can now be safely removed from the " +"computer." +msgstr "" +"Sėkmingai atjungtas. Įrenginį %s(%s) dabar galima saugiai išimti iš " +"kompiuterio." + +#, c-format, boost-format +msgid "Ejecting of device %s(%s) has failed." +msgstr "Nepavyko išstumti įrenginio %s(%s)." + +msgid "Previous unsaved project detected, do you want to restore it?" +msgstr "Aptiktas ankstesnis neišsaugotas projektas. Ar norite jį atkurti?" + +msgid "Restore" +msgstr "Atkurti" + +msgid "" +"The current hot bed temperature is relatively high. The nozzle may be " +"clogged when printing this filament in a closed enclosure. Please open the " +"front door and/or remove the upper glass." +msgstr "" +"Kaitinamo pagrindo temperatūra yra gana aukšta. Spausdinant šią giją " +"uždaroje kameroje, antgalis gali užsikimšti. Prašome atidaryti priekines " +"duris ir (arba) nuimti viršutinį stiklą." + +msgid "" +"The nozzle hardness required by the filament is higher than the default " +"nozzle hardness of the printer. Please replace the hardened nozzle or " +"filament, otherwise, the nozzle will be attrited or damaged." +msgstr "" +"Gijai reikalingas kietesnis negu standartinis šio spausdintuvo antgalis. " +"Norint išvengti antgalio dilimo ar pažeidimo, rekomenduojama pakeisti esamą " +"antgalį į kietesnį, arba naudoti kitą giją, kuriai tinka standartinis " +"antgalis." + +msgid "" +"Enabling traditional timelapse photography may cause surface imperfections. " +"It is recommended to change to smooth mode." +msgstr "" +"Įjungus standartinę pakadrinę fotografiją galimi paviršiaus nelygumai. " +"Rekomenduojama perjungti į glotnų režimą." + +msgid "Expand sidebar" +msgstr "Išskleisti šoninę juostą" + +msgid "Collapse sidebar" +msgstr "Sutraukti šoninę juostą" + +#, c-format, boost-format +msgid "Loading file: %s" +msgstr "Įkeliamas failas: %s" + +msgid "The 3mf is not supported by OrcaSlicer, load geometry data only." +msgstr "3MF nepalaikomas Orca Slicer. Įkeliami tik geometrijos duomenys." + +msgid "Load 3mf" +msgstr "Įkelti 3MF" + +#, c-format, boost-format +msgid "" +"The 3mf's version %s is newer than %s's version %s, found following keys " +"unrecognized:" +msgstr "" +"3MF failo versija %s yra naujesnė nei %s versija %s. Rasta šių neatpažintų " +"raktų:" + +msgid "You'd better upgrade your software.\n" +msgstr "Geriau jau atnaujinkite savo programinę įrangą\n" + +#, c-format, boost-format +msgid "" +"The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " +"software." +msgstr "" +"3MF failo versija %s yra naujesnė nei %s versija %s. Siūloma atnaujinti jūsų " +"programinę įrangą." + +msgid "Invalid values found in the 3mf:" +msgstr "3MF rasti netinkami duomenys:" + +msgid "Please correct them in the param tabs" +msgstr "Prašome juos ištaisyti parametrų skirtukuose" + +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" +msgstr "" +"3MF faile yra šie modifikuoti G-kodai gijos ar spausdintuvo iš anksto " +"nustatytuose parametruose:" + +msgid "" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" +msgstr "" +"Prašome patvirtinti, kad šie modifikuoti G-kodai yra saugūs ir nesugadins " +"jūsų įrangos!" + +msgid "Modified G-code" +msgstr "Modifikuotas G-kodas" + +msgid "The 3mf has the following customized filament or printer presets:" +msgstr "3MF faile yra pakeistų gijos ar spausdinimo nustatymų:" + +msgid "" +"Please confirm that the G-code within these presets is safe to prevent any " +"damage to the machine!" +msgstr "" +"Prašome patvirtinti, kad šiuose nustatymuose esantys G-kodai yra saugūs ir " +"nesugadins jūsų įrangos!" + +msgid "Customized Preset" +msgstr "Pakeisti nustatymai" + +msgid "Name of components inside step file is not UTF8 format!" +msgstr "Komponentų pavadinimai STEP faile nėra UTF-8 formato!" + +msgid "The name may show garbage characters!" +msgstr "Pavadinimas gali rodyti neskaitomus simbolius!" + +msgid "Remember my choice." +msgstr "Prisiminti pasirinkimus." + +#, boost-format +msgid "Failed loading file \"%1%\". An invalid configuration was found." +msgstr "Nepavyko įkelti \"%1%\" failo. Aptikta netinkama konfigūracija." + +msgid "Objects with zero volume removed" +msgstr "Nulinio tūrio objektai pašalinti" + +msgid "The volume of the object is zero" +msgstr "Objekto tūris nulinis" + +#, c-format, boost-format +msgid "" +"The object from file %s is too small, and maybe in meters or inches.\n" +" Do you want to scale to millimeters?" +msgstr "" +"Objektas iš failo „%s“ yra per mažas ir galimai nurodytas metrais arba " +"coliais.\n" +"Ar norite mastelį pakeisti į milimetrus?" + +msgid "Object too small" +msgstr "Objektas per mažas" + +msgid "" +"This file contains several objects positioned at multiple heights.\n" +"Instead of considering them as multiple objects, should \n" +"the file be loaded as a single object having multiple parts?" +msgstr "" +"Šiame faile yra keli objektai, išdėstyti keliuose aukščiuose.\n" +"Ar užuot laikius juos atskirais objektais, reikėtų\n" +"įkelti failą kaip vieną objektą, turintį kelias dalis?" + +msgid "Multi-part object detected" +msgstr "Aptiktas kelių dalių objektas" + +msgid "Load these files as a single object with multiple parts?\n" +msgstr "Ar įkelti šiuos failus kaip vieną objektą su keliomis detalėmis?\n" + +msgid "Object with multiple parts was detected" +msgstr "Aptiktas objektas su keliomis detalėmis" + +msgid "The file does not contain any geometry data." +msgstr "Faile nėra jokių geometrinių duomenų." + +msgid "" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" +msgstr "" +"Jūsų objektas per didelis. Ar norite jį sumažinti automatiškai, kad tilptų " +"ant spausdinimo plokštės?" + +msgid "Object too large" +msgstr "Objektas per didelis" + +msgid "Export STL file:" +msgstr "Eksportuoti STL failą:" + +msgid "Export AMF file:" +msgstr "Eksportuoti AMF failą:" + +msgid "Save file as:" +msgstr "Išsaugoti failą kaip:" + +msgid "Export OBJ file:" +msgstr "Eksportuoti OBJ failą:" + +#, c-format, boost-format +msgid "" +"The file %s already exists\n" +"Do you want to replace it?" +msgstr "" +"Failas %s jau yra\n" +"Ar norite jį perrašyti?" + +msgid "Confirm Save As" +msgstr "Patvirtinti Išsaugoti kaip" + +msgid "Delete object which is a part of cut object" +msgstr "Pašalinti objektą su dalimi perpjauto objekto" + +msgid "" +"You try to delete an object which is a part of a cut object.\n" +"This action will break a cut correspondence.\n" +"After that model consistency can't be guaranteed." +msgstr "" +"Bandote ištrinti objektą, kuris yra supjaustyto objekto dalis.\n" +"Šis veiksmas sugadins pjovimo atitikimą.\n" +"Po šio veiksmo modelio vientisumas negali būti garantuotas." + +msgid "The selected object couldn't be split." +msgstr "Pasirinkto objekto negalima suskaidyti." + +msgid "Another export job is running." +msgstr "Vyksta kitas eksportavimo procesas." + +msgid "Unable to replace with more than one volume" +msgstr "Nepavyko pakeisti daugiau nei vienu tomu" + +msgid "Error during replace" +msgstr "Klaida keičiant" + +msgid "Replace from:" +msgstr "Pakeisti iš:" + +msgid "Select a new file" +msgstr "Pasirinkite naują failą" + +msgid "File for the replace wasn't selected" +msgstr "Nepasirinktas keičiamas failas" + +msgid "Please select a file" +msgstr "Prašome pasirinkti failą" + +msgid "Do you want to replace it" +msgstr "Ar norite jį pakeisti?" + +msgid "Message" +msgstr "Pranešimas" + +msgid "Reload from:" +msgstr "Įkelti iš naujo iš:" + +msgid "Unable to reload:" +msgstr "Nepavyko įkelti iš naujo:" + +msgid "Error during reload" +msgstr "Klaida įkeliant iš naujo" + +msgid "There are warnings after slicing models:" +msgstr "Po sluoksniavimo yra įspėjimų:" + +msgid "warnings" +msgstr "įspėjimai" + +msgid "Invalid data" +msgstr "Netinkami duomenys" + +msgid "Slicing Canceled" +msgstr "Sluoksniavimas atšauktas" + +#, c-format, boost-format +msgid "Slicing Plate %d" +msgstr "Sluoksniuojama plokštė %d" + +msgid "Please resolve the slicing errors and publish again." +msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą." + +msgid "" +"Network Plug-in is not detected. Network related features are unavailable." +msgstr "" +"Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės." + +msgid "" +"Preview only mode:\n" +"The loaded file contains G-code only, cannot enter the Prepare page." +msgstr "" +"Tik peržiūros režimas:\n" +"Įkeltas failas turi tik G-kodą. Negalima pereiti į Paruošimo režimą" + +msgid "You can keep the modified presets to the new project or discard them" +msgstr "" +"Jūs galite išsaugoti pakeistus nustatymus naujam projektui arba juos ištrinti" + +msgid "Creating a new project" +msgstr "Naujo projekto kūrimas" + +msgid "Load project" +msgstr "Įkelti projektą" + +msgid "" +"Failed to save the project.\n" +"Please check whether the folder exists online or if other programs open the " +"project file." +msgstr "" +"Nepavyko išsaugoti projekto.\n" +"Prašome patikrinti, ar nurodytas katalogas egzistuoja tinkle ir ar kitos " +"programos nenaudoja projekto failo." + +msgid "Save project" +msgstr "Išsaugoti projektą" + +msgid "Importing Model" +msgstr "Importuojamas modelis" + +msgid "prepare 3mf file..." +msgstr "paruošti 3MF failą..." + +msgid "Download failed, unknown file format." +msgstr "Atsisuntimas nepavyko, nežinomas failo tipas." + +msgid "downloading project..." +msgstr "projektas atsisiunčiamas..." + +msgid "Download failed, File size exception." +msgstr "Atsisiųsti nepavyko. Failo dydžio išimtis." + +#, c-format, boost-format +msgid "Project downloaded %d%%" +msgstr "Projektas atsisiųstas %d%%" + +msgid "" +"Importing to Orca Slicer failed. Please download the file and manually " +"import it." +msgstr "" +"Nepavyko importuoti į Orca Slicer. Prašome atsisiųsti failą ir rankiniu būdu " +"jį importuoti." + +msgid "INFO:" +msgstr "INFO:" + +msgid "" +"No accelerations provided for calibration. Use default acceleration value " +msgstr "" +"Kalibravimui nepateikti jokie pagreičiai. Naudokite numatytąją pagreičio " +"vertę " + +msgid "mm/s²" +msgstr "mm/s²" + +msgid "No speeds provided for calibration. Use default optimal speed " +msgstr "Kalibravimo greičiai nenumatyti. Naudokite numatytąjį optimalų greitį " + +msgid "mm/s" +msgstr "mm/s" + +msgid "Import SLA archive" +msgstr "Importuoti SLA archyvą" + +msgid "The selected file" +msgstr "Pasirinktame faile" + +msgid "does not contain valid G-code." +msgstr "nėra galiojančio G-kodo." + +msgid "Error occurs while loading G-code file" +msgstr "Įkeliant G-kodo failą įvyko klaida" + +#. TRN %1% is archive path +#, boost-format +msgid "Loading of a ZIP archive on path %1% has failed." +msgstr "Nepavyko įkelti %1% esančio ZIP archyvo." + +#. TRN: First argument = path to file, second argument = error description +#, boost-format +msgid "Failed to unzip file to %1%: %2%" +msgstr "Nepavyko išskleisti zip failo į %1%: %2%" + +#, boost-format +msgid "Failed to find unzipped file at %1%. Unzipping of file has failed." +msgstr "Nepavyko %1% rasti išskleisto zip failo. Nepavyko išskleisti failo." + +msgid "Drop project file" +msgstr "Užmeskite projekto failą" + +msgid "Please select an action" +msgstr "Prašome pasirinkti veiksmą" + +msgid "Open as project" +msgstr "Atidaryti kaip projektą" + +msgid "Import geometry only" +msgstr "Importuoti tik geometriją" + +msgid "" +"This option can be changed later in preferences, under 'Load Behaviour'." +msgstr "" +"Šią parinktį galima pakeisti vėliau nustatymuose, skiltyje „Įkelti elgseną“." + +msgid "Only one G-code file can be opened at the same time." +msgstr "Vienu metu gali būti atidarytas tik vienas G-kodo failas." + +msgid "G-code loading" +msgstr "Įkeliamas G-kodas" + +msgid "G-code files cannot be loaded with models together!" +msgstr "G-kodas negali būti įkeltas kartu su modeliais!" + +msgid "Cannot add models when in preview mode!" +msgstr "Negalima pridėti modelių peržiūros režime!" + +msgid "All objects will be removed, continue?" +msgstr "Visi objektai bus pašalinti, ar tęsti?" + +msgid "The current project has unsaved changes, save it before continue?" +msgstr "" +"Dabartiniame projekte yra neišsaugotų pakeitimų. Ar išsaugoti prieš tęsiant?" + +msgid "Number of copies:" +msgstr "Kopijų skaičius:" + +msgid "Copies of the selected object" +msgstr "Pasirinkto objekto kopijos" + +msgid "Save G-code file as:" +msgstr "Išsaugoti G-kodo failą kaip:" + +msgid "Save SLA file as:" +msgstr "Išsaugoti SLA failą kaip:" + +msgid "The provided file name is not valid." +msgstr "Pateiktas failo pavadinimas netinkamas." + +msgid "The following characters are not allowed by a FAT file system:" +msgstr "FAT failų sistemoje neleidžiami šie simboliai:" + +msgid "Save Sliced file as:" +msgstr "Išsaugoti susluoksniuotą failą kaip:" + +#, c-format, boost-format +msgid "" +"The file %s has been sent to the printer's storage space and can be viewed " +"on the printer." +msgstr "" +"Failas %s išsiųstas į spausdintuvo saugyklą ir gali būti peržiūrimas " +"spausdintuve." + +msgid "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be kept. You may fix the meshes and try again." +msgstr "" +"Nepavyksta atlikti loginės operacijos su modelio tinkleliais. Bus išsaugotos " +"tik teigiamos dalys. Galite pataisyti tinklelius ir bandyti dar kartą." + +#, boost-format +msgid "Reason: part \"%1%\" is empty." +msgstr "Priežastis: tuščia \"%1%\" detalė." + +#, boost-format +msgid "Reason: part \"%1%\" does not bound a volume." +msgstr "\"Priežastis: dalis \"%1%\" neapibrėžia tūrio." + +#, boost-format +msgid "Reason: part \"%1%\" has self intersection." +msgstr "Priežastis: dalis \"%1%\" kertasi su savimi." + +#, boost-format +msgid "Reason: \"%1%\" and another part have no intersection." +msgstr "Priežastis: \"%1%\" ir kita dalis nesikerta." + +msgid "" +"Unable to perform boolean operation on model meshes. Only positive parts " +"will be exported." +msgstr "" +"Nepavyksta atlikti loginės operacijos su modelio figūromis. Eksportuojamos " +"tik teigiamos dalys." + +msgid "" +"Are you sure you want to store original SVGs with their local paths into the " +"3MF file?\n" +"If you hit 'NO', all SVGs in the project will not be editable any more." +msgstr "" +"Ar tikrai norite saugoti originalius SVG failus su jų lokaliais keliais 3MF " +"faile?\n" +"Jei pasirinksite „NE“, visi projekto SVG failai daugiau nebus redaguojami." + +msgid "Private protection" +msgstr "Privatumo apsauga" + +msgid "Is the printer ready? Is the print sheet in place, empty and clean?" +msgstr "" +"Ar spausdintuvas pasiruošęs? Ar spausdinimo plokštuma yra vietoje, tuščia ir " +"švari?" + +msgid "Upload and Print" +msgstr "Įkelti ir spausdinti" + +msgid "" +"Print By Object: \n" +"Suggest to use auto-arrange to avoid collisions when printing." +msgstr "" +"Spausdinimas pagal objektus:\n" +"Siekiant spausdinant išvengti susidūrimų, patariama naudoti automatinį " +"išdėstymą." + +msgid "Send G-code" +msgstr "Siųsti G-kodą" + +msgid "Send to printer" +msgstr "Siųsti į spausdintuvą" + +msgid "Custom supports and color painting were removed before repairing." +msgstr "Prieš taisymą pašalintos pasirinktinės aramos ir dažymas spalvomis." + +msgid "Optimize Rotation" +msgstr "Optimizuoti sukimąsi" + +msgid "Invalid number" +msgstr "Netinkamas skaičius" + +msgid "Plate Settings" +msgstr "Plokštės parametrai" + +#, boost-format +msgid "Number of currently selected parts: %1%\n" +msgstr "Dabar pasirinktų detalių skaičius: %1%\n" + +#, boost-format +msgid "Number of currently selected objects: %1%\n" +msgstr "Dabar pasirinktų objektų skaičius: %1%\n" + +#, boost-format +msgid "Part name: %1%\n" +msgstr "Detalės pavadinimas: %1%\n" + +#, boost-format +msgid "Object name: %1%\n" +msgstr "Objekto pavadinimas: %1%\n" + +#, boost-format +msgid "Size: %1% x %2% x %3% in\n" +msgstr "Dydis: %1% x %2% x %3% col\n" + +#, boost-format +msgid "Size: %1% x %2% x %3% mm\n" +msgstr "Dydis: %1% x %2% x %3% mm\n" + +#, boost-format +msgid "Volume: %1% in³\n" +msgstr "Tūris: %1% col³\n" + +#, boost-format +msgid "Volume: %1% mm³\n" +msgstr "Tūris: %1% mm³\n" + +#, boost-format +msgid "Triangles: %1%\n" +msgstr "Trikampių: %1%\n" + +msgid "Tips:" +msgstr "Patarimai:" + +msgid "" +"\"Fix Model\" feature is currently only on Windows. Please repair the model " +"on Orca Slicer(windows) or CAD softwares." +msgstr "" +"Funkcija „Pataisyti modelį“ šiuo metu pasiekiama tik „Windows“. Pataisykite " +"modelį „Orca Slicer“ („Windows“) arba CAD programinėje įrangoje." + +#, c-format, boost-format +msgid "" +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " +"to non-zero." +msgstr "" +"Plokštė %d: %s nesiūloma naudoti spausdinant gijomis %s(%s). Jei vis tiek " +"norite spausdinti, nustatykite nenulinę pagrindo šiai gijai temperatūrą." + +msgid "Switching the language requires application restart.\n" +msgstr "Kalbos keitimas reikalauja programos paleidimo iš naujo.\n" + +msgid "Do you want to continue?" +msgstr "Ar norite tęsti?" + +msgid "Language selection" +msgstr "Kalbos pasirinkimas" + +msgid "Switching application language while some presets are modified." +msgstr "Keičiama programos kalba esant kai kurių nustatymų pakeitimams." + +msgid "Changing application language" +msgstr "Keičiama programos kalba" + +msgid "Changing the region will log out your account.\n" +msgstr "Keičiant regioną bus atjungta jūsų paskyra.\n" + +msgid "Region selection" +msgstr "Regiono pasirinkimas" + +msgid "Second" +msgstr "Antrasis" + +msgid "Browse" +msgstr "Naršyti" + +msgid "Choose Download Directory" +msgstr "Pasirinkite parsisiuntimo katalogą" + +msgid "Associate" +msgstr "Susietas" + +msgid "with OrcaSlicer so that Orca can open models from" +msgstr "su \"OrcaSlicer\", kad \"Orca\" galėtų atverti modelius iš" + +msgid "Current Association: " +msgstr "Dabartinis susiejimas: " + +msgid "Current Instance" +msgstr "Dabartinė versija" + +msgid "Current Instance Path: " +msgstr "Dabartinės versijos kelias: " + +msgid "General Settings" +msgstr "Bendri nustatymai" + +msgid "Asia-Pacific" +msgstr "Azija-Ramusis vandenynas" + +msgid "China" +msgstr "Kinija" + +msgid "Europe" +msgstr "Europa" + +msgid "North America" +msgstr "Šiaurės Amerika" + +msgid "Others" +msgstr "Kita" + +msgid "Login Region" +msgstr "Prisijungimo regionas" + +msgid "Stealth Mode" +msgstr "Slaptas režimas" + +msgid "" +"This stops the transmission of data to Bambu's cloud services. Users who " +"don't use BBL machines or use LAN mode only can safely turn on this function." +msgstr "" +"Įjungus šią funkciją, sustabdomas duomenų perdavimas į „Bambu“ debesijos " +"paslaugas. Šią funkciją gali drąsiai įjungti naudotojai, kurie nesinaudoja " +"„BBL“ įrenginiais arba naudoja tik LAN režimą." + +msgid "Enable network plugin" +msgstr "Įjungti tinklo papildinį" + +msgid "Check for stable updates only" +msgstr "Tikrinti tik stabilius atnaujinimus" + +msgid "Metric" +msgstr "Metrinė" + +msgid "Imperial" +msgstr "Imperinė" + +msgid "Units" +msgstr "Vienetai" + +msgid "Allow only one OrcaSlicer instance" +msgstr "Leisti tik vieną Orca Slicer egzempliorių" + +msgid "" +"On OSX there is always only one instance of app running by default. However " +"it is allowed to run multiple instances of same app from the command line. " +"In such case this settings will allow only one instance." +msgstr "" +"OSX visada veikia tik vienas programos egzempliorius pagal numatytuosius " +"nustatymus. Tačiau komandinėje eilutėje leidžiama paleisti kelis tos pačios " +"programos egzempliorius. Šiuo atveju nustatymai leis tik vieną egzempliorių." + +msgid "" +"If this is enabled, when starting OrcaSlicer and another instance of the " +"same OrcaSlicer is already running, that instance will be reactivated " +"instead." +msgstr "" +"Jei įjungta, paleidus „Orca Slicer“ kai kitas tos pačios „Orca Slicer“ " +"programos egzempliorius jau veikia, bus suaktyvintas tas jau veikiantis " +"egzempliorius, o ne paleistas naujas." + +msgid "Home" +msgstr "Pradžia" + +msgid "Default Page" +msgstr "Numatytas puslapis" + +msgid "Set the page opened on startup." +msgstr "Nustatyti, kuris puslapis atsidarys paleidus programą." + +msgid "Touchpad" +msgstr "Jutiklinis kilimėlis" + +msgid "Camera style" +msgstr "Kameros stilius" + +msgid "" +"Select camera navigation style.\n" +"Default: LMB+move for rotation, RMB/MMB+move for panning.\n" +"Touchpad: Alt+move for rotation, Shift+move for panning." +msgstr "" +"Pasirinkite kameros valdymo stilių.\n" +"Numatytasis: Kairysis pelės mygtukas + judinti - sukimui, dešinys pelės " +"mygtukas / vidurinis pelės mygtukas + judinti - perkėlimui.\n" +"Jutiklinis kilimėlis: Alt + judinti - sukimui, Shift + judinti - perkėlimui." + +msgid "Zoom to mouse position" +msgstr "Išdidinti iki pelės vietos" + +msgid "" +"Zoom in towards the mouse pointer's position in the 3D view, rather than the " +"2D window center." +msgstr "" +"\"Priartinti prie pelės rodiklio padėties 3D vaizde, o ne prie 2D lango " +"centro." + +msgid "Use free camera" +msgstr "Naudoti laisvą kamerą" + +msgid "If enabled, use free camera. If not enabled, use constrained camera." +msgstr "" +"Jei įjungta, naudoti laisvą kamerą. Jei neįjungta, naudoti stacionarią " +"kamerą." + +msgid "Swap pan and rotate mouse buttons" +msgstr "Sukeisti judėjimą ir sukimąsi pelės mygtuko" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Jei įjungta, sukeičia kairiojo ir dešiniojo pelės mygtukų panoraminio ir pasukimo funkcijas." + +msgid "Reverse mouse zoom" +msgstr "Apversti pelės didinimą" + +msgid "If enabled, reverses the direction of zoom with mouse wheel." +msgstr "Jei įjungta, apverčia didinimo ar mažinimo kryptį pelės ratuku." + +msgid "Show splash screen" +msgstr "Rodyti paleidimo ekraną" + +msgid "Show the splash screen during startup." +msgstr "Paleidžiant programą rodyti informacinį ekramą." + +msgid "Show \"Tip of the day\" notification after start" +msgstr "Pradėjus rodyti pranešimą „Dienos patarimas“" + +msgid "If enabled, useful hints are displayed at startup." +msgstr "Jei įjungta, paleidžiant rodomi naudingi patarimai." + +msgid "Flushing volumes: Auto-calculate every time the color changed." +msgstr "" +"Išmetimo apimtys: Automatinis skaičiavimas kaskart, kai pasikeičia spalva." + +msgid "If enabled, auto-calculate every time the color changed." +msgstr "" +"Jei įjungta, automatinis skaičiavimas atliekamas kaskart, kai pasikeičia " +"spalva." + +msgid "" +"Flushing volumes: Auto-calculate every time when the filament is changed." +msgstr "" +"Valymo erdvės: Automatiškai perskaičiuoti kiekvieną kartą pasikeitus gijai." + +msgid "If enabled, auto-calculate every time when filament is changed" +msgstr "" +"Jei įjungtas, kiekvieną kartą pasikeitus gijai automatiškai perskaičiuoja" + +msgid "Remember printer configuration" +msgstr "Atsiminti spausdintuvo konfigūraciją" + +msgid "" +"If enabled, Orca will remember and switch filament/process configuration for " +"each printer automatically." +msgstr "" +"Jei įjungta, Orca Slicer automatiškai prisimins ir perjungs gijos ir proceso " +"konfigūracijas kiekvienams spausdintuvui." + +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." +msgstr "" +"Kelių įrenginių valdymas (įsigalios tik po programos paleidimo iš naujo)." + +msgid "" +"With this option enabled, you can send a task to multiple devices at the " +"same time and manage multiple devices." +msgstr "" +"Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrenginiams vienu " +"metu, taip apt kontroliuoti keletą įrenginių." + +msgid "Auto arrange plate after cloning" +msgstr "Automatinis plokštės sutvarkymas po klonavimo" + +msgid "Auto arrange plate after object cloning" +msgstr "Automatinis plokštės išdėstymas po objekto klonavimo" + +msgid "Network" +msgstr "Tinklas" + +msgid "Auto sync user presets (Printer/Filament/Process)" +msgstr "" +"Automatiškai sinchronizuoti naudotojo nustatymus (spausdintuvas/gija/" +"procesas)" + +msgid "User Sync" +msgstr "Naudotojo sinchronizavimas" + +msgid "Update built-in Presets automatically." +msgstr "Automatinis įmontuotų nustatymų atnaujinimas." + +msgid "System Sync" +msgstr "Sistemos sinchronizavimas" + +msgid "Clear my choice on the unsaved presets." +msgstr "Išvalyti mano pasirinkimą neišsaugotuose nustatymuose." + +msgid "Associate files to OrcaSlicer" +msgstr "Susieti failus su Orca Slicer" + +msgid "Associate .3mf files to OrcaSlicer" +msgstr "Susieti .3mf failus su Orca Slicer" + +msgid "If enabled, sets OrcaSlicer as default application to open .3mf files" +msgstr "" +"Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytasis .3mf failų atidarymo " +"įrankis" + +msgid "Associate .stl files to OrcaSlicer" +msgstr "Susieti .stl failus su Orca Slicer" + +msgid "If enabled, sets OrcaSlicer as default application to open .stl files" +msgstr "" +"Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytoji programa .stl failams " +"atverti" + +msgid "Associate .step/.stp files to OrcaSlicer" +msgstr "Susieti .step/.stp failus su Orca Slicer" + +msgid "If enabled, sets OrcaSlicer as default application to open .step files" +msgstr "" +"Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytoji programa .step " +"failams atverti" + +msgid "Associate web links to OrcaSlicer" +msgstr "Susieti interneto nuorodas su Orca Slicer" + +msgid "Associate URLs to OrcaSlicer" +msgstr "Susieti URL su Orca Slicer" + +msgid "Load All" +msgstr "Įkelti viską" + +msgid "Ask When Relevant" +msgstr "Klausti, kai aktualu" + +msgid "Always Ask" +msgstr "Visada klausti" + +msgid "Load Geometry Only" +msgstr "Įkelti tik geometriją" + +msgid "Load Behaviour" +msgstr "Įkelti elgseną" + +msgid "Should printer/filament/process settings be loaded when opening a .3mf?" +msgstr "" +"Ar atidarant .3mf failą reikia įkelti spausdintuvo / gijų / proceso " +"nustatymus?" + +msgid "Maximum recent projects" +msgstr "Daugiausia buvusių projektų" + +msgid "Maximum count of recent projects" +msgstr "Didžiausias skaičius buvusių projektų" + +msgid "Clear my choice on the unsaved projects." +msgstr "Išvalyti mano pasirinkimus neišsaugotuose projektuose." + +msgid "No warnings when loading 3MF with modified G-code" +msgstr "Nerodyti perspėjimų įkeliant 3MF su modifikuotais G-kodais" + +msgid "Auto-Backup" +msgstr "Automatinis atsarginis kopijavimas" + +msgid "" +"Backup your project periodically for restoring from the occasional crash." +msgstr "" +"Periodiškai saugoti jūsų projekto atsargines kopijas kad programos gedimo " +"atveju jį būtų galima atkurti." + +msgid "every" +msgstr "kiekvienas" + +msgid "The period of backup in seconds." +msgstr "Atsarginės kopijos kūrimo laikotarpis sekundėmis." + +msgid "Downloads" +msgstr "Atsisuntimai" + +msgid "Dark Mode" +msgstr "Tamsusis režimas" + +msgid "Enable Dark mode" +msgstr "Įjungti tamsųjį režimą" + +msgid "Develop mode" +msgstr "Kūrėjo režimas" + +msgid "Skip AMS blacklist check" +msgstr "Praleisti AMS draudžiamo sąrašo tikrinimą" + +msgid "Home page and daily tips" +msgstr "Pagrindinis puslapis ir dienos patarimai" + +msgid "Show home page on startup" +msgstr "Startuojant rodyti pagrindinį puslapį" + +msgid "Sync settings" +msgstr "Sinchronizavimo nustatymai" + +msgid "User sync" +msgstr "Naudotojo sinchronizavimas" + +msgid "Preset sync" +msgstr "Nustatymų sinchronizavimas" + +msgid "Preferences sync" +msgstr "Pasirinkimų sinchronizavimas" + +msgid "View control settings" +msgstr "Peržiūrėti valdymo nustatymus" + +msgid "Rotate of view" +msgstr "Vaizdo sukimas" + +msgid "Move of view" +msgstr "Vaizdo perkėlimas" + +msgid "Zoom of view" +msgstr "Vaizdo didinimas" + +msgid "Other" +msgstr "Kita" + +msgid "Mouse wheel reverses when zooming" +msgstr "Apversta pelės ratuko didinimo kryptis" + +msgid "Enable SSL(MQTT)" +msgstr "Įjungti SSL (MQTT)" + +msgid "Enable SSL(FTP)" +msgstr "Įjungti SSL (FTP)" + +msgid "Internal developer mode" +msgstr "Vidinio kūrėjo režimas" + +msgid "Log Level" +msgstr "Žurnalų lygmuo" + +msgid "fatal" +msgstr "kritinė" + +msgid "error" +msgstr "klaida" + +msgid "warning" +msgstr "perspėjimas" + +msgid "debug" +msgstr "testavimas" + +msgid "trace" +msgstr "sekimas" + +msgid "Host Setting" +msgstr "Hosto nustatymai" + +msgid "DEV host: api-dev.bambu-lab.com/v1" +msgstr "DEV hostas: api-dev.bambu-lab.com/v1" + +msgid "QA host: api-qa.bambu-lab.com/v1" +msgstr "QA hostas: api-qa.bambu-lab.com/v1" + +msgid "PRE host: api-pre.bambu-lab.com/v1" +msgstr "PRE hostas: api-pre.bambu-lab.com/v1" + +msgid "Product host" +msgstr "Produkto hostas" + +msgid "debug save button" +msgstr "derinimo išsaugojimo mygtukas" + +msgid "save debug settings" +msgstr "išsaugoti testavimo nuostatas" + +msgid "DEBUG settings have been saved successfully!" +msgstr "TESTAVIMO nuostatos sėkmingai išsaugotos!" + +msgid "Switch cloud environment, please login again!" +msgstr "Perjungiama debesies aplinka, prašome prisijungti iš naujo!" + +msgid "System presets" +msgstr "Sistemos išankstiniai nustatymai" + +msgid "User presets" +msgstr "Naudotojo išankstiniai nustatymai" + +msgid "Incompatible presets" +msgstr "Nesuderinami išankstiniai nustatymai" + +msgid "AMS filaments" +msgstr "AMS gijos" + +msgid "Click to select filament color" +msgstr "Paspauskite gijos spalvos pasirinkimui" + +msgid "Please choose the filament color" +msgstr "Prašome pasirinkti gijos spalvą" + +msgid "Add/Remove presets" +msgstr "Pridėti / pašalinti išankstinius nustatymus" + +msgid "Edit preset" +msgstr "Redaguoti išankstinį nustatymą" + +msgid "Project-inside presets" +msgstr "Projekto vidiniai nustatymai" + +msgid "Add/Remove filaments" +msgstr "Pridėti / pašalinkite gijas" + +msgid "Add/Remove materials" +msgstr "Pridėti / pašalinti medžiagas" + +msgid "Select/Remove printers (system presets)" +msgstr "Pasirinkti / Pašalinti spausdintuvus (sistemos nustatymai)" + +msgid "Create printer" +msgstr "Sukurti spausdintuvą" + +msgid "The selected preset is null!" +msgstr "Pasirinktas šablonas yra tuščias!" + +msgid "End" +msgstr "Pabaiga" + +msgid "Customize" +msgstr "Pritaikyti" + +msgid "Other layer filament sequence" +msgstr "Kita sluoksnio gijos seka" + +msgid "Please input layer value (>= 2)." +msgstr "Prašome įvesti sluoksnių skaičių (>=2)." + +msgid "Plate name" +msgstr "Plokštės pavadinimas" + +msgid "Same as Global Print Sequence" +msgstr "Tokia pati, kaip ir bendra spausdinimo eiga" + +msgid "Print sequence" +msgstr "Spausdinimo eiga" + +msgid "Same as Global" +msgstr "Kaip ir bendra" + +msgid "Disable" +msgstr "Išjungti" + +msgid "Spiral vase" +msgstr "Spiralinė vaza" + +msgid "First layer filament sequence" +msgstr "Pirmojo sluoksnio gijos eiga" + +msgid "Same as Global Plate Type" +msgstr "Toks pats, kaip ir bendras plokštės tipas" + +msgid "Same as Global Bed Type" +msgstr "Toks pats, kaip ir bendras pagrindo tipas" + +msgid "By Layer" +msgstr "Pagal sluoksnį" + +msgid "By Object" +msgstr "Pagal objektą" + +msgid "Accept" +msgstr "Priimti" + +msgid "Log Out" +msgstr "Atsijungti" + +msgid "Slice all plate to obtain time and filament estimation" +msgstr "Laiko ir gijos sąnaudoms sužinoti susluoksniuokite visą plokštę" + +msgid "Packing project data into 3mf file" +msgstr "Projekto duomenys pakuojami į .3mf failą" + +msgid "Uploading 3mf" +msgstr "Įkeliamas 3mf" + +msgid "Jump to model publish web page" +msgstr "Pereiti į modelio talpinimo interneto puslapį" + +msgid "Note: The preparation may take several minutes. Please be patient." +msgstr "Pastaba: paruošimas gali užtrukti kelias minutes. Būkite kantrūs." + +msgid "Publish" +msgstr "Talpinti" + +msgid "Publish was canceled" +msgstr "Talpinimas atšauktas" + +msgid "Slicing Plate 1" +msgstr "Sluoksniuojama plokštė 1" + +msgid "Packing data to 3mf" +msgstr "Duomenys pakuojami į 3mf" + +msgid "Jump to webpage" +msgstr "Pereiti į interneto puslapį" + +#, c-format, boost-format +msgid "Save %s as" +msgstr "Išsaugoti %s kaip" + +msgid "User Preset" +msgstr "Naudotojo nustatymai" + +msgid "Preset Inside Project" +msgstr "Nustatymai projekto viduje" + +msgid "Name is unavailable." +msgstr "Nėra pavadinimo." + +msgid "Overwriting a system profile is not allowed." +msgstr "Sistemos profilio perrašyti neleidžiama" + +#, boost-format +msgid "Preset \"%1%\" already exists." +msgstr "Nustatymai \"%1%\" jau yra." + +#, boost-format +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." +msgstr "" +"Nustatymai \"%1%\" jau yra, tačiau jie nesuderinami su dabartiniu " +"spausdintuvu." + +#, fuzzy +msgid "Please note that saving will overwrite this preset." +msgstr "" +"Atkreipkite dėmesį, kad išsaugojus bus perrašytas dabartinis išankstinis " +"nustatymas" + +msgid "The name cannot be the same as a preset alias name." +msgstr "Pavadinimas negali būti toks pat kaip iš anksto nustatytasis." + +msgid "Save preset" +msgstr "Išsaugoti išankstinį nustatymą" + +msgctxt "PresetName" +msgid "Copy" +msgstr "Kopijuoti" + +#, boost-format +msgid "Printer \"%1%\" is selected with preset \"%2%\"" +msgstr "Spausdintuvas \"%1%\" pasirinktas su nustatymais \"%2%\"" + +#, boost-format +msgid "Please choose an action with \"%1%\" preset after saving." +msgstr "Prašome pasirinkti veiksmą su \"%1%\" nustatymais po išsaugojimo." + +#, boost-format +msgid "For \"%1%\", change \"%2%\" to \"%3%\" " +msgstr "\"%1%\", keičiamas \"%2%\" į \"%3%\" " + +#, boost-format +msgid "For \"%1%\", add \"%2%\" as a new preset" +msgstr "\"%1%\", pridedama \"%2%\" kaip nauji nustatymai" + +#, boost-format +msgid "Simply switch to \"%1%\"" +msgstr "Paprasčiausiai persijunkite į \"%1%\"" + +msgid "Task canceled" +msgstr "Užduotis atšaukta" + +msgid "(LAN)" +msgstr "(LAN)" + +msgid "Search" +msgstr "Paieška" + +msgid "My Device" +msgstr "Mano įrenginys" + +msgid "Other Device" +msgstr "Kitas įrenginys" + +msgid "Online" +msgstr "Pasiekiamas" + +msgid "Input access code" +msgstr "Įvesti prieigos kodą" + +msgid "Can't find my devices?" +msgstr "Negalite rasti jūsų įrenginių?" + +msgid "Log out successful." +msgstr "Atsijungimas sėkmingas." + +msgid "Busy" +msgstr "Užimtas" + +msgid "Bambu Cool Plate" +msgstr "Bambu Cool plokštė" + +msgid "PLA Plate" +msgstr "PLA plokštė" + +msgid "Bambu Engineering Plate" +msgstr "Bambu inžinerinė plokštė" + +msgid "Bambu Smooth PEI Plate" +msgstr "Bambu smulkaus PEI plokštė" + +msgid "High temperature Plate" +msgstr "Aukštos temperatūros plokštė" + +msgid "Bambu Textured PEI Plate" +msgstr "Bambu stabaus PEI plokštė" + +msgid "Send print job to" +msgstr "Siųsti spausdinti į" + +msgid "Flow Dynamics Calibration" +msgstr "Gijos srauto kalibravimas" + +msgid "Click here if you can't connect to the printer" +msgstr "Jei negalite prijungti spausdintuvo, spauskite čia" + +msgid "send completed" +msgstr "siuntimas baigtas" + +msgid "Error code" +msgstr "Klaidos kodas" + +msgid "No login account, only printers in LAN mode are displayed" +msgstr "" +"Nėra prisijungimo paskyros, rodomi tik vietiniame tinkle esantys " +"spausdintuvai" + +msgid "Connecting to server" +msgstr "Jungiamasi prie serverio" + +msgid "Synchronizing device information" +msgstr "Sinchronizuojama įrenginio informacija" + +msgid "Synchronizing device information time out" +msgstr "Baigėsi įrenginio informacijos sinchronizavimo laikas" + +msgid "Cannot send the print job when the printer is updating firmware" +msgstr "" +"Spausdinimo užduoties negalima išsiųsti, kai spausdintuvo programinė įranga " +"atnaujinama" + +msgid "" +"The printer is executing instructions. Please restart printing after it ends" +msgstr "" +"Spausdintuvas vykdo instrukcijas. Kai jis baigs, prašome paleisti " +"spausdinimą iš naujo" + +msgid "The printer is busy on other print job" +msgstr "Spausdintuvas užimtas kitu spausdinimo darbu" + +#, c-format, boost-format +msgid "" +"Filament %s exceeds the number of AMS slots. Please update the printer " +"firmware to support AMS slot assignment." +msgstr "" +"Gija %s viršija gijų rūšių skaičių, lyginant su AMS lizdų skaičiumi. " +"Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus " +"AMS." + +msgid "" +"Filament exceeds the number of AMS slots. Please update the printer firmware " +"to support AMS slot assignment." +msgstr "" +"Įdėta daugiau gijų rūšių, nei turite AMS lizdų. Atnaujinkite spausdintuvo " +"programinę įrangą, kad galėtumėte priskirti lizdus AMS." + +msgid "" +"Filaments to AMS slots mappings have been established. You can click a " +"filament above to change its mapping AMS slot" +msgstr "" +"Gijų priskyrimas AMS lizdams atliktas. Norėdami pakeisti AMS lizdą, " +"spustelėkite giją viršuje" + +msgid "" +"Please click each filament above to specify its mapping AMS slot before " +"sending the print job" +msgstr "" +"Prieš siųsdami spausdinimo užduotį, spustelėkite kiekvieną giją viršuje, kad " +"nurodytumėte jos priskyrimą AMS lizdui" + +#, c-format, boost-format +msgid "" +"Filament %s does not match the filament in AMS slot %s. Please update the " +"printer firmware to support AMS slot assignment." +msgstr "" +"Naudojama gija %s nesutampa su gija AMS lizde %s. Atnaujinkite spausdintuvo " +"programinę įrangą, kad galėtumėte priskirti lizdus AMS." + +msgid "" +"Filament does not match the filament in AMS slot. Please update the printer " +"firmware to support AMS slot assignment." +msgstr "" +"Naudojama gija nesutampa su gija AMS lizde. Atnaujinkite spausdintuvo " +"programinę įrangą, kad galėtumėte priskirti lizdus AMS." + +msgid "" +"The printer firmware only supports sequential mapping of filament => AMS " +"slot." +msgstr "" +"Spausdintuvo programinė įranga palaiko tik nuoseklų gijų ir AMS lizdų " +"susiejimą." + +msgid "An SD card needs to be inserted before printing." +msgstr "Prieš spausdinant reikia įdėti SD kortelę." + +#, c-format, boost-format +msgid "" +"The selected printer (%s) is incompatible with the chosen printer profile in " +"the slicer (%s)." +msgstr "" +"Pasirinktas spausdintuvas (%s) nesuderinamas su pasirinktu spausdintuvo " +"profiliu programoje (%s)." + +msgid "An SD card needs to be inserted to record timelapse." +msgstr "Norint įrašinėti pakadrinius video, reikia įdėti SD kortelę." + +msgid "" +"Cannot send the print job to a printer whose firmware is required to get " +"updated." +msgstr "" +"Neįmanoma išsiųsti spausdinimo užduoties spausdintuvui, kurio programinę " +"įrangą reikia atnaujinti." + +msgid "Cannot send the print job for empty plate" +msgstr "Negalima siųsti spausdinimo užduoties tuščiai plokštei" + +msgid "This printer does not support printing all plates" +msgstr "Spausdintuvas nepalaiko visų plokščių spausdinimo" + +msgid "" +"When enable spiral vase mode, machines with I3 structure will not generate " +"timelapse videos." +msgstr "" +"Įjungus spiralės vazos režimą, I3 struktūros spausdintuvai negeneruos " +"pakadrinių vaizdo įrašų." + +msgid "" +"Timelapse is not supported because Print sequence is set to \"By object\"." +msgstr "" +"Pakadrinis įrašymas nepalaikomas, nes pasirinkta spausdinimo eiga \"Pagal " +"objektą\"." + +msgid "Errors" +msgstr "Klaidos" + +msgid "Please check the following:" +msgstr "Prašome patikrinti:" + +msgid "" +"The printer type selected when generating G-code is not consistent with the " +"currently selected printer. It is recommended that you use the same printer " +"type for slicing." +msgstr "" +"G-kodo generavimo metu pasirinktas spausdintuvo tipas neatitinka šiuo metu " +"pasirinkto spausdintuvo. Rekomenduojame sluoksniavimui naudoti tą patį " +"spausdintuvo tipą." + +msgid "" +"There are some unknown filaments in the AMS mappings. Please check whether " +"they are the required filaments. If they are okay, press \"Confirm\" to " +"start printing." +msgstr "" +"AMS sistemoje yra nežinomų gijų. Prašome patikrinti, ar tai yra reikalingos " +"gijos. Jei viskas tvarkoje, spausdinimą galite pradėti paspaudę " +"„Patvirtinti“." + +#, c-format, boost-format +msgid "nozzle in preset: %s %s" +msgstr "purkštukas parametre: %s %s" + +#, c-format, boost-format +msgid "nozzle memorized: %.2f %s" +msgstr "purkštukas įsimintas: %.2f %s" + +msgid "" +"Your nozzle diameter in sliced file is not consistent with memorized nozzle. " +"If you changed your nozzle lately, please go to Device > Printer Parts to " +"change settings." +msgstr "" +"Purkštuko skersmuo susluoksniuotame faile neatitinka išsaugoto purkštuko " +"skersmens. Jei pastaruoju metu pakeitėte purkštuką, eikite į Įrenginys > " +"Spausdintuvo dalys ir pakeiskite nustatymus." + +#, c-format, boost-format +msgid "" +"Printing high temperature material (%s material) with %s may cause nozzle " +"damage" +msgstr "" +"Spausdinant aukštos temperatūros medžiagą (%s medžiaga) su %s, gali būti " +"sugadintas purkštukas" + +msgid "Please fix the error above, otherwise printing cannot continue." +msgstr "" +"Prašome ištaisyti aukščiau pateiktą klaidą, priešingu atveju nebus galima " +"pradėti spausdinimo." + +msgid "" +"Please click the confirm button if you still want to proceed with printing." +msgstr "" +"Jei jūs vis dar norite tęsti spausdinimą, paspauskite patvirtinimo mygtuką." + +msgid "" +"Connecting to the printer. Unable to cancel during the connection process." +msgstr "Jungiamasi prie spausdintuvo. Negalima atšaukti jungimosi metu." + +msgid "" +"Caution to use! Flow calibration on Textured PEI Plate may fail due to the " +"scattered surface." +msgstr "" +"Dėmesio! Srauto kalibravimas ant tekstūruotos PEI gali nepavykti dėl " +"nelygaus paviršiaus." + +msgid "Automatic flow calibration using Micro Lidar" +msgstr "Automatinis srauto kalibravimas naudojant mikrolidarą" + +msgid "Modifying the device name" +msgstr "Modifikuojamas įrenginio pavadinimas" + +msgid "Bind with Pin Code" +msgstr "Susieti su PIN kodu" + +msgid "Bind with Access Code" +msgstr "Susieti su prieigos kodu" + +msgid "Send to Printer SD card" +msgstr "Siųsti į spausdintuvo SD kortelę" + +msgid "Cannot send the print task when the upgrade is in progress" +msgstr "" +"Negalima nusiųsti spausdinimo užduočių programinės įrangos atnaujinimo metu" + +msgid "The selected printer is incompatible with the chosen printer presets." +msgstr "" +"Pasirinktas spausdintuvas nesuderinamas su išrinktais spausdintuvų " +"nustatymais." + +msgid "An SD card needs to be inserted before send to printer SD card." +msgstr "Prieš siunčiant į spausdintuvo SD kortelę, reikia įdėti SD kortelę." + +msgid "The printer is required to be in the same LAN as Orca Slicer." +msgstr "Spausdintuvas privalo būti tame pačiame tinkle kaip ir Orca Slicer." + +msgid "The printer does not support sending to printer SD card." +msgstr "Spausdintuvas nepalaiko siuntimo į spausdintuvo SD kortelę." + +msgid "Slice ok." +msgstr "Sluoksniavimas baigtas." + +msgid "View all Daily tips" +msgstr "Peržiūrėti visus dienos patarimus" + +msgid "Failed to create socket" +msgstr "Nepavyko sukurti soketo" + +msgid "Failed to connect socket" +msgstr "Nepavyko prisijungti prie soketo" + +msgid "Failed to publish login request" +msgstr "Nepavyko paskelbti prisijungimo užklausos" + +msgid "Get ticket from device timeout" +msgstr "Įrenginio bilieto laukimo laikas baigėsi" + +msgid "Get ticket from server timeout" +msgstr "Serverio bilieto laukimo laikas baigėsi" + +msgid "Failed to post ticket to server" +msgstr "Nepavyko paskelbti bilieto serveryje" + +msgid "Failed to parse login report reason" +msgstr "Nepavyko išanalizuoti prisijungimo ataskaitos priežasties" + +msgid "Receive login report timeout" +msgstr "Prisijungimo ataskaitos gavimo laikas baigėsi" + +msgid "Unknown Failure" +msgstr "Nežinomas gedimas" + +msgid "" +"Please Find the Pin Code in Account page on printer screen,\n" +" and type in the Pin Code below." +msgstr "" +"Prašome rasti PIN kodą spausdintuvo ekrano paskyros puslapyje\n" +"ir įveskite jį žemiau esančiame PIN kodo lauke." + +msgid "Can't find Pin Code?" +msgstr "Nerandate PIN kodo?" + +msgid "Pin Code" +msgstr "PIN kodas" + +msgid "Binding..." +msgstr "Siejama..." + +msgid "Please confirm on the printer screen" +msgstr "Prašome patvirtinti spausdintuvo ekrane" + +msgid "Log in failed. Please check the Pin Code." +msgstr "Prisijungti nepavyko. Prašome patikrinti PIN kodą." + +msgid "Log in printer" +msgstr "Prijungti spausdintuvą" + +msgid "Would you like to log in to this printer with the current account?" +msgstr "Ar norite prisijungti prie šio spausdintuvo su šia paskyra?" + +msgid "Check the reason" +msgstr "Patikrinti priežastį" + +msgid "Read and accept" +msgstr "Perskaičiau ir sutinku" + +msgid "Terms and Conditions" +msgstr "Naudojimo sąlygos" + +msgid "" +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " +"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " +"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" +"Dėkojame, kad įsigijote „Bambu Lab“ prietaisą. Prieš naudodamiesi „Bambu " +"Lab“ prietaisu, perskaitykite taisykles ir sąlygas. Paspaudę sutikti naudoti " +"„Bambu Lab“ įrenginį, sutinkate laikytis privatumo politikos ir naudojimo " +"sąlygų (toliau kartu - sąlygos). Jei nesilaikote „Bambu Lab“ privatumo " +"politikos arba nesutinkate su ja, nesinaudokite „Bambu Lab“ įranga ir " +"paslaugomis." + +msgid "and" +msgstr "ir" + +msgid "Privacy Policy" +msgstr "Privatumo politika" + +msgid "We ask for your help to improve everyone's printer" +msgstr "Mes prašome jūsų pagalbos tobulinant kiekvieno spausdintuvą" + +msgid "Statement about User Experience Improvement Program" +msgstr "Informacija apie vartotojo patirties tobulinimo programą" + +#, c-format, boost-format +msgid "" +"In the 3D Printing community, we learn from each other's successes and " +"failures to adjust our own slicing parameters and settings. %s follows the " +"same principle and uses machine learning to improve its performance from the " +"successes and failures of the vast number of prints by our users. We are " +"training %s to be smarter by feeding them the real-world data. If you are " +"willing, this service will access information from your error logs and usage " +"logs, which may include information described in Privacy Policy. We will " +"not collect any Personal Data by which an individual can be identified " +"directly or indirectly, including without limitation names, addresses, " +"payment information, or phone numbers. By enabling this service, you agree " +"to these terms and the statement about Privacy Policy." +msgstr "" +"3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad " +"galėtume koreguoti savo sluoksniavimo parametrus ir nustatymus. %s veikia " +"tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą " +"remdamasi didžiule mūsų vartotojų spausdinimo sėkmėmis ir nesėkmėmis. Mes " +"mokome %s tapti protingesniu įrankiu, pateikdami jam realaus pasaulio " +"duomenis. Jei sutinkate, ši paslauga pasieks informaciją iš jūsų klaidų ir " +"naudojimo žurnalų, kurie gali apimti informaciją, aprašytą Privatumo " +"politikoje. Mes nerenkame jokių asmens duomenų, kuriais galima tiesiogiai ar " +"netiesiogiai identifikuoti asmenį, įskaitant, bet neapsiribojant, vardus, " +"pavardes, adresus, mokėjimo informacija ar telefono numerius. Įgalindami šią " +"paslaugą, jūs sutinkate su šiomis sąlygomis ir Privatumo politikos " +"nuostatais." + +msgid "Statement on User Experience Improvement Plan" +msgstr "Informacija apie vartotojo patirties tobulinimo planą" + +msgid "Log in successful." +msgstr "Prisijungta sėkmingai." + +msgid "Log out printer" +msgstr "Atjungti spausdintuvą" + +msgid "Would you like to log out the printer?" +msgstr "Ar norite atjungti spausdintuvą?" + +msgid "Please log in first." +msgstr "Prašome pirmiau prisijungti." + +msgid "There was a problem connecting to the printer. Please try again." +msgstr "Nepavyko prijungti spausdintuvo. Prašome pabandyti vėliau." + +msgid "Failed to log out." +msgstr "Nepavyko atsijungti." + +#. TRN "Save current Settings" +#, c-format, boost-format +msgid "Save current %s" +msgstr "Išsaugoti dabartinį %s" + +msgid "Delete this preset" +msgstr "Ištrinti šį išankstinį nustatymą" + +msgid "Search in preset" +msgstr "Ieškoti nustatymuose" + +msgid "Click to reset all settings to the last saved preset." +msgstr "" +"Paspauskite, norėdami atkurti visus nustatymus pagal paskutinį išsaugotą " +"profilį." + +msgid "" +"A prime tower is required for smooth timelapse. There may be flaws on the " +"model without prime tower. Are you sure you want to disable prime tower?" +msgstr "" +"Norint sklandžiai filmuoti laiko intervalais, reikia valymo bokšto. Be " +"valymo bokšto modelyje gali būti trūkumų. Ar tikrai norite išjungti valymo " +"bokštą?" + +msgid "" +"A 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 "" +"Pakadriniam tolygiam video reikia Prime bokšto. Spausdinant be Prime " +"bokštelio modelis gali turėti trūkumų. Ar tikrai norite išjungti Prime " +"bokštą?" + +msgid "Still print by object?" +msgstr "Vis dar spausdinti pagal objektą?" + +msgid "" +"When using support material for the support interface, we recommend the " +"following settings:\n" +"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " +"disable independent support layer height" +msgstr "" +"Naudojant atramos medžiagą atramos sąsajoje, rekomenduojame naudoti šiuos " +"nustatymus:\n" +"0 viršutinio z atstumo, 0 atstumo tarp sąsajų, susikertančio tiesiaeigio " +"modelio ir išjungti nepriklausomą atramos sluoksnio aukštį" + +msgid "" +"Change these settings automatically?\n" +"Yes - Change these settings automatically\n" +"No - Do not change these settings for me" +msgstr "" +"Automatiškai pakeisti šiuos nustatymus?\n" +"Taip - Pakeiskite šiuos nustatymus automatiškai.\n" +"Ne - Nekeiskite šių nustatymų už mane" + +msgid "" +"Enabling this option will modify the model's shape. If your print requires " +"precise dimensions or is part of an assembly, it's important to double-check " +"whether this change in geometry impacts the functionality of your print." +msgstr "" +"Įjungus šią parinktį, pasikeis modelio forma. Jei jūsų spaudinys turi " +"atitikti tikslius matmenis arba yra dalis didesnio mazgo, svarbu papildomai " +"patikrinti, ar šis geometrijos pasikeitimas neturi įtakos jūsų spaudinio " +"funkcionalumui." + +msgid "Are you sure you want to enable this option?" +msgstr "Ar norite įjungti šią galimybę?" + +msgid "" +"Layer height is too small.\n" +"It will set to min_layer_height\n" +msgstr "" +"Per mažas sluoksnio aukštis.\n" +"Jis bus nustatytas į min_layer_height\n" + +msgid "" +"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " +"height limits, this may cause printing quality issues." +msgstr "" +"Sluoksnio aukštis netilpo į ribas Spausdintuvo nustatymai -> Ekstruderis -> " +"Sluoksnio aukščio ribos, tai gali turėti įtakos spausdinio kokybei.." + +msgid "Adjust to the set range automatically?\n" +msgstr "Nustatyti ribų priskyrimą automatiškai?\n" + +msgid "Adjust" +msgstr "Sureguliuoti" + +msgid "Ignore" +msgstr "Nekreipti dėmesio" + +msgid "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " +"printing complications." +msgstr "" +"Eksperimentinė funkcija: Gijos įtraukimas ir nukirpimas didesniu atstumu " +"keičiant giją, siekiant sumažinti išspaudžiamos liekanos kiekį. Ši funkcija " +"gali ženkliai sumažinti išspaudžiamos liekanos kiekį, tačiau taip pat gali " +"padidėti ekstruderio užsikimšimo ar kitų spausdinimo problemų tikimybė." + +msgid "" +"Experimental feature: Retracting and cutting off the filament at a greater " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other printing " +"complications. Please use with the latest printer firmware." +msgstr "" +"Eksperimentinė funkcija: Gijos įtraukimas ir nukirpimas didesniu atstumu " +"keičiant giją, siekiant sumažinti išspaudžiamos liekanos kiekį.\n" +"Ši funkcija gali ženkliai sumažinti išspaudžiamos ankstesnės spalvos gijos " +"liekanos kiekį, tačiau taip pat gali padidėti ekstruderio užsikimšimo ar " +"kitų spausdinimo problemų tikimybė." + +msgid "" +"When recording timelapse without toolhead, it is recommended to add a " +"\"Timelapse Wipe Tower\" \n" +"by right-click the empty position of build plate and choose \"Add " +"Primitive\"->\"Timelapse Wipe Tower\"." +msgstr "" +"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, " +"rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n" +"Norėdami jį pridėti, dešiniuoju pelės mygtuku spustelėkite tuščią " +"spausdinimo plokštės vietą.\n" +"Tada pasirinkite „Pridėti primityvą“ -> „pakadrinis valymo bokštas“." + +msgid "" +"A copy of the current system preset will be created, which will be detached " +"from the system preset." +msgstr "" +"Bus sukurta dabartinės sistemos išankstinės nuostatos kopija, kuri bus " +"atskirta nuo sistemos išankstinės nuostatos." + +msgid "" +"The current custom preset will be detached from the parent system preset." +msgstr "" +"Dabartinis pasirinktinis išankstinis nustatymas bus atskirtas nuo " +"pagrindinio sistemos išankstinio nustatymo." + +msgid "Modifications to the current profile will be saved." +msgstr "Dabartinio profilio pakeitimai bus išsaugoti." + +msgid "" +"This action is not revertible.\n" +"Do you want to proceed?" +msgstr "" +"Šis veiksmas yra negrįžtamas.\n" +"Ar norite tęsti?" + +msgid "Detach preset" +msgstr "Atjungti išankstinį nustatymą" + +msgid "This is a default preset." +msgstr "Tai numatytasis išankstinis nustatymas." + +msgid "This is a system preset." +msgstr "Tai iš anksto nustatytas sistemos nustatymas." + +msgid "Current preset is inherited from the default preset." +msgstr "" +"Dabartinis išankstinis nustatymas paveldėtas iš numatytojo išankstinio " +"nustatymo." + +msgid "Current preset is inherited from" +msgstr "Dabartinis išankstinis nustatymas paveldėtas iš" + +msgid "It can't be deleted or modified." +msgstr "Jo negalima ištrinti ar keisti." + +msgid "" +"Any modifications should be saved as a new preset inherited from this one." +msgstr "" +"Bet kokius pakeitimus reikėtų išsaugoti kaip naują iš anksto nustatytą " +"nustatymą, paveldėtą iš šio." + +msgid "To do that please specify a new name for the preset." +msgstr "" +"Norėdami tai padaryti, nurodykite naują išankstinio nustatymo pavadinimą." + +msgid "Additional information:" +msgstr "Papildoma informacija:" + +msgid "vendor" +msgstr "gamintojas" + +msgid "printer model" +msgstr "spausdintuvo modelis" + +msgid "default print profile" +msgstr "numatytasis spausdinimo profilis" + +msgid "default filament profile" +msgstr "numatytasis gijų profilis" + +msgid "default SLA material profile" +msgstr "numatytasis SLA medžiagos profilis" + +msgid "default SLA print profile" +msgstr "numatytasis SLA spausdinimo profilis" + +msgid "full profile name" +msgstr "pilnas profilio pavadinimas" + +msgid "symbolic profile name" +msgstr "simbolinis profilio pavadinimas" + +msgid "Line width" +msgstr "Linijos plotis" + +msgid "Seam" +msgstr "Siūlė" + +msgid "Precision" +msgstr "Tikslumas" + +msgid "Wall generator" +msgstr "Sienų generatorius" + +msgid "Walls and surfaces" +msgstr "Sienos ir paviršiai" + +msgid "Bridging" +msgstr "Tiltai" + +msgid "Overhangs" +msgstr "Iškyšos" + +msgid "Walls" +msgstr "Sienos" + +msgid "Top/bottom shells" +msgstr "Viršutiniai/apatiniai paviršiai" + +msgid "Initial layer speed" +msgstr "Pradinio sluoksnio greitis" + +msgid "Other layers speed" +msgstr "Kitų sluoksnių greitis" + +msgid "Overhang speed" +msgstr "Iškyšų greitis" + +msgid "" +"This is the speed for various overhang degrees. Overhang degrees are " +"expressed as a percentage of line width. 0 speed means no slowing down for " +"the overhang degree range and wall speed is used" +msgstr "" +"Šiame nustatyme nurodomas spausdinimo greitis skirtingiems iškyšos " +"laipsniams. Iškyšos laipsnis pateikiamas linijos pločio procentine išraiška. " +"0 greitis reiškia, kad nepristabdoma nė vienam iškyšos laipsniui ir " +"naudojamas sienelės spausdinimo greitis" + +msgid "Bridge" +msgstr "Tiltas" + +msgid "Set speed for external and internal bridges" +msgstr "Vidinių ir išorinių tiltų greitis" + +msgid "Travel speed" +msgstr "Judėjimo greitis" + +msgid "Acceleration" +msgstr "Pagreitis" + +msgid "Jerk(XY)" +msgstr "Pagreitis (XY)" + +msgid "Raft" +msgstr "Platforma" + +msgid "Support filament" +msgstr "Atramų gija" + +msgid "Tree supports" +msgstr "Medžio tipo atramos" + +msgid "Multimaterial" +msgstr "Kelios medžiagos" + +msgid "Prime tower" +msgstr "Valymo bokštas" + +msgid "Filament for Features" +msgstr "Gija funkcijoms" + +msgid "Ooze prevention" +msgstr "Ištekėjimo prevencija" + +msgid "Skirt" +msgstr "Apvadas" + +msgid "Special mode" +msgstr "Specialus režimas" + +msgid "G-code output" +msgstr "G-kodo išvestis" + +msgid "Post-processing Scripts" +msgstr "Scenarijai po apdorojimo" + +msgid "Notes" +msgstr "Pastabos" + +msgid "Frequent" +msgstr "Dažnai" + +#, c-format, boost-format +msgid "" +"Following line %s contains reserved keywords.\n" +"Please remove it, or will beat G-code visualization and printing time " +"estimation." +msgid_plural "" +"Following lines %s contain reserved keywords.\n" +"Please remove them, or will beat G-code visualization and printing time " +"estimation." +msgstr[0] "" +"Tolesnėje eilutėje %s yra rezervuotų raktinių žodžių.\n" +"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir " +"spausdinimo laiko įvertinimas." +msgstr[1] "" +"Tolesnėse eilutėse %s yra rezervuotų raktinių žodžių.\n" +"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir " +"spausdinimo laiko įvertinimas." +msgstr[2] "" +"Tolesnėse eilutėse %s yra rezervuotų raktinių žodžių.\n" +"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir " +"spausdinimo laiko įvertinimas." + +msgid "Reserved keywords found" +msgstr "Rasti rezervuoti raktažodžiai" + +msgid "Setting Overrides" +msgstr "Apribojimų nustatymas" + +msgid "Retraction" +msgstr "Įtraukimas" + +msgid "Basic information" +msgstr "Pagrindinė informacija" + +msgid "Recommended nozzle temperature" +msgstr "Rekomenduojama purkštuko temperatūra" + +msgid "Recommended nozzle temperature range of this filament. 0 means no set" +msgstr "" +"Rekomenduojamas šios gijos purkštuko temperatūros diapazonas. 0 reiškia, kad " +"nenustatyta" + +msgid "Flow ratio and Pressure Advance" +msgstr "Srauto santykis ir slėgis" + +msgid "Print chamber temperature" +msgstr "Spausdinimo kameros temperatūra" + +msgid "Print temperature" +msgstr "Spausdinimo temperatūra" + +msgid "Nozzle" +msgstr "Purkštukas" + +msgid "Nozzle temperature when printing" +msgstr "Purkštuko temperatūra spausdinant" + +msgid "Cool Plate (SuperTack)" +msgstr "Šalta plokštė (SuperTack)" + +msgid "" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." +msgstr "" +"Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad " +"gija nepalaiko spausdinimo ant šaltos plokštės" + +msgid "Cool Plate" +msgstr "Šalta plokštė" + +msgid "" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." +msgstr "" +"Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad " +"gija nepalaiko spausdinimo ant šaltos plokštės" + +msgid "Textured Cool Plate" +msgstr "Tekstūruota vėsi plokštė" + +msgid "" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." +msgstr "" +"Pagrindo temperatūra, kai sumontuota vėsi plokštė. Reikšmė 0 reiškia, kad " +"gija negalima spausdinti ant tekstūrinės vėsios plokštės" + +msgid "Engineering Plate" +msgstr "Inžinerinė plokštė" + +msgid "" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." +msgstr "" +"Pagrindo temperatūra, kai sumontuota inžinerinė plokštė. Reikšmė 0 reiškia, " +"kad gija nepalaiko spausdinimo ant inžinerinės plokštės" + +msgid "Smooth PEI Plate / High Temp Plate" +msgstr "Lygi PEI plokštė / aukštos temperatūros plokštė" + +msgid "" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." +"High Temp Plate" +msgstr "" +"Pagrindo temperatūra, kai sumontuota lygi PEI plokštė / aukštos temperatūros " +"plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant lygios PEI " +"plokštės / aukštos temperatūros plokštės" + +msgid "Textured PEI Plate" +msgstr "Tekstūruota PEI plokštė" + +msgid "" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." +msgstr "" +"Pagrindo temperatūra, kai sumontuota tekstūruota PEI plokštė. Reikšmė 0 " +"reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės" + +msgid "Volumetric speed limitation" +msgstr "Tūrinio greičio ribojimas" + +msgid "Cooling" +msgstr "Aušinimas" + +msgid "Cooling for specific layer" +msgstr "Konkretaus sluoksnio aušinimas" + +msgid "Part cooling fan" +msgstr "Dalies aušinimo ventiliatorius" + +msgid "Min fan speed threshold" +msgstr "Min. ventiliatoriaus greičio riba" + +msgid "" +"Part cooling fan speed will start to run at min speed when the estimated " +"layer time is no longer than the layer time in setting. When layer time is " +"shorter than threshold, fan speed is interpolated between the minimum and " +"maximum fan speed according to layer printing time" +msgstr "" +"Detalių aušinimo ventiliatorius veiks mažiausiu ventiliatoriaus greičiu, kai " +"numatoma sluoksnio trukmė bus ilgesnė už ribinę vertę. Kai sluoksnio trukmė " +"trumpesnė už ribinę vertę, ventiliatoriaus greitis bus apskaičiuojamas tarp " +"mažiausio ir didžiausio ventiliatoriaus greičio, atsižvelgiant į sluoksnio " +"spausdinimo trukmę" + +msgid "Max fan speed threshold" +msgstr "Maks ventiliatoriaus greičio riba" + +msgid "" +"Part cooling fan speed will be max when the estimated layer time is shorter " +"than the setting value" +msgstr "" +"Detalių aušinimo ventiliatorius veiks didžiausiu greičiu, kai numatoma " +"sluoksnio trukmė bus trumpesnė už ribinę vertę" + +msgid "Auxiliary part cooling fan" +msgstr "Pagalbinis dalies aušinimo ventiliatorius" + +msgid "Exhaust fan" +msgstr "Ištraukimo ventiliatorius" + +msgid "During print" +msgstr "Spausdinant" + +msgid "Complete print" +msgstr "Baigus spausdinti" + +msgid "Filament start G-code" +msgstr "Gijos pradžios G-kodas" + +msgid "Filament end G-code" +msgstr "Gijos pabaigos G-kodas" + +msgid "Wipe tower parameters" +msgstr "Valymo bokšto parametrai" + +msgid "Tool change parameters with single extruder MM printers" +msgstr "" +"Įrankių keitimo parametrai naudojant vieno ekstruderio MM spausdintuvus" + +msgid "Ramming settings" +msgstr "Spausdinimo galvutės stūmimo nustatymai" + +msgid "Tool change parameters with multi extruder MM printers" +msgstr "Įrankių keitimo parametrai su kelių ekstruderių MM spausdintuvais" + +msgid "Dependencies" +msgstr "Priklausomybės" + +msgid "Profile dependencies" +msgstr "Profilio priklausomybės" + +msgid "Printable space" +msgstr "Erdvė spausdinimui" + +#. TRN: The first argument is the parameter's name; the second argument is its value. +#, boost-format +msgid "Invalid value provided for parameter %1%: %2%" +msgstr "Neteisinga parametro %1% reikšmė: %2%" + +msgid "G-code flavor is switched" +msgstr "Perjungiamas G kodo tipas" + +msgid "Cooling Fan" +msgstr "Aušinimo ventiliatorius" + +msgid "Fan speed-up time" +msgstr "Ventiliatoriaus įsibėgėjimo laikas" + +msgid "Extruder Clearance" +msgstr "Ekstruderio laisvoji erdvė" + +msgid "Adaptive bed mesh" +msgstr "Prisitaikanti pagrindo forma" + +msgid "Accessory" +msgstr "Priedai" + +msgid "Machine G-code" +msgstr "Įrenginio gkodas" + +msgid "Machine start G-code" +msgstr "Įrangos paleidimo G-kodas" + +msgid "Machine end G-code" +msgstr "Įrangos pabaigos G-kodas" + +msgid "Printing by object G-code" +msgstr "Spausdinimas pagal objektą G-kodas" + +msgid "Before layer change G-code" +msgstr "G-kodas prieš keičiant sluoksnį" + +msgid "Layer change G-code" +msgstr "Sluoksnio keitimas G-kodas" + +msgid "Timelapse G-code" +msgstr "Pakadrinio filmavimo G-kodas" + +msgid "Change filament G-code" +msgstr "Gijos keitimo G-kodas" + +msgid "Change extrusion role G-code" +msgstr "Keisti išspaudimo vaidmenį G-kodas" + +msgid "Pause G-code" +msgstr "Pauzė G-kodas" + +msgid "Template Custom G-code" +msgstr "Pasirinktinis G-kodo šablonas" + +msgid "Motion ability" +msgstr "Judėjimo parinktys" + +msgid "Normal" +msgstr "Normalus" + +msgid "Speed limitation" +msgstr "Greičio ribojimas" + +msgid "Acceleration limitation" +msgstr "Pagreičio ribojimas" + +msgid "Jerk limitation" +msgstr "Trūkčiojimo ribojimai" + +msgid "Single extruder multi-material setup" +msgstr "Vieno ekstruderio kelių medžiagų sąranka" + +msgid "Number of extruders of the printer." +msgstr "Spausdintuvo ekstruderių skaičius." + +msgid "" +"Single Extruder Multi Material is selected, \n" +"and all extruders must have the same diameter.\n" +"Do you want to change the diameter for all extruders to first extruder " +"nozzle diameter value?" +msgstr "" +"Pasirinkta vieno ekstruderio daugialypė medžiaga,\n" +"ir visi ekstruderiai turi būti vienodo skersmens.\n" +"Ar norite pakeisti visų ekstruderių skersmenį į pirmojo ekstruderio antgalio " +"skersmens vertę?" + +msgid "Nozzle diameter" +msgstr "Purkštuko skersmuo" + +msgid "Wipe tower" +msgstr "Valymo bokštas" + +msgid "Single extruder multi-material parameters" +msgstr "Vieno ekstruderio kelių medžiagų parametrai" + +msgid "" +"This is a single extruder multi-material printer, diameters of all extruders " +"will be set to the new value. Do you want to proceed?" +msgstr "" +"Tai yra vieno ekstruderio ir kelių medžiagų spausdintuvas, todėl visų " +"ekstruderių skersmenys bus nustatyti pagal naują vertę. Ar norite tęsti?" + +msgid "Layer height limits" +msgstr "Sluoksnio aukščio ribos" + +msgid "Z-Hop" +msgstr "Z šuolis" + +msgid "Retraction when switching material" +msgstr "Įtraukimas keičiant medžiagą" + +msgid "" +"The Wipe option is not available when using the Firmware Retraction mode.\n" +"\n" +"Shall I disable it in order to enable Firmware Retraction?" +msgstr "" +"Parinktis \"Išvalyti\" negalima, kai naudojamas Firmware įtraukimo režimas.\n" +"\n" +"Ar turėčiau jį išjungti, kad įjungčiau Programinės įrangos įtraukimą?" + +msgid "Firmware Retraction" +msgstr "Programinės aparatinės įrangos ištraukimas" + +msgid "Detached" +msgstr "Atjungta" + +#, c-format, boost-format +msgid "" +"%d Filament Preset and %d Process Preset is attached to this printer. Those " +"presets would be deleted if the printer is deleted." +msgstr "" +"Šiam spausdintuvui yra prijungtas %d iš anksto nustatytas gijų rinkinys ir " +"%d iš anksto nustatytas procesas. Jei spausdintuvas bus ištrintas, šie " +"išankstiniai nustatymai bus ištrinti." + +msgid "Presets inherited by other presets cannot be deleted!" +msgstr "Paveldėtų iš anksto nustatytų nustatymų negalima ištrinti!" + +msgid "The following presets inherit this preset." +msgid_plural "The following preset inherits this preset." +msgstr[0] "Šį nustatymą paveldi šis išankstinis nustatymas." +msgstr[1] "Šiuos nustatymus paveldi šie išankstiniai nustatymai." +msgstr[2] "Šiuos nustatymus paveldi šie išankstiniai nustatymai." + +#. TRN Remove/Delete +#, boost-format +msgid "%1% Preset" +msgstr "%1% iš anksto nustatytas" + +msgid "Following preset will be deleted too." +msgid_plural "Following presets will be deleted too." +msgstr[0] "Bus ištrintas ir šis išankstinis nustatymas." +msgstr[1] "Bus ištrinti ir šie išankstiniai nustatymai." +msgstr[2] "Bus ištrinti ir šie išankstiniai nustatymai." + +msgid "" +"Are you sure to delete the selected preset?\n" +"If the preset corresponds to a filament currently in use on your printer, " +"please reset the filament information for that slot." +msgstr "" +"Ar tikrai norite ištrinti pasirinktą išankstinį nustatymą?\n" +"Jei išankstinis nustatymas atitinka šiuo metu spausdintuve naudojamą giją, " +"iš naujo nustatykite tos angos gijos informaciją." + +#, boost-format +msgid "Are you sure to %1% the selected preset?" +msgstr "Ar tikrai naudojate %1% pasirinktą išankstinį nustatymą?" + +msgid "All" +msgstr "Visi" + +msgid "Set" +msgstr "Nustatyti" + +msgid "Click to reset current value and attach to the global value." +msgstr "" +"Spustelėkite , jei norite iš naujo nustatyti dabartinę reikšmę ir prijungti " +"ją prie bendros reikšmės." + +msgid "Click to drop current modify and reset to saved value." +msgstr "" +"Spustelėkite , jei norite atsisakyti dabartinio pakeitimo ir atstatyti " +"išsaugotą reikšmę." + +msgid "Process Settings" +msgstr "Proceso nustatymai" + +msgid "Undef" +msgstr "Neapib" + +msgid "Unsaved Changes" +msgstr "Neišsaugoti pakeitimai" + +msgid "Transfer or discard changes" +msgstr "Pakeitimų perkėlimas arba atmetimas" + +msgid "Old Value" +msgstr "Sena vertė" + +msgid "New Value" +msgstr "Nauja vertė" + +msgid "Transfer" +msgstr "Perkėlimas" + +msgid "Don't save" +msgstr "Neišsaugoti" + +msgid "Discard" +msgstr "Atsisakyti" + +msgid "Click the right mouse button to display the full text." +msgstr "Spustelėkite dešinįjį pelės klavišą, kad būtų rodomas visas tekstas." + +msgid "All changes will not be saved" +msgstr "Pakeitimai nebus išsaugoti" + +msgid "All changes will be discarded." +msgstr "Visi pakeitimai bus atmesti." + +msgid "Save the selected options." +msgstr "Išsaugoti pasirinktas parinktis." + +msgid "Keep the selected options." +msgstr "Išlaikykite pasirinktas parinktis." + +msgid "Transfer the selected options to the newly selected preset." +msgstr "" +"Perkelkite pasirinktas parinktis į naujai pasirinktą išankstinį nustatymą." + +#, boost-format +msgid "" +"Save the selected options to preset \n" +"\"%1%\"." +msgstr "" +"Pasirinktų parinkčių išsaugojimas profilyje\n" +"\"%1%\"." + +#, boost-format +msgid "" +"Transfer the selected options to the newly selected preset \n" +"\"%1%\"." +msgstr "" +"Pasirinktų parinkčių perkėlimas į naujai pasirinktą profilį\n" +"\"%1%\"." + +#, boost-format +msgid "Preset \"%1%\" contains the following unsaved changes:" +msgstr "\"%1%\" profilyje yra šie neišsaugoti pakeitimai:" + +#, boost-format +msgid "" +"Preset \"%1%\" is not compatible with the new printer profile and it " +"contains the following unsaved changes:" +msgstr "" +"\"%1%\" profilis nesuderinamas su naujuoju spausdintuvo profiliu ir jame yra " +"šie neišsaugoti pakeitimai:" + +#, boost-format +msgid "" +"Preset \"%1%\" is not compatible with the new process profile and it " +"contains the following unsaved changes:" +msgstr "" +"\"%1%\" profilis nesuderinamas su naujuoju proceso profiliu ir jame yra šie " +"neišsaugoti pakeitimai:" + +#, boost-format +msgid "You have changed some settings of preset \"%1%\"." +msgstr "Pakeitėte kai kuriuos išankstinio nustatymo \"%1%\" parametrus." + +msgid "" +"\n" +"You can save or discard the preset values you have modified." +msgstr "" +"\n" +"Pakeistas profilio reikšmes galite išsaugoti arba atmesti." + +msgid "" +"\n" +"You can save or discard the preset values you have modified, or choose to " +"transfer the values you have modified to the new preset." +msgstr "" +"\n" +"Pakeistas profilio reikšmes galite išsaugoti arba atmesti, arba pasirinkti " +"perkelti pakeistas vertes į naują profilį." + +msgid "You have previously modified your settings." +msgstr "Anksčiau pakeitėte savo nustatymus." + +msgid "" +"\n" +"You can discard the preset values you have modified, or choose to transfer " +"the modified values to the new project" +msgstr "" +"\n" +"Galite atsisakyti pakeistų iš anksto nustatytų reikšmių arba nuspręsti " +"perkelti pakeistas reikšmes į naują projektą" + +msgid "Extruders count" +msgstr "Ekstruderių kiekis" + +msgid "General" +msgstr "Bendras" + +msgid "Capabilities" +msgstr "Galimybės" + +msgid "Show all presets (including incompatible)" +msgstr "Rodyti visus išankstinius nustatymus (įskaitant nesuderinamus)" + +msgid "Select presets to compare" +msgstr "Pasirinkite išankstinius nustatymus, kuriuos norite palyginti" + +msgid "" +"You can only transfer to current active profile because it has been modified." +msgstr "" +"Galite perkelti tik į dabartinį aktyvų profilį, nes jis buvo pakeistas." + +msgid "" +"Transfer the selected options from left preset to the right.\n" +"Note: New modified presets will be selected in settings tabs after close " +"this dialog." +msgstr "" +"Perkelkite pasirinktas parinktis iš kairiojo išankstinio nustatymo į " +"dešinįjį.\n" +"Pastaba: Uždarius šį dialogo langą, naujai pakeistos išankstinės nuostatos " +"bus pasirinktos nustatymų skirtukuose." + +msgid "Transfer values from left to right" +msgstr "Reikšmių perkėlimas iš kairės į dešinę" + +msgid "" +"If enabled, this dialog can be used for transfer selected values from left " +"to right preset." +msgstr "" +"Jei įjungta, šis dialogo langas gali būti naudojamas pasirinktoms reikšmėms " +"perkelti iš kairiojo į dešinįjį išankstinį nustatymą." + +msgid "Add File" +msgstr "Pridėti failą" + +msgid "Set as cover" +msgstr "Nustatyti kaip dangtelį" + +msgid "Cover" +msgstr "Dangtelis" + +#, boost-format +msgid "The name \"%1%\" already exists." +msgstr "Pavadinimas \"%1%\" jau egzistuoja." + +msgid "Basic Info" +msgstr "Pagrindinė informacija" + +msgid "Pictures" +msgstr "Paveikslėliai" + +msgid "Bill of Materials" +msgstr "Medžiagų sąmata" + +msgid "Assembly Guide" +msgstr "Surinkimo vadovas" + +msgid "Author" +msgstr "Autorius" + +msgid "Model Name" +msgstr "Modelio pavadinimas" + +#, c-format, boost-format +msgid "%s Update" +msgstr "%s Atnaujinimas" + +msgid "A new version is available" +msgstr "Yra nauja versija" + +msgid "Configuration update" +msgstr "Konfigūracijos atnaujinimas" + +msgid "A new configuration package is available. Do you want to install it?" +msgstr "Yra naujas konfigūracijos paketas, Ar norite jį įdiegti?" + +msgid "Description:" +msgstr "Aprašymas:" + +msgid "Configuration incompatible" +msgstr "Nesuderinama konfigūracija" + +msgid "the configuration package is incompatible with the current application." +msgstr "konfigūracijos paketas nesuderinamas su dabartine programa." + +#, c-format, boost-format +msgid "" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." +msgstr "" +"Konfigūracijos paketas nesuderinamas su dabartine programa.\n" +"%s atnaujins konfigūracijos paketą, kad būtų galima paleisti programą" + +#, c-format, boost-format +msgid "Exit %s" +msgstr "Išeiti iš %s" + +msgid "the Configuration package is incompatible with the current APP." +msgstr "Konfigūracijos paketas nesuderinamas su dabartine programos versija." + +msgid "Configuration updates" +msgstr "Konfigūracijos atnaujinimai" + +msgid "No updates available." +msgstr "Atnaujinimų nėra." + +msgid "The configuration is up to date." +msgstr "Konfigūracija yra naujausia." + +msgid "Obj file Import color" +msgstr "Obj failo importavimo spalva" + +msgid "Specify number of colors:" +msgstr "Nurodykite spalvų kiekį:" + +#, c-format, boost-format +msgid "The color count should be in range [%d, %d]." +msgstr "Spalvų skaičius turėtų būti tarp [%d, %d]." + +msgid "Recommended " +msgstr "Rekomenduojama " + +msgid "Current filament colors:" +msgstr "Dabartinės gijų spalvos:" + +msgid "Quick set:" +msgstr "Greitas nustatymas:" + +msgid "Color match" +msgstr "Spalvų atitikimas" + +msgid "Approximate color matching." +msgstr "Apytikslis spalvų atitikimas." + +msgid "Append" +msgstr "Pridėti" + +msgid "Add consumable extruder after existing extruders." +msgstr "Po esamų ekstruderių pridėti eksploatacinių medžiagų ekstruderį." + +msgid "Reset mapped extruders." +msgstr "Iš naujo nustatykite pažymėtus ekstruderius." + +msgid "Cluster colors" +msgstr "Klasterio spalvos" + +msgid "Map Filament" +msgstr "Ženklinti giją" + +msgid "" +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." +msgstr "" +"Pastaba: spalva buvo pasirinkta, galite pasirinkti Gerai \n" +"tęsti arba ją koreguoti rankiniu būdu." + +msgid "" +"Warning: The count of newly added and \n" +"current extruders exceeds 16." +msgstr "" +"Dėmesio: Naujai pridėtų ir \n" +"esamų ekstruderių skaičius viršija 16." + +msgid "Ramming customization" +msgstr "Spasdinimo galvutės stūmimo pritaikymas" + +msgid "" +"Ramming denotes the rapid extrusion just before a tool change in a single-" +"extruder MM printer. Its purpose is to properly shape the end of the " +"unloaded filament so it does not prevent insertion of the new filament and " +"can itself be reinserted later. This phase is important and different " +"materials can require different extrusion speeds to get the good shape. For " +"this reason, the extrusion rates during ramming are adjustable.\n" +"\n" +"This is an expert-level setting, incorrect adjustment will likely lead to " +"jams, extruder wheel grinding into filament etc." +msgstr "" +"Ramingas reiškia greitą ekstruziją prieš pat įrankio pakeitimą vieno " +"ekstruderio MM spausdintuve. Jo paskirtis – tinkamai suformuoti neapkrautos " +"gijos galą, kad jis netrukdytų įkišti naujai gijai ir vėliau ją būtų galima " +"įkišti iš naujo. Šis etapas yra svarbus, skirtingoms medžiagoms gali " +"prireikti skirtingo ekstruzijos greičio, kad būtų gauta gera forma. Dėl šios " +"priežasties ekstruzijos greitis štampavimo metu yra reguliuojamas.\n" +"\n" +"Tai yra eksperto lygio nustatymas, neteisingas sureguliavimas gali sukelti " +"strigčių, ekstruderio rato gijos šlifavimą ir pan." + +msgid "Total ramming time" +msgstr "Bendras įspaudimo laikas" + +msgid "s" +msgstr "s" + +msgid "Total rammed volume" +msgstr "Bendras įspaudimo tūris" + +msgid "Ramming line width" +msgstr "Įspaudimo linijos plotis" + +msgid "Ramming line spacing" +msgstr "Įspaudimo tarpai tarp linijų" + +msgid "Auto-Calc" +msgstr "Automatinis skaičiavimas" + +msgid "Re-calculate" +msgstr "Perskaičiuoti" + +msgid "Flushing volumes for filament change" +msgstr "Išmetimo tūris keičiant gijas" + +msgid "" +"Orca would re-calculate your flushing volumes every time the filaments color " +"changed. You could disable the auto-calculate in Orca Slicer > Preferences" +msgstr "" +"Orca iš naujo apskaičiuos išspaudimo kiekį kaskart, kai pasikeis siūlų " +"spalva. Automatinį skaičiavimą galite išjungti Orca Slicer > Nustatymai" + +msgid "Flushing volume (mm³) for each filament pair." +msgstr "Kiekvienos gijų poros išmetimo tūris (mm³)." + +#, c-format, boost-format +msgid "Suggestion: Flushing Volume in range [%d, %d]" +msgstr "Pasiūlymas: Išmetimo tūris [%d, %d] ribose" + +#, c-format, boost-format +msgid "The multiplier should be in range [%.2f, %.2f]." +msgstr "Daugiklis turėtų būti iš intervalo [%.2f, %.2f]." + +msgid "Multiplier" +msgstr "Daugiklis" + +msgid "unloaded" +msgstr "išimtas" + +msgid "loaded" +msgstr "įkeltas" + +msgid "Filament #" +msgstr "Gijos #" + +msgid "From" +msgstr "Nuo" + +msgid "To" +msgstr "Į" + +msgid "" +"Windows Media Player is required for this task! Do you want to enable " +"'Windows Media Player' for your operation system?" +msgstr "" +"Šiai užduočiai atlikti reikalingas \"Windows Media Player\"! Ar norite " +"įjungti \"Windows Media Player\" savo operacinėje sistemoje?" + +msgid "" +"BambuSource has not correctly been registered for media playing! Press Yes " +"to re-register it. You will be promoted twice" +msgstr "" +"\"BambuSource\" neteisingai užregistruotas medijos atkūrimui! Paspauskite " +"Yes (taip), kad jį perregistruotumėte. Jums bus priminta du kartus" + +msgid "" +"Missing BambuSource component registered for media playing! Please re-" +"install BambuStudio or seek after-sales help." +msgstr "" +"Trūksta „BambuSource“ komponento, registruoto medijos atkūrimui! Iš naujo " +"įdiekite „BambuStudio“ arba kreipkitės į pagalbą po pardavimo." + +msgid "" +"Using a BambuSource from a different install, video play may not work " +"correctly! Press Yes to fix it." +msgstr "" +"Naudojant \"BambuSource\" iš kito diegimo šaltinio, vaizdo įrašų atkūrimas " +"gali būti neteisingas! Paspauskite Taip, kad tai ištaisytumėte." + +msgid "" +"Your system is missing H.264 codecs for GStreamer, which are required to " +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"libav packages, then restart Orca Slicer?)" +msgstr "" +"Jūsų sistemoje nėra \"GStreamer\" H.264 kodekų, reikalingų vaizdo įrašams " +"atkurti. (Pabandykite įdiegti gstreamer1.0-plugins-bad arba gstreamer1.0-" +"libav paketus, tada iš naujo paleiskite \"Orca Slicer\")" + +msgid "Bambu Network plug-in not detected." +msgstr "\"Bambu\" tinklo papildinys neaptiktas." + +msgid "Click here to download it." +msgstr "Spustelėkite čia, jei norite jį atsisiųsti." + +msgid "Login" +msgstr "Prisijungti" + +msgid "The configuration package is changed in previous Config Guide" +msgstr "Konfigūracijos paketas pakeistas ankstesniame Config Guide" + +msgid "Configuration package changed" +msgstr "Pakeistas konfigūracijos paketas" + +msgid "Toolbar" +msgstr "Įrankių juosta" + +msgid "Objects list" +msgstr "Objektų sąrašas" + +msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files" +msgstr "Importuoti geometrijos duomenis iš STL/STEP/3MF/OBJ/AMF failų" + +msgid "⌘+Shift+G" +msgstr "⌘+Shift+G" + +msgid "Ctrl+Shift+G" +msgstr "Ctrl+Shift+G" + +msgid "Paste from clipboard" +msgstr "Įklijuoti iš mainų srities" + +msgid "Show/Hide 3Dconnexion devices settings dialog" +msgstr "Rodyti/slėpti 3DConnexion įrenginių nustatymų dialogo langą" + +msgid "Switch table page" +msgstr "Perjungti lentelės puslapį" + +msgid "Show keyboard shortcuts list" +msgstr "Rodyti sparčiųjų klavišų sąrašą" + +msgid "Global shortcuts" +msgstr "Bendrieji spartieji klavišai" + +msgid "Rotate View" +msgstr "Pasukti vaizdą" + +msgid "Pan View" +msgstr "Judinti vaizdą" + +msgid "Mouse wheel" +msgstr "Pelės ratukas" + +msgid "Zoom View" +msgstr "Padidinti vaizdą" + +msgid "Shift+A" +msgstr "Shift+A" + +msgid "Shift+R" +msgstr "Shift+R" + +msgid "" +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." +msgstr "" + +msgid "Auto orients all objects on the active plate." +msgstr "" + +msgid "Shift+Tab" +msgstr "Shift+Tab" + +msgid "Collapse/Expand the sidebar" +msgstr "Sutraukti / išskleisti šoninę juostą" + +msgid "⌘+Any arrow" +msgstr "⌘+Bet kokia rodyklė" + +msgid "Movement in camera space" +msgstr "Judėjimas kameros erdvėje" + +msgid "⌥+Left mouse button" +msgstr "⌥+ kairysis pelės mygtukas" + +msgid "Select a part" +msgstr "Pasirinkite detalę" + +msgid "⌘+Left mouse button" +msgstr "⌘+ kairysis pelės mygtukas" + +msgid "Select multiple objects" +msgstr "Pasirinkite kelis objektus" + +msgid "Ctrl+Any arrow" +msgstr "Ctrl + bet kokia rodyklė" + +msgid "Alt+Left mouse button" +msgstr "Alt + kairysis pelės mygtukas" + +msgid "Ctrl+Left mouse button" +msgstr "Ctrl + kairysis pelės mygtukas" + +msgid "Shift+Left mouse button" +msgstr "Shift + kairysis pelės mygtukas" + +msgid "Select objects by rectangle" +msgstr "Objektų pasirinkimas pagal stačiakampį" + +msgid "Arrow Up" +msgstr "Rodyklė aukštyn" + +msgid "Move selection 10 mm in positive Y direction" +msgstr "Perkelti pasirinktą 10 mm teigiama Y kryptimi" + +msgid "Arrow Down" +msgstr "Rodyklė žemyn" + +msgid "Move selection 10 mm in negative Y direction" +msgstr "Perkelti pasirinktą10 mm neigiama Y kryptimi" + +msgid "Arrow Left" +msgstr "Rodyklė Kairėn" + +msgid "Move selection 10 mm in negative X direction" +msgstr "Perkelti pasirinktą10 mm neigiama X kryptimi" + +msgid "Arrow Right" +msgstr "Rodyklė dešinėn" + +msgid "Move selection 10 mm in positive X direction" +msgstr "Perkelti pasirinktą10 mm teigiama X kryptimi" + +msgid "Shift+Any arrow" +msgstr "Shift + bet kuri rodyklė" + +msgid "Movement step set to 1 mm" +msgstr "Judėjimo žingsnis nustatytas į 1 mm" + +msgid "keyboard 1-9: set filament for object/part" +msgstr "Klaviatūra 1-9: nustatyti objekto/dalies giją" + +msgid "Camera view - Default" +msgstr "Kameros vaizdas - Numatytasis" + +msgid "Camera view - Top" +msgstr "Kameros vaizdas - Viršus" + +msgid "Camera view - Bottom" +msgstr "Kameros vaizdas - Apačia" + +msgid "Camera view - Front" +msgstr "Kameros vaizdas - Priekis" + +msgid "Camera view - Behind" +msgstr "Kameros vaizdas - Galas" + +msgid "Camera Angle - Left side" +msgstr "Kameros vaizdas - Kairė" + +msgid "Camera Angle - Right side" +msgstr "Kameros vaizdas - Dešnė" + +msgid "Select all objects" +msgstr "Pasirinkti visus objektus" + +msgid "Gizmo move" +msgstr "Gizmo perkėlimui" + +msgid "Gizmo scale" +msgstr "Gizmo dydžio keitimui" + +msgid "Gizmo rotate" +msgstr "Gizmo pasukimas" + +msgid "Gizmo cut" +msgstr "Gizmo pjaustymui" + +msgid "Gizmo place face on bed" +msgstr "Gizmo padėti paviršių ant pagrindo" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo objektų jungimo/atėmimo/susikirtimo įrankiai" + +msgid "Gizmo SLA support points" +msgstr "Gizmo SLA atramų taškai" + +msgid "Gizmo FDM paint-on seam" +msgstr "Gizmo FDM siūlių piešimui" + +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo teksto įspaudimas/graviravimas" + +msgid "Gizmo measure" +msgstr "Gizmo matuoti" + +msgid "Gizmo assemble" +msgstr "Gizmo surinkimo" + +msgid "Gizmo brim ears" +msgstr "Gizmo krašto \"ausys\"" + +msgid "Zoom in" +msgstr "Padidinti" + +msgid "Zoom out" +msgstr "Nutolinti" + +msgid "Switch between Prepare/Preview" +msgstr "Perjungimas tarp Paruošti / Peržiūrėti" + +msgid "Plater" +msgstr "Plokštė" + +msgid "Move: press to snap by 1mm" +msgstr "Perkėlimas: paspauskite, jei norite paslinkti 1 mm" + +msgid "⌘+Mouse wheel" +msgstr "⌘+Pelės ratukas" + +msgid "Support/Color Painting: adjust pen radius" +msgstr "Atramų / Spalvų piešimas: sureguliuoti rašiklio spindulį" + +msgid "⌥+Mouse wheel" +msgstr "⌥+Pelės ratukas" + +msgid "Support/Color Painting: adjust section position" +msgstr "Atramų / spalvų piešimas: koreguoti sekcijos padėtį" + +msgid "Ctrl+Mouse wheel" +msgstr "Ctrl + pelės ratukas" + +msgid "Alt+Mouse wheel" +msgstr "Alt + pelės ratukas" + +msgid "Gizmo" +msgstr "Gizmo" + +msgid "Set extruder number for the objects and parts" +msgstr "Nustatykite ekstruderio numerį objektams ir dalims" + +msgid "Delete objects, parts, modifiers" +msgstr "Ištrinti objektus, dalis, modifikatorius " + +msgid "Select the object/part and press space to change the name" +msgstr "" +"Pasirinkite objektą ir (arba) dalį ir paspauskite tarpo klavišą, kad " +"pakeistumėte pavadinimą" + +msgid "Mouse click" +msgstr "Pelės paspaudimas" + +msgid "Select the object/part and mouse click to change the name" +msgstr "" +"Pasirinkite objektą/dalį ir spustelėkite pele, kad pakeistumėte pavadinimą" + +msgid "Objects List" +msgstr "Objektų sąrašas" + +msgid "Vertical slider - Move active thumb Up" +msgstr "Vertikalus slankiklis – perkelti aktyvųjį slankiklį aukštyn" + +msgid "Vertical slider - Move active thumb Down" +msgstr "Vertikalus slankiklis – perkelti aktyvųjį slankiklį žemyn" + +msgid "Horizontal slider - Move active thumb Left" +msgstr "Horizontalus slankiklis – perkelti aktyvų slankiklį į kairę" + +msgid "Horizontal slider - Move active thumb Right" +msgstr "Horizontalus slankiklis – perkelti aktyvų slankiklį į dešinę" + +msgid "On/Off one layer mode of the vertical slider" +msgstr "Vertikalaus slankiklio vieno sluoksnio režimas įjungimas / išjungimas" + +msgid "On/Off G-code window" +msgstr "G-kodo lango įjungimas / išjungimas" + +msgid "Move slider 5x faster" +msgstr "Judinkite slankiklį 5 kartus greičiau" + +msgid "Shift+Mouse wheel" +msgstr "Shift + pelės ratukas" + +msgid "Horizontal slider - Move to start position" +msgstr "Horizontalus šliaužiklis - Perkelti į pradinę padėtį" + +msgid "Horizontal slider - Move to last position" +msgstr "Horizontalusis slankiklis - Perkelti į paskutinę padėtį" + +msgid "Release Note" +msgstr "Leidimo pastaba" + +#, c-format, boost-format +msgid "version %s update information:" +msgstr "versijos %s atnaujinimo informacija:" + +msgid "Network plug-in update" +msgstr "Tinklo papildinio atnaujinimas" + +msgid "" +"Click OK to update the Network plug-in when Orca Slicer launches next time." +msgstr "" +"Spustelėkite OK, kad kitą kartą paleidus \"Orca Slicer\" būtų atnaujintas " +"tinklo papildinys." + +#, c-format, boost-format +msgid "A new Network plug-in (%s) is available. Do you want to install it?" +msgstr "Yra naujas tinklo papildinys(%s), ar norite jį įdiegti?" + +msgid "New version of Orca Slicer" +msgstr "Nauja \"Orca Slicer\" versija" + +msgid "Skip this Version" +msgstr "Praleisti šią versiją" + +msgid "Done" +msgstr "Atlikta" + +msgid "resume" +msgstr "tęsti" + +msgid "Resume Printing" +msgstr "Tęsti spausdinimą" + +msgid "Resume Printing (defects acceptable)" +msgstr "Tęsti spausdinimą (priimtini defektai)" + +msgid "Resume Printing (problem solved)" +msgstr "Tęsti spausdinimą (problema išspręsta)" + +msgid "Stop Printing" +msgstr "Nutraukti spausdinimą" + +msgid "Check Assistant" +msgstr "Patikrinimo asistentas" + +msgid "Filament Extruded, Continue" +msgstr "Gijos išspaustos, tęsti" + +msgid "Not Extruded Yet, Retry" +msgstr "Dar neišspausta, bandykite dar kartą" + +msgid "Finished, Continue" +msgstr "Baigta, Tęsti" + +msgid "Load Filament" +msgstr "Įdėti giją" + +msgid "Filament Loaded, Resume" +msgstr "Įdėta gija, tęsti" + +msgid "View Liveview" +msgstr "Peržiūrėti tiesioginį vaizdą" + +msgid "Confirm and Update Nozzle" +msgstr "Patvirtinti ir atnaujinti purkštuką" + +msgid "Connect the printer using IP and access code" +msgstr "Prijunkite spausdintuvą naudodami IP ir prieigos kodą" + +msgid "" +"Step 1. Please confirm Orca Slicer and your printer are in the same LAN." +msgstr "" +"1 žingsnis. Patikrinkite, ar „Orca Slicer“ ir spausdintuvas yra tame pačiame " +"tinkle." + +msgid "" +"Step 2. If the IP and Access Code below are different from the actual values " +"on your printer, please correct them." +msgstr "" +"2 žingsnis. Jei toliau nurodyti IP ir prieigos kodai skiriasi nuo tikrųjų " +"spausdintuvo verčių, pataisykite juos." + +msgid "" +"Step 3. Please obtain the device SN from the printer side; it is usually " +"found in the device information on the printer screen." +msgstr "" +"3 veiksmas. Iš spausdintuvo pusės gaukite įrenginio SN; paprastai jį rasite " +"spausdintuvo ekrane esančioje įrenginio informacijoje." + +msgid "IP" +msgstr "IP" + +msgid "Access Code" +msgstr "Prieigos kodas" + +msgid "Printer model" +msgstr "Spausdintuvo modelis" + +msgid "Printer name" +msgstr "Spausdintuvo pavadinimas" + +msgid "Where to find your printer's IP and Access Code?" +msgstr "Kur rasti spausdintuvo IP ir prieigos kodą?" + +msgid "Connect" +msgstr "Jungtis" + +msgid "Manual Setup" +msgstr "Rankinė sąranka" + +msgid "connecting..." +msgstr "Jungiamasi..." + +msgid "Failed to connect to printer." +msgstr "Nepavyko prisijungti prie spausdintuvo" + +msgid "Failed to publish login request." +msgstr "Nepavyko paskelbti prisijungimo užklausos" + +msgid "The printer has already been bound." +msgstr "Spausdintuvas jau surištas." + +msgid "The printer mode is incorrect, please switch to LAN Only." +msgstr "Spausdintuvo režimas yra neteisingas, perjunkite į tik vietinį tinklą." + +msgid "Connecting to printer... The dialog will close later" +msgstr "Jungimasis prie spausdintuvo... Dialogo langas užsidarys vėliau" + +msgid "Connection failed, please double check IP and Access Code" +msgstr "Ryšys nepavyko, dar kartą patikrinkite IP ir prieigos kodą" + +msgid "" +"Connection failed! If your IP and Access Code is correct, \n" +"please move to step 3 for troubleshooting network issues" +msgstr "" +"Ryšys nepavyko! Jei jūsų IP ir prieigos kodas yra teisingi, \n" +"pereikite prie 3 žingsnio, skirto tinklo problemoms šalinti" + +msgid "Model:" +msgstr "Modelis:" + +msgid "Serial:" +msgstr "Serijinis:" + +msgid "Version:" +msgstr "Versija:" + +msgid "Update firmware" +msgstr "Atnaujinti programinę įrangą" + +msgid "Beta version" +msgstr "Beta versija" + +msgid "Latest version" +msgstr "Paskutinė versija" + +msgid "Updating" +msgstr "Atnaujinama" + +msgid "Update failed" +msgstr "Atnaujinti nepavyko" + +msgid "Update successful" +msgstr "Sėkmingas atnaujinimas" + +msgid "" +"Are you sure you want to update? This will take about 10 minutes. Do not " +"turn off the power while the printer is updating." +msgstr "" +"Ar tikrai norite atnaujinti? Tai užtruks apie 10 minučių. Neišjunkite " +"maitinimo, kol spausdintuvas atnaujinamas." + +msgid "" +"An important update was detected and needs to be run before printing can " +"continue. Do you want to update now? You can also update later from 'Upgrade " +"firmware'." +msgstr "" +"Buvo aptiktas svarbus atnaujinimas, kurį reikia paleisti, kad spausdinimas " +"būtų tęsiamas. Ar norite atnaujinti dabar? Taip pat galite atnaujinti " +"vėliau, naudodami \"Atnaujinti programinę įrangą\"." + +msgid "" +"The firmware version is abnormal. Repairing and updating are required before " +"printing. Do you want to update now? You can also update later on printer or " +"update next time starting Orca." +msgstr "" +"Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant " +"reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite " +"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami " +"\"Orca\"." + +msgid "Extension Board" +msgstr "Išplėtimo plokštė" + +msgid "Saving objects into the 3mf failed." +msgstr "Saving objects into the 3mf failed.Nepavyko įrašyti objektų į 3mf." + +msgid "Only Windows 10 is supported." +msgstr "Palaikoma tik \"Windows 10\"." + +msgid "Failed to initialize the WinRT library." +msgstr "Nepavyko inicializuoti \"WinRT\" bibliotekos." + +msgid "Exporting objects" +msgstr "Objektų eksportavimas" + +msgid "Failed loading objects." +msgstr "Nepavyko įkelti objektų." + +msgid "Repairing object by Windows service" +msgstr "Objekto taisymas \"Windows\" paslauga" + +msgid "Repair failed." +msgstr "Taisymas nepavyko." + +msgid "Loading repaired objects" +msgstr "Pataisytų objektų įkėlimas" + +msgid "Exporting 3mf file failed" +msgstr "Nepavyko eksportuoti 3mf failo" + +msgid "Import 3mf file failed" +msgstr "Nepavyko importuoti 3mf failo" + +msgid "Repaired 3mf file does not contain any object" +msgstr "Pataisytame 3mf faile nėra jokių objektų" + +msgid "Repaired 3mf file contains more than one object" +msgstr "Pataisytame 3mf faile yra daugiau nei vienas objektas" + +msgid "Repaired 3mf file does not contain any volume" +msgstr "Pataisytame 3mf faile nėra jokio tūrio" + +msgid "Repaired 3mf file contains more than one volume" +msgstr "Pataisytame 3mf faile yra daugiau nei vienas tomas" + +msgid "Repair finished" +msgstr "Taisymas baigtas" + +msgid "Repair canceled" +msgstr "Taisymas atšauktas" + +#, boost-format +msgid "Copying of file %1% to %2% failed: %3%" +msgstr "Failo %1% kopijavimas į %2% nepavyko: %3%" + +msgid "Need to check the unsaved changes before configuration updates." +msgstr "" +"Prieš atnaujinant konfigūraciją reikia patikrinti neišsaugotus pakeitimus." + +msgid "Configuration package: " +msgstr "Konfigūracijos paketas: " + +msgid " updated to " +msgstr " atnaujintas į " + +msgid "Open G-code file:" +msgstr "Atidaryti G-kodo failą:" + +msgid "" +"One object has empty initial layer and can't be printed. Please Cut the " +"bottom or enable supports." +msgstr "" +"Vienas objektas turi tuščią pradinį sluoksnį ir jo negalima spausdinti. " +"Iškirpkite apačią arba įjunkite atramas." + +#, boost-format +msgid "Object can't be printed for empty layer between %1% and %2%." +msgstr "Objekto negalima spausdinti dėl tuščio sluoksnio tarp %1% ir %2%." + +#, boost-format +msgid "Object: %1%" +msgstr "Objektas: %1%" + +msgid "" +"Maybe parts of the object at these height are too thin, or the object has " +"faulty mesh" +msgstr "" +"Objekto dalys šiuose aukščiuose gali būti per plonos arba gali būti pažeista " +"objekto 3D figūra" + +msgid "No object can be printed. Maybe too small" +msgstr "Negalima spausdinti jokio objekto. Jis gali būti per mažas" + +msgid "" +"Your print is very close to the priming regions. Make sure there is no " +"collision." +msgstr "" +"Jūsų spaudinys yra labai arti gruntavimo sričių. Įsitikinkite, kad nėra " +"susidūrimo." + +msgid "" +"Failed to generate G-code for invalid custom G-code.\n" +"\n" +msgstr "" + +msgid "Please check the custom G-code or use the default custom G-code." +msgstr "" +"Patikrinkite pasirinktinį G-kodą arba naudokite numatytąjį pasirinktinį G-" +"kodą." + +#, boost-format +msgid "Generating G-code: layer %1%" +msgstr "G-kodo generavimas: sluoksnis %1%" + +msgid "Inner wall" +msgstr "Vidinė siena" + +msgid "Outer wall" +msgstr "Išorinė siena" + +msgid "Overhang wall" +msgstr "Išsikišusi siena" + +msgid "Sparse infill" +msgstr "Retas užpildymas" + +msgid "Internal solid infill" +msgstr "Vidinis vientisas užpildas" + +msgid "Top surface" +msgstr "Viršutinis paviršius" + +msgid "Bottom surface" +msgstr "Apatinis paviršius" + +msgid "Internal Bridge" +msgstr "Vidinis tiltas" + +msgid "Gap infill" +msgstr "Tarpų užpildymas" + +msgid "Support interface" +msgstr "Atramų sąsaja" + +msgid "Support transition" +msgstr "Atramų perėjimas" + +msgid "Multiple" +msgstr "Keli" + +#, boost-format +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " +msgstr "" +"Nepavyko apskaičiuoti linijos pločio %1%. Negalima gauti \"%2%\" reikšmės. " + +msgid "" +"Invalid spacing supplied to Flow::with_spacing(), check your layer height " +"and extrusion width" +msgstr "" +"Srautui Flow::with_spacing() pateiktas neteisingas tarpas, patikrinkite " +"sluoksnio aukštį ir išspaudimo plotį" + +msgid "undefined error" +msgstr "neapibrėžta klaida" + +msgid "too many files" +msgstr "per daug failų" + +msgid "file too large" +msgstr "per didelis failas" + +msgid "unsupported method" +msgstr "nepalaikomas metodas" + +msgid "unsupported encryption" +msgstr "nepalaikomas šifravimas" + +msgid "unsupported feature" +msgstr "nepalaikoma funkcija" + +msgid "failed finding central directory" +msgstr "nepavyko rasti centrinio katalogo" + +msgid "not a ZIP archive" +msgstr "ne ZIP archyvas" + +msgid "invalid header or corrupted" +msgstr "negaliojanti arba sugadinta antraštė" + +msgid "unsupported multidisk" +msgstr "Įrašymas į RAID nepalaikomas" + +msgid "decompression failed" +msgstr "dekompresija nepavyko" + +msgid "compression failed" +msgstr "suspaudimas nepavyko" + +msgid "unexpected decompressed size" +msgstr "netikėtas iškompresuotas dydis" + +msgid "CRC check failed" +msgstr "CRC patikra nepavyko" + +msgid "unsupported central directory size" +msgstr "nepalaikomas centrinio katalogo dydis" + +msgid "allocation failed" +msgstr "paskirstymas nepavyko" + +msgid "file open failed" +msgstr "nepavyko atverti failo" + +msgid "file create failed" +msgstr "nepavyko sukurti failo" + +msgid "file write failed" +msgstr "nepavyko įrašyti failo" + +msgid "file read failed" +msgstr "nepavyko nuskaityti failo" + +msgid "file close failed" +msgstr "nepavyko uždaryti failo" + +msgid "file seek failed" +msgstr "failo paieška nepavyko" + +msgid "file stat failed" +msgstr "failo statistika nepavyko" + +msgid "invalid parameter" +msgstr "neteisingas parametras" + +msgid "invalid filename" +msgstr "neteisingas failo pavadinimas" + +msgid "buffer too small" +msgstr "per mažas buferis" + +msgid "internal error" +msgstr "vidinė klaida" + +msgid "file not found" +msgstr "failas nerastas" + +msgid "archive too large" +msgstr "per didelis archyvas" + +msgid "validation failed" +msgstr "patvirtinimas nepavyko" + +msgid "write callback failed" +msgstr "nepavyko įrašyti grįžtamojo ryšio" + +#, boost-format +msgid "" +"%1% is too close to exclusion area, there may be collisions when printing." +msgstr "" +"%1% yra per arti uždraustos srities, spausdinant gali įvykti susidūrimų." + +#, boost-format +msgid "%1% is too close to others, and collisions may be caused." +msgstr "%1% yra per arti kitų, todėl gali įvykti susidūrimas." + +#, boost-format +msgid "%1% is too tall, and collisions will be caused." +msgstr "%1% yra per aukštas, todėl įvyks susidūrimai." + +msgid " is too close to others, there may be collisions when printing." +msgstr " yra per arti kitų, spausdinant gali įvykti susidūrimų." + +msgid " is too close to exclusion area, there may be collisions when printing." +msgstr " yra per arti uždraustosios zonos, spausdinant gali įvykti susidūrimų." + +msgid "Prime Tower" +msgstr "Pirminis bokštas" + +msgid " is too close to others, and collisions may be caused.\n" +msgstr " yra per arti kitų, todėl gali įvykti susidūrimai.\n" + +msgid " is too close to exclusion area, and collisions will be caused.\n" +msgstr " yra per arti uždraustosios zonos, todėl įvyks susidūrimai.\n" + +msgid "" +"Cannot print multiple filaments which have large difference of temperature " +"together. Otherwise, the extruder and nozzle may be blocked or damaged " +"during printing." +msgstr "" +"Negalima kartu spausdinti kelių gijų, kurių temperatūrų skirtumai yra " +"dideli. Priešingu atveju spausdinant gali užsikimšti arba sugesti " +"ekstruderis ir purkštukas" + +msgid "No extrusions under current settings." +msgstr "Pagal dabartinius nustatymus nėra išspaudimų." + +msgid "" +"Smooth mode of timelapse is not supported when \"by object\" sequence is " +"enabled." +msgstr "" +"Kai įjungta seka \"pagal objektą\", sklandus pakadrinio filmavimo režimas " +"nepalaikomas." + +msgid "" +"Please select \"By object\" print sequence to print multiple objects in " +"spiral vase mode." +msgstr "" +"Pasirinkite spausdinimo seką \"Pagal objektą\", jei norite spausdinti kelis " +"objektus spiralinės vazos režimu." + +msgid "" +"The spiral vase mode does not work when an object contains more than one " +"materials." +msgstr "" +"Spiralinės vazos režimas neveikia, kai objekte yra daugiau nei viena " +"medžiaga." + +#, boost-format +msgid "" +"While the object %1% itself fits the build volume, it exceeds the maximum " +"build volume height because of material shrinkage compensation." +msgstr "" +"Nors pats objektas %1% telpa į surinkimo tūrį, jis viršija maksimalų " +"surinkimo tūrio aukštį dėl medžiagos susitraukimo kompensavimo." + +#, boost-format +msgid "The object %1% exceeds the maximum build volume height." +msgstr "Objektas %1% viršija maksimalų galimą spausdinimo tūrio aukštį." + +#, boost-format +msgid "" +"While the object %1% itself fits the build volume, its last layer exceeds " +"the maximum build volume height." +msgstr "" +"Nors pats objektas %1% telpa į spausdinimo tūrį, jo paskutinis sluoksnis " +"viršija didžiausią spausdinimo tūrio aukštį." + +msgid "" +"You might want to reduce the size of your model or change current print " +"settings and retry." +msgstr "" +"Galbūt norėsite sumažinti modelio dydį arba pakeisti esamus spausdinimo " +"nustatymus ir bandyti dar kartą." + +msgid "Variable layer height is not supported with Organic supports." +msgstr "Kintamas sluoksnio aukštis nepalaikomas su \" Organinėmis atramomis\"." + +msgid "" +"Different nozzle diameters and different filament diameters may not work " +"well when the prime tower is enabled. It's very experimental, so please " +"proceed with caution." +msgstr "" +"Skirtingo skersmens purkštukai ir skirtingo skersmens gijos gali neveikti " +"gerai, kai įjungtas valymo bokštas. Tai labai eksperimentinė priemonė, todėl " +"elkitės atsargiai." + +msgid "" +"The Wipe Tower is currently only supported with the relative extruder " +"addressing (use_relative_e_distances=1)." +msgstr "" +"Valymo bokštas šiuo metu palaikomas tik naudojant santykinį ekstruderio " +"adresą (use_relative_e_distances=1)." + +msgid "" +"Ooze prevention is only supported with the wipe tower when " +"'single_extruder_multi_material' is off." +msgstr "" +"Dumblo susidarymo prevencija palaikoma tik naudojant nuvalymo bokštą, kai " +"'single_extruder_multi_material' yra išjungta." + +msgid "" +"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, " +"RepRapFirmware and Repetier G-code flavors." +msgstr "" +"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/" +"Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose." + +msgid "The prime tower is not supported in \"By object\" print." +msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"." + +msgid "" +"The prime tower is not supported when adaptive layer height is on. It " +"requires that all objects have the same layer height." +msgstr "" +"Pagrindinis bokštas nepalaikomas, kai įjungtas prisitaikantis sluoksnio " +"aukštis. Reikalaujama, kad visi objektai turėtų vienodą sluoksnio aukštį." + +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." +msgstr "" +"Valymo bokštui reikia, kad bet koks \"atraminis tarpas\" būtų sluoksnio " +"aukščio kartotinis" + +msgid "The prime tower requires that all objects have the same layer heights." +msgstr "" +"Valymo bokštui reikia, kad visų objektų sluoksnio aukštis būtų vienodas" + +msgid "" +"The prime tower requires that all objects are printed over the same number " +"of raft layers." +msgstr "" +"Valymo bokštui reikia, kad visi objektai būtų spausdinami ant vienodo " +"skaičiaus platformos sluoksnių" + +msgid "" +"The prime tower is only supported for multiple objects if they are printed " +"with the same support_top_z_distance." +msgstr "" +"Pirminis bokštas palaikomas keliems objektams tik tuo atveju, jei jie " +"spausdinami tuo pačiu atramų z aukščio atstumu." + +msgid "" +"The prime tower requires that all objects are sliced with the same layer " +"heights." +msgstr "" +"Pirminis bokštas reikalauja, kad visi objektai būtų susluoksniuoti vienodo " +"aukščio sluoksniais." + +msgid "" +"The prime tower is only supported if all objects have the same variable " +"layer height." +msgstr "" +"Pagrindinis bokštas palaikomas tik tuo atveju, jei visi objektai turi tą " +"patį kintamą sluoksnio aukštį" + +msgid "" +"One or more object were assigned an extruder that the printer does not have." +msgstr "" +"Vienas ar daugiau objektų buvo priskirti ekstruderiui, kurio spausdintuvas " +"neturi." + +msgid "Too small line width" +msgstr "Per mažas linijos plotis" + +msgid "Too large line width" +msgstr "Per didelis linijos plotis" + +msgid "" +"Printing with multiple extruders of differing nozzle diameters. If support " +"is to be printed with the current filament (support_filament == 0 or " +"support_interface_filament == 0), all nozzles have to be of the same " +"diameter." +msgstr "" +"Spausdinti su keliais skirtingo skersmens purkštukais. Jei atrama turi būti " +"spausdinama su dabartine gija (support_filament == 0 arba " +"support_interface_filament == 0), visi purkštukai turi būti vienodo " +"skersmens." + +msgid "" +"The prime tower requires that support has the same layer height with object." +msgstr "" +"Pagrindinis bokštas reikalauja, kad atramos ir objekto sluoksnio aukštis " +"būtų toks pat." + +msgid "" +"Organic support tree tip diameter must not be smaller than support material " +"extrusion width." +msgstr "" +"Organinio atraminio medžio viršūnės skersmuo turi būti ne mažesnis už " +"atraminės medžiagos ekstruzijos plotį." + +msgid "" +"Organic support branch diameter must not be smaller than 2x support material " +"extrusion width." +msgstr "" +"Organinės atraminės šakos skersmuo turi būti ne mažesnis kaip 2 kartus " +"mažesnis už atraminės medžiagos ekstruzijos plotį." + +msgid "" +"Organic support branch diameter must not be smaller than support tree tip " +"diameter." +msgstr "" +"Organinės atraminės šakos skersmuo neturi būti mažesnis už atraminio medžio " +"viršūnės skersmenį." + +msgid "" +"Support enforcers are used but support is not enabled. Please enable support." +msgstr "" +"Naudojamos priverstinės atramos, tačiau atramų funkcija išjungta. Įjunkite " +"atramas." + +msgid "Layer height cannot exceed nozzle diameter." +msgstr "Sluoksnio aukštis negali viršyti purkštuko skersmens" + +msgid "" +"Relative extruder addressing requires resetting the extruder position at " +"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to " +"layer_gcode." +msgstr "" +"Tam, kad neprarastų slankiojo kablelio tikslumo, santykinis ekstruderio " +"adresavimas reikalauja kiekviename sluoksnyje iš naujo nustatyti ekstruderio " +"padėtį. Pridėkite „G92 E0“ prie layer_gcode." + +msgid "" +"\"G92 E0\" was found in before_layer_gcode, which is incompatible with " +"absolute extruder addressing." +msgstr "" +"„G92 E0“ buvo rastas before_layer_gcode, kuris nesuderinamas su absoliučiu " +"ekstruderio adresavimu." + +msgid "" +"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute " +"extruder addressing." +msgstr "" +"layer_gcode buvo rastas „G92 E0“, - tai nesuderinama su absoliučiu " +"ekstruderio adresavimu." + +#, c-format, boost-format +msgid "Plate %d: %s does not support filament %s" +msgstr "Plokštė %d: %s nepalaiko %s gijos" + +msgid "" +"Setting the jerk speed too low could lead to artifacts on curved surfaces" +msgstr "" +"Nustačius per mažą trūkčiojimo greitį, lenktuose paviršiuose gali atsirasti " +"artefaktų" + +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 "" +"Nustatytas trūkčiojimas viršija didžiausią spausdintuvo trūkčiojimą " +"(machine_max_jerk_x/machine_max_jerk_y).\n" +"Orca automatiškai apribos trūkčiojimo greitį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite " +"pakoreguoti didžiausio trūkčiojimo nustatymą." + +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 "" +"Nustatytas pagreitis viršija maksimalų spausdintuvo pagreitį " +"(machine_max_acceleration_extruding).\n" +"Orca automatiškai apribos pagreitį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite " +"pakoreguoti machine_max_acceleration_extruding reikšmę." + +msgid "" +"The travel acceleration setting exceeds the printer's maximum travel " +"acceleration (machine_max_acceleration_travel).\n" +"Orca will automatically cap the travel acceleration speed to ensure it " +"doesn't surpass the printer's capabilities.\n" +"You can adjust the machine_max_acceleration_travel value in your printer's " +"configuration to get higher speeds." +msgstr "" +"Judėjimo pagreičio nustatymas viršija didžiausią spausdintuvo judėjimo " +"pagreitį (machine_max_acceleration_travel).\n" +"Orca automatiškai apribos judėjimo pagreitį, kad jis neviršytų spausdintuvo " +"galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite " +"pakoreguoti machine_max_acceleration_travel reikšmę." + +msgid "" +"Filament shrinkage will not be used because filament shrinkage for the used " +"filaments differs significantly." +msgstr "" +"Gijų susitraukimas nenaudojamas, nes naudojamų gijų susitraukimas labai " +"skiriasi." + +msgid "Generating skirt & brim" +msgstr "Generuojamas apvadas ir kraštas" + +msgid "Exporting G-code" +msgstr "Eksportuojamas G-kodas" + +msgid "Generating G-code" +msgstr "Generuojamas G-kodas" + +msgid "Failed processing of the filename_format template." +msgstr "Nepavyko apdoroti šablono filename_format." + +msgid "Printer technology" +msgstr "Spausdintuvo technologija" + +msgid "Printable area" +msgstr "Spausdinama sritis" + +msgid "Bed exclude area" +msgstr "Nespausdinama pagrindo sritis" + +msgid "" +"Unprintable area in XY plane. For example, X1 Series printers use the front " +"left corner to cut filament during filament change. The area is expressed as " +"polygon by points in following format: \"XxY, XxY, ...\"" +msgstr "" +"Nespausdinama sritis XY plokštumoje. Pavyzdžiui, X1 serijos spausdintuvuose " +"priekinis kairysis kampas naudojamas gijai nupjauti keičiant giją. Plotas " +"išreiškiamas taškų daugiakampiu toliau nurodytu formatu: \"XxY, XxY, ...\"" + +msgid "Bed custom texture" +msgstr "Pasirinktinė pagrindo tekstūra" + +msgid "Bed custom model" +msgstr "Pasirinktinis pagrindo modelis" + +msgid "Elephant foot compensation" +msgstr "Dramblio pėdos kompensacija" + +msgid "" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." +msgstr "" +"Taip sutraukiamas pirmasis spausdinio sluoksnis, kad būtų kompensuotas " +"dramblio pėdos efektas" + +msgid "Elephant foot compensation layers" +msgstr "Dramblio pėdos kompensavimo sluoksniai" + +msgid "" +"The number of layers on which the elephant foot compensation will be active. " +"The first layer will be shrunk by the elephant foot compensation value, then " +"the next layers will be linearly shrunk less, up to the layer indicated by " +"this value." +msgstr "" +"Sluoksnių, kuriuose veiks dramblio pėdos kompensavimas, skaičius. Pirmasis " +"sluoksnis bus sumažintas pagal dramblio pėdos kompensavimo vertę, tada kiti " +"sluoksniai bus tiesiškai mažinami mažiau, iki šia verte nurodyto sluoksnio." + +msgid "layers" +msgstr "sluoksniai" + +msgid "" +"Slicing height for each layer. Smaller layer height means more accurate and " +"more printing time." +msgstr "" +"Tai kiekvieno sluoksnio aukštis. Mažesni sluoksnių aukščiai užtikrina " +"didesnį tikslumą, bet ilgesnį spausdinimo laiką" + +msgid "Printable height" +msgstr "Spausdinamas aukštis" + +msgid "Maximum printable height which is limited by mechanism of printer." +msgstr "" +"Tai didžiausias spausdinamas aukštis, kurį riboja spausdinimo zonos aukštis" + +msgid "Preferred orientation" +msgstr "Pageidautina orientacija" + +msgid "Automatically orient stls on the Z-axis upon initial import." +msgstr "Automatiškai orientuoti stl failus pagal Z ašį pradinio importo metu" + +msgid "Printer preset names" +msgstr "Spausdintuvo nustatymų pavadinimai" + +msgid "Use 3rd-party print host" +msgstr "Naudokite trečiosios šalies spausdinimo prieglobą" + +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." +msgstr "" +"Leidimas valdyti \"BambuLab\" spausdintuvą per trečiosios šalies spausdinimo " +"prieglobą" + +msgid "Hostname, IP or URL" +msgstr "Hosto pavadinimas, IP arba URL" + +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field should " +"contain the hostname, IP address or URL of the printer host instance. Print " +"host behind HAProxy with basic auth enabled can be accessed by putting the " +"user name and password into the URL in the following format: https://" +"username:password@your-octopi-address/" +msgstr "" +"\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvo prieglobą. Šiame " +"lauke turi būti nurodytas spausdintuvo prieglobos egzemplioriaus prieglobos " +"vardas, IP adresas arba URL. Spausdintuvo prieglobą už HAProxy su įjungta " +"pagrindine autorizacija galima pasiekti į URL įrašant naudotojo vardą ir " +"slaptažodį tokiu formatu: https://username:password@your-octopi-address/" + +msgid "Device UI" +msgstr "Įrenginio sąsaja" + +msgid "" +"Specify the URL of your device user interface if it's not same as print_host." +msgstr "" +"Nurodykite savo įrenginio naudotojo sąsajos URL, jei jis nesutampa su " +"print_host" + +msgid "API Key / Password" +msgstr "API raktas / slaptažodis" + +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field should " +"contain the API Key or the password required for authentication." +msgstr "" +"\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turėtų " +"būti nurodytas API raktas arba autentifikavimui reikalingas slaptažodis." + +msgid "Name of the printer." +msgstr "Spausdintuvo pavadinimas" + +msgid "HTTPS CA File" +msgstr "HTTPS CA failas" + +msgid "" +"Custom CA certificate file can be specified for HTTPS OctoPrint connections, " +"in crt/pem format. If left blank, the default OS CA certificate repository " +"is used." +msgstr "" +"Pasirinktinis CA sertifikato failas gali būti nurodytas HTTPS OctoPrint " +"ryšiams crt/pem formatu. Jei paliekama tuščia, naudojama numatytoji OS CA " +"sertifikatų saugykla." + +msgid "User" +msgstr "Naudotojas" + +msgid "Password" +msgstr "Slaptažodis" + +msgid "Ignore HTTPS certificate revocation checks" +msgstr "Nepaisyti HTTPS sertifikato atšaukimo patikrų" + +msgid "" +"Ignore HTTPS certificate revocation checks in case of missing or offline " +"distribution points. One may want to enable this option for self signed " +"certificates if connection fails." +msgstr "" +"Nepaisyti HTTPS sertifikato atšaukimo patikrų, jei paskirstymo taškų trūksta " +"arba jie neprisijungę. Jei nepavyksta prisijungti, galite įjungti šią " +"parinktį savarankiškai pasirašytiems sertifikatams." + +msgid "Names of presets related to the physical printer." +msgstr "Su fiziniu spausdintuvu susijusių išankstinių nustatymų pavadinimai" + +msgid "Authorization Type" +msgstr "Autorizacijos tipas" + +msgid "API key" +msgstr "API raktas" + +msgid "HTTP digest" +msgstr "HTTP santrauka" + +msgid "Avoid crossing walls" +msgstr "Vengti kirsti sieną" + +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." +msgstr "" +"Apvažiuoti ir vengti važiuoti per sieną, nes dėl to ant paviršiaus gali " +"atsirasti žymė" + +msgid "Avoid crossing walls - Max detour length" +msgstr "Vengti kirsti sieną - Didžiausias apylankos ilgis" + +msgid "" +"Maximum detour distance for avoiding crossing wall. Don't detour if the " +"detour distance is larger than this value. Detour length could be specified " +"either as an absolute value or as percentage (for example 50%) of a direct " +"travel path. Zero to disable." +msgstr "" +"Didžiausias apylankos atstumas, kad būtų išvengta sienos kirtimo: " +"Spausdintuvas neaplenks sienos, jei aplenkimo atstumas yra didesnis nei ši " +"vertė. Apylankos ilgis gali būti nurodomas kaip absoliuti vertė arba kaip " +"procentinė dalis (pvz., 50 %) nuo tiesioginio judėjimo kelio. Nustačius 0 " +"reikšmę, ši funkcija bus išjungta" + +msgid "mm or %" +msgstr "mm arba %" + +msgid "Other layers" +msgstr "Kiti sluoksniai" + +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." +msgstr "" +"Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko " +"spausdinimo ant šaltos plokštės" + +msgid "°C" +msgstr "°C" + +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." +msgstr "" +"Sluoksnių, išskyrus pradinį, pagrindo temperatūra. Reikšmė 0 reiškia, kad " +"gija neleidžia spausdinti ant tekstūrinės vėsios plokštės" + +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." +msgstr "" +"Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko " +"spausdinimo ant inžinerinės plokštės" + +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." +msgstr "" +"Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko " +"spausdinimo ant aukštos temperatūros plokštės" + +msgid "" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." +msgstr "" +"Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko " +"spausdinimo ant tekstūruotos PEI plokštės" + +msgid "Initial layer" +msgstr "Pradinis sluoksnis" + +msgid "Initial layer bed temperature" +msgstr "Pradinė sluoksnio pagrindo temperatūra" + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." +msgstr "" +"Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija " +"nepalaiko spausdinimo ant šaltos plokštės „SuperTack“." + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." +msgstr "" +"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant " +"šaltos plokštės" + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." +msgstr "" +"Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija " +"neleidžia spausdinti ant tekstūruotos vėsios plokštės" + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." +msgstr "" +"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant " +"inžinerinės plokštės" + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." +msgstr "" +"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant " +"aukštos temperatūros plokštės" + +msgid "" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." +msgstr "" +"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant " +"tekstūruotos PEI plokštės" + +msgid "Bed types supported by the printer." +msgstr "Spausdintuvo palaikomi pagrindo tipai" + +msgid "Smooth Cool Plate" +msgstr "Glotni vėsi plokštė" + +msgid "Smooth High Temp Plate" +msgstr "Lygi aukštos temperatūros plokštė" + +msgid "First layer print sequence" +msgstr "Pirmojo sluoksnio spausdinimo seka" + +msgid "Other layers print sequence" +msgstr "Kitų sluoksnių spausdinimo seka" + +msgid "The number of other layers print sequence" +msgstr "Sluoksnių skaičiaus spausdinimo seka" + +msgid "Other layers filament sequence" +msgstr "Kitų sluoksnių gijų seka" + +msgid "This G-code is inserted at every layer change before the Z lift." +msgstr "" +"Šis G-kodas įterpiamas kiekvieną kartą keičiant sluoksnį prieš pakeliant z" + +msgid "Bottom shell layers" +msgstr "Apatiniai sluoksniai" + +msgid "" +"This is the number of solid layers of bottom shell, including the bottom " +"surface layer. When the thickness calculated by this value is thinner than " +"bottom shell thickness, the bottom shell layers will be increased." +msgstr "" +"Tai yra apatinio korpuso vientisų sluoksnių skaičius, įskaitant apatinį " +"paviršiaus sluoksnį. Kai pagal šią reikšmę apskaičiuotas storis yra " +"plonesnis už apatinio apvalkalo storį, apatinio apvalkalo sluoksniai bus " +"padidinti" + +msgid "Bottom shell thickness" +msgstr "Apatinio apvalkalo storis" + +msgid "" +"The number of bottom solid layers is increased when slicing if the thickness " +"calculated by bottom shell layers is thinner than this value. This can avoid " +"having too thin shell when layer height is small. 0 means that this setting " +"is disabled and thickness of bottom shell is absolutely determined by bottom " +"shell layers." +msgstr "" +"Pjaustant didinamas apatinių vientisų sluoksnių skaičius, jei pagal " +"apatinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią " +"vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra " +"mažas. 0 reiškia, kad šis nustatymas išjungtas ir apatinio apvalkalo storis " +"visiškai nustatomas pagal apatinio apvalkalo sluoksnius" + +msgid "Apply gap fill" +msgstr "Taikyti tarpų užpildymą" + +msgid "" +"Enables gap fill for the selected solid surfaces. The minimum gap length " +"that will be filled can be controlled from the filter out tiny gaps option " +"below.\n" +"\n" +"Options:\n" +"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces " +"for maximum strength\n" +"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " +"only, balancing print speed, reducing potential over extrusion in the solid " +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" +"\n" +"Note that if using the classic perimeter generator, gap fill may also be " +"generated between perimeters, if a full width line cannot fit between them. " +"That perimeter gap fill is not controlled by this setting.\n" +"\n" +"If you would like all gap fill, including the classic perimeter generated " +"one, removed, set the filter out tiny gaps value to a large number, like " +"999999.\n" +"\n" +"However this is not advised, as gap fill between perimeters is contributing " +"to the model's strength. For models where excessive gap fill is generated " +"between perimeters, a better option would be to switch to the arachne wall " +"generator and use this option to control whether the cosmetic top and bottom " +"surface gap fill is generated." +msgstr "" +"Įjungiamas pasirinktų vientisų paviršių tarpų užpildymas. Mažiausias " +"užpildomo tarpo ilgis gali būti kontroliuojamas naudojant toliau esančią " +"mažų tarpų filtravimo parinktį.\n" +"\n" +"Parinktys:\n" +"1. Visur: Taikomas tarpo užpildymas viršutiniam, apatiniam ir vidiniam " +"vientisam paviršiui, kad jis būtų maksimaliai tvirtas.\n" +"2. Viršutinis ir apatinis paviršiai: Užpildomi tik viršutiniai ir apatiniai " +"paviršiai, taip subalansuojant spausdinimo greitį, sumažinant galimą " +"vientisų užpildų perteklinį išspaudimą ir užtikrinant, kad viršutiniuose ir " +"apatiniuose paviršiuose nebūtų skylučių tarpų.\n" +"3. Niekur: Išjungiamas tarpų užpildymas visuose vientiso užpildo plotuose.\n" +"\n" +"Atkreipkite dėmesį, kad jei naudojamas klasikinis perimetro generatorius, " +"tarpų užpildymas gali būti generuojamas ir tarp perimetrų, jei tarp jų " +"netelpa viso pločio linija. Šis nustatymas tokio perimetro tarpo užpildymo " +"nekontroliuoja.\n" +"\n" +"Jei norite, kad visi tarpų užpildymai, įskaitant klasikinio perimetro " +"generuojamą tarpą, būtų pašalinti, nustatykite mažų tarpų filtravimo reikšmę " +"dideliu skaičiumi, pavyzdžiui, 999999.\n" +"\n" +"Tačiau to daryti nerekomenduojama, nes tarpų tarp perimetrų užpildymas " +"prisideda prie modelio tvirtumo. Modeliuose, kuriuose tarp perimetrų " +"generuojamas per didelis tarpų užpildas, geresnis variantas būtų pereiti " +"prie arachne sienų generatoriaus ir šia parinktimi valdyti, ar generuojamas " +"kosmetinis viršutinio ir apatinio paviršiaus tarpų užpildas" + +msgid "Everywhere" +msgstr "Visur" + +msgid "Top and bottom surfaces" +msgstr "Viršutinis ir apatinis paviršiai" + +msgid "Nowhere" +msgstr "Niekur" + +msgid "Force cooling for overhangs and bridges" +msgstr "Iškyšų ir tiltų priverstinis aušinimas" + +msgid "" +"Enable this option to allow adjustment of the part cooling fan speed for " +"specifically for overhangs, internal and external bridges. Setting the fan " +"speed specifically for these features can improve overall print quality and " +"reduce warping." +msgstr "" +"Įjunkite šią parinktį, kad būtų galima reguliuoti detalės aušinimo " +"ventiliatoriaus greitį specialiai iškyšoms, vidiniams ir išoriniams " +"tilteliams. Nustatant ventiliatoriaus greitį specialiai šiems elementams, " +"galima pagerinti bendrą spausdinimo kokybę ir sumažinti deformacijas." + +msgid "Overhangs and external bridges fan speed" +msgstr "Ventiliatoriaus greitis iškyšose ir išoriniuose tiltuose" + +msgid "" +"Use this part cooling fan speed when printing bridges or overhang walls with " +"an overhang threshold that exceeds the value set in the 'Overhangs cooling " +"threshold' parameter above. Increasing the cooling specifically for " +"overhangs and bridges can improve the overall print quality of these " +"features.\n" +"\n" +"Please note, this fan speed is clamped on the lower end by the minimum fan " +"speed threshold set above. It is also adjusted upwards up to the maximum fan " +"speed threshold when the minimum layer time threshold is not met." +msgstr "" +"Šį dalies aušinimo ventiliatoriaus greitį naudokite spausdindami tiltus arba " +"iškyšas, kurių iškyšų slenkstis viršija pirmiau nustatyto parametro „Iškyšų " +"aušinimo slenkstis“ vertę. Padidinus specialiai iškyšoms ir tilteliams " +"skirtą aušinimą, gali pagerėti bendra šių elementų spausdinimo kokybė.\n" +"\n" +"Atkreipkite dėmesį, kad šis ventiliatoriaus greitis yra ribojamas apatinėje " +"dalyje pagal pirmiau nustatytą mažiausią ventiliatoriaus greičio ribą. Jis " +"taip pat reguliuojamas aukštyn iki didžiausios ventiliatoriaus greičio " +"ribos, kai nepasiekiama minimali sluoksnio trukmės riba." + +msgid "Overhang cooling activation threshold" +msgstr "Iškyšos vėsinimo aktyvavimo riba" + +#, no-c-format, no-boost-format +msgid "" +"When the overhang exceeds this specified threshold, force the cooling fan to " +"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a " +"percentage, indicating the portion of each line's width that is unsupported " +"by the layer beneath it. Setting this value to 0% forces the cooling fan to " +"run for all outer walls, regardless of the overhang degree." +msgstr "" +"Kai iškyša viršija šią nustatytą ribą, priverskite aušinimo ventiliatorių " +"veikti toliau nustatytu „Iškyšos ventiliatoriaus greičiu“. Ši riba " +"išreiškiama procentais, nurodant kiekvienos linijos pločio dalį, kurios " +"nepalaiko po ja esantis sluoksnis. Nustačius šią reikšmę 0 %, aušinimo " +"ventiliatorius priverstas veikti visoms išorinėms sienoms, nepriklausomai " +"nuo iškyšos laipsnio." + +msgid "External bridge infill direction" +msgstr "Išorinio tilto užpildymo kryptis" + +#, no-c-format, no-boost-format +msgid "" +"Bridging angle override. If left to zero, the bridging angle will be " +"calculated automatically. Otherwise the provided angle will be used for " +"external bridges. Use 180°for zero angle." +msgstr "" +"Tilto kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto kampas " +"apskaičiuojamas automatiškai. Priešingu atveju išoriniams tilteliams bus " +"naudojamas pateiktas kampas. Nuliniam kampui naudokite 180°." + +msgid "Internal bridge infill direction" +msgstr "Vidinio tilto užpildymo kryptis" + +msgid "" +"Internal bridging angle override. If left to zero, the bridging angle will " +"be calculated automatically. Otherwise the provided angle will be used for " +"internal bridges. Use 180°for zero angle.\n" +"\n" +"It is recommended to leave it at 0 unless there is a specific model need not " +"to." +msgstr "" +"Vidinio pertvaros kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto " +"kampas apskaičiuojamas automatiškai. Priešingu atveju vidiniams tiltams bus " +"naudojamas nurodytas kampas. Naudokite 180°, kad kampas būtų lygus nuliui.\n" +"\n" +"Rekomenduojama palikti 0, nebent yra konkretus modelio poreikis to nedaryti." + +msgid "External bridge density" +msgstr "Išorinio tilto tankis" + +msgid "" +"Controls the density (spacing) of external bridge lines. 100% means solid " +"bridge. Default is 100%.\n" +"\n" +"Lower density external bridges can help improve reliability as there is more " +"space for air to circulate around the extruded bridge, improving its cooling " +"speed." +msgstr "" +"Valdo išorinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą " +"tiltą. Numatytoji reikšmė yra 100 %.\n" +"\n" +"Mažesnio tankio išoriniai tilteliai gali padėti padidinti patikimumą, nes " +"aplink išspaustą tiltelį cirkuliuoja daugiau vietos orui, todėl pagerėja jo " +"aušinimo greitis." + +msgid "Internal bridge density" +msgstr "Vidinių tiltų tankis" + +msgid "" +"Controls the density (spacing) of internal bridge lines. 100% means solid " +"bridge. Default is 100%.\n" +"\n" +"Lower density internal bridges can help reduce top surface pillowing and " +"improve internal bridge reliability as there is more space for air to " +"circulate around the extruded bridge, improving its cooling speed.\n" +"\n" +"This option works particularly well when combined with the second internal " +"bridge over infill option, further improving internal bridging structure " +"before solid infill is extruded." +msgstr "" +"Valdo vidinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą " +"tiltą. Numatytoji reikšmė yra 100 %.\n" +"\n" +" Mažesnio tankio vidiniai tilteliai gali padėti sumažinti viršutinio " +"paviršiaus iškilimą ir padidinti vidinio tiltelio patikimumą, nes aplink " +"išspaustą tiltelį cirkuliuoja daugiau erdvės orui, todėl pagerėja jo " +"aušinimo greitis.\n" +"\n" +"Ši parinktis ypač gerai veikia kartu su antrojo vidinio tiltelio virš " +"užpildo parinktimi, dar labiau pagerinančia vidinio tiltelio struktūrą prieš " +"išspaudžiant kietąjį užpildą." + +msgid "Bridge flow ratio" +msgstr "Tilto srauto santykis" + +msgid "" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" +"\n" +"The actual bridge flow used is calculated by multiplying this value with the " +"filament flow ratio, and if set, the object's flow ratio." +msgstr "" +"Šiek tiek sumažinkite šią reikšmę (pvz., 0,9), kad sumažintumėte tilto " +"medžiagos kiekį ir pagerintumėte įlinkį.\n" +"\n" +"Faktinis tiltelio srautas apskaičiuojamas padauginus šią reikšmę iš gijos " +"srauto santykio ir, jei nustatyta, objekto srauto santykio." + +msgid "Internal bridge flow ratio" +msgstr "Vidinio tilto srauto koeficientas" + +msgid "" +"This value governs the thickness of the internal bridge layer. This is the " +"first layer over sparse infill. Decrease this value slightly (for example " +"0.9) to improve surface quality over sparse infill.\n" +"\n" +"The actual internal bridge flow used is calculated by multiplying this value " +"with the bridge flow ratio, the filament flow ratio, and if set, the " +"object's flow ratio." +msgstr "" +"Ši vertė lemia vidinio tilto sluoksnio storį. Tai yra pirmasis sluoksnis " +"virš reto užpildo. Šiek tiek sumažinkite šią reikšmę (pavyzdžiui, 0,9), kad " +"pagerintumėte paviršiaus kokybę virš reto užpildo.\n" +"\n" +"Faktinis naudojamas vidinio tiltelio srautas apskaičiuojamas padauginus šią " +"vertę iš tiltelio srauto santykio, gijų srauto santykio ir, jei nustatyta, " +"objekto srauto santykio." + +msgid "Top surface flow ratio" +msgstr "Viršutinio paviršiaus srauto koeficientas" + +msgid "" +"This factor affects the amount of material for top solid infill. You can " +"decrease it slightly to have smooth surface finish.\n" +"\n" +"The actual top surface flow used is calculated by multiplying this value " +"with the filament flow ratio, and if set, the object's flow ratio." +msgstr "" +"Šis veiksnys turi įtakos viršutinio vientiso užpildo medžiagos kiekiui. " +"Galite jį šiek tiek sumažinti, kad paviršius būtų lygus.\n" +"\n" +"Faktinis naudojamas viršutinio paviršiaus srautas apskaičiuojamas padauginus " +"šią reikšmę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto " +"koeficiento." + +msgid "Bottom surface flow ratio" +msgstr "Dugno paviršiaus srauto koeficientas" + +msgid "" +"This factor affects the amount of material for bottom solid infill.\n" +"\n" +"The actual bottom solid infill flow used is calculated by multiplying this " +"value with the filament flow ratio, and if set, the object's flow ratio." +msgstr "" +"Šis veiksnys turi įtakos medžiagos vientiso dugno užpildo kiekiui.\n" +"\n" +"Faktinis apatinio vientiso užpildo srautas apskaičiuojamas padauginus šią " +"vertę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto " +"koeficiento." + +msgid "Precise wall" +msgstr "Tiksli siena" + +msgid "" +"Improve shell precision by adjusting outer wall spacing. This also improves " +"layer consistency." +msgstr "" +"Pagerinti korpuso tikslumą reguliuojant atstumus tarp išorinių sienelių. Tai " +"taip pat pagerina sluoksnių nuoseklumą." + +msgid "Only one wall on top surfaces" +msgstr "Tik viena viršutinių paviršių siena" + +msgid "" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." +msgstr "" +"Ant lygaus viršutinio paviršiaus naudokite tik vieną sienelę, kad būtų " +"daugiau vietos viršutiniam užpildymo raštui" + +msgid "One wall threshold" +msgstr "Vienos sienos riba" + +#, no-c-format, no-boost-format +msgid "" +"If a top surface has to be printed and it's partially covered by another " +"layer, it won't be considered at a top layer where its width is below this " +"value. This can be useful to not let the 'one perimeter on top' trigger on " +"surface that should be covered only by perimeters. This value can be a mm or " +"a % of the perimeter extrusion width.\n" +"Warning: If enabled, artifacts can be created if you have some thin features " +"on the next layer, like letters. Set this setting to 0 to remove these " +"artifacts." +msgstr "" +"Jei viršutinį paviršių reikia atspausdinti ir jį iš dalies dengia kitas " +"sluoksnis, jis nebus laikomas viršutiniu sluoksniu, jei jo plotis yra " +"mažesnis už šią reikšmę. Tai gali būti naudinga norint, kad nebūtų įjungta " +"funkcija \"vienas perimetras viršuje\" ant paviršiaus, kurį turėtų dengti " +"tik perimetrai. Ši vertė gali būti mm arba % perimetro išspaudimo pločio.\n" +"Įspėjimas: Jei ši funkcija įjungta, gali atsirasti artefaktų, jei kitame " +"sluoksnyje yra plonų elementų, pavyzdžiui, raidžių. Nustatykite šią nuostatą " +"į 0, kad šie artefaktai būtų pašalinti." + +msgid "Only one wall on first layer" +msgstr "Tik viena pirmojo sluoksnio siena" + +msgid "" +"Use only one wall on first layer, to give more space to the bottom infill " +"pattern." +msgstr "" +"Pirmajame sluoksnyje naudokite tik vieną sienelę, kad būtų daugiau vietos " +"apatiniam užpildymo raštui" + +msgid "Extra perimeters on overhangs" +msgstr "Papildomi iškyšų perimetrai" + +msgid "" +"Create additional perimeter paths over steep overhangs and areas where " +"bridges cannot be anchored." +msgstr "" +"Sukurti papildomus perimetrinius takus per stačias iškyšas ir vietas, " +"kuriose negalima įtvirtinti tiltų." + +msgid "Reverse on even" +msgstr "Atvirkštinis judėjimas lyginis" + +msgid "Overhang reversal" +msgstr "Iškyšos apvertimas" + +msgid "" +"Extrude perimeters that have a part over an overhang in the reverse " +"direction on even layers. This alternating pattern can drastically improve " +"steep overhangs.\n" +"\n" +"This setting can also help reduce part warping due to the reduction of " +"stresses in the part walls." +msgstr "" +"Perimetrus, kurių dalis yra virš iškyšos, ekstruzijuokite atvirkštine " +"kryptimi lygiuose sluoksniuose. Šis kaitaliojamasis modelis gali smarkiai " +"pagerinti stačias iškyšas.\n" +"\n" +"Šis nustatymas taip pat gali padėti sumažinti detalės deformaciją dėl " +"sumažėjusių įtempių detalės sienelėse." + +msgid "Reverse only internal perimeters" +msgstr "Atvirkštinis tik vidinis perimetras" + +msgid "" +"Apply the reverse perimeters logic only on internal perimeters.\n" +"\n" +"This setting greatly reduces part stresses as they are now distributed in " +"alternating directions. This should reduce part warping while also " +"maintaining external wall quality. This feature can be very useful for warp " +"prone material, like ABS/ASA, and also for elastic filaments, like TPU and " +"Silk PLA. It can also help reduce warping on floating regions over " +"supports.\n" +"\n" +"For this setting to be the most effective, it is recommended to set the " +"Reverse Threshold to 0 so that all internal walls print in alternating " +"directions on even layers irrespective of their overhang degree." +msgstr "" +"Atvirkštinių perimetrų logiką taikykite tik vidiniams perimetrams.\n" +"\n" +"Šis nustatymas labai sumažina detalių įtempius, nes dabar jie pasiskirsto " +"pakaitinėmis kryptimis. Tai turėtų sumažinti detalės deformacijas, kartu " +"išlaikant išorinių sienelių kokybę. Ši funkcija gali būti labai naudinga į " +"deformacijas linkusioms medžiagoms, pavyzdžiui, ABS/ASA, taip pat " +"elastingoms gijoms, pavyzdžiui, TPU ir šilko PLA. Ji taip pat gali padėti " +"sumažinti plūduriuojančių sričių virš atramų deformacijas.\n" +"\n" +"Kad šis nustatymas būtų veiksmingiausias, rekomenduojama nustatyti " +"atvirkštinio slenksčio reikšmę 0, kad visos vidinės sienelės būtų " +"spausdinamos pakaitinėmis kryptimis lygiuose sluoksniuose, neatsižvelgiant į " +"jų išsikišimo laipsnį." + +msgid "Bridge counterbore holes" +msgstr "Tilto priešpriešinės skylės" + +msgid "" +"This option creates bridges for counterbore holes, allowing them to be " +"printed without support. Available modes include:\n" +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" +msgstr "" +"Šia parinktimi sukuriami tilteliai priešpriešinėms skylėms, todėl jas galima " +"spausdinti be atramos. Galimi šie režimai:\n" +"1. Nėra: Nesukuriamas joks tiltelis.\n" +"2. Iš dalies sujungtas tiltas: Tik dalis nepalaikomos srities bus sujungta " +"tiltu.\n" +"3. Apsauginis sluoksnis: Sukuriamas visas paviršinis tilto sluoksnis." + +msgid "Partially bridged" +msgstr "Iš dalies sujungtas tiltu" + +msgid "Sacrificial layer" +msgstr "Apsauginis sluoksnis" + +msgid "Reverse threshold" +msgstr "Atvirkštinis slenkstis" + +msgid "Overhang reversal threshold" +msgstr "Iškyšos apvertimo slenkstis" + +#, no-c-format, no-boost-format +msgid "" +"Number of mm the overhang need to be for the reversal to be considered " +"useful. Can be a % of the perimeter width.\n" +"Value 0 enables reversal on every even layers regardless.\n" +"When Detect overhang wall is not enabled, this option is ignored and " +"reversal happens on every even layers regardless." +msgstr "" +"Kiek mm turi būti iškyša, kad būtų galima laikyti, jog apvertimas yra " +"naudingas. Gali būti perimetro pločio %.\n" +"Reikšmė 0 įjungia apvertimą kiekviename lyginiame sluoksnyje " +"nepriklausomai.\n" +"Kai aptikti iškyšos sienelę neįjungta, ši parinktis ignoruojama ir " +"apvertimas atliekamas nepriklausomai nuo kiekvieno lyginio sluoksnio." + +msgid "Classic mode" +msgstr "Klasikinis režimas" + +msgid "Enable this option to use classic mode." +msgstr "Įjunkite šią parinktį, jei norite naudoti klasikinį režimą" + +msgid "Slow down for overhang" +msgstr "Sulėtinti greitį dėl iškyšų" + +msgid "Enable this option to slow printing down for different overhang degree." +msgstr "Įjunkite šią parinktį, kad spausdinant iškyšas sulėtėtų spausdinimas" + +msgid "Slow down for curled perimeters" +msgstr "Sulėtinti greitį, jei perimetras yra vingiuotas" + +#, no-c-format, no-boost-format +msgid "" +"Enable this option to slow down printing in areas where perimeters may have " +"curled upwards. For example, additional slowdown will be applied when " +"printing overhangs on sharp corners like the front of the Benchy hull, " +"reducing curling which compounds over multiple layers.\n" +"\n" +"It is generally recommended to have this option switched on unless your " +"printer cooling is powerful enough or the print speed slow enough that " +"perimeter curling does not happen. If printing with a high external " +"perimeter speed, this parameter may introduce slight artifacts when slowing " +"down due to the large variance in print speeds. If you notice artifacts, " +"ensure your pressure advance is tuned correctly.\n" +"\n" +"Note: When this option is enabled, overhang perimeters are treated like " +"overhangs, meaning the overhang speed is applied even if the overhanging " +"perimeter is part of a bridge. For example, when the perimeters are 100% " +"overhanging, with no wall supporting them from underneath, the 100% overhang " +"speed will be applied." +msgstr "" +"Įjunkite šią parinktį, kad sulėtintumėte spausdinimą tose srityse, kuriose " +"perimetras gali būti išlinkęs į viršų. Pavyzdžiui, papildomas sulėtinimas " +"bus taikomas spausdinant iškyšas ant aštrių kampų, pavyzdžiui, „Benchy“ " +"korpuso priekyje, sumažinant susisukimą, kuris susidaro per kelis " +"sluoksnius.\n" +"\n" +" Paprastai rekomenduojama įjungti šią parinktį, nebent jūsų spausdintuvo " +"aušinimas yra pakankamai galingas arba spausdinimo greitis pakankamai lėtas, " +"kad perimetro susisukimas neįvyktų. Jei spausdinama dideliu išoriniu " +"perimetro greičiu, šis parametras gali sukelti nedidelius artefaktus, kai " +"sulėtėja dėl didelio spausdinimo greičio skirtumo. Jei pastebėsite " +"artefaktus, įsitikinkite, kad išankstinis slėgis sureguliuotas teisingai.\n" +"\n" +"Pastaba: Kai ši parinktis įjungta, iškyšos perimetras traktuojamas kaip " +"iškyša, t. y. iškyšos greitis taikomas net jei iškyšos perimetras yra tilto " +"dalis. Pavyzdžiui, kai perimetrai yra 100 % išsikišę, o iš apačios jų " +"nepalaiko jokia siena, bus taikomas 100 % išsikišimo greitis." + +msgid "mm/s or %" +msgstr "mm/s arba %" + +msgid "External" +msgstr "Išorinis" + +msgid "" +"Speed of the externally visible bridge extrusions.\n" +"\n" +"In addition, if Slow down for curled perimeters is disabled or Classic " +"overhang mode is enabled, it will be the print speed of overhang walls that " +"are supported by less than 13%, whether they are part of a bridge or an " +"overhang." +msgstr "" +"Išoriškai matomų tilto išspaudų greitis.\n" +"\n" +"Be to, jei išjungta funkcija Lėtinimas lenktiems perimetrams arba įjungtas " +"klasikinis iškyšų režimas, tai bus spausdinimo greitis iškyšų sienelėms, " +"kurių atramos yra mažesnės nei 13 %, nepriklausomai nuo to, ar jos yra " +"tilto, ar iškyšos dalis." + +msgid "Internal" +msgstr "Vidinis" + +msgid "" +"Speed of internal bridges. If the value is expressed as a percentage, it " +"will be calculated based on the bridge_speed. Default value is 150%." +msgstr "" +"Vidinių tiltų greitis. Jei reikšmė išreiškiama procentais, ji bus " +"apskaičiuojama pagal bridge_speed. Numatytoji vertė yra 150 %." + +msgid "Brim width" +msgstr "Krašto plotis" + +msgid "Distance from model to the outermost brim line." +msgstr "Atstumas nuo modelio iki išorinės krašto linijos" + +msgid "Brim type" +msgstr "Krašto tipas" + +msgid "" +"This controls the generation of the brim at outer and/or inner side of " +"models. Auto means the brim width is analyzed and calculated automatically." +msgstr "" +"Taip reguliuojamas modelių išorinės ir (arba) vidinės pusės krašto " +"formavimas. Automatinis reiškia, kad apvado plotis analizuojamas ir " +"apskaičiuojamas automatiškai." + +msgid "Painted" +msgstr "Piešta" + +msgid "Brim-object gap" +msgstr "Tarpas tarp krašto ir objekto" + +msgid "" +"A gap between innermost brim line and object can make brim be removed more " +"easily." +msgstr "" +"Sukuriamas tarpas tarp vidinės krašto linijos ir objekto, todėl galima " +"lengviau jį atskirti" + +msgid "Brim ears" +msgstr "Krašto \"ausys\"" + +msgid "Only draw brim over the sharp edges of the model." +msgstr "Generuoti kraštą tik aplink aštrius modelio kraštus." + +msgid "Brim ear max angle" +msgstr "Maksimalus krašto \"ausies \" kampas" + +msgid "" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" +"If set to ~180, brim will be created on everything but straight sections." +msgstr "" +"Didžiausias kampas, kad atsirastų ausies kraštas.\n" +"Jei nustatyta 0, kraštas nebus sukurtas.\n" +"Jei nustatyta ~ 180, apvadas bus kuriamas visuose, išskyrus tiesias atkarpas." + +msgid "Brim ear detection radius" +msgstr "Kraštų ausies aptikimo spindulys" + +msgid "" +"The geometry will be decimated before detecting sharp angles. This parameter " +"indicates the minimum length of the deviation for the decimation.\n" +"0 to deactivate." +msgstr "" +"Prieš aptikdami aštrius kampus, geometrija bus išskaidyta. Šis parametras " +"nurodo mažiausią nuokrypio ilgį decimavimui.\n" +"0 - išjungti" + +msgid "Compatible machine" +msgstr "Suderinamas įrenginys" + +msgid "upward compatible machine" +msgstr "į viršų suderinamas įrenginys" + +msgid "Compatible machine condition" +msgstr "Suderinamo įrenginio būklė" + +msgid "" +"A boolean expression using the configuration values of an active printer " +"profile. If this expression evaluates to true, this profile is considered " +"compatible with the active printer profile." +msgstr "" +"Loginė išraiška, kurioje naudojamos aktyvaus spausdintuvo profilio " +"konfigūracijos vertės. Jei ši išraiška yra \"tiesa\", šis profilis laikomas " +"suderinamu su aktyviu spausdintuvo profiliu." + +msgid "Compatible process profiles" +msgstr "Suderinamų procesų profiliai" + +msgid "Compatible process profiles condition" +msgstr "Suderinamų procesų profilių būklė" + +msgid "" +"A boolean expression using the configuration values of an active print " +"profile. If this expression evaluates to true, this profile is considered " +"compatible with the active print profile." +msgstr "" +"Loginė išraiška, kurioje naudojamos aktyvaus spausdinimo profilio " +"konfigūracijos reikšmės. Jei ši išraiška lygi „tiesa“, šis profilis laikomas " +"suderinamu su aktyviuoju spausdinimo profiliu." + +msgid "Print sequence, layer by layer or object by object." +msgstr "" +"Spausdinimo seka, leidžianti spausdinti sluoksnį po sluoksnio arba objektą " +"po objekto" + +msgid "By layer" +msgstr "Pagal sluoksnį" + +msgid "By object" +msgstr "Pagal objektą" + +msgid "Intra-layer order" +msgstr "Vidinė sluoksnių tvarka" + +msgid "Print order within a single layer." +msgstr "Spausdinimo eiliškumas viename sluoksnyje" + +msgid "As object list" +msgstr "Kaip objektų sąrašas" + +msgid "Slow printing down for better layer cooling" +msgstr "Sulėtinti spausdinimą, kad geriau būtų aušinami sluoksniai" + +msgid "" +"Enable this option to slow printing speed down to make the final layer time " +"not shorter than the layer time threshold in \"Max fan speed threshold\", so " +"that layer can be cooled for longer time. This can improve the cooling " +"quality for needle and small details." +msgstr "" +"Įjunkite šią parinktį, jei norite sulėtinti spausdinimo greitį, kad galutinė " +"sluoksnio trukmė nebūtų trumpesnė už maksimalaus ventiliatoriaus greičio " +"slenkstičio nustatytą sluoksnio trukmės ribą, kad sluoksnį būtų galima " +"aušinti ilgiau. Tai gali pagerinti smulkių detalių kokybę" + +msgid "Normal printing" +msgstr "Įprastas spausdinimas" + +msgid "" +"The default acceleration of both normal printing and travel except initial " +"layer." +msgstr "" +"Tai numatytasis pagreitis tiek įprastam spausdinimui, tiek judėjimui po " +"pirmojo sluoksnio" + +msgid "Default filament profile" +msgstr "Numatytasis gijų profilis" + +msgid "Default filament profile when switching to this machine profile." +msgstr "Numatytasis gijos profilis, kai pereinama prie šio įrenginio profilio" + +msgid "Default process profile" +msgstr "Numatytasis proceso profilis" + +msgid "Default process profile when switching to this machine profile." +msgstr "" +"Numatytasis proceso profilis, kai pereinama prie šio įrenginio profilio" + +msgid "Activate air filtration" +msgstr "Įjungti oro filtravimą" + +msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" +msgstr "" +"Suaktyvinkite, kad geriau filtruotumėte orą. G-kodo komanda: M106 P3 S(0-255)" + +msgid "Fan speed" +msgstr "Ventiliatoriaus greitis" + +msgid "" +"Speed of exhaust fan during printing.This speed will overwrite the speed in " +"filament custom G-code" +msgstr "" +"Ištraukiamojo ventiliatoriaus greitis spausdinimo metu. Šis greitis bus " +"perrašytas gijos pasirinktiniame gkode nurodytu greičiu" + +msgid "Speed of exhaust fan after printing completes." +msgstr "Ištraukimo ventiliatoriaus greitis baigus spausdinti" + +msgid "No cooling for the first" +msgstr "Nėra aušinimo pirmiesiems" + +msgid "" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." +msgstr "" +"Pirmiesiems sluoksniams išjungti visus aušinimo ventiliatorius. Tai gali " +"būti naudojama siekiant pagerinti sluoksnio sukibimą" + +msgid "Don't support bridges" +msgstr "Nekurti atramų tiltams" + +msgid "" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." +msgstr "" +"Taip išjungiami atraminiai tilteliai, todėl sumažėja reikalingų atramų " +"kiekis. Tiltus paprastai galima spausdinti tiesiogiai be atramų priimtinu " +"atstumu" + +msgid "Thick external bridges" +msgstr "Stori vidiniai tiltai" + +msgid "" +"If enabled, bridges are more reliable, can bridge longer distances, but may " +"look worse. If disabled, bridges look better but are reliable just for " +"shorter bridged distances." +msgstr "" +"Jei įjungta, tiltai yra patikimesni, gali įveikti didesnius atstumus, tačiau " +"gali atrodyti blogiau. Jei išjungta, tiltai atrodo geriau, bet yra patikimi " +"tik trumpesniems atstumams." + +msgid "Thick internal bridges" +msgstr "Stori vidiniai tiltai" + +msgid "" +"If enabled, thick internal bridges will be used. It's usually recommended to " +"have this feature turned on. However, consider turning it off if you are " +"using large nozzles." +msgstr "" +"Jei įjungta, bus naudojami stori vidiniai tiltai. Paprastai rekomenduojama " +"šią funkciją įjungti. Tačiau jei naudojate didelius antgalius, apsvarstykite " +"galimybę ją išjungti." + +msgid "Extra bridge layers (beta)" +msgstr "Papildomi tilto sluoksniai (beta)" + +msgid "" +"This option enables the generation of an extra bridge layer over internal " +"and/or external bridges.\n" +"\n" +"Extra bridge layers help improve bridge appearance and reliability, as the " +"solid infill is better supported. This is especially useful in fast " +"printers, where the bridge and solid infill speeds vary greatly. The extra " +"bridge layer results in reduced pillowing on top surfaces, as well as " +"reduced separation of the external bridge layer from its surrounding " +"perimeters.\n" +"\n" +"It is generally recommended to set this to at least 'External bridge only', " +"unless specific issues with the sliced model are found.\n" +"\n" +"Options:\n" +"1. Disabled - does not generate second bridge layers. This is the default " +"and is set for compatibility purposes\n" +"2. External bridge only - generates second bridge layers for external-facing " +"bridges only. Please note that small bridges that are shorter or narrower " +"than the set number of perimeters will be skipped as they would not benefit " +"from a second bridge layer. If generated, the second bridge layer will be " +"extruded parallel to the first bridge layer to reinforce the bridge " +"strength\n" +"3. Internal bridge only - generates second bridge layers for internal " +"bridges over sparse infill only. Please note that the internal bridges count " +"towards the top shell layer count of your model. The second internal bridge " +"layer will be extruded as close to perpendicular to the first as possible. " +"If multiple regions in the same island, with varying bridge angles are " +"present, the last region of that island will be selected as the angle " +"reference\n" +"4. Apply to all - generates second bridge layers for both internal and " +"external-facing bridges\n" +msgstr "" +"Ši parinktis leidžia sukurti papildomą tilto sluoksnį virš vidinių ir (arba) " +"išorinių tiltų.\n" +"\n" +"Papildomi tiltų sluoksniai padeda pagerinti tiltų išvaizdą ir patikimumą, " +"nes kietasis užpildas geriau atremiamas. Tai ypač naudinga greituosiuose " +"spausdintuvuose, kuriuose tilto ir kietojo užpildo greitis labai skiriasi. " +"Dėl papildomo tiltelio sluoksnio sumažėja viršutinių paviršių pagalvėlių, " +"taip pat sumažėja išorinio tiltelio sluoksnio atsiskyrimas nuo jį supančių " +"perimetrų.\n" +"\n" +"Paprastai rekomenduojama nustatyti bent jau „External bridge only“ (tik " +"išorinis tiltelis), nebent būtų nustatyta specifinių problemų, susijusių su " +"supjaustytu modeliu.\n" +"\n" +"Parinktys:\n" +"1. Išjungta - negeneruojami antrojo tilto sluoksniai. Tai numatytasis " +"nustatymas, kuris nustatytas suderinamumo tikslais.\n" +"2. Tik išorinis tiltas - generuoja antrojo tilto sluoksnius tik į išorę " +"orientuotiems tiltams. Atkreipkite dėmesį, kad maži tiltai, kurie yra " +"trumpesni arba siauresni už nustatytą perimetrų skaičių, bus praleisti, nes " +"jiems antrasis tilto sluoksnis nebus naudingas. Jei sugeneruojamas, antrasis " +"tilto sluoksnis bus išspaustas lygiagrečiai pirmajam tilto sluoksniui, kad " +"būtų sustiprintas tilto tvirtumas.\n" +"3. Tik vidinis tiltas - generuojami antrieji tilto sluoksniai, skirti tik " +"vidiniams tiltams virš reto užpildo. Atkreipkite dėmesį, kad vidiniai tiltai " +"įskaičiuojami į modelio viršutinio apvalkalo sluoksnių skaičių. Antrasis " +"vidinio tilto sluoksnis bus išspaustas kuo arčiau statmenai pirmajam. Jei " +"toje pačioje saloje yra keli regionai su skirtingais tiltelių kampais, kaip " +"atskaitos kampas bus pasirinktas paskutinis tos salos regionas.\n" +"4. Taikyti visiems - sukuriami antrieji tiltų sluoksniai, skirti tiek į " +"vidiniams, tiek į išoriniams tiltams.\n" + +msgid "Disabled" +msgstr "Išjungta" + +msgid "External bridge only" +msgstr "Tik išorinis tiltas" + +msgid "Internal bridge only" +msgstr "Tik vidinis tiltas" + +msgid "Apply to all" +msgstr "Taikyti visiems" + +msgid "Filter out small internal bridges" +msgstr "Filtruoti mažus vidinius tiltus" + +msgid "" +"This option can help reduce pillowing on top surfaces in heavily slanted or " +"curved models.\n" +"By default, small internal bridges are filtered out and the internal solid " +"infill is printed directly over the sparse infill. This works well in most " +"cases, speeding up printing without too much compromise on top surface " +"quality.\n" +"However, in heavily slanted or curved models, especially where too low a " +"sparse infill density is used, this may result in curling of the unsupported " +"solid infill, causing pillowing.\n" +"Enabling limited filtering or no filtering will print internal bridge layer " +"over slightly unsupported internal solid infill. The options below control " +"the sensitivity of the filtering, i.e. they control where internal bridges " +"are created:\n" +"1. Filter - enables this option. This is the default behavior and works well " +"in most cases\n" +"2. Limited filtering - creates internal bridges on heavily slanted surfaces " +"while avoiding unnecessary bridges. This works well for most difficult " +"models\n" +"3. No filtering - creates internal bridges on every potential internal " +"overhang. This option is useful for heavily slanted top surface models; " +"however, in most cases, it creates too many unnecessary bridges" +msgstr "" +"Ši parinktis gali padėti sumažinti viršutinių paviršių, esančių smarkiai " +"nuožulniuose ar išlenktuose modeliuose, iškilimą.\n" +"Pagal numatytuosius nustatymus nedideli vidiniai tiltai filtruojami, o " +"vidinis vientisas užpildas spausdinamas tiesiai ant reto užpildo. Daugeliu " +"atvejų tai gerai veikia, nes pagreitina spausdinimą per daug nepakenkiant " +"viršutinio paviršiaus kokybei.\n" +"Tačiau smarkiai pasvirusiuose ar išlenktuose modeliuose, ypač jei naudojamas " +"per mažas reto užpildo tankis, gali susiraukšlėti nepalaikomas vientisas " +"užpildas, todėl gali atsirasti iškilimų.\n" +"Įjungus ribotą filtravimą arba jo neįjungus, vidinis tilto sluoksnis bus " +"spausdinamas ant šiek tiek nepalaikomo vidinio vientiso užpildo. Toliau " +"pateiktomis parinktimis valdomas filtravimo jautrumas, t. y. jomis " +"nustatoma, kurioje vietoje sukuriami vidiniai tiltai.\n" +"1. Filtruoti - įjungiama ši parinktis. Tai numatytoji elgsena, kuri daugeliu " +"atvejų veikia gerai.\n" +"2. Ribotas filtravimas - sukuriami vidiniai tiltai smarkiai nuožulniuose " +"paviršiuose, išvengiant nereikalingų tiltų. Tai gerai veikia daugumai " +"sudėtingų modelių.\n" +"3. Be filtravimo - sukuria vidinius tiltus kiekvienoje potencialioje " +"vidinėje iškyšoje. Ši parinktis naudinga stipriai nuožulnių viršutinių " +"paviršių modeliams, tačiau daugeliu atvejų ji sukuria per daug nereikalingų " +"tiltų." + +msgid "Filter" +msgstr "Filtras" + +msgid "Limited filtering" +msgstr "Ribotas filtravimas" + +msgid "No filtering" +msgstr "Išjungta" + +msgid "Max bridge length" +msgstr "Maksimalus tilto ilgis" + +msgid "" +"Max length of bridges that don't need support. Set it to 0 if you want all " +"bridges to be supported, and set it to a very large value if you don't want " +"any bridges to be supported." +msgstr "" +"Maksimalus tiltų, kuriems nereikia atramos, ilgis. Nustatykite 0, jei " +"norite, kad būtų remiami visi tiltai, ir labai didelę reikšmę, jei nenorite, " +"kad būtų remiami jokie tiltai." + +msgid "End G-code" +msgstr "Pabaigos G-kodas" + +msgid "End G-code when finishing the entire print." +msgstr "Pridėti pabaigos G-kodą, kai bus baigtas visas spausdinimas" + +msgid "Between Object G-code" +msgstr "Tarp objektų G-kodas" + +msgid "" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object" +msgstr "" +"G-kodas įterpiamas tarp objektų. Šis parametras bus taikomas tik tada, kai " +"spausdinsite modelius objektas po objekto" + +msgid "End G-code when finishing the printing of this filament." +msgstr "Pridėti pabaigos G-kodą, kai bus baigta spausdinti ši gija" + +msgid "Ensure vertical shell thickness" +msgstr "Užtikrinti vertikalaus apvalkalo storį" + +msgid "" +"Add solid infill near sloping surfaces to guarantee the vertical shell " +"thickness (top+bottom solid layers)\n" +"None: No solid infill will be added anywhere. Caution: Use this option " +"carefully if your model has sloped surfaces\n" +"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 "" +"Prie nuožulnių paviršių pridėti kietąjį užpildą, kad būtų užtikrintas " +"vertikalus apvalkalo storis (viršutinis ir apatinis vientisi sluoksniai).\n" +"Nėra: Vientisas užpildas niekur nepridedamas. Dėmesio: Jei jūsų modelyje yra " +"nuožulnių paviršių, naudokite šią parinktį atsargiai.\n" +"Tik kritiniai: Venkite pridėti vientisą sienų užpildą\n" +"Vidutiniai: Pridėti vientisą užpildą tik smarkiai nuožulniems paviršiams\n" +"Visi: pridėkite vientisą užpildą visiems tinkamiems nuožulniems paviršiams\n" +"Numatytoji reikšmė yra Visi." + +msgid "Critical Only" +msgstr "Tik kritiniai" + +msgid "Moderate" +msgstr "Vidutiniai" + +msgid "Top surface pattern" +msgstr "Viršutinio paviršiaus raštas" + +msgid "Line pattern of top surface infill." +msgstr "Tai viršutinio paviršiaus užpildymo linijomis modelis" + +msgid "Concentric" +msgstr "Koncentrinis" + +msgid "Rectilinear" +msgstr "Tiesia linija" + +msgid "Monotonic" +msgstr "Monotoniškas" + +msgid "Monotonic line" +msgstr "Monotoniška linija" + +msgid "Aligned Rectilinear" +msgstr "Tiesiai sulygiuota" + +msgid "Hilbert Curve" +msgstr "Hilberto kreivė" + +msgid "Archimedean Chords" +msgstr "Archimedo akordai" + +msgid "Octagram Spiral" +msgstr "Oktagramos spiralė" + +msgid "Bottom surface pattern" +msgstr "Apatinio paviršiaus užpildo linijų raštas" + +msgid "Line pattern of bottom surface infill, not bridge infill." +msgstr "" +"Tai apatinio paviršiaus užpildymo linijioms raštas, išskyrus tiltų užpildymą" + +msgid "Internal solid infill pattern" +msgstr "Vidinis vientiso užpildo raštas" + +msgid "" +"Line pattern of internal solid infill. if the detect narrow internal solid " +"infill be enabled, the concentric pattern will be used for the small area." +msgstr "" +"Vidinio vientiso užpildo linijų raštas. Jei įjungta funkcija aptikti siaurą " +"vidinį vientisą užpildą, mažam plotui bus naudojamas koncentrinis raštas." + +msgid "" +"Line width of outer wall. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Išorinės sienos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas " +"pagal purkštuko skersmenį." + +msgid "" +"Speed of outer wall which is outermost and visible. It's used to be slower " +"than inner wall speed to get better quality." +msgstr "" +"Išorinės sienos, kuri yra išorinė ir matoma, greitis. Naudojamas lėtesnis " +"nei vidinės sienelės greitis, kad būtų pasiekta geresnė kokybė." + +msgid "Small perimeters" +msgstr "Maži perimetrai" + +msgid "" +"This separate setting will affect the speed of perimeters having radius <= " +"small_perimeter_threshold (usually holes). If expressed as percentage (for " +"example: 80%) it will be calculated on the outer wall speed setting above. " +"Set to zero for auto." +msgstr "" +"Šis atskiras nustatymas turės įtakos perimetrų, kurių spindulys <= " +"small_perimeter_threshold (paprastai skylės), greičiui. Jei jis išreikštas " +"procentais (pvz., 80 %), jis bus apskaičiuojamas pagal pirmiau nurodytą " +"išorinės sienos greičio nustatymą. Nustatykite nulį, jei norite, kad greitis " +"būtų automatinis." + +msgid "Small perimeters threshold" +msgstr "Mažo perimetro ribos" + +msgid "" +"This sets the threshold for small perimeter length. Default threshold is 0mm." +msgstr "Nustatoma mažo perimetro ilgio riba. Numatytoji riba yra 0 mm" + +msgid "Walls printing order" +msgstr "Sienų spausdinimo eiliškumas" + +msgid "" +"Print sequence of the internal (inner) and external (outer) walls.\n" +"\n" +"Use Inner/Outer for best overhangs. This is because the overhanging walls " +"can adhere to a neighbouring perimeter while printing. However, this option " +"results in slightly reduced surface quality as the external perimeter is " +"deformed by being squashed to the internal perimeter.\n" +"\n" +"Use Inner/Outer/Inner for the best external surface finish and dimensional " +"accuracy as the external wall is printed undisturbed from an internal " +"perimeter. However, overhang performance will reduce as there is no internal " +"perimeter to print the external wall against. This option requires a minimum " +"of 3 walls to be effective as it prints the internal walls from the 3rd " +"perimeter onwards first, then the external perimeter and, finally, the first " +"internal perimeter. This option is recommended against the Outer/Inner " +"option in most cases.\n" +"\n" +"Use Outer/Inner for the same external wall quality and dimensional accuracy " +"benefits of Inner/Outer/Inner option. However, the z seams will appear less " +"consistent as the first extrusion of a new layer starts on a visible " +"surface.\n" +"\n" +" " +msgstr "" +"Vidinių (vidinių) ir išorinių (išorinių) sienų spausdinimo seka.\n" +"\n" +"Naudokite Vidinės / Išorinės, jei norite, kad iškyšos būtų geriausios. Taip " +"yra todėl, kad spausdinant išsikišusios sienos gali prilipti prie kaimyninio " +"perimetro. Tačiau dėl šios parinkties šiek tiek suprastėja paviršiaus " +"kokybė, nes išorinis perimetras deformuojamas prispaudžiant jį prie vidinio " +"perimetro.\n" +"\n" +"Naudokite Vidinis / išorinis / vidinis, jei norite gauti geriausią išorinio " +"paviršiaus apdailą ir matmenų tikslumą, nes išorinė siena spausdinama " +"nepažeista vidinio perimetro. Tačiau iškyšų kokybė sumažėja, nes nėra " +"vidinio perimetro, prie kurio būtų galima atspausdinti išorinę sienelę. Kad " +"ši parinktis būtų veiksminga, reikia mažiausiai 3 sienų, nes pirmiausia " +"atspausdinamos vidinės sienos nuo trečiojo perimetro, tada išorinis " +"perimetras ir galiausiai pirmasis vidinis perimetras. Šią parinktį daugeliu " +"atvejų rekomenduojama rinktis ne kaip išorinę / vidinę parinktį.\n" +"\n" +"Naudokite Išorinė / vidinė, kad išorinių sienų kokybė ir matmenų tikslumas " +"būtų tokie patys, kaip ir pasirinkus Vidinė / išorinė / vidinė parinktį. " +"Tačiau z siūlės atrodys ne tokios nuoseklios, nes pirmasis naujo sluoksnio " +"išspaudimas prasideda matomame paviršiuje.\n" +"\n" +" " + +msgid "Inner/Outer" +msgstr "Vidinės/Išorinės" + +msgid "Outer/Inner" +msgstr "Išorinės/Vidinės" + +msgid "Inner/Outer/Inner" +msgstr "Vidinės/Išorinės/Vidinės" + +msgid "Print infill first" +msgstr "Pirmiausia spausdinti užpildą" + +msgid "" +"Order of wall/infill. When the tickbox is unchecked the walls are printed " +"first, which works best in most cases.\n" +"\n" +"Printing infill first may help with extreme overhangs as the walls have the " +"neighbouring infill to adhere to. However, the infill will slightly push out " +"the printed walls where it is attached to them, resulting in a worse " +"external surface finish. It can also cause the infill to shine through the " +"external surfaces of the part." +msgstr "" +"Sienų ir (arba) užpildymo tvarka. Kai žymės langelis nepažymėtas, sienos " +"spausdinamos pirmosios, o tai daugeliu atvejų veikia geriausiai.\n" +"\n" +"Spausdinti užpildą pirmiausia gali būti lengviau, kai yra labai dideli " +"iškyšuliai, nes sienos turi laikytis gretimo užpildo. Tačiau užpildas šiek " +"tiek išstumia atspausdintas sienas ten, kur jis prie jų pritvirtintas, todėl " +"išorinio paviršiaus apdaila būna prastesnė. Dėl to užpildas taip pat gali " +"persišviesti per išorinius detalės paviršius." + +msgid "Wall loop direction" +msgstr "Sienos kontūro kryptis" + +msgid "" +"The direction which the wall loops are extruded when looking down from the " +"top.\n" +"\n" +"By default all walls are extruded in counter-clockwise, unless Reverse on " +"even is enabled. Set this to any option other than Auto will force the wall " +"direction regardless of the Reverse on even.\n" +"\n" +"This option will be disabled if spiral vase mode is enabled." +msgstr "" +"Sienų kontūrų išspaudimo kryptis žiūrint iš viršaus žemyn.\n" +"\n" +"Pagal numatytuosius nustatymus visos sienos išspaudžiamos prieš laikrodžio " +"rodyklę, nebent įjungta galimybė „ Apsukti lyginius“. Nustačius bet kurią " +"kitą parinktį, išskyrus Auto (automatinis), sienos kryptis bus priverstinė, " +"neatsižvelgiant į įjungtą funkciją Apsukti lyginius.\n" +"\n" +"Ši parinktis bus išjungta, jei įjungtas spiralinės vazos režimas." + +msgid "Counter clockwise" +msgstr "Prieš laikrodžio rodyklę" + +msgid "Clockwise" +msgstr "Pagal laikrodžio rodyklę" + +msgid "Height to rod" +msgstr "Aukštis iki strypo" + +msgid "" +"Distance of the nozzle tip to the lower rod. Used for collision avoidance in " +"by-object printing." +msgstr "" +"Atstumas nuo purkštuko galo iki apatinio strypo. Naudojamas siekiant " +"išvengti susidūrimų spausdinant pagal objektus." + +msgid "Height to lid" +msgstr "Aukštis iki dangtelio" + +msgid "" +"Distance of the nozzle tip to the lid. Used for collision avoidance in by-" +"object printing." +msgstr "" +"Atstumas nuo antgalio galo iki dangtelio. Naudojamas siekiant išvengti " +"susidūrimų spausdinant pagal objektus." + +msgid "" +"Clearance radius around extruder. Used for collision avoidance in by-object " +"printing." +msgstr "" +"Tarpas aplink ekstruderį. Naudojamas siekiant išvengti susidūrimų " +"spausdinant pagal objektus." + +msgid "Nozzle height" +msgstr "Purkštuko aukštis" + +msgid "The height of nozzle tip." +msgstr "Purkštuko antgalio aukštis." + +msgid "Bed mesh min" +msgstr "Pagrindo figūros min" + +msgid "" +"This option sets the min point for the allowed bed mesh area. Due to the " +"probe's XY offset, most printers are unable to probe the entire bed. To " +"ensure the probe point does not go outside the bed area, the minimum and " +"maximum points of the bed mesh should be set appropriately. OrcaSlicer " +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (-99999, -99999), which " +"means there are no limits, thus allowing probing across the entire bed." +msgstr "" +"Šia parinktimi nustatomas mažiausias leistinas pagrindo ploto taškas. Dėl " +"zondo XY poslinkio dauguma spausdintuvų negali zonduoti viso pagrindo. " +"Siekiant užtikrinti, kad zondo taškas neišeitų už pagrindo ploto ribų, " +"reikia tinkamai nustatyti minimalų ir maksimalų pagrindo figūros taškus. " +"OrcaSlicer užtikrina, kad adaptive_bed_mesh_min/adaptive_bed_mesh_max vertės " +"neviršytų šių min. ir maks. taškų. Šią informaciją paprastai galima gauti iš " +"spausdintuvo gamintojo. Numatytoji nuostata yra (-99999, -99999), t. y. nėra " +"jokių apribojimų, todėl galima zonduoti visą pagrindą." + +msgid "Bed mesh max" +msgstr "Pagrindo figūros maks" + +msgid "" +"This option sets the max point for the allowed bed mesh area. Due to the " +"probe's XY offset, most printers are unable to probe the entire bed. To " +"ensure the probe point does not go outside the bed area, the minimum and " +"maximum points of the bed mesh should be set appropriately. OrcaSlicer " +"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not " +"exceed these min/max points. This information can usually be obtained from " +"your printer manufacturer. The default setting is (99999, 99999), which " +"means there are no limits, thus allowing probing across the entire bed." +msgstr "" +"Šia parinktimi nustatomas didžiausias leistinas pagrindo ploto taškas. Dėl " +"zondo XY poslinkio dauguma spausdintuvų negali zonduoti viso pagrindo. " +"Siekiant užtikrinti, kad zondo taškas neišeitų už pagrindo ploto ribų, " +"reikia tinkamai nustatyti minimalų ir maksimalų pagrindo figūros taškus. " +"OrcaSlicer užtikrina, kad adaptive_bed_mesh_min/adaptive_bed_mesh_max vertės " +"neviršytų šių min. ir maks. taškų. Šią informaciją paprastai galima gauti iš " +"spausdintuvo gamintojo. Numatytoji nuostata yra (99999, 99999), t. y. nėra " +"jokių apribojimų, todėl galima zonduoti visą pagrindą." + +msgid "Probe point distance" +msgstr "Atstumas iki zondo taško" + +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 "" +"Šia parinktimi nustatomas pageidaujamas atstumas tarp zondo taškų (tinklelio " +"dydis) X ir Y kryptimis; pagal numatytuosius nustatymus tiek X, tiek Y " +"kryptimis nustatomas 50 mm atstumas." + +msgid "Mesh margin" +msgstr "Figūros riba" + +msgid "" +"This option determines the additional distance by which the adaptive bed " +"mesh area should be expanded in the XY directions." +msgstr "" +"Šia parinktimi nustatomas papildomas atstumas, kuriuo XY kryptimis turėtų " +"būti išplėsta adaptyviojo pagrindo figūros sritis." + +msgid "Extruder Color" +msgstr "Ekstruderio spalva" + +msgid "Only used as a visual help on UI." +msgstr "Naudojama tik kaip vaizdinė pagalba vartotojo sąsajai" + +msgid "Extruder offset" +msgstr "Ekstruderio poslinkis" + +msgid "Flow ratio" +msgstr "Srauto santykis" + +msgid "" +"The material may have volumetric change after switching between molten state " +"and crystalline state. This setting changes all extrusion flow of this " +"filament in G-code proportionally. Recommended value range is between 0.95 " +"and 1.05. Maybe you can tune this value to get nice flat surface when there " +"has slight overflow or underflow" +msgstr "" +"Medžiagos tūris gali pasikeisti perėjus iš išlydytos į kristalinę būseną. " +"Šis nustatymas proporcingai pakeičia visą šios gijos ekstruzijos srautą G " +"kode. Rekomenduojamas verčių intervalas yra nuo 0,95 iki 1,05. Jei yra " +"nedidelis perteklius arba nepakankamas srautas, šią reikšmę galite " +"sureguliuoti, kad gautumėte gražų plokščią paviršių" + +msgid "" +"The material may have volumetric change after switching between molten state " +"and crystalline state. This setting changes all extrusion flow of this " +"filament in G-code proportionally. Recommended value range is between 0.95 " +"and 1.05. Maybe you can tune this value to get nice flat surface when there " +"has slight overflow or underflow.\n" +"\n" +"The final object flow ratio is this value multiplied by the filament flow " +"ratio." +msgstr "" +"Perėjus iš išlydytos būsenos į kristalinę, medžiagos tūris gali pasikeisti. " +"Šis nustatymas proporcingai pakeičia visą šios gijos ekstruzijos srautą " +"gkode. Rekomenduojamas verčių intervalas yra nuo 0,95 iki 1,05. Galbūt " +"galite sureguliuoti šią vertę, kad gautumėte gražų plokščią paviršių, kai " +"yra nedidelis perteklius arba nepakankamas perteklius.\n" +"\n" +"Galutinis objekto srauto santykis yra ši vertė padauginta iš gijos srauto " +"santykio." + +msgid "Enable pressure advance" +msgstr "Įjungti išankstinį slėgio didinimą" + +msgid "" +"Enable pressure advance, auto calibration result will be overwritten once " +"enabled." +msgstr "" +"Įjunkite išankstinį slėgį, įjungus automatinio kalibravimo rezultatą, jis " +"bus perrašytas." + +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." +msgstr "" +"Išankstinis slėgis (Klipper) arba linijinis išankstinis veiksnys (Marlin)" + +msgid "Enable adaptive pressure advance (beta)" +msgstr "Įjungti prisitaikantį išankstinį slėgį (beta)" + +#, no-c-format, no-boost-format +msgid "" +"With increasing print speeds (and hence increasing volumetric flow through " +"the nozzle) and increasing accelerations, it has been observed that the " +"effective PA value typically decreases. This means that a single PA value is " +"not always 100% optimal for all features and a compromise value is usually " +"used that does not cause too much bulging on features with lower flow speed " +"and accelerations while also not causing gaps on faster features.\n" +"\n" +"This feature aims to address this limitation by modeling the response of " +"your printer's extrusion system depending on the volumetric flow speed and " +"acceleration it is printing at. Internally, it generates a fitted model that " +"can extrapolate the needed pressure advance for any given volumetric flow " +"speed and acceleration, which is then emitted to the printer depending on " +"the current print conditions.\n" +"\n" +"When enabled, the pressure advance value above is overridden. However, a " +"reasonable default value above is strongly recommended to act as a fallback " +"and for when tool changing.\n" +"\n" +msgstr "" +"Pastebėta, kad didėjant spausdinimo greičiui (taigi ir tūriniam srautui per " +"purkštuką) ir didėjant pagreičiui, efektyvioji IS vertė paprastai mažėja. " +"Tai reiškia, kad viena IS reikšmė ne visada yra 100 % optimali visiems " +"elementams ir paprastai naudojama kompromisinė reikšmė, kuri nesukelia per " +"didelio išgaubimo elementams, kurių srauto greitis ir pagreičiai yra " +"mažesni, ir kartu nesukelia spragų greitesniems elementams.\n" +"\n" +"Šia funkcija siekiama išspręsti šį apribojimą modeliuojant spausdintuvo " +"išspaudimo sistemos reakciją priklausomai nuo tūrinio srauto greičio ir " +"pagreičio, kuriuo spausdinama. Viduje sukuriamas pritaikytas modelis, pagal " +"kurį galima ekstrapoliuoti reikiamą slėgio padidėjimą bet kokiam tūrio " +"srauto greičiui ir pagreičiui, kuris tada siunčiamas spausdintuvui, " +"atsižvelgiant į esamas spausdinimo sąlygas.\n" +"\n" +"Kai ši funkcija įjungta, pirmiau nurodyta išankstinio slėgio vertė " +"pakeičiama. Tačiau rekomenduojama nustatyti pagrįstą numatytąją pirmiau " +"nurodytą vertę, kad ji veiktų kaip atsarginis variantas ir būtų naudojama " +"keičiant įrankį.\n" + +msgid "Adaptive pressure advance measurements (beta)" +msgstr "Adaptyvūs išankstinio slėgio matavimai (beta)" + +#, no-c-format, no-boost-format +msgid "" +"Add sets of pressure advance (PA) values, the volumetric flow speeds and " +"accelerations they were measured at, separated by a comma. One set of values " +"per line. For example\n" +"0.04,3.96,3000\n" +"0.033,3.96,10000\n" +"0.029,7.91,3000\n" +"0.026,7.91,10000\n" +"\n" +"How to calibrate:\n" +"1. Run the pressure advance test for at least 3 speeds per acceleration " +"value. It is recommended that the test is run for at least the speed of the " +"external perimeters, the speed of the internal perimeters and the fastest " +"feature print speed in your profile (usually its the sparse or solid " +"infill). Then run them for the same speeds for the slowest and fastest print " +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" +"2. Take note of the optimal PA value for each volumetric flow speed and " +"acceleration. You can find the flow number by selecting flow from the color " +"scheme drop down and move the horizontal slider over the PA pattern lines. " +"The number should be visible at the bottom of the page. The ideal PA value " +"should be decreasing the higher the volumetric flow is. If it is not, " +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" +msgstr "" +"Pridėkite išankstinio slėgio (IS) verčių rinkinius, tūrinius srauto greičius " +"ir pagreičius, kuriems esant jie buvo išmatuoti, atskirti kableliu. Vienoje " +"eilutėje pateikite po vieną verčių rinkinį. Pavyzdžiui\n" +"0.04,3.96,3000\n" +"0.033,3.96,10000\n" +"0.029,7.91,3000\n" +"0.026,7.91,10000\n" +"\n" +"Kaip kalibruoti:\n" +"1. Atlikite slėgio avanso bandymą bent 3 greičiams pagal kiekvieną pagreičio " +"reikšmę. Rekomenduojama testą atlikti bent išorinių perimetrų greičiui, " +"vidinių perimetrų greičiui ir greičiausiam jūsų profilio funkcijos " +"spausdinimo greičiui (paprastai tai būna retas arba vientisas užpildas). " +"Tada paleiskite juos tokiems pat greičiams, kai spausdinama lėčiausiu ir " +"sparčiausiu greičiu, ir ne didesniu nei rekomenduojamas didžiausias " +"pagreitis, nurodytas „Klipper“ įvesties formuotuve.\n" +"2. Atkreipkite dėmesį į optimalią IS vertę kiekvienam tūrinio srauto " +"greičiui ir pagreičiui. Srauto skaičių galite rasti pasirinkę srautą iš " +"spalvų schemos išskleidžiamojo sąrašo ir perkeldami horizontalųjį slankiklį " +"virš IS modelio linijų. Skaičius turėtų būti matomas puslapio apačioje. " +"Ideali IS vertė turėtų mažėti, kuo didesnis tūrinis srautas. Jei taip nėra, " +"įsitikinkite, kad jūsų ekstruderis veikia tinkamai. kuo lėčiau ir su " +"mažesniu pagreičiu spausdinate, tuo didesnis priimtinų IS verčių diapazonas. " +"Jei jokio skirtumo nematyti, naudokite IS vertę, gautą atliekant greitesnį " +"bandymą.\n" +"3. Čia esančiame teksto laukelyje įveskite IS verčių, srauto ir pagreičio " +"reikšmes ir išsaugokite gijos profilį." + +msgid "Enable adaptive pressure advance for overhangs (beta)" +msgstr "Įjungti prisitaikantį išankstinį slėgį iškyšoms (beta versija)" + +msgid "" +"Enable adaptive PA for overhangs as well as when flow changes within the " +"same feature. This is an experimental option, as if the PA profile is not " +"set accurately, it will cause uniformity issues on the external surfaces " +"before and after overhangs.\n" +msgstr "" +"Įjunkite prisitaikantį IS iškyšoms, taip pat kai srautas keičiasi toje " +"pačioje vietoje. Tai eksperimentinė parinktis, nes jei IS profilis " +"nustatomas netiksliai, gali kilti išorinių paviršių vienodumo problemų prieš " +"ir už iškyšų.\n" + +msgid "Pressure advance for bridges" +msgstr "Tiltų išankstinis slėgis" + +msgid "" +"Pressure advance value for bridges. Set to 0 to disable.\n" +"\n" +"A lower PA value when printing bridges helps reduce the appearance of " +"slight under extrusion immediately after bridges. This is caused by the " +"pressure drop in the nozzle when printing in the air and a lower PA helps " +"counteract this." +msgstr "" +"Išankstinio slėgio vertė tiltams. Nustatykite 0, kad išjungtumėte.\n" +"\n" +" Mažesnė IS vertė spausdinant tiltus padeda sumažinti nedidelį nepakankamą " +"išspaudimą iškart po tiltų. Taip atsitinka dėl slėgio kritimo purkštuke, kai " +"spausdinama ore, o mažesnė IS vertė padeda tai neutralizuoti." + +msgid "" +"Default line width if other line widths are set to 0. If expressed as a %, " +"it will be computed over the nozzle diameter." +msgstr "" +"Numatytasis linijos plotis, jei kitų linijų plotis lygus 0. Jei išreiškiamas " +"%, apskaičiuojamas pagal purkštuko skersmenį." + +msgid "Keep fan always on" +msgstr "Visada laikyti ventiliatorių įjungtą" + +msgid "" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." +msgstr "" +"Jei įjungsite šį nustatymą, aušinimo ventiliatorius niekada nebus " +"sustabdytas ir veiks bent minimaliu greičiu, kad sumažėtų įjungimo ir " +"išjungimo dažnis" + +msgid "Don't slow down outer walls" +msgstr "Nelėtinti išorinių sienų" + +#, fuzzy +msgid "" +"If enabled, this setting will ensure external perimeters are not slowed down " +"to meet the minimum layer time. This is particularly helpful in the below " +"scenarios:\n" +"1. To avoid changes in shine when printing glossy filaments\n" +"2. To avoid changes in external wall speed which may create slight wall " +"artifacts that appear like Z banding\n" +"3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " +"external walls" +msgstr "" +"Jei šis nustatymas įjungtas, bus užtikrinta, kad išoriniai perimetrai nebūtų " +"sulėtinti, kad būtų pasiektas minimalus sluoksnio laikas. Tai ypač naudinga " +"toliau nurodytais scenarijais:\n" +"1. Norint išvengti blizgesio pokyčių spausdinant blizgius siūlus\n" +"2. Norint išvengti išorinių sienelių greičio pokyčių, dėl kurių gali " +"atsirasti nedidelių sienelių artefaktų, kurie atrodo kaip z juostos.\n" +"3. Kad būtų išvengta spausdinimo greičio, dėl kurio ant išorinių sienelių " +"atsiranda VFA (smulkūs artefaktai).\n" + +msgid "Layer time" +msgstr "Sluoksnio laikas" + +msgid "" +"Part cooling fan will be enabled for layers of which estimated time is " +"shorter than this value. Fan speed is interpolated between the minimum and " +"maximum fan speeds according to layer printing time." +msgstr "" +"Dalių aušinimo ventiliatorius bus įjungtas sluoksniams, kurių numatomas " +"laikas yra trumpesnis už šią vertę. Ventiliatoriaus greitis nustatomas tarp " +"mažiausio ir didžiausio ventiliatoriaus greičio pagal sluoksnio spausdinimo " +"laiką" + +msgid "Default color" +msgstr "Numatytoji spalva" + +msgid "Default filament color" +msgstr "Numatytoji gijos spalva" + +msgid "Filament notes" +msgstr "Gijos pastabos" + +msgid "You can put your notes regarding the filament here." +msgstr "Čia galite įdėti pastabas apie giją." + +msgid "Required nozzle HRC" +msgstr "Būtinas antgalis HRC" + +msgid "" +"Minimum HRC of nozzle required to print the filament. Zero means no checking " +"of nozzle's HRC." +msgstr "" +"Mažiausia antgalio HRC, kurios reikia norint spausdinti gijomis. Nulis " +"reiškia, kad antgalio HRC netikrinama." + +msgid "" +"This setting stands for how much volume of filament can be melted and " +"extruded per second. Printing speed is limited by max volumetric speed, in " +"case of too high and unreasonable speed setting. Can't be zero." +msgstr "" +"Gijos tūris, kurį galima išlydyti ir išspausti per sekundę. Jei nustatytas " +"per didelis ir nepagrįstas greitis, spausdinimo greitį riboja maksimalus " +"tūrinis greitis. Ši reikšmė negali būti lygi nuliui" + +msgid "mm³/s" +msgstr "mm³/s" + +msgid "Filament load time" +msgstr "Gijos įkrovimo laikas" + +msgid "" +"Time to load new filament when switch filament. It's usually applicable for " +"single-extruder multi-material machines. For tool changers or multi-tool " +"machines, it's typically 0. For statistics only." +msgstr "" +"Naujos gijos įkrovimo laikas, kai perjungiama gija. Tai paprastai taikoma " +"vieno ekstruderio daugialypės terpės mašinoms. Įrankių keitimo arba " +"daugiafunkcinėms mašinoms paprastai taikomas 0. Tik statistiniams duomenims" + +msgid "Filament unload time" +msgstr "Gijos iškrovimo laikas" + +msgid "" +"Time to unload old filament when switch filament. It's usually applicable " +"for single-extruder multi-material machines. For tool changers or multi-tool " +"machines, it's typically 0. For statistics only." +msgstr "" +"Laikas senos gijos iškrovimui, kai keičiama gija. Tai paprastai taikoma " +"vieno ekstruderio kelių medžiagų mašinoms. Įrankių keitimo arba " +"daugiafunkcinėms mašinoms paprastai taikomas 0. Tik statistiniams duomenims" + +msgid "Tool change time" +msgstr "Įrankių keitimo laikas" + +msgid "" +"Time taken to switch tools. It's usually applicable for tool changers or " +"multi-tool machines. For single-extruder multi-material machines, it's " +"typically 0. For statistics only." +msgstr "" +"Įrankių keitimo laikas. Jis paprastai taikomas įrankių keitimo įrenginiams " +"arba daugiafunkcinėms staklėms. Vieno ekstruderio kelių medžiagų mašinoms " +"jis paprastai lygus 0. Tik statistiniams duomenims" + +msgid "" +"Filament diameter is used to calculate extrusion in G-code, so it's important " +"and should be accurate" +msgstr "" +"Gijos skersmuo naudojamas ekstruzijos kintamiesiems G kode apskaičiuoti, " +"todėl svarbu, kad jis būtų tikslus" + +msgid "Pellet flow coefficient" +msgstr "Granulių srauto koeficientas" + +msgid "" +"Pellet flow coefficient is empirically derived and allows for volume " +"calculation for pellet printers.\n" +"\n" +"Internally it is converted to filament_diameter. All other volume " +"calculations remain the same.\n" +"\n" +"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )" +msgstr "" +"Granulių srauto koeficientas nustatomas empiriškai ir leidžia apskaičiuoti " +"granulių spausdintuvų tūrį.\n" +"\n" +"Viduje jis konvertuojamas į filament_diameter. Visi kiti tūrio skaičiavimai " +"išlieka tokie patys.\n" +"\n" +"filament_diameter = sqrt( (4 * granulių srauto koeficientas) / PI )" + +msgid "Shrinkage (XY)" +msgstr "Susitraukimas (XY)" + +#, no-c-format, no-boost-format +msgid "" +"Enter the shrinkage percentage that the filament will get after cooling (94% " +"if you measure 94mm instead of 100mm). The part will be scaled in xy to " +"compensate. Only the filament used for the perimeter is taken into account.\n" +"Be sure to allow enough space between objects, as this compensation is done " +"after the checks." +msgstr "" +"Įveskite susitraukimo procentą, kurį gija gaus po aušinimo (94%, jei " +"matuojate 94 mm, o ne 100 mm). Dalis bus keičiama xy masteliu, kad būtų " +"kompensuota. Atsižvelgiama tik į perimetrui naudojamą giją.\n" +"Būtinai palikite pakankamai vietos tarp objektų, nes ši kompensacija " +"atliekama po patikrinimų." + +msgid "Shrinkage (Z)" +msgstr "Susitraukimas (Z)" + +#, no-c-format, no-boost-format +msgid "" +"Enter the shrinkage percentage that the filament will get after cooling (94% " +"if you measure 94mm instead of 100mm). The part will be scaled in Z to " +"compensate." +msgstr "" +"Įveskite susitraukimo procentą, kurį gija gaus po aušinimo (94 %, jei " +"matuojate 94 mm, o ne 100 mm). Dalis bus keičiama Z masteliu, kad tai būtų " +"kompensuota." + +msgid "Loading speed" +msgstr "Pakrovimo greitis" + +msgid "Speed used for loading the filament on the wipe tower." +msgstr "" +"Greitis, naudojamas kaitinamojo siūlelio uždėjimui ant šluostymo bokštelio." + +msgid "Loading speed at the start" +msgstr "Pakrovimo greitis pradžioje" + +msgid "Speed used at the very beginning of loading phase." +msgstr "Greitis, naudojamas pačioje pakrovimo fazės pradžioje." + +msgid "Unloading speed" +msgstr "Iškrovimo greitis" + +msgid "" +"Speed used for unloading the filament on the wipe tower (does not affect " +"initial part of unloading just after ramming)." +msgstr "" +"Greitis, naudojamas gijos išleidimui ant valymo bokštelio (neturi įtakos " +"pradinei išleidimo daliai iškart po lyginimo)." + +msgid "Unloading speed at the start" +msgstr "Iškrovimo greitis pradžioje" + +msgid "" +"Speed used for unloading the tip of the filament immediately after ramming." +msgstr "Greitis, naudojamas gijos galiuko iškrovimui iš karto po ramingo." + +msgid "Delay after unloading" +msgstr "Vėlavimas po išleidimo" + +msgid "" +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " +"original dimensions." +msgstr "" +"Laukimo laikas po to, kai gija išleista. Gali padėti naudojant lanksčias " +"medžiagas, kurioms gali prireikti daugiau laiko susitraukti iki pradinių " +"matmenų." + +msgid "Number of cooling moves" +msgstr "Aušinimo judesių skaičius" + +msgid "" +"Filament is cooled by being moved back and forth in the cooling tubes. " +"Specify desired number of these moves." +msgstr "" +"Gija aušinama judant pirmyn ir atgal aušinimo vamzdeliuose. Nurodykite " +"pageidaujamą šių judesių skaičių." + +msgid "Stamping loading speed" +msgstr "Antspaudų užkrovimo greitis" + +msgid "Speed used for stamping." +msgstr "Greitis, naudojamas štampavimui." + +msgid "Stamping distance measured from the center of the cooling tube" +msgstr "Štampavimo atstumas, matuojamas nuo aušinimo vamzdelio centro" + +msgid "" +"If set to non-zero value, filament is moved toward the nozzle between the " +"individual cooling moves (\"stamping\"). This option configures how long " +"this movement should be before the filament is retracted again." +msgstr "" +"Jei nustatyta nenulinė reikšmė, gija tarp atskirų aušinimo judesių judinama " +"link purkštuko („štampavimas“). Šia parinktimi nustatoma, kiek laiko turi " +"trukti šis judėjimas, kol gija vėl įtraukiama." + +msgid "Speed of the first cooling move" +msgstr "Pirmojo aušinimo judesio greitis" + +msgid "Cooling moves are gradually accelerating beginning at this speed." +msgstr "Aušinimo judesiai palaipsniui greitėja, pradedant tokiu greičiu." + +msgid "Minimal purge on wipe tower" +msgstr "Minimalus valymas ant šluostymo bokštelio" + +msgid "" +"After a tool change, the exact position of the newly loaded filament inside " +"the nozzle may not be known, and the filament pressure is likely not yet " +"stable. Before purging the print head into an infill or a sacrificial " +"object, Orca Slicer will always prime this amount of material into the wipe " +"tower to produce successive infill or sacrificial object extrusions reliably." +msgstr "" +"Pakeitus įrankį, gali būti nežinoma tiksli naujai įdėtos gijos padėtis " +"purkštuke, o gijos slėgis greičiausiai dar nėra stabilus. Prieš spausdinimo " +"galvutei prapučiant užpildą arba apsauginį objektą, \"Orca Slicer\" visuomet " +"paruoš tokį medžiagos kiekį į valymo bokštą, kad būtų patikimai gaminami " +"vienas po kito einantys užpildų arba apsauginių objektų išspaudimai." + +msgid "Speed of the last cooling move" +msgstr "Paskutinio aušinimo judesio greitis" + +msgid "Cooling moves are gradually accelerating towards this speed." +msgstr "Aušinimo judesiai palaipsniui greitėja link šio greičio." + +msgid "Ramming parameters" +msgstr "Įspaudimo parametrai" + +msgid "" +"This string is edited by RammingDialog and contains ramming specific " +"parameters." +msgstr "" +"Šią eilutę redaguoja RammingDialog ir joje yra specifiniai įspaudimo " +"parametrai." + +msgid "Enable ramming for multi-tool setups" +msgstr "Įgalinti daugiafunkcinių įrankių nustatymų tankinimą" + +msgid "" +"Perform ramming when using multi-tool printer (i.e. when the 'Single " +"Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " +"small amount of filament is rapidly extruded on the wipe tower just before " +"the tool change. This option is only used when the wipe tower is enabled." +msgstr "" +"Atlikti tankinimą, kai naudojamas daugiafunkcinis spausdintuvas (t. y. kai " +"spausdintuvo nustatymuose nepažymėta parinktis „Vienas išspaudiklis, " +"įvairios medžiagos“). Kai ši parinktis pažymėta, nedidelis gijos kiekis " +"greitai išspaudžiamas ant valymo bokšto prieš pat įrankio keitimą. Ši " +"parinktis naudojama tik tada, kai įjungtas valymo bokštas." + +msgid "Multi-tool ramming volume" +msgstr "Daugiafunkcinių įrankių tankinimo tūris" + +msgid "The volume to be rammed before the tool change." +msgstr "Tūris, kuris turi būti įspaustas prieš keičiant įrankį." + +msgid "Multi-tool ramming flow" +msgstr "Daugiafunkcinių įrankių tankinimo srautas" + +msgid "Flow used for ramming the filament before the tool change." +msgstr "Srautas, naudojamas gijai įspausti prieš keičiant įrankį." + +msgid "Density" +msgstr "Tankis" + +msgid "Filament density. For statistics only." +msgstr "Gijų tankis, tik statistikai" + +msgid "g/cm³" +msgstr "g/cm³" + +msgid "The material type of filament." +msgstr "Gijos medžiagos tipas" + +msgid "Soluble material" +msgstr "Tirpi medžiaga" + +msgid "" +"Soluble material is commonly used to print supports and support interfaces." +msgstr "" +"Tirpi medžiaga paprastai naudojama spausdinant atramą ir atramos sąsają" + +msgid "Support material" +msgstr "Atramų medžiaga" + +msgid "" +"Support material is commonly used to print supports and support interfaces." +msgstr "" +"Pagalbinė medžiaga paprastai naudojama pagalbinėms ir atraminėms sąsajoms " +"spausdinti" + +msgid "Softening temperature" +msgstr "Minkštėjimo temperatūra" + +msgid "" +"The material softens at this temperature, so when the bed temperature is " +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." +msgstr "" +"Esant tokiai temperatūrai medžiaga suminkštėja, todėl, kai pagrindo " +"temperatūra yra lygi arba didesnė už ją, labai rekomenduojama atidaryti " +"priekines dureles ir (arba) nuimti viršutinį stiklą, kad būtų išvengta " +"užsikimšimo." + +msgid "Price" +msgstr "Kaina" + +msgid "Filament price. For statistics only." +msgstr "Gijos kaina, tik statistikai" + +msgid "money/kg" +msgstr "pinigų/kg" + +msgid "Vendor" +msgstr "Pardavėjas" + +msgid "Vendor of filament. For show only." +msgstr "Gijos pardavėjas. Tik parodymui" + +msgid "(Undefined)" +msgstr "(Nenurodyta)" + +msgid "Sparse infill direction" +msgstr "Reto užpildymo kryptis" + +msgid "" +"Angle for sparse infill pattern, which controls the start or main direction " +"of line." +msgstr "" +"Reto užpildymo rašto kampas, kuriuo nustatoma linijų pradžios arba " +"pagrindinė kryptis" + +msgid "Solid infill direction" +msgstr "Vientiso užpildo kryptis" + +msgid "" +"Angle for solid infill pattern, which controls the start or main direction " +"of line." +msgstr "" +"Vientiso užpildo rašto kampas, kuriuo nustatoma linijos pradžios arba " +"pagrindinė kryptis" + +msgid "Rotate solid infill direction" +msgstr "Pasukti vientiso užpildo kryptį" + +msgid "Rotate the solid infill direction by 90° for each layer." +msgstr "Pasukti vientiso užpildo kryptį 90° kampu kiekvienam sluoksniui." + +msgid "Sparse infill density" +msgstr "Reto užpildymo tankis" + +#, no-c-format, no-boost-format +msgid "" +"Density of internal sparse infill, 100% turns all sparse infill into solid " +"infill and internal solid infill pattern will be used." +msgstr "" +"Vidinio reto užpildymo tankis, 100% paverčia visą retą užpildymą vientisu " +"užpildymu, tuomet bus naudojamas vidinis vientiso užpildymo raštas" + +msgid "Sparse infill pattern" +msgstr "Reto užpildymo raštas" + +msgid "Line pattern for internal sparse infill." +msgstr "Vidinio reto užpildymo linijomis modelis" + +msgid "Grid" +msgstr "Tinklelis" + +msgid "2D Lattice" +msgstr "2D grotelės" + +msgid "Line" +msgstr "Linija" + +msgid "Cubic" +msgstr "Kubinis" + +msgid "Tri-hexagon" +msgstr "Trijų šešiakampių sistema" + +msgid "Gyroid" +msgstr "Giroidas" + +msgid "Honeycomb" +msgstr "Korys" + +msgid "Adaptive Cubic" +msgstr "Prisitaikantis kubinis" + +msgid "3D Honeycomb" +msgstr "3D korys" + +msgid "Support Cubic" +msgstr "Atrama kubinė" + +msgid "Lightning" +msgstr "Apšvietimas" + +msgid "Cross Hatch" +msgstr "Kryžminis skliautas" + +msgid "Quarter Cubic" +msgstr "Ketvirtis kubo" + +msgid "Lattice angle 1" +msgstr "Rašto kampas 1" + +msgid "" +"The angle of the first set of 2D lattice elements in the Z direction. Zero " +"is vertical." +msgstr "" +"Pirmojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra " +"vertikalus." + +msgid "Lattice angle 2" +msgstr "Rašto kampas 2" + +msgid "" +"The angle of the second set of 2D lattice elements in the Z direction. Zero " +"is vertical." +msgstr "" +"Antrojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra " +"vertikalus." + +msgid "Sparse infill anchor length" +msgstr "Reto užpildo tvirtinimo ilgis" + +msgid "" +"Connect an infill line to an internal perimeter with a short segment of an " +"additional perimeter. If expressed as percentage (example: 15%) it is " +"calculated over infill extrusion width. Orca Slicer tries to connect two " +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than infill_anchor_max is found, the infill line is " +"connected to a perimeter segment at just one side and the length of the " +"perimeter segment taken is limited to this parameter, but no longer than " +"anchor_length_max.\n" +"Set this parameter to zero to disable anchoring perimeters connected to a " +"single infill line." +msgstr "" +"Sujunkite užpildymo liniją su vidiniu perimetru trumpa papildomo perimetro " +"atkarpa. Jei išreiškiama procentais (pvz., 15 %), ji apskaičiuojama per " +"užpildymo ekstruzijos plotį. Programa \"Orca Slicer\" bando sujungti dvi " +"artimas užpildymo linijas su trumpu perimetro segmentu. Jei tokio perimetro " +"segmento, trumpesnio už infill_anchor_max, nerandama, užpildo linija " +"sujungiama su perimetro segmentu tik vienoje pusėje, o paimto perimetro " +"segmento ilgis apribojamas šiuo parametru, bet ne ilgesnis už " +"anchor_length_max.\n" +"Nustatykite šį parametrą lygų nuliui, jei norite išjungti perimetro, " +"sujungto su viena užpildo linija, įtvirtinimą." + +msgid "0 (no open anchors)" +msgstr "0 (nėra atvirų tvirtinimų)" + +msgid "1000 (unlimited)" +msgstr "1000 (neribota)" + +msgid "Maximum length of the infill anchor" +msgstr "Maksimalus užpildymo tvirtinimų ilgis" + +msgid "" +"Connect an infill line to an internal perimeter with a short segment of an " +"additional perimeter. If expressed as percentage (example: 15%) it is " +"calculated over infill extrusion width. Orca Slicer tries to connect two " +"close infill lines to a short perimeter segment. If no such perimeter " +"segment shorter than this parameter is found, the infill line is connected " +"to a perimeter segment at just one side and the length of the perimeter " +"segment taken is limited to infill_anchor, but no longer than this " +"parameter.\n" +"If set to 0, the old algorithm for infill connection will be used, it should " +"create the same result as with 1000 & 0." +msgstr "" +"Sujunkite užpildymo liniją su vidiniu perimetru trumpa papildomo perimetro " +"atkarpa. Jei išreiškiama procentais (pvz., 15 %), ji apskaičiuojama per " +"užpildymo ekstruzijos plotį. Programa \"Orca Slicer\" bando sujungti dvi " +"artimas užpildymo linijas su trumpu perimetro segmentu. Jei tokio trumpesnio " +"už šį parametrą perimetro segmento nerandama, užpildo linija prijungiama " +"prie perimetro segmento tik vienoje pusėje, o paimto perimetro segmento " +"ilgis apribojamas iki infill_anchor, bet ne ilgesnis už šį parametrą.\n" +"Jei nustatyta 0, bus naudojamas senasis užpildymo sujungimo algoritmas, jis " +"turėtų sukurti tokį patį rezultatą kaip ir naudojant 1000 & 0." + +msgid "0 (Simple connect)" +msgstr "0 (paprastas prijungimas)" + +msgid "Acceleration of outer walls." +msgstr "Išorinių sienų pagreitis" + +msgid "Acceleration of inner walls." +msgstr "Vidinių sienų pagreitis" + +msgid "Acceleration of travel moves." +msgstr "Judėjimo judesių pagreitis" + +msgid "" +"Acceleration of top surface infill. Using a lower value may improve top " +"surface quality." +msgstr "" +"Viršutinio paviršiaus užpildymo pagreitis. Naudojant mažesnę vertę gali " +"pagerėti viršutinio paviršiaus kokybė" + +msgid "Acceleration of outer wall. Using a lower value can improve quality." +msgstr "" +"Išorinės sienos pagreitis: naudojant mažesnę vertę galima pagerinti kokybę" + +msgid "" +"Acceleration of bridges. If the value is expressed as a percentage (e.g. " +"50%), it will be calculated based on the outer wall acceleration." +msgstr "" +"Tiltų pagreitis. Jei reikšmė išreikšta procentais (pvz., 50 %), ji bus " +"apskaičiuota pagal išorinės sienos pagreitį." + +msgid "mm/s² or %" +msgstr "mm/s² arba %" + +msgid "" +"Acceleration of sparse infill. If the value is expressed as a percentage " +"(e.g. 100%), it will be calculated based on the default acceleration." +msgstr "" +"Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji " +"bus apskaičiuota pagal numatytąjį pagreitį." + +msgid "" +"Acceleration of internal solid infill. If the value is expressed as a " +"percentage (e.g. 100%), it will be calculated based on the default " +"acceleration." +msgstr "" +"Vidinio vientiso užpildo pagreitis. Jei reikšmė išreikšta procentais (pvz., " +"100 %), ji bus apskaičiuota pagal numatytąjį pagreitį." + +msgid "" +"Acceleration of initial layer. Using a lower value can improve build plate " +"adhesion." +msgstr "" +"Tai pirmojo sluoksnio spausdinimo pagreitis. Naudojant ribotą pagreitį " +"galima pagerinti sukibimą su pagrindu" + +msgid "Enable accel_to_decel" +msgstr "Įjungti accel_to_decel" + +msgid "Klipper's max_accel_to_decel will be adjusted automatically." +msgstr "\"Klipper\" max_accel_to_decel bus nustatytas automatiškai" + +msgid "accel_to_decel" +msgstr "accel_to_decel" + +#, c-format, boost-format +msgid "" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." +msgstr "\"Klipper\" max_accel_to_decel bus pakoreguotas pagal šį pagreičio %%" + +msgid "Jerk of outer walls." +msgstr "Išorinių sienų trūkčiojimas" + +msgid "Jerk of inner walls." +msgstr "Vidinių sienų trūkčiojimas" + +msgid "Jerk for top surface." +msgstr "Viršutinio paviršiaus trūkčiojimas" + +msgid "Jerk for infill." +msgstr "Užpildymo trūkčiojimas" + +msgid "Jerk for initial layer." +msgstr "Pradinio sluoksnio trūkčiojimas" + +msgid "Jerk for travel." +msgstr "Judėjimo trūkčiojimas" + +msgid "" +"Line width of initial layer. If expressed as a %, it will be computed over " +"the nozzle diameter." +msgstr "" +"Pradinio sluoksnio linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas " +"pagal purkštuko skersmenį." + +msgid "Initial layer height" +msgstr "Pradinio sluoksnio aukštis" + +msgid "" +"Height of initial layer. Making initial layer height to be thick slightly " +"can improve build plate adhesion." +msgstr "" +"Pradinio sluoksnio aukštis. Šiek tiek padidinus pradinio sluoksnio aukštį " +"galima pagerinti pagrindo plokštės sukibimą" + +msgid "Speed of initial layer except the solid infill part." +msgstr "Greitis taikomas pirmajam sluoksniui, išskyrus vientiso užpildo ruožus" + +msgid "Initial layer infill" +msgstr "Pradinio sluoksnio užpildymas" + +msgid "Speed of solid infill part of initial layer." +msgstr "Pirmojo sluoksnio vientiso užpildo dalių greitis" + +msgid "Initial layer travel speed" +msgstr "Pradinio sluoksnio judėjimo greitis" + +msgid "Travel speed of initial layer." +msgstr "Pradinio sluoksnio judėjimo greitis" + +msgid "Number of slow layers" +msgstr "Viršutinių sąsajos sluoksnių skaičius" + +msgid "" +"The first few layers are printed slower than normal. The speed is gradually " +"increased in a linear fashion over the specified number of layers." +msgstr "" +"Keli pirmieji sluoksniai spausdinami lėčiau nei įprastai. Greitis " +"palaipsniui linijiniu būdu didinamas per nurodytą sluoksnių skaičių." + +msgid "Initial layer nozzle temperature" +msgstr "Pradinė sluoksnio purkštuko temperatūra" + +msgid "Nozzle temperature for printing initial layer when using this filament." +msgstr "" +"Purkštuko temperatūra pradiniam sluoksniui spausdinti, kai naudojama ši gija" + +msgid "Full fan speed at layer" +msgstr "Visas ventiliatoriaus greitis sluoksnyje" + +msgid "" +"Fan speed will be ramped up linearly from zero at layer " +"\"close_fan_the_first_x_layers\" to maximum at layer " +"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower " +"than \"close_fan_the_first_x_layers\", in which case the fan will be running " +"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1." +msgstr "" +"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje " +"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje " +"\"full_fan_speed_layer\". Į \"full_fan_speed_layer\" bus neatsižvelgiama, " +"jei jis bus mažesnis už \"close_fan_the_first_x_layers\"; tokiu atveju " +"ventiliatorius veiks didžiausiu leistinu greičiu sluoksnyje " +"\"close_fan_the_first_x_layers\" + 1." + +msgid "layer" +msgstr "sluoksnis" + +msgid "Support interface fan speed" +msgstr "Atramų sąsajos ventiliatoriaus greitis" + +msgid "" +"This part cooling fan speed is applied when printing support interfaces. " +"Setting this parameter to a higher than regular speed reduces the layer " +"binding strength between supports and the supported part, making them easier " +"to separate.\n" +"Set to -1 to disable it.\n" +"This setting is overridden by disable_fan_first_layers." +msgstr "" +"Šis dalies aušinimo ventiliatoriaus greitis taikomas spausdinant atramines " +"sąsajas. Nustačius šį parametrą didesniu nei įprastai greičiu, sumažėja " +"sluoksnių surišimo stiprumas tarp atramų ir remiamos dalies, todėl jas " +"lengviau atskirti.\n" +"Nustatykite -1, kad išjungtumėte šį parametrą.\n" +"Šis parametras pakeičiamas parametru \"Išjungti pirmųjų sluoksnių aušinimą\"." + +msgid "Internal bridges fan speed" +msgstr "Vidinių tiltų ventiliatoriaus greitis" + +msgid "" +"The part cooling fan speed used for all internal bridges. Set to -1 to use " +"the overhang fan speed settings instead.\n" +"\n" +"Reducing the internal bridges fan speed, compared to your regular fan speed, " +"can help reduce part warping due to excessive cooling applied over a large " +"surface for a prolonged period of time." +msgstr "" +"Dalies aušinimo ventiliatoriaus greitis, naudojamas visiems vidiniams " +"tilteliams. Nustatykite į -1, kad vietoj to būtų naudojami iškyšos " +"ventiliatoriaus greičio nustatymai.\n" +"\n" +"Sumažinus vidinių tiltelių ventiliatoriaus greitį, palyginti su įprastu " +"ventiliatoriaus greičiu, galima sumažinti detalės deformaciją dėl per " +"didelio aušinimo, ilgą laiką taikomo dideliam paviršiui." + +msgid "" +"Randomly jitter while printing the wall, so that the surface has a rough " +"look. This setting controls the fuzzy position." +msgstr "" +"Dėl šio nustatymo spausdinant sienas įrankio galvutė atsitiktinai trūkčioja, " +"todėl paviršius atrodo grublėtas. Šiuo nustatymu kontroliuojama grublėtumo " +"padėtis" + +msgid "Contour" +msgstr "Kontūras" + +msgid "Contour and hole" +msgstr "Kontūras ir skylė" + +msgid "All walls" +msgstr "Visos sienos" + +msgid "Fuzzy skin thickness" +msgstr "Grublėto paviršiaus storis" + +msgid "" +"The width within which to jitter. It's advised to be below outer wall line " +"width." +msgstr "" +"Plotis, kurio ribose turi būti drebėjimas. Rekomenduojama, kad jis būtų " +"mažesnis už išorinės sienos linijos plotį" + +msgid "Fuzzy skin point distance" +msgstr "Grublėto paviršiaus taško atstumas" + +msgid "" +"The average distance between the random points introduced on each line " +"segment." +msgstr "" +"Vidutinis atstumas tarp atsitiktinių taškų, įvestų kiekvienoje linijos " +"atkarpoje" + +msgid "Apply fuzzy skin to first layer" +msgstr "Taikyti grublėtą paviršių pirmajam sluoksniui" + +msgid "Whether to apply fuzzy skin on the first layer." +msgstr "Ar taikyti grublėtą paviršių pirmajame sluoksnyje" + +msgid "Fuzzy skin noise type" +msgstr "Grublėto paviršiaus nelygumų tipas" + +msgid "" +"Noise type to use for fuzzy skin generation:\n" +"Classic: Classic uniform random noise.\n" +"Perlin: Perlin noise, which gives a more consistent texture.\n" +"Billow: Similar to perlin noise, but clumpier.\n" +"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates " +"marble-like textures.\n" +"Voronoi: Divides the surface into voronoi cells, and displaces each one by a " +"random amount. Creates a patchwork texture." +msgstr "" +"Nelygumų tipas, kurį naudoti generuojant grublėtą paviršių.\n" +"Klasikinis: Klasikinis vienodas atsitiktinis triukšmas.\n" +"Perlin: Perlino triukšmas, kuris suteikia nuoseklesnę tekstūrą.\n" +"Billow: Panašus į Perlino triukšmą, bet gremėzdiškesnis.\n" +"Ridged Multifractal: Tai - rifliuotas triukšmas su aštriomis, dantytomis " +"savybėmis. Sukuria marmurines tekstūras.\n" +"Voronoi: Paviršius padalijamas į Voronoi ląsteles ir kiekviena iš jų " +"pasislenka atsitiktiniu dydžiu. Sukuriama mozaikinė tekstūra." + +msgid "Classic" +msgstr "Klasikinis" + +msgid "Perlin" +msgstr "Perlin" + +msgid "Billow" +msgstr "Billow" + +msgid "Ridged Multifractal" +msgstr "Ridged Multifractal" + +msgid "Voronoi" +msgstr "Voronoi" + +msgid "Fuzzy skin feature size" +msgstr "Grublėto paviršiaus elementų dydis" + +msgid "" +"The base size of the coherent noise features, in mm. Higher values will " +"result in larger features." +msgstr "" +"Koherentinio triukšmo elementų bazinis dydis, mm. Didesnės reikšmės reiškia " +"didesnius elementus." + +msgid "Fuzzy Skin Noise Octaves" +msgstr "Grublėto paviršiaus nelygumų oktavos" + +msgid "" +"The number of octaves of coherent noise to use. Higher values increase the " +"detail of the noise, but also increase computation time." +msgstr "" +"Koherentinio triukšmo oktavų skaičius, kuris bus naudojamas. Didesnės " +"reikšmės padidina triukšmo detalumą, tačiau taip pat pailgina skaičiavimo " +"laiką." + +msgid "Fuzzy skin noise persistence" +msgstr "Grublėto paviršiaus nelygumų patvarumas" + +msgid "" +"The decay rate for higher octaves of the coherent noise. Lower values will " +"result in smoother noise." +msgstr "" +"Aukštesnių oktavų koherentinio triukšmo silpnėjimo greitis. Dėl mažesnių " +"verčių triukšmas bus lygesnis." + +msgid "Filter out tiny gaps" +msgstr "Filtruoti mažus tarpus" + +msgid "Layers and Perimeters" +msgstr "Sluoksniai ir perimetrai" + +msgid "" +"Don't print gap fill with a length is smaller than the threshold specified " +"(in mm). This setting applies to top, bottom and solid infill and, if using " +"the classic perimeter generator, to wall gap fill." +msgstr "" +"Nespausdinti tarpo užpildymo, kurio ilgis yra mažesnis už nurodytą ribą " +"(mm). Šis nustatymas taikomas viršutiniam, apatiniam ir vientisam užpildui, " +"o jei naudojamas klasikinis perimetro generatorius - ir sienos tarpo " +"užpildymui." + +msgid "" +"Speed of gap infill. Gap usually has irregular line width and should be " +"printed more slowly." +msgstr "" +"Tarpų užpildymo greitis. Tarpai paprastai būna netaisyklingo pločio, todėl " +"juos reikia spausdinti lėčiau" + +msgid "Precise Z height" +msgstr "Tikslus Z aukštis" + +msgid "" +"Enable this to get precise z height of object after slicing. It will get the " +"precise object height by fine-tuning the layer heights of the last few " +"layers. Note that this is an experimental parameter." +msgstr "" +"Įjunkite šią funkciją, jei norite gauti tikslų objekto z aukštį po " +"sluoksniavimo. Tikslus objekto aukštis bus gautas tiksliai nustatant kelių " +"paskutinių sluoksnių aukštį. Atkreipkite dėmesį, kad tai eksperimentinis " +"parametras." + +msgid "Arc fitting" +msgstr "Lanko talpinimas" + +msgid "" +"Enable this to get a G-code file which has G2 and G3 moves. The fitting " +"tolerance is same as the resolution.\n" +"\n" +"Note: For Klipper machines, this option is recommended to be disabled. " +"Klipper does not benefit from arc commands as these are split again into " +"line segments by the firmware. This results in a reduction in surface " +"quality as line segments are converted to arcs by the slicer and then back " +"to line segments by the firmware." +msgstr "" +"Įgalinkite šią funkciją, kad gautumėte G-kodo failą su G2 ir G3 judesiais. " +"Montavimo tolerancija yra tokia pati kaip skiriamoji geba.\n" +"\n" +"Pastaba: „Klipper“ mašinoms šią parinktį rekomenduojama išjungti. Klipper " +"neturi naudos iš lanko komandų, nes jas programinė įranga vėl suskaido į " +"linijų segmentus. Dėl to suprastėja paviršiaus kokybė, nes linijiniai " +"segmentai pjaustytuve paverčiami lankais, o programinėje įrangoje vėl " +"paverčiami linijiniais segmentais." + +msgid "Add line number" +msgstr "Pridėti eilutės numerį" + +msgid "Enable this to add line number(Nx) at the beginning of each G-code line" +msgstr "" +"Įjunkite šią funkciją, kad kiekvienos G-kodo eilutės pradžioje būtų pridėtas " +"eilutės numeris (Nx)" + +msgid "Scan first layer" +msgstr "Nuskaityti pirmąjį sluoksnį" + +msgid "" +"Enable this to enable the camera on printer to check the quality of first " +"layer." +msgstr "" +"Įjunkite šią funkciją, kad spausdintuvo kamera būtų galima patikrinti " +"pirmojo sluoksnio kokybę" + +msgid "Nozzle type" +msgstr "Purkštuko tipas" + +msgid "" +"The metallic material of nozzle. This determines the abrasive resistance of " +"nozzle, and what kind of filament can be printed." +msgstr "" +"Nuo purkštuko medžiagos priklauso antgalio atsparumas abrazyvui ir tai, " +"kokią giją galima spausdinti" + +msgid "Undefine" +msgstr "Neapibrėžti" + +msgid "Hardened steel" +msgstr "Kietintas plienas" + +msgid "Stainless steel" +msgstr "Nerūdijantis plienas" + +msgid "Brass" +msgstr "Žalvaris" + +msgid "Nozzle HRC" +msgstr "Purkštuko HRC" + +msgid "" +"The nozzle's hardness. Zero means no checking for nozzle's hardness during " +"slicing." +msgstr "" +"Antgalio kietumas. Nulis reiškia, kad sluoksniavimo antgalio kietumas " +"netikrinamas." + +msgid "HRC" +msgstr "HRC" + +msgid "Printer structure" +msgstr "Spausdintuvo konstrukcija" + +msgid "The physical arrangement and components of a printing device." +msgstr "Spausdinimo įrenginio fizinis išdėstymas ir sudedamosios dalys" + +msgid "CoreXY" +msgstr "CoreXY" + +msgid "I3" +msgstr "I3" + +msgid "Hbot" +msgstr "Hbot" + +msgid "Delta" +msgstr "Delta" + +msgid "Best object position" +msgstr "Geriausia objekto padėtis" + +msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." +msgstr "" +"Geriausia automatinio išdėstymo padėtis intervale [0,1] pagal pagrindo formą." + +msgid "" +"Enable this option if machine has auxiliary part cooling fan. G-code " +"command: M106 P2 S(0-255)." +msgstr "" +"Įjunkite šią parinktį, jei mašinoje yra papildomas dalių aušinimo " +"ventiliatorius. G-kodo komanda: M106 P2 S(0-255)." + +msgid "" +"Start the fan this number of seconds earlier than its target start time (you " +"can use fractional seconds). It assumes infinite acceleration for this time " +"estimation, and will only take into account G1 and G0 moves (arc fitting is " +"unsupported).\n" +"It won't move fan commands from custom G-code (they act as a sort of " +"'barrier').\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" +"Use 0 to deactivate." +msgstr "" +"Įjunkite ventiliatorių šiuo sekundžių skaičiumi anksčiau už jo tikslinį " +"paleidimo laiką (galite naudoti sekundžių dalis). Įvertinant šį laiką daroma " +"prielaida, kad pagreitis yra begalinis, ir atsižvelgiama tik į G1 ir G0 " +"judesius (lanko pritaikymas nepalaikomas).\n" +"Jis neperkelia ventiliatoriaus komandų iš pasirinktinių G-kodą (jie veikia " +"kaip tam tikras „barjeras“).\n" +"Jis neperkelia ventiliatoriaus komandų į pradžios G-kodą, jei įjungta " +"parinktis „tik pasirinktinis pradžios gkodas“.\n" +"Jei norite išjungti, naudokite 0." + +msgid "Only overhangs" +msgstr "Tik iškyšos" + +msgid "Will only take into account the delay for the cooling of overhangs." +msgstr "Atsižvelgs tik į iškyšų aušinimo vėlavimą." + +msgid "Fan kick-start time" +msgstr "Ventiliatoriaus paleidimo laikas" + +msgid "" +"Emit a max fan speed command for this amount of seconds before reducing to " +"target speed to kick-start the cooling fan.\n" +"This is useful for fans where a low PWM/power may be insufficient to get the " +"fan started spinning from a stop, or to get the fan up to speed faster.\n" +"Set to 0 to deactivate." +msgstr "" +"Šį kiekį sekundžių siunčia maksimalaus ventiliatoriaus greičio komandą, o po " +"to sumažina greitį, kad aušinimo ventiliatorius pradėtų veikti.\n" +"Tai naudinga ventiliatoriams, kai mažos PWM / galios gali nepakakti, kad " +"ventiliatorius pradėtų suktis nuo sustojimo, arba kad ventiliatorius " +"greičiau įsibėgėtų.\n" +"Nustatykite 0, kad išjungtumėte." + +msgid "Time cost" +msgstr "Laiko kaina" + +msgid "The printer cost per hour." +msgstr "Spausdintuvo valandos kaina" + +msgid "money/h" +msgstr "pinigai/h" + +msgid "Support control chamber temperature" +msgstr "Kameros temperatūros kontrolės palaikymas" + +msgid "" +"This option is enabled if machine support controlling chamber temperature\n" +"G-code command: M141 S(0-255)" +msgstr "" +"Ši parinktis įjungiama, jei mašina palaiko kameros temperatūros kontrolę.\n" +"G-kodo komanda: M141 S(0-255)" + +msgid "Support air filtration" +msgstr "Oro filtravimo palaikymas" + +msgid "" +"Enable this if printer support air filtration\n" +"G-code command: M106 P3 S(0-255)" +msgstr "" +"Įjunkite šią funkciją, jei spausdintuvas palaiko oro filtravimą\n" +"G-kodo komanda: M106 P3 S(0-255)" + +msgid "G-code flavor" +msgstr "G-kodo tipas" + +msgid "What kind of G-code the printer is compatible with" +msgstr "Su kokiu gkodu suderinamas spausdintuvas" + +msgid "Klipper" +msgstr "Klipper" + +msgid "Pellet Modded Printer" +msgstr "Modifikuotas granulių spausdintuvas" + +msgid "Enable this option if your printer uses pellets instead of filaments." +msgstr "" +"Įjunkite šią parinktį, jei spausdintuve vietoj gijų naudojamos granulės" + +msgid "Support multi bed types" +msgstr "Kelių tipų pagrindų palaikymas" + +msgid "Enable this option if you want to use multiple bed types." +msgstr "Įjunkite šią parinktį, jei norite naudoti kelių tipų pagrindus" + +msgid "Label objects" +msgstr "Objektų žymėjimas" + +msgid "" +"Enable this to add comments into the G-code labeling print moves with what " +"object they belong to, which is useful for the Octoprint CancelObject " +"plugin. This settings is NOT compatible with Single Extruder Multi Material " +"setup and Wipe into Object / Wipe into Infill." +msgstr "" +"Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo " +"spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga " +"„Octoprint CancelObject“ papildiniui. Šie nustatymai NĖRA suderinami su " +"Vieno Ekstruderio Kelių Medžiagų sąranka ir Valyti Objekte / Valyti " +"Užpildyme." + +msgid "Exclude objects" +msgstr "Išskirti objektus" + +msgid "Enable this option to add EXCLUDE OBJECT command in G-code" +msgstr "" +"Įjunkite šią parinktį, jei norite į G-kodą įtraukti komandą EXCLUDE OBJECT" + +msgid "Verbose G-code" +msgstr "Išsamus G-kodas" + +msgid "" +"Enable this to get a commented G-code file, with each line explained by a " +"descriptive text. If you print from SD card, the additional weight of the " +"file could make your firmware slow down." +msgstr "" +"Įjunkite tai, kad gautumėte komentuojamą G-kodo failą su kiekviena eilute " +"paaiškinta aprašomuoju tekstu. Jei spausdinate iš SD kortelės, dėl papildomo " +"failo dydžio gali sulėtėti veikimas." + +msgid "Infill combination" +msgstr "Užpildymo derinys" + +msgid "" +"Automatically Combine sparse infill of several layers to print together to " +"reduce time. Wall is still printed with original layer height." +msgstr "" +"Automatiškai sujungti kelių sluoksnių retą užpildą, kad būtų spausdinama " +"kartu ir sutrumpėtų laikas. Siena vis tiek spausdinama su pradiniu sluoksnio " +"aukščiu." + +msgid "Infill combination - Max layer height" +msgstr "Užpildų derinys - Maksimalus sluoksnio aukštis" + +msgid "" +"Maximum layer height for the combined sparse infill.\n" +"\n" +"Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " +"print time) or a value of ~80% to maximize sparse infill strength.\n" +"\n" +"The number of layers over which infill is combined is derived by dividing " +"this value with the layer height and rounded down to the nearest decimal.\n" +"\n" +"Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " +"(eg 80%). This value must not be larger than the nozzle diameter." +msgstr "" +"Didžiausias kombinuoto reto užpildo sluoksnio aukštis.\n" +"\n" +"Nustatykite 0 arba 100 %, jei norite naudoti purkštuko skersmenį (kad " +"maksimaliai sutrumpėtų spausdinimo laikas), arba ~80 %, jei norite " +"maksimaliai padidinti reto užpildo stiprumą.\n" +"\n" +"Sluoksnių, per kuriuos derinamas užpildas, skaičius gaunamas dalijant šią " +"vertę iš sluoksnio aukščio ir suapvalinant žemyn iki artimiausio dešimtainio " +"skaičiaus.\n" +"\n" +"Naudokite absoliučias mm vertes (pvz., 0,32 mm 0,4 mm antgaliui) arba % " +"vertes (pvz., 80 %). Ši vertė neturi būti didesnė už purkštuko skersmenį." + +msgid "Filament to print internal sparse infill." +msgstr "Gija, skirta spausdinti vidinį retą užpildą." + +msgid "" +"Line width of internal sparse infill. If expressed as a %, it will be " +"computed over the nozzle diameter." +msgstr "" +"Vidinio reto užpildo linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas " +"pagal purkštuko skersmenį." + +msgid "Infill/Wall overlap" +msgstr "Užpildo ir sienos persidengimas" + +#, no-c-format, no-boost-format +msgid "" +"Infill area is enlarged slightly to overlap with wall for better bonding. " +"The percentage value is relative to line width of sparse infill. Set this " +"value to ~10-15% to minimize potential over extrusion and accumulation of " +"material resulting in rough top surfaces." +msgstr "" +"Užpildo plotas šiek tiek padidintas, kad persidengtų su siena ir geriau " +"sukibtų. Procentinė vertė yra santykinė su reto užpildo linijos pločiu. " +"Nustatykite šią vertę ~10-15 %, kad sumažintumėte galimą perteklinį " +"išspaudimą ir medžiagos sankaupas, dėl kurių susidaro šiurkštus viršutinis " +"paviršius." + +msgid "Top/Bottom solid infill/wall overlap" +msgstr "Viršutinio ir apatinio vientiso užpildo ir sienos persidengimas" + +#, no-c-format, no-boost-format +msgid "" +"Top solid infill area is enlarged slightly to overlap with wall for better " +"bonding and to minimize the appearance of pinholes where the top infill " +"meets the walls. A value of 25-30% is a good starting point, minimizing the " +"appearance of pinholes. The percentage value is relative to line width of " +"sparse infill." +msgstr "" +"Viršutinė vientiso užpildo sritis šiek tiek padidinta, kad geriau sutaptų su " +"siena ir kad viršutinio užpildo vietoje, kur jis jungiasi su sienomis, " +"atsirastų kuo mažiau skylučių. 25-30 % vertė yra geras pradinis taškas, " +"sumažinantis skylučių atsiradimą. Procentinė vertė yra santykinė su reto " +"užpildo linijos pločiu" + +msgid "Speed of internal sparse infill." +msgstr "Vidinio reto užpildymo greitis" + +msgid "Inherits profile" +msgstr "Paveldi profilį" + +msgid "Name of parent profile." +msgstr "Pirminio profilio pavadinimas" + +msgid "Interface shells" +msgstr "Sąsajos apvalkalai" + +msgid "" +"Force the generation of solid shells between adjacent materials/volumes. " +"Useful for multi-extruder prints with translucent materials or manual " +"soluble support material." +msgstr "" +"Priverstinai sukuriami vientisi apvalkalai tarp gretimų medžiagų ir (arba) " +"tūrių. Naudinga spausdinant daugiasluoksniais ekstruderiais su permatomomis " +"medžiagomis arba rankiniu būdu tirpiomis pagalbinėmis medžiagomis" + +msgid "Maximum width of a segmented region" +msgstr "Didžiausias segmentuotos srities plotis" + +msgid "Maximum width of a segmented region. Zero disables this feature." +msgstr "Didžiausias segmentuotos srities plotis. Nulis išjungia šią funkciją." + +msgid "Interlocking depth of a segmented region" +msgstr "Segmentuotos srities susikirtimo gylis" + +msgid "" +"Interlocking depth of a segmented region. It will be ignored if " +"\"mmu_segmented_region_max_width\" is zero or if " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " +"\"mmu_segmented_region_max_width\". Zero disables this feature." +msgstr "" +"Segmentuoto regiono susikirtimo gylis. Jis bus ignoruojamas, jei " +"„mmu_segmented_region_max_width“ yra nulis arba jei " +"„mmu_segmented_region_interlocking_depth“ yra didesnis už " +"„mmu_segmented_region_max_width“. Nulis išjungia šią funkciją." + +msgid "Use beam interlocking" +msgstr "Naudoti pluošto blokavimą" + +msgid "" +"Generate interlocking beam structure at the locations where different " +"filaments touch. This improves the adhesion between filaments, especially " +"models printed in different materials." +msgstr "" +"Vietose, kuriose liečiasi skirtingos gijos, sukurkite susisiekiančių sijų " +"struktūrą. Tai pagerina sukibimą tarp gijų, ypač modelių, atspausdintų iš " +"skirtingų medžiagų." + +msgid "Interlocking beam width" +msgstr "Blokavimo sijų plotis" + +msgid "The width of the interlocking structure beams." +msgstr "Susikertančių konstrukcijos sijų plotis." + +msgid "Interlocking direction" +msgstr "Susiejimo kryptis" + +msgid "Orientation of interlock beams." +msgstr "Blokavimo sijų kryptis." + +msgid "Interlocking beam layers" +msgstr "Tarpusavyje besijungiantys sijų sluoksniai" + +msgid "" +"The height of the beams of the interlocking structure, measured in number of " +"layers. Less layers is stronger, but more prone to defects." +msgstr "" +"Sujungtos konstrukcijos sijų aukštis, matuojamas sluoksnių skaičiumi. " +"Mažesnis sluoksnių skaičius yra tvirtesnis, bet labiau linkęs į defektus." + +msgid "Interlocking depth" +msgstr "Blokavimo gylis" + +msgid "" +"The distance from the boundary between filaments to generate interlocking " +"structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "" +"Atstumas nuo ribos tarp gijų iki susikertančios struktūros, matuojamas " +"ląstelėmis. Dėl per mažo ląstelių skaičiaus sukibimas bus silpnas." + +msgid "Interlocking boundary avoidance" +msgstr "Blokuotų ribų vengimas" + +msgid "" +"The distance from the outside of a model where interlocking structures will " +"not be generated, measured in cells." +msgstr "" +"Atstumas nuo modelio išorės, kai nesukuriamos susikertančios struktūros, " +"matuojamas ląstelėmis." + +msgid "Ironing Type" +msgstr "Lyginimo tipas" + +msgid "" +"Ironing is using small flow to print on same height of surface again to make " +"flat surface more smooth. This setting controls which layer being ironed" +msgstr "" +"Lyginant naudojamas nedidelis srautas, kuris spausdina tame pačiame " +"paviršiaus aukštyje, kad plokšti paviršiai būtų lygesni. Šis nustatymas " +"kontroliuoja, kurie sluoksniai lyginami" + +msgid "No ironing" +msgstr "Nėra lyginimo" + +msgid "Top surfaces" +msgstr "Viršutiniai paviršiai" + +msgid "Topmost surface" +msgstr "Aukščiausias paviršius" + +msgid "All solid layer" +msgstr "Visas vientisas sluoksnis" + +msgid "Ironing Pattern" +msgstr "Lyginimo raštas" + +msgid "The pattern that will be used when ironing." +msgstr "Raštas, kuris bus naudojamas lyginant" + +msgid "Ironing flow" +msgstr "Lyginimo srautas" + +msgid "" +"The amount of material to extrude during ironing. Relative to flow of normal " +"layer height. Too high value results in overextrusion on the surface." +msgstr "" +"Medžiagos kiekis, kuris turi būti išspaustas lyginimo metu. Jis yra susijęs " +"su įprasto sluoksnio aukščio srautu. Dėl per didelės vertės paviršiuje " +"atsiras perteklinis išspaudimas" + +msgid "Ironing line spacing" +msgstr "Tarpai tarp lyginimo linijų" + +msgid "The distance between the lines of ironing." +msgstr "Atstumas tarp lyginimui naudojamų linijų" + +msgid "Ironing inset" +msgstr "Lyginimo intarpas" + +msgid "" +"The distance to keep from the edges. A value of 0 sets this to half of the " +"nozzle diameter." +msgstr "" +"Atstumas, kurį reikia išlaikyti nuo kraštų. Jei reikšmė 0, nustatoma pusė " +"purkštuko skersmens." + +msgid "Ironing speed" +msgstr "Lyginimo greitis" + +msgid "Print speed of ironing lines." +msgstr "Lyginimo linijų spausdinimo greitis" + +msgid "Ironing angle" +msgstr "Lyginimo kampas" + +msgid "" +"The angle ironing is done at. A negative number disables this function and " +"uses the default method." +msgstr "" +"Atliekamas kampinis lyginimas. Neigiamas skaičius išjungia šią funkciją ir " +"naudojamas numatytasis metodas." + +msgid "This G-code part is inserted at every layer change after lift z" +msgstr "Šis G-kodas įterpiamas kiekvieną kartą keičiant sluoksnį po z pakėlimo" + +msgid "Supports silent mode" +msgstr "Palaikomas tylusis režimas" + +msgid "" +"Whether the machine supports silent mode in which machine use lower " +"acceleration to print." +msgstr "" +"Ar įrenginys palaiko tylųjį režimą, kai spausdindamas naudoja mažesnį " +"pagreitį" + +msgid "Emit limits to G-code" +msgstr "Išsiųsti apribojimus į G-kodą" + +msgid "Machine limits" +msgstr "Mašinos ribos" + +msgid "" +"If enabled, the machine limits will be emitted to G-code file.\n" +"This option will be ignored if the G-code flavor is set to Klipper." +msgstr "" +"Jei įjungta, įrenginio apribojimai bus perduodami į G-kodo failą.\n" +"Ši parinktis bus ignoruojama, jei g-kodo tipas nustatytas kaip Klipper." + +msgid "" +"This G-code will be used as a code for the pause print. User can insert " +"pause G-code in G-code viewer" +msgstr "" +"Šis G-kodas bus naudojamas kaip pauzės spausdinimo kodas. Vartotojai gali " +"įterpti pauzės G-kodą G-kodo peržiūros programoje" + +msgid "This G-code will be used as a custom code." +msgstr "Šis G-kodas bus naudojamas kaip pasirinktinis kodas" + +msgid "Small area flow compensation (beta)" +msgstr "Mažo ploto srauto kompensavimas (beta)" + +msgid "Enable flow compensation for small infill areas." +msgstr "Įgalinti srauto kompensavimą mažuose užpildymo plotuose" + +msgid "Flow Compensation Model" +msgstr "Srauto kompensavimo modelis" + +msgid "" +"Flow Compensation Model, used to adjust the flow for small infill areas. The " +"model is expressed as a comma separated pair of values for extrusion length " +"and flow correction factors, one per line, in the following format: " +"\"1.234,5.678\"" +msgstr "" +"Srauto kompensavimo modelis, naudojamas srautui sureguliuoti mažuose " +"užpildymo plotuose. Modelis išreiškiamas kaip kableliais atskirta " +"ekstruzijos ilgio ir srauto korekcijos koeficientų verčių pora, po vieną " +"kiekvienoje eilutėje, tokiu formatu: \"1.234,5.678\"" + +msgid "Maximum speed X" +msgstr "Didžiausias greitis X" + +msgid "Maximum speed Y" +msgstr "Didžiausias greitis Y" + +msgid "Maximum speed Z" +msgstr "Didžiausias greitis Z" + +msgid "Maximum speed E" +msgstr "Didžiausias greitis E" + +msgid "Maximum X speed" +msgstr "Didžiausias X greitis" + +msgid "Maximum Y speed" +msgstr "Didžiausias Y greitis" + +msgid "Maximum Z speed" +msgstr "Didžiausias Z greitis" + +msgid "Maximum E speed" +msgstr "Didžiausias E greitis" + +msgid "Maximum acceleration X" +msgstr "Didžiausias pagreitis X" + +msgid "Maximum acceleration Y" +msgstr "Didžiausias pagreitis Y" + +msgid "Maximum acceleration Z" +msgstr "Didžiausias pagreitis Z" + +msgid "Maximum acceleration E" +msgstr "Didžiausias pagreitis E" + +msgid "Maximum acceleration of the X axis" +msgstr "Didžiausias X ašies pagreitis" + +msgid "Maximum acceleration of the Y axis" +msgstr "Didžiausias Y ašies pagreitis" + +msgid "Maximum acceleration of the Z axis" +msgstr "Didžiausias Z ašies pagreitis" + +msgid "Maximum acceleration of the E axis" +msgstr "Didžiausias E ašies pagreitis" + +msgid "Maximum jerk X" +msgstr "Didžiausias trūkčiojimas X" + +msgid "Maximum jerk Y" +msgstr "Didžiausias trūkčiojimas Y" + +msgid "Maximum jerk Z" +msgstr "Didžiausias trūkčiojimas Z" + +msgid "Maximum jerk E" +msgstr "Didžiausias trūkčiojimas E" + +msgid "Maximum jerk of the X axis" +msgstr "Didžiausias X ašies trūkčiojimas" + +msgid "Maximum jerk of the Y axis" +msgstr "Didžiausias Y ašies trūkčiojimas" + +msgid "Maximum jerk of the Z axis" +msgstr "Didžiausias Z ašies trūkčiojimas" + +msgid "Maximum jerk of the E axis" +msgstr "Didžiausias E ašies trūkčiojimas" + +msgid "Minimum speed for extruding" +msgstr "Mažiausias ekstruzijos greitis" + +msgid "Minimum speed for extruding (M205 S)" +msgstr "Minimum speed for extruding (M205 S)" + +msgid "Minimum travel speed" +msgstr "Mažiausias judėjimo greitis" + +msgid "Minimum travel speed (M205 T)" +msgstr "Mažiausias judėjimo greitis (M205 T)" + +msgid "Maximum acceleration for extruding" +msgstr "Didžiausias ekstruzijos pagreitis" + +msgid "Maximum acceleration for extruding (M204 P)" +msgstr "Didžiausias ekstruzijos pagreitis (M204 P)" + +msgid "Maximum acceleration for retracting" +msgstr "Didžiausias įtraukimo pagreitis" + +msgid "Maximum acceleration for retracting (M204 R)" +msgstr "Didžiausias įtraukimo pagreitis (M204 R)" + +msgid "Maximum acceleration for travel" +msgstr "Didžiausias judėjimo pagreitis" + +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." +msgstr "Didžiausias judėjimo pagreitis (M204 T), jis taikomas tik \"Marlin 2\"" + +msgid "" +"Part cooling fan speed may be increased when auto cooling is enabled. This " +"is the maximum speed for the part cooling fan." +msgstr "" +"Kai įjungtas automatinis aušinimas, dalių ventiliatoriaus greitis gali būti " +"padidintas. Tai didžiausias dalių aušinimo ventiliatoriaus greitis" + +msgid "Max" +msgstr "Maks" + +msgid "" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." +msgstr "" +"Didžiausias ekstruderio spausdinamo sluoksnio aukštis: jis naudojamas " +"didžiausiam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis " +"sluoksnio aukštis" + +msgid "Extrusion rate smoothing" +msgstr "Ekstruzijos greičio išlyginimas" + +msgid "" +"This parameter smooths out sudden extrusion rate changes that happen when " +"the printer transitions from printing a high flow (high speed/larger width) " +"extrusion to a lower flow (lower speed/smaller width) extrusion and vice " +"versa.\n" +"\n" +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " +"can change over time. Higher values mean higher extrusion rate changes are " +"allowed, resulting in faster speed transitions.\n" +"\n" +"A value of 0 disables the feature.\n" +"\n" +"For a high speed, high flow direct drive printer (like the Bambu lab or " +"Voron) this value is usually not needed. However it can provide some " +"marginal benefit in certain cases where feature speeds vary greatly. For " +"example, when there are aggressive slowdowns due to overhangs. In these " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " +"transition.\n" +"\n" +"For slower printers without pressure advance, the value should be set much " +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" +"\n" +"This feature is known as Pressure Equalizer in Prusa slicer.\n" +"\n" +"Note: this parameter disables arc fitting." +msgstr "" +"Šis parametras išlygina staigius išspaudimo greičio pokyčius, kurie įvyksta " +"spausdintuvui pereinant nuo didelio srauto (didelio greičio / didesnio " +"pločio) išspaudimo prie mažesnio srauto (mažesnio greičio / mažesnio pločio) " +"išspaudimo ir atvirkščiai.\n" +"\n" +"Jis apibrėžia didžiausią greitį, kuriuo gali kisti išspaustas tūrinis " +"srautas mm3/sek. Didesnės vertės reiškia, kad leidžiami didesni ekstruzijos " +"greičio pokyčiai, todėl greitis pereina greičiau.\n" +"\n" +"Reikšmė 0 išjungia šią funkciją.\n" +"\n" +"Didelio greičio ir didelio srauto tiesioginės pavaros spausdintuvams (pvz., " +"\"Bambu lab\" arba \"Voron\") ši vertė paprastai nereikalinga. Tačiau tam " +"tikrais atvejais, kai funkcijos greičiai labai skiriasi, ji gali duoti " +"nedidelę naudą. Pavyzdžiui, kai yra agresyvių sulėtėjimų dėl iškyšų. Tokiais " +"atvejais rekomenduojama didelė vertė, maždaug 300-350 mm³/s² , nes tai " +"leidžia pakankamai išlyginti, kad padedant slėgio avansui būtų pasiektas " +"sklandesnis srauto perėjimas.\n" +"\n" +"Lėtesniems spausdintuvams, kuriuose nėra slėgio didinimo, vertė turėtų būti " +"nustatyta daug mažesnė. Tiesioginės pavaros ekstruderiams gera pradinė vertė " +"yra 10-15 mm³/s², o Bowdeno tipo ekstruderiams - 5-10 mm³/s².\n" +"\n" +"Ši funkcija \"Prusa\" programoje \"Prusa slicer\" vadinama slėgio išlyginimo " +"funkcija.\n" +"\n" +"Pastaba: šis parametras išjungia lanko tvirtinimą." + +msgid "mm³/s²" +msgstr "mm³/s²" + +msgid "Smoothing segment length" +msgstr "Išlyginamojo segmento ilgis" + +msgid "" +"A lower value results in smoother extrusion rate transitions. However, this " +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" +"\n" +"Default value of 3 works well for most cases. If your printer is stuttering, " +"increase this value to reduce the number of adjustments made\n" +"\n" +"Allowed values: 0.5-5" +msgstr "" +"Esant mažesnei vertei, išspaudimo greičio pokyčiai būna sklandesni. Tačiau " +"dėl to gaunamas gerokai didesnis gkodo failas ir spausdintuvui tenka " +"apdoroti daugiau instrukcijų.\n" +"\n" +"Numatytoji reikšmė 3 tinka daugeliu atvejų. Jei spausdintuvas stringa, " +"padidinkite šią vertę, kad sumažintumėte atliekamų koregavimų skaičių.\n" +"\n" +"Leidžiamos reikšmės: 0.5-5" + +msgid "Apply only on external features" +msgstr "Taikyti tik išoriniams elementams" + +msgid "" +"Applies extrusion rate smoothing only on external perimeters and overhangs. " +"This can help reduce artefacts due to sharp speed transitions on externally " +"visible overhangs without impacting the print speed of features that will " +"not be visible to the user." +msgstr "" +"Išspaudimo greičio išlyginimas taikomas tik išoriniams perimetrams ir " +"iškyšoms. Tai gali padėti sumažinti artefaktus, atsirandančius dėl staigių " +"greičio perėjimų išorėje matomose iškyšuose, nedarant poveikio elementų, " +"kurie nebus matomi naudotojui, spausdinimo greičiui." + +msgid "Minimum speed for part cooling fan." +msgstr "Mažiausias dalies aušinimo ventiliatoriaus greitis" + +msgid "" +"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " +"during printing except the first several layers which is defined by no " +"cooling layers.\n" +"Please enable auxiliary_fan in printer settings to use this feature. G-code " +"command: M106 P2 S(0-255)" +msgstr "" +"Pagalbinės dalies aušinimo ventiliatoriaus greitis. Pagalbinis " +"ventiliatorius veiks šiuo greičiu spausdinimo metu, išskyrus pirmuosius " +"kelis sluoksnius, kuriems netaikomas sluoksnių aušinimas.\n" +"Norėdami naudotis šia funkcija, spausdintuvo nustatymuose įjunkite " +"auxiliary_fan. G-kodo komanda: M106 P2 S(0-255)" + +msgid "Min" +msgstr "Min" + +msgid "" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." +msgstr "" +"Mažiausias ekstruderio spausdinamo sluoksnio aukštis. Jis naudojamas " +"mažiausiam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis " +"sluoksnio aukštis" + +msgid "Min print speed" +msgstr "Minimalus spausdinimo greitis" + +msgid "" +"The minimum print speed to which the printer slows down to maintain the " +"minimum layer time defined above when the slowdown for better layer cooling " +"is enabled." +msgstr "" +"Mažiausias spausdinimo greitis, iki kurio spausdintuvas sulėtėja, kad " +"išlaikytų pirmiau apibrėžtą minimalų sluoksnio laiką, kai įjungtas " +"sulėtinimas dėl geresnio sluoksnių aušinimo." + +msgid "Diameter of nozzle" +msgstr "Purkštuvo skersmuo" + +msgid "Configuration notes" +msgstr "Konfigūracijos pastabos" + +msgid "" +"You can put here your personal notes. This text will be added to the G-code " +"header comments." +msgstr "" +"Čia galite įdėti savo asmeninius užrašus. Šis tekstas bus pridėtas prie G " +"kodo antraštės komentarų." + +msgid "Host Type" +msgstr "Hosto tipas" + +msgid "" +"Orca Slicer can upload G-code files to a printer host. This field must " +"contain the kind of the host." +msgstr "" +"\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turi " +"būti įrašyta įrenginio rūšis." + +msgid "Nozzle volume" +msgstr "Purkštuko tūris" + +msgid "Volume of nozzle between the cutter and the end of nozzle." +msgstr "Purkštuko tūris tarp pjaustytuvo ir purkštuko galo" + +msgid "Cooling tube position" +msgstr "Aušinimo vamzdžio padėtis" + +msgid "Distance of the center-point of the cooling tube from the extruder tip." +msgstr "Aušinimo vamzdžio centro taško atstumas nuo ekstruderio antgalio." + +msgid "Cooling tube length" +msgstr "Aušinimo vamzdžio ilgis" + +msgid "Length of the cooling tube to limit space for cooling moves inside it." +msgstr "" +"Aušinimo vamzdžio ilgis, kad būtų apribota erdvė aušinimo judesiams viduje." + +msgid "High extruder current on filament swap" +msgstr "Didelė ekstruderio srovė keičiant giją" + +msgid "" +"It may be beneficial to increase the extruder motor current during the " +"filament exchange sequence to allow for rapid ramming feed rates and to " +"overcome resistance when loading a filament with an ugly shaped tip." +msgstr "" +"Gali būti naudinga padidinti ekstruderio variklio srovę vykstant gijos " +"keitimo sekai, kad būtų užtikrintas greitas tiekimo greitis ir įveiktų " +"pasipriešinimą apkraunant giją su netipinės formos antgaliu." + +msgid "Filament parking position" +msgstr "Gijos stovėjimo padėtis" + +msgid "" +"Distance of the extruder tip from the position where the filament is parked " +"when unloaded. This should match the value in printer firmware." +msgstr "" +"Ekstruderio antgalio atstumas nuo padėties, kurioje gija yra pastatyta, kai " +"ji išimama. Tai turėtų atitikti spausdintuvo programinės įrangos reikšmę." + +msgid "Extra loading distance" +msgstr "Papildomas pakrovimo atstumas" + +msgid "" +"When set to zero, the distance the filament is moved from parking position " +"during load is exactly the same as it was moved back during unload. When " +"positive, it is loaded further, if negative, the loading move is shorter " +"than unloading." +msgstr "" +"Nustačius nulį, atstumas, kuriuo gija išleidžiama iš stovėjimo padėties " +"įdėjimo metu, yra lygiai toks pat, koks buvo perkeltas atgal išėmimo metu. " +"Jei parametras teigiamas, įdėjimo atstumas didesnis, jei neigiamas, - " +"įdėjimo atstumas yra mažesnis nei išėmimo." + +msgid "Start end points" +msgstr "Pradžios ir pabaigos taškai" + +msgid "The start and end points which is from cutter area to garbage can." +msgstr "" +"Pradžios ir pabaigos taškai, t. y. nuo pjaustymo zonos iki šiukšliadėžės." + +msgid "Reduce infill retraction" +msgstr "Sumažinti užpildų įtraukimą" + +msgid "" +"Don't retract when the travel is in infill area absolutely. That means the " +"oozing can't been seen. This can reduce times of retraction for complex " +"model and save printing time, but make slicing and G-code generating slower." +msgstr "" +"Neįtraukti, kai judėjimas vyksta tik užpildytoje zonoje. Tai reiškia, kad " +"ištekėjimo nematyti. Tai gali sutrumpinti įtraukimo laiką sudėtingam " +"modeliui ir sutaupyti laiką spausdinimui, tačiau sluoksniavimas ir G kodo " +"generavimas bus lėtesni" + +msgid "" +"This option will drop the temperature of the inactive extruders to prevent " +"oozing." +msgstr "" +"Pasirinkus šią parinktį sumažės neaktyvių ekstruderių temperatūra, kad būtų " +"išvengta išsiliejimo." + +msgid "Filename format" +msgstr "Failų pavadinimų formatas" + +msgid "Users can define the project file name when exporting." +msgstr "Eksportuodami vartotojai gali pasirinkti projekto failų pavadinimus" + +msgid "Make overhangs printable" +msgstr "Padaryti iškyšas spausdinamas" + +msgid "Modify the geometry to print overhangs without support material." +msgstr "" +"Pakeisti geometriją, kad būtų galima spausdinti iškyšas be atraminės " +"medžiagos." + +msgid "Make overhangs printable - Maximum angle" +msgstr "Spausdintinos iškyšos - Didžiausias kampas" + +msgid "" +"Maximum angle of overhangs to allow after making more steep overhangs " +"printable.90° will not change the model at all and allow any overhang, while " +"0 will replace all overhangs with conical material." +msgstr "" +"Didžiausias leistinas iškyšų kampas, kurį galima spausdinti padarius " +"statesnes iškyšas. 90° visiškai nepakeis modelio ir leis bet kokią iškyšą, o " +"0 - visas iškyšas pakeis kūgio formos medžiaga." + +msgid "Make overhangs printable - Hole area" +msgstr "Spausdintinos iškyšos - Skylės plotas" + +msgid "" +"Maximum area of a hole in the base of the model before it's filled by " +"conical material. A value of 0 will fill all the holes in the model base." +msgstr "" +"Didžiausias modelio pagrindo skylės plotas prieš ją užpildant kūgine " +"medžiaga. 0 reikšmė užpildys visas modelio pagrindo skyles." + +msgid "mm²" +msgstr "mm²" + +msgid "Detect overhang wall" +msgstr "Aptikti išsikišusią sieną" + +#, c-format, boost-format +msgid "" +"Detect the overhang percentage relative to line width and use different " +"speed to print. For 100%% overhang, bridge speed is used." +msgstr "" +"Nustatykite iškyšos procentinę dalį, palyginti su linijos pločiu, ir " +"naudokite skirtingą spausdinimo greitį. Jei iškyša 100 %%, naudojamas tilto " +"greitis." + +msgid "Filament to print walls" +msgstr "Gijos sienoms spausdinti" + +msgid "" +"Line width of inner wall. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Vidinės sienos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal " +"purkštuko skersmenį." + +msgid "Speed of inner wall." +msgstr "Tai vidinių sienų greitis" + +msgid "Number of walls of every layer." +msgstr "Vieno sluoksnio sienų skaičius" + +msgid "Alternate extra wall" +msgstr "Alternatyvi papildoma siena" + +msgid "" +"This setting adds an extra wall to every other layer. This way the infill " +"gets wedged vertically between the walls, resulting in stronger prints.\n" +"\n" +"When this option is enabled, the ensure vertical shell thickness option " +"needs to be disabled.\n" +"\n" +"Using lightning infill together with this option is not recommended as there " +"is limited infill to anchor the extra perimeters to." +msgstr "" +"Šis nustatymas prie kiekvieno kito sluoksnio prideda papildomą sienelę. Taip " +"užpildas vertikaliai įsiterpia tarp sienelių, todėl atspaudai tampa " +"tvirtesni.\n" +"\n" +"Kai ši parinktis įjungta, reikia išjungti parinktį Užtikrinti vertikalų " +"apvalkalo storį.\n" +"\n" +"Naudoti žaibo užpildą kartu su šia parinktimi nerekomenduojama, nes yra " +"nedaug užpildo, prie kurio būtų galima pritvirtinti papildomą perimetrą." + +msgid "" +"If you want to process the output G-code through custom scripts, just list " +"their absolute paths here. Separate multiple scripts with a semicolon. " +"Scripts will be passed the absolute path to the G-code file as the first " +"argument, and they can access the Orca Slicer config settings by reading " +"environment variables." +msgstr "" +"Jei norite apdoroti išvesties G-kodą naudodami pasirinktinius scenarijus, " +"tiesiog nurodykite jų absoliučius kelius. Keletą scenarijų atskirkite " +"kabliataškiu. Skriptams kaip pirmasis argumentas bus perduotas absoliutus " +"kelias iki G-kodo failo ir jie galės pasiekti \"Orca Slicer\" konfigūracijos " +"nustatymus skaitydami aplinkos kintamuosius." + +msgid "Printer type" +msgstr "Spausdintuvo tipas" + +msgid "Type of the printer" +msgstr "Spausdintuvo tipas" + +msgid "Printer notes" +msgstr "Spausdintuvo užrašai" + +msgid "You can put your notes regarding the printer here." +msgstr "Čia galite pridėti pastabas apie spausdintuvą." + +msgid "Printer variant" +msgstr "Spausdintuvo variantas" + +msgid "Raft contact Z distance" +msgstr "Platformos kontakto Z atstumas" + +msgid "Z gap between object and raft. Ignored for soluble interface." +msgstr "" +"Z tarpas tarp objekto ir platformos. Į jį neatsižvelgiama tirpių sąsajų " +"atveju" + +msgid "Raft expansion" +msgstr "Platformos išplėtimas" + +msgid "Expand all raft layers in XY plane." +msgstr "Tai išplečia visus platformos sluoksnius XY plokštumoje" + +msgid "Initial layer density" +msgstr "Pradinio sluoksnio tankis" + +msgid "Density of the first raft or support layer." +msgstr "Pirmojo platformos arba atraminio sluoksnio tankis" + +msgid "Initial layer expansion" +msgstr "Pradinio sluoksnio išplėtimas" + +msgid "Expand the first raft or support layer to improve bed plate adhesion." +msgstr "" +"Kad pagerėtų sukibimas su pagrindu, išplečiamas pirmasis platformos arba " +"atraminis sluoksnis" + +msgid "Raft layers" +msgstr "Platformos sluoksniai" + +msgid "" +"Object will be raised by this number of support layers. Use this function to " +"avoid warping when printing ABS." +msgstr "" +"Objektas bus padidintas šiuo atraminių sluoksnių skaičiumi. Šią funkciją " +"naudokite norėdami išvengti deformacijų spausdinant ABS" + +msgid "" +"G-code path is generated after simplifying the contour of model to avoid too " +"much points and G-code lines in G-code file. Smaller value means higher " +"resolution and more time to slice" +msgstr "" +"G-kodo kelias generuojamas supaprastinus modelio kontūrą, kad gkodo faile " +"nebūtų per daug taškų ir gkodo linijų. Mažesnė reikšmė reiškia didesnę " +"skiriamąją gebą ir ilgesnį sluoksniavimo laiką" + +msgid "Travel distance threshold" +msgstr "Judėjimo atstumo riba" + +msgid "" +"Only trigger retraction when the travel distance is longer than this " +"threshold." +msgstr "" +"Įtraukimas įjungiamas tik tada, kai judėjimo atstumas yra ilgesnis už šią " +"ribą" + +msgid "Retract amount before wipe" +msgstr "Įtraukiamas kiekis prieš nuvalymą" + +msgid "" +"The length of fast retraction before wipe, relative to retraction length." +msgstr "Greito įtraukimo prieš nuvalymą ilgis, palyginti su įtraukimo ilgiu" + +msgid "Retract when change layer" +msgstr "Įtraukti, kai keičiamas sluoksnis" + +msgid "Force a retraction when changes layer." +msgstr "Priverstinis įtraukimas, kai keičiasi sluoksnis" + +msgid "Retract on top layer" +msgstr "Įtraukti viršutiniame sluoksnyje" + +msgid "" +"Force a retraction on top layer. Disabling could prevent clog on very slow " +"patterns with small movements, like Hilbert curve." +msgstr "" +"Naudoti priverstinį įtraukimą viršutiname sluoksnyje. Išjungimas gali padėti " +"išvengti užsikimšimo labai lėtuose modeliuose su mažais judesiais, pvz., " +"Hilberto kreivėje." + +msgid "Retraction Length" +msgstr "Įtraukimo ilgis" + +msgid "" +"Some amount of material in extruder is pulled back to avoid ooze during long " +"travel. Set zero to disable retraction" +msgstr "" +"Tai gijos kiekis, kuris yra įtraukiamas į ekstruderį, kad būtų išvengta " +"išsiliejimo per ilgą judėjimo atstumą. Nustatykite 0, kad įtraukimas būtų " +"išjungtas" + +msgid "Long retraction when cut (beta)" +msgstr "Ilgas įtraukimas, kai pjaunama (beta)" + +msgid "" +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " +"significantly, it may also raise the risk of nozzle clogs or other printing " +"problems." +msgstr "" +"Eksperimentinė funkcija: Pakeitimų metu gija įtraukiama ir nukerpama " +"didesniu atstumu, kad būtų sumažintas išleidimas. Nors tai gerokai sumažina " +"išleidimą, taip pat gali padidėti purkštukų užsikimšimo ar kitų spausdinimo " +"problemų rizika." + +msgid "Retraction distance when cut" +msgstr "Įtraukimo atstumas, kai kerpama" + +msgid "" +"Experimental feature: Retraction length before cutting off during filament " +"change." +msgstr "Eksperimentinė savybė: Įtraukimo ilgis prieš nupjaunant keičiant giją" + +msgid "Z-hop height" +msgstr "Z šuolio aukštis" + +msgid "" +"Whenever the retraction is done, the nozzle is lifted a little to create " +"clearance between nozzle and the print. It prevents nozzle from hitting the " +"print when travel move. Using spiral lines to lift Z can prevent stringing." +msgstr "" +"Kiekvieną kartą, kai gija įtraukiama, purkštukas šiek tiek pakeliamas, kad " +"tarp purkštuko ir spaudinio atsirastų tarpas. Taip purkštukas, judėdamas " +"daugiau, neužkliudo spaudinio. Naudojant spiralines linijas z pakėlimui, " +"galima išvengti stygų susidarymo" + +msgid "Z-hop lower boundary" +msgstr "Z šuolio apatinė riba" + +msgid "" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"" +msgstr "" +"Z šuolis pradės veikti tik tada, kai Z bus didesnis už šią vertę ir mažesnis " +"už parametrą: \"Z šuolio viršutinė riba\"" + +msgid "Z-hop upper boundary" +msgstr "Z šuolio viršutinė riba" + +msgid "" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value" +msgstr "" +"Jei ši reikšmė yra teigiama, Z apyvarta pradės veikti tik tada, kai Z bus " +"didesnė už parametrą: \"Z šuolio apatinė riba\" ir yra mažesnė už šią reikšmę" + +msgid "Z-hop type" +msgstr "Z šuolio tipas" + +msgid "Slope" +msgstr "Nuolydis" + +msgid "Spiral" +msgstr "Spiralė" + +msgid "Traveling angle" +msgstr "Judėjimo kampas" + +msgid "" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift" +msgstr "" +"Šlaito ir spiralinio Z šuolio tipo judėjimo kampas. Nustačius 90°, " +"naudojamas normalus pakėlimas" + +msgid "Only lift Z above" +msgstr "Pakelti tik Z aukščiau" + +msgid "" +"If you set this to a positive value, Z lift will only take place above the " +"specified absolute Z." +msgstr "" +"Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik virš nurodytos " +"absoliučiosios Z reikšmės." + +msgid "Only lift Z below" +msgstr "Pakelti tik Z žemiau" + +msgid "" +"If you set this to a positive value, Z lift will only take place below the " +"specified absolute Z." +msgstr "" +"Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik žemiau " +"nurodytos absoliučiosios Z reikšmės." + +msgid "On surfaces" +msgstr "Ant paviršių" + +msgid "" +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " +"lift Z above/below)." +msgstr "" +"Užtikrinkite \"Z šuolio\" elgesį. Šiam nustatymui įtakos turi pirmiau " +"nurodyti nustatymai (tik pakelti Z virš/žemiau)." + +msgid "All Surfaces" +msgstr "Visi paviršiai" + +msgid "Top Only" +msgstr "Tik viršus" + +msgid "Bottom Only" +msgstr "Tik apačia" + +msgid "Top and Bottom" +msgstr "Viršus ir apačia" + +msgid "Extra length on restart" +msgstr "Papildomas ilgis paleidus iš naujo" + +msgid "" +"When the retraction is compensated after the travel move, the extruder will " +"push this additional amount of filament. This setting is rarely needed." +msgstr "" +"Kai įtraukimas kompensuojamas po judesio, ekstruderis išstums šį papildomą " +"gijos kiekį. Šis nustatymas reikalingas retai." + +msgid "" +"When the retraction is compensated after changing tool, the extruder will " +"push this additional amount of filament." +msgstr "" +"Kai atitraukimas kompensuojamas pakeitus įrankį, ekstruderis išstums šį " +"papildomą gijos kiekį." + +msgid "Retraction Speed" +msgstr "Įtraukimo greitis" + +msgid "Speed of retractions." +msgstr "Įtraukimo greitis" + +msgid "De-retraction Speed" +msgstr "Atitraukimo greitis" + +msgid "" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." +msgstr "" +"Gijos įkėlimo į ekstruderį greitis po įtraukimo; nustačius 0, greitis bus " +"toks pat kaip ir įtraukimo" + +msgid "Use firmware retraction" +msgstr "Naudoti nustatytąjį įtraukimą" + +msgid "" +"This experimental setting uses G10 and G11 commands to have the firmware " +"handle the retraction. This is only supported in recent Marlin." +msgstr "" +"Šis eksperimentinis nustatymas naudoja G10 ir G11 komandas, kad programinė " +"įranga valdytų įtraukimą. Tai palaikoma tik naujausioje „Marlin“." + +msgid "Show auto-calibration marks" +msgstr "Rodyti automatinio kalibravimo ženklus" + +msgid "Disable set remaining print time" +msgstr "Išjungti nustatytą likusį spausdinimo laiką" + +msgid "" +"Disable generating of the M73: Set remaining print time in the final G-code" +msgstr "" +"Išjungti M73 generavimą: Nustatyti likusį spausdinimo laiką galutiniame gkode" + +msgid "Seam position" +msgstr "Siūlės padėtis" + +msgid "The start position to print each part of outer wall." +msgstr "Kiekvienos išorinės sienos dalies pradinė padėtis" + +msgid "Nearest" +msgstr "Artimiausia" + +msgid "Aligned" +msgstr "Sulygiuota" + +msgid "Back" +msgstr "Gale" + +msgid "Random" +msgstr "Atsitiktinė" + +msgid "Staggered inner seams" +msgstr "Vientisos vidinės siūlės" + +msgid "" +"This option causes the inner seams to be shifted backwards based on their " +"depth, forming a zigzag pattern." +msgstr "" +"Vientisos vidinės siūlės Dėl šios parinkties vidinės siūlės bus paslinktos " +"atgal pagal jų gylį, suformuojant zigzago raštą." + +msgid "Seam gap" +msgstr "Siūlės tarpas" + +msgid "" +"In order to reduce the visibility of the seam in a closed loop extrusion, " +"the loop is interrupted and shortened by a specified amount.\n" +"This amount can be specified in millimeters or as a percentage of the " +"current extruder diameter. The default value for this parameter is 10%." +msgstr "" +"Siekiant sumažinti uždaros kilpos ekstruzijos siūlės matomumą, kilpa " +"pertraukiama ir sutrumpinama tam tikru dydžiu.\n" +"Šį kiekį galima nurodyti milimetrais arba procentais nuo esamo ekstruderio " +"skersmens. Numatytoji šio parametro vertė yra 10 %." + +msgid "Scarf joint seam (beta)" +msgstr "Juostos jungiamoji siūlė (beta)" + +msgid "Use scarf joint to minimize seam visibility and increase seam strength." +msgstr "" +"Naudokite juostos jungtį, kad siūlės būtų kuo mažiau matomos ir padidėtų " +"siūlės tvirtumas." + +msgid "Conditional scarf joint" +msgstr "Sąlyginė juostinė jungtis" + +msgid "" +"Apply scarf joints only to smooth perimeters where traditional seams do not " +"conceal the seams at sharp corners effectively." +msgstr "" +"Skersines siūles naudokite tik ties lygiais perimetrais, kai įprastinės " +"siūlės efektyviai nepaslepia aštrių kampų siūlių." + +msgid "Conditional angle threshold" +msgstr "Sąlyginė kampo riba" + +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 "" +"Šia parinktimi nustatomas ribinis kampas, kuriuo taikoma sąlyginė juostinė " +"siūlė.\n" +"Jei didžiausias kampas perimetro kilpoje viršija šią vertę (tai rodo, kad " +"nėra aštrių kampų), bus naudojama juostinė siūlė. Numatytoji vertė yra 155°." + +msgid "Conditional overhang threshold" +msgstr "Sąlyginė iškyšos riba" + +#, no-c-format, no-boost-format +msgid "" +"This option determines the overhang threshold for the application of scarf " +"joint seams. If the unsupported portion of the perimeter is less than this " +"threshold, scarf joint seams will be applied. The default threshold is set " +"at 40% of the external wall's width. Due to performance considerations, the " +"degree of overhang is estimated." +msgstr "" +"Šia parinktimi nustatoma iškyšos riba, kurią pasiekus taikomos juostinės " +"siūlės. Jei perimetro neatraminė dalis yra mažesnė už šią ribą, bus taikomos " +"jungiamosios siūlės. Pagal numatytuosius nustatymus ši riba yra 40 % " +"išorinės sienos pločio. Dėl eksploatacinių sumetimų įvertinamas iškyšos " +"laipsnis." + +msgid "Scarf joint speed" +msgstr "Juostos jungties greitis" + +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 "" +"Šia parinktimi nustatomas juostinių jungčių spausdinimo greitis. " +"Rekomenduojama juostines jungtis spausdinti nedideliu greičiu (mažesniu nei " +"100 mm/s). Taip pat patartina įjungti funkciją \"Spausdinimo greičio " +"išlyginimas\", jei nustatytas greitis labai skiriasi nuo išorinių arba " +"vidinių sienų greičio. Jei čia nustatytas greitis yra didesnis už išorinių " +"arba vidinių sienų greitį, spausdintuvas pagal numatytuosius nustatymus " +"pasirinks lėtesnį iš šių dviejų greičių. Kai nurodyta procentais (pvz., 80 " +"%), greitis apskaičiuojamas pagal atitinkamą išorinių arba vidinių sienų " +"greitį. Numatytoji vertė yra 100 %." + +msgid "Scarf joint flow ratio" +msgstr "Juostinės jungties srauto koeficientas" + +msgid "This factor affects the amount of material for scarf joints." +msgstr "" +"Šis veiksnys turi įtakos medžiagos kiekiui, reikalingam juostinėms siūlėms." + +msgid "Scarf start height" +msgstr "Juostos pradžios aukštis" + +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 "" +"Pradinis juostos aukštis.\n" +"Šį dydį galima nurodyti milimetrais arba kaip dabartinio sluoksnio aukščio " +"procentinę dalį. Numatytoji šio parametro reikšmė yra 0." + +msgid "Scarf around entire wall" +msgstr "Juosta aplink visą sieną" + +msgid "The scarf extends to the entire length of the wall." +msgstr "Juosta tęsiasi per visą sienos ilgį." + +msgid "Scarf length" +msgstr "Juostos ilgis" + +msgid "" +"Length of the scarf. Setting this parameter to zero effectively disables the " +"scarf." +msgstr "Juostos ilgis. Nustačius šį parametrą lygų nuliui, juosta išjungiama." + +msgid "Scarf steps" +msgstr "Jostos žingsniai" + +msgid "Minimum number of segments of each scarf." +msgstr "Mažiausias kiekvienos juostos segmentų skaičius." + +msgid "Scarf joint for inner walls" +msgstr "Vidinių sienų juostos jungtis" + +msgid "Use scarf joint for inner walls as well." +msgstr "Vidinėms sienoms taip pat naudoti juostos jungtį." + +msgid "Role base wipe speed" +msgstr "Vaidmens pagrindo nuvalymo greitis" + +msgid "" +"The wipe speed is determined by the speed of the current extrusion role. e.g. " +"if a wipe action is executed immediately following an outer wall extrusion, " +"the speed of the outer wall extrusion will be utilized for the wipe action." +msgstr "" +"Jei nuvalymo veiksmas atliekamas iš karto po išorinės sienelės išspaudimo, " +"nuvalymo veiksmui bus naudojamas išorinės sienelės išspaudimo greitis." + +msgid "Wipe on loops" +msgstr "Nuvalyti kilpas" + +msgid "" +"To minimize the visibility of the seam in a closed loop extrusion, a small " +"inward movement is executed before the extruder leaves the loop." +msgstr "" +"Siekiant sumažinti siūlės matomumą uždaroje ekstruzijos kilpoje, prieš " +"ekstruderiui išeinant iš kilpos atliekamas nedidelis judesys į vidų." + +msgid "Wipe before external loop" +msgstr "Nuvalyti prieš išorinę kilpą" + +msgid "" +"To minimize visibility of potential overextrusion at the start of an " +"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order, the de-retraction is performed slightly on the inside from the " +"start of the external perimeter. That way any potential over extrusion is " +"hidden from the outside surface.\n" +"\n" +"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " +"print order as in these modes it is more likely an external perimeter is " +"printed immediately after a de-retraction move." +msgstr "" +"Siekiant sumažinti galimo perteklinio išspaudimo matomumą išorinio perimetro " +"pradžioje, kai spausdinama išorinės / vidinės arba vidinės / išorinės / " +"išorinės / vidinės sienos spausdinimo tvarka, ištraukimas atliekamas šiek " +"tiek į vidų nuo išorinio perimetro pradžios. Taip bet koks galimas " +"perteklinis išspaudimas paslepiamas nuo išorinio paviršiaus.\n" +"\n" +"Tai naudinga, kai spausdinama naudojant išorinės / vidinės arba vidinės / " +"išorinės / išorinės / vidinės sienos spausdinimo tvarką, nes šiuose " +"režimuose didesnė tikimybė, kad išorinis perimetras bus išspausdintas iš " +"karto po ištraukimo pašalinimo judesio." + +msgid "Wipe speed" +msgstr "Valymo greitis" + +msgid "" +"The wipe speed is determined by the speed setting specified in this " +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." +msgstr "" +"Valymo greitis nustatomas pagal šioje konfigūracijoje nurodytą greičio " +"nustatymą.Jei vertė išreikšta procentais (pvz., 80 %), ji bus apskaičiuota " +"pagal pirmiau nurodytą judėjimo greičio nustatymą. Numatytoji šio parametro " +"vertė yra 80 %" + +msgid "Skirt distance" +msgstr "Apvado atstumas" + +msgid "Distance from skirt to brim or object" +msgstr "Tai atstumas nuo apvado iki krašto arba objekto" + +msgid "Skirt start point" +msgstr "Apvado pradžios taškas" + +msgid "" +"Angle from the object center to skirt start point. Zero is the most right " +"position, counter clockwise is positive angle." +msgstr "" +"Kampas nuo objekto centro iki apvado pradžios taško. Nulis yra labiausiai į " +"dešinę nukreipta padėtis, prieš laikrodžio rodyklę - teigiamas kampas." + +msgid "Skirt height" +msgstr "Apvado aukštis" + +msgid "How many layers of skirt. Usually only one layer." +msgstr "Kiek sluoksnių apvado. Paprastai tik vienas sluoksnis" + +msgid "Single loop draft shield" +msgstr "Vieno sluoksnio apsauginis kokonas" + +msgid "" +"Limits the draft shield loops to one wall after the first layer. This is " +"useful, on occasion, to conserve filament but may cause the draft shield to " +"warp / crack." +msgstr "" +"Apriboja apsauginio ekrano kontūrą viena siena po pirmojo sluoksnio. Kartais " +"tai naudinga siekiant taupyti giją, tačiau dėl to apsauginis ekranas gali " +"deformuotis / įtrūkti." + +msgid "Draft shield" +msgstr "Apsauginis kokonas" + +msgid "" +"A draft shield is useful to protect an ABS or ASA print from warping and " +"detaching from print bed due to wind draft. It is usually needed only with " +"open frame printers, i.e. without an enclosure.\n" +"\n" +"Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " +"height' is used.\n" +"Note: With the draft shield active, the skirt will be printed at skirt " +"distance from the object. Therefore, if brims are active it may intersect " +"with them. To avoid this, increase the skirt distance value.\n" +msgstr "" +"Apsauginis skydas yra naudingas siekiant apsaugoti ABS arba ASA spaudinį nuo " +"išlinkimo ir atsiskyrimo nuo spausdinimo pagrindo dėl skersvėjo. Jo " +"paprastai reikia tik atviruose rėminiuose spausdintuvuose, t. y. be " +"gaubto.\n" +"\n" +"Įjungta = apvadas yra tokio aukščio kaip aukščiausias spausdinamas objektas. " +"Priešingu atveju naudojamas „apvado aukštis“.\n" +"Pastaba: Kai įjungtas apsauginis skydas, apvadas bus spausdinamas apvado " +"atstumu nuo objekto. Todėl, jei aktyvuoti apvadai, jis gali su jais " +"susikirsti. Norėdami to išvengti, padidinkite apvado atstumo reikšmę.\n" + +msgid "Enabled" +msgstr "Įjungta" + +msgid "Skirt type" +msgstr "Apvado tipas" + +msgid "" +"Combined - single skirt for all objects, Per object - individual object " +"skirt." +msgstr "" +"Kombinuota - vienas apvadas visiems objektams, Objektui - atskiras objekto " +"apvadas." + +msgid "Combined" +msgstr "Kombinuotas" + +msgid "Per object" +msgstr "Objektui" + +msgid "Skirt loops" +msgstr "Apvado kontūrai" + +msgid "Number of loops for the skirt. Zero means disabling skirt." +msgstr "Tai yra apvado kontūrų skaičius. 0 reiškia, kad apvadas išjungtas" + +msgid "Skirt speed" +msgstr "Apvado greitis" + +msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." +msgstr "" +"Apvado greitis, mm/s. Nulis reiškia, kad naudojamas numatytasis sluoksnio " +"išspaudimo greitis." + +msgid "Skirt minimum extrusion length" +msgstr "Minimalus apvado išspaudimo ilgis" + +msgid "" +"Minimum filament extrusion length in mm when printing the skirt. Zero means " +"this feature is disabled.\n" +"\n" +"Using a non-zero value is useful if the printer is set up to print without a " +"prime line.\n" +"Final number of loops is not taking into account while arranging or " +"validating objects distance. Increase loop number in such case." +msgstr "" +"Mažiausias gijos išspaudimo ilgis mm, kai spausdinamas apvadas. Nulis " +"reiškia, kad ši funkcija išjungta.\n" +"\n" +"Naudoti nenulinę vertę naudinga, jei spausdintuvas nustatytas spausdinti be " +"pirminės linijos.\n" +"Į galutinį kontūrų skaičių neatsižvelgiama, kai organizuojamas arba " +"patvirtinamas objektų atstumas. Tokiu atveju padidinkite kontūrų skaičių." + +msgid "" +"The printing speed in exported G-code will be slowed down, when the estimated " +"layer time is shorter than this value, to get better cooling for these layers" +msgstr "" +"Spausdinimo greitis eksportuotame G-kode bus sulėtintas, kai numatomas " +"sluoksnio laikas bus trumpesnis už šią vertę, tam, kad šie sluoksniai būtų " +"geriau aušinami" + +msgid "Minimum sparse infill threshold" +msgstr "Minimali reto užpildymo riba" + +msgid "" +"Sparse infill area which is smaller than threshold value is replaced by " +"internal solid infill." +msgstr "" +"Reto užpildymo sritys, kurios yra mažesnės už šią ribinę vertę, pakeičiamos " +"vidiniu vientisu užpildymu" + +msgid "Solid infill" +msgstr "Vientisas užpildas" + +msgid "Filament to print solid infill" +msgstr "Filamentas vientisam užpildui spausdinti" + +msgid "" +"Line width of internal solid infill. If expressed as a %, it will be " +"computed over the nozzle diameter." +msgstr "" +"Vidinio vientiso užpildo linijos plotis. Jei išreiškiamas %, jis " +"apskaičiuojamas pagal purkštuko skersmenį." + +msgid "Speed of internal solid infill, not the top and bottom surface." +msgstr "" +"Tai vidinio vientiso užpildo greitis, neįskaitant viršutinio ar apatinio " +"paviršiaus" + +msgid "" +"Spiralize smooths out the z moves of the outer contour. And turns a solid " +"model into a single walled print with solid bottom layers. The final " +"generated model has no seam." +msgstr "" +"Tai leidžia atlikti spiralinį išlyginimą, kuris išlygina išorinio kontūro Z " +"judesius ir paverčia vientisą modelį į vienos sienelės atspaudą su " +"vientisais apatiniais sluoksniais. Galutiniame sudarytame modelyje nėra " +"siūlės" + +msgid "Smooth Spiral" +msgstr "Lygi spiralė" + +msgid "" +"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " +"seam at all, even in the XY directions on walls that are not vertical." +msgstr "" +"Sklandi spiralė išlygina X ir Y judesius, todėl XY kryptimis ant ne " +"vertikalių sienų visiškai nesimato siūlių" + +msgid "Max XY Smoothing" +msgstr "Didžiausias XY išlyginimas" + +#, no-c-format, no-boost-format +msgid "" +"Maximum distance to move points in XY to try to achieve a smooth spiral. If " +"expressed as a %, it will be computed over nozzle diameter." +msgstr "" +"Didžiausias atstumas, kuriuo galima perkelti taškus XY kryptimi, kad būtų " +"pasiekta tolygi spiralė. Jei išreiškiamas %, jis bus apskaičiuojamas pagal " +"purkštuko skersmenį." + +msgid "Spiral starting flow ratio" +msgstr "Pradinis srauto santykis spiralėje" + +#, no-c-format, no-boost-format +msgid "" +"Sets the starting flow ratio while transitioning from the last bottom layer " +"to the spiral. Normally the spiral transition scales the flow ratio from 0% " +"to 100% during the first loop which can in some cases lead to under " +"extrusion at the start of the spiral." +msgstr "" +"Nustato pradinį srauto santykį pereinant iš paskutinio apatinio sluoksnio į " +"spiralę. Įprastai perėjimo į spiralę metu srauto santykis pirmojo ciklo metu " +"keičiamas nuo 0 % iki 100 %, todėl kai kuriais atvejais spiralės pradžioje " +"gali būti nepakankamas išspaudimas." + +msgid "Spiral finishing flow ratio" +msgstr "Galinis srauto santykis spiralėje" + +#, no-c-format, no-boost-format +msgid "" +"Sets the finishing flow ratio while ending the spiral. Normally the spiral " +"transition scales the flow ratio from 100% to 0% during the last loop which " +"can in some cases lead to under extrusion at the end of the spiral." +msgstr "" +"Nustato baigiamojo srauto santykį, kai baigiama spiralė. Paprastai spiralės " +"perėjimo metu srauto santykis keičiamas nuo 100 % iki 0 % paskutinio ciklo " +"metu, todėl kai kuriais atvejais spiralės pabaigoje gali būti nepakankamas " +"išspaudimas." + +msgid "" +"If smooth or traditional mode is selected, a timelapse video will be " +"generated for each print. After each layer is printed, a snapshot is taken " +"with the chamber camera. All of these snapshots are composed into a " +"timelapse video when printing completes. If smooth mode is selected, the " +"toolhead will move to the excess chute after each layer is printed and then " +"take a snapshot. Since the melt filament may leak from the nozzle during the " +"process of taking a snapshot, prime tower is required for smooth mode to " +"wipe nozzle." +msgstr "" +"Jei pasirinktas lygus arba tradicinis režimas, kiekvienam spaudiniui bus " +"sukurtas pakadrinis vaizdo įrašas. Atspausdinus kiekvieną sluoksnį, kameros " +"fotoaparatu padaroma momentinė nuotrauka. Baigus spausdinti, visos šios " +"momentinės nuotraukos sudedamos į laike rodomą vaizdo įrašą. Jei pasirinktas " +"sklandus režimas, po kiekvieno sluoksnio atspausdinimo įrankio galvutė " +"persikels į perteklinį lataką ir tada padarys momentinę nuotrauką. Kadangi " +"darant momentinę nuotrauką iš purkštuko gali ištekėti lydalo gija, norint " +"nuvalyti purkštuką, naudojant sklandųjį režimą reikalingas pirminis " +"bokštelis." + +msgid "Traditional" +msgstr "Tradicinis" + +msgid "Temperature variation" +msgstr "Temperatūros kitimas" + +#. TRN PrintSettings : "Ooze prevention" > "Temperature variation" +msgid "" +"Temperature difference to be applied when an extruder is not active. The " +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." +msgstr "" +"Temperatūros skirtumas, taikomas, kai ekstruderis nėra aktyvus. Ši vertė " +"nenaudojama, kai „idle_temperature“ gijų nustatymuose nustatyta ne nulinė " +"vertė." + +msgid "Preheat time" +msgstr "Įkaitinimo laikas" + +msgid "" +"To reduce the waiting time after tool change, Orca can preheat the next tool " +"while the current tool is still in use. This setting specifies the time in " +"seconds to preheat the next tool. Orca will insert a M104 command to preheat " +"the tool in advance." +msgstr "" +"Kad sutrumpėtų laukimo laikas pakeitus įrankį, Orca gali iš anksto įkaitinti " +"kitą įrankį, kol dabartinis įrankis dar naudojamas. Šis nustatymas nurodo " +"kito įrankio įkaitinimo laiką sekundėmis. Orca įterps komandą M104, kad " +"įrankis būtų įkaitintas iš anksto." + +msgid "Preheat steps" +msgstr "Įkaitinimo etapai" + +msgid "" +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " +"other printers, please set it to 1." +msgstr "" +"Įterpkite kelias įkaitinimo komandas (pvz., M104.1). Naudinga tik „Prusa " +"XL“. Kitiems spausdintuvams nustatykite 1." + +msgid "Start G-code" +msgstr "Pradžios G-kodas" + +msgid "Start G-code when starting the entire print." +msgstr "G kodo paleidimas, kai pradedamas visas spausdinimas" + +msgid "Start G-code when starting the printing of this filament." +msgstr "Paleisti G-kodą, kai pradedama spausdinti šia gija" + +msgid "Single Extruder Multi Material" +msgstr "Vieno ekstruderio daugialypė medžiaga" + +msgid "Use single nozzle to print multi filament." +msgstr "Naudoti vieną antgalį spausdinti keliomis gijomis" + +msgid "Manual Filament Change" +msgstr "Rankinis gijų keitimas" + +msgid "" +"Enable this option to omit the custom Change filament G-code only at the " +"beginning of the print. The tool change command (e.g., T0) will be skipped " +"throughout the entire print. This is useful for manual multi-material " +"printing, where we use M600/PAUSE to trigger the manual filament change " +"action." +msgstr "" +"Įjunkite šią parinktį, kad pasirinktinis Keisti gijos G-kodas būtų " +"praleistas tik spausdinimo pradžioje. Įrankio keitimo komanda (pvz., T0) bus " +"praleista viso spausdinimo metu. Tai naudinga spausdinant keliomis " +"medžiagomis rankiniu būdu, kai rankinio gijos keitimo veiksmui įjungti " +"naudojame M600/PAUSE." + +msgid "Purge in prime tower" +msgstr "Valymas pagrindiniame bokšte" + +msgid "Purge remaining filament into prime tower." +msgstr "Išstumti likusias gijas į pirminio valymo bokštą" + +msgid "Enable filament ramming." +msgstr "Įjungti gijų įspaudimą" + +msgid "No sparse layers (beta)" +msgstr "Nėra retų sluoksnių (beta)" + +msgid "" +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " +"print the wipe tower. User is responsible for ensuring there is no collision " +"with the print." +msgstr "" +"Jei įjungta, valymo bokštas nebus spausdinamas ant sluoksnių, nepakeitus " +"įrankio. Sluoksniuose, kuriuose keičiamas įrankis, ekstruderis judės žemyn, " +"kad atspausdintų valymo bokštą. Vartotojas yra atsakingas už tai, kad nebūtų " +"susidūrimo su spaudiniu." + +msgid "Prime all printing extruders" +msgstr "Pripildyti visus spausdinimo ekstruderius" + +msgid "" +"If enabled, all printing extruders will be primed at the front edge of the " +"print bed at the start of the print." +msgstr "" +"Jei įjungta, visi spausdinimo ekstruderiai bus užpildyti priekiniame " +"spausdinimo pagrindo krašte spausdinimo pradžioje." + +msgid "Slice gap closing radius" +msgstr "Sluoksniavimo tarpo uždarymo spindulys" + +msgid "" +"Cracks smaller than 2x gap closing radius are being filled during the " +"triangle mesh slicing. The gap closing operation may reduce the final print " +"resolution, therefore it is advisable to keep the value reasonably low." +msgstr "" +"Plyšiai, mažesni nei 2x tarpo uždarymo spindulys, užpildomi trikampio " +"figūros sluoksniavimo metu. Tarpo uždarymo operacija gali sumažinti galutinę " +"spausdinimo skiriamąją gebą, todėl patartina išlaikyti pakankamai žemą " +"reikšmę." + +msgid "Slicing Mode" +msgstr "Sluoksniavimo režimas" + +msgid "" +"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to " +"close all holes in the model." +msgstr "" +"3DLabPrint lėktuvų modeliams naudokite „Lyginis-Nelyginis“. Naudokite " +"„Uždaryti skyles“, kad uždarytumėte visas modelio skyles." + +msgid "Regular" +msgstr "Įprastas" + +msgid "Even-odd" +msgstr "Lyginis-nelyginis" + +msgid "Close holes" +msgstr "Uždaryti skyles" + +msgid "Z offset" +msgstr "Z poslinkis" + +msgid "" +"This value will be added (or subtracted) from all the Z coordinates in the " +"output G-code. It is used to compensate for bad Z endstop position: for " +"example, if your endstop zero actually leaves the nozzle 0.3mm far from the " +"print bed, set this to -0.3 (or fix your endstop)." +msgstr "" +"Ši vertė bus pridėta (arba atimta) prie visų išvesties G kodo Z koordinačių. " +"Ji naudojama blogai Z galinio ribotuvo padėčiai kompensuoti: pavyzdžiui, jei " +"jūsų nulinis ribotuvas iš tikrųjų palieka purkštuką 0,3 mm atstumu nuo " +"spausdinimo pagrindo, nustatykite šią reikšmę -0,3 (arba pataisykite galinį " +"ribotuvą)." + +msgid "Enable support" +msgstr "Įgalinti atramas" + +msgid "Enable support generation." +msgstr "Įgalinti atramų generavimą." + +msgid "" +"Normal (auto) and Tree (auto) are used to generate support automatically. If " +"Normal (manual) or Tree (manual) is selected, only support enforcers are " +"generated." +msgstr "" +"Normalus (automatinis) ir Medis (automatinis) naudojamas automatiškai " +"generuoti atramas. Pasirinkus Normalus (rankinis) arba Medis (rankinis), " +"generuojamos tik atramos" + +msgid "Normal (auto)" +msgstr "Įprastas (auto)" + +msgid "Tree (auto)" +msgstr "Medis (auto)" + +msgid "Normal (manual)" +msgstr "Įprastas (rankinis)" + +msgid "Tree (manual)" +msgstr "Medis (rankinis)" + +msgid "Support/object xy distance" +msgstr "Atramos/objekto xy atstumas" + +msgid "XY separation between an object and its support." +msgstr "Šiuo parametru nustatomas objekto ir atramos XY atstumas" + +msgid "Support/object first layer gap" +msgstr "Atramos ir objekto pirmojo sluoksnio tarpas" + +msgid "XY separation between an object and its support at the first layer." +msgstr "XY atstumas tarp objekto ir jo atramos pirmajame sluoksnyje." + +msgid "Pattern angle" +msgstr "Rašto kampas" + +msgid "Use this setting to rotate the support pattern on the horizontal plane." +msgstr "" +"Šį nustatymą naudokite norėdami pasukti atraminį modelį horizontalioje " +"plokštumoje." + +msgid "On build plate only" +msgstr "Tik ant pagrindo plokštės" + +msgid "Don't create support on model surface, only on build plate." +msgstr "" +"Šis nustatymas generuoja tik tas atramas, kurios prasideda ant spausdinimo " +"plokštės" + +msgid "Support critical regions only" +msgstr "Paremti tik kritines sritis" + +msgid "" +"Only create support for critical regions including sharp tail, cantilever, " +"etc." +msgstr "" +"Atramas kurkite tik kritinėse srityse, įskaitant aštrų galą, konsolę ir pan." + +msgid "Remove small overhangs" +msgstr "Pašalinti nedideles iškyšas" + +msgid "Remove small overhangs that possibly need no supports." +msgstr "Pašalinti nedideles iškyšas, kurioms galbūt nereikia atramų." + +msgid "Top Z distance" +msgstr "Viršutinis Z atstumas" + +msgid "The Z gap between the top support interface and object." +msgstr "Taip nustatomas Z tarpas tarp viršutinių atramų sąsajų ir objektų" + +msgid "Bottom Z distance" +msgstr "Apatinis Z atstumas" + +msgid "The Z gap between the bottom support interface and object." +msgstr "Z tarpas tarp apatinės atramos sąsajos ir objekto" + +msgid "Support/raft base" +msgstr "Atraminis ir (arba) platformos pagrindas" + +msgid "" +"Filament to print support base and raft. \"Default\" means no specific " +"filament for support and current filament is used." +msgstr "" +"Gija, skirta spausdinti atraminį pagrindą ir platformą. \"Numatytoji\" " +"reiškia, kad nėra konkrečios gijos atramai ir naudojama dabartinė gija" + +msgid "Avoid interface filament for base" +msgstr "Venkite pagrindo sąsajos gijų" + +msgid "" +"Avoid using support interface filament to print support base if possible." +msgstr "" +"Jei įmanoma, vengti naudoti atraminės sąsajos giją atraminiam pagrindui " +"spausdinti." + +msgid "" +"Line width of support. If expressed as a %, it will be computed over the " +"nozzle diameter." +msgstr "" +"Atramos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal " +"purkštuko skersmenį." + +msgid "Interface use loop pattern" +msgstr "Sąsaja naudoja kontūro raštą" + +msgid "" +"Cover the top contact layer of the supports with loops. Disabled by default." +msgstr "" +"Viršutinį kontaktinį atramų sluoksnį uždenkite kilpomis. Išjungta pagal " +"numatytuosius nustatymus." + +msgid "Support/raft interface" +msgstr "Atramų ir (arba) platformos sąsaja" + +msgid "" +"Filament to print support interface. \"Default\" means no specific filament " +"for support interface and current filament is used." +msgstr "" +"Gija skirta spausdinti atramos sąsają. \"Numatytoji\" reiškia, kad atramos " +"sąsajai nėra konkrečios gijos ir naudojama dabartinė gija" + +msgid "Top interface layers" +msgstr "Viršutiniai sąsajos sluoksniai" + +msgid "Number of top interface layers." +msgstr "Viršutinių sąsajos sluoksnių skaičius" + +msgid "Bottom interface layers" +msgstr "Apatiniai sąsajos sluoksniai" + +msgid "Number of bottom interface layers." +msgstr "Apatinių sąsajos sluoksnių skaičius" + +msgid "Same as top" +msgstr "Tas pats kaip ir viršuje" + +msgid "Top interface spacing" +msgstr "Viršutinės sąsajos tarpas" + +msgid "Spacing of interface lines. Zero means solid interface." +msgstr "Atstumas tarp sąsajos linijų. 0 reiškia vientisą sąsają" + +msgid "Bottom interface spacing" +msgstr "Apatinės sąsajos tarpas" + +msgid "Spacing of bottom interface lines. Zero means solid interface." +msgstr "Atstumas tarp apatinių sąsajos linijų. 0 reiškia vientisą sąsają" + +msgid "Speed of support interface." +msgstr "Atramų sąsajų greitis" + +msgid "Base pattern" +msgstr "Pagrindinis raštas" + +msgid "Line pattern of support." +msgstr "Linijinis atramų raštas" + +msgid "Rectilinear grid" +msgstr "Tiesus tinklelis" + +msgid "Hollow" +msgstr "Tuščiaviduris" + +msgid "Interface pattern" +msgstr "Sąsajos raštas" + +msgid "" +"Line pattern of support interface. Default pattern for non-soluble support " +"interface is Rectilinear, while default pattern for soluble support " +"interface is Concentric." +msgstr "" +"Linijinis atraminės sąsajos raštas. Numatytasis netirpios atraminės sąsajos " +"raštas yra tiesiaeigis, o tirpios atraminės sąsajos numatytasis raštas yra " +"koncentrinis" + +msgid "Rectilinear Interlaced" +msgstr "Tiesiaeigis, persipynęs" + +msgid "Base pattern spacing" +msgstr "Pagrindinio rašto tarpai" + +msgid "Spacing between support lines." +msgstr "Atstumai tarp atraminių linijų" + +msgid "Normal Support expansion" +msgstr "Įprastų atramų išplėtimas" + +msgid "Expand (+) or shrink (-) the horizontal span of normal support." +msgstr "" +"Padidinkite (+) arba sumažinkite (-) įprastinės atramos horizontalųjį atstumą" + +msgid "Speed of support." +msgstr "Atramų greitis" + +msgid "" +"Style and shape of the support. For normal support, projecting the supports " +"into a regular grid will create more stable supports (default), while snug " +"support towers will save material and reduce object scarring.\n" +"For tree support, slim and organic style will merge branches more " +"aggressively and save a lot of material (default organic), while hybrid " +"style will create similar structure to normal support under large flat " +"overhangs." +msgstr "" +"Atramos stilius ir forma. Įprastoms atramoms projektuojant atramas į " +"taisyklingą tinklelį, bus sukurtos stabilesnės atramos (numatytasis " +"nustatymas), o prigludę atramų bokšteliai leis sutaupyti medžiagos ir " +"sumažinti objekto nubrozdinimus.\n" +"Medžių atramoms siauras ir organinis stilius agresyviau sujungs šakas ir " +"sutaupys daug medžiagos (numatytasis organinis), o hibridinis stilius sukurs " +"panašią struktūrą kaip įprastos atramos po didelėmis plokščiomis iškyšomis." + +msgid "Default (Grid/Organic)" +msgstr "Numatytoji reikšmė (Tinklelis/organinis)" + +msgid "Snug" +msgstr "Aptemti" + +msgid "Organic" +msgstr "Organiškas" + +msgid "Tree Slim" +msgstr "Medis plonas" + +msgid "Tree Strong" +msgstr "Tvirtas medis" + +msgid "Tree Hybrid" +msgstr "Hibridinis medis" + +msgid "Independent support layer height" +msgstr "Nepriklausomas atraminio sluoksnio aukštis" + +msgid "" +"Support layer uses layer height independent with object layer. This is to " +"support customizing z-gap and save print time. This option will be invalid " +"when the prime tower is enabled." +msgstr "" +"Atraminis sluoksnis naudoja sluoksnio aukštį, nepriklausomą nuo objekto " +"sluoksnio. Taip palaikomas z tarpo pritaikymas ir taupomas spausdinimo " +"laikas.Ši parinktis negalioja, kai įjungtas pagrindinis bokštas." + +msgid "Threshold angle" +msgstr "Ribinis kampas" + +msgid "" +"Support will be generated for overhangs whose slope angle is below the " +"threshold." +msgstr "" +"Iškyšoms, kurių nuolydžio kampas yra mažesnis už ribą, bus sukurta atrama." + +msgid "Threshold overlap" +msgstr "Slenksčio persidengimas" + +msgid "" +"If threshold angle is zero, support will be generated for overhangs whose " +"overlap is below the threshold. The smaller this value is, the steeper the " +"overhang that can be printed without support." +msgstr "" +"Jei slenkstinis kampas lygus nuliui, atrama bus sukurta iškyšoms, kurių " +"persidengimas yra mažesnis už slenkstį. Kuo mažesnė ši vertė, tuo statesnė " +"iškyša, kurią galima spausdinti be atramos." + +msgid "Tree support branch angle" +msgstr "Atraminio medžio šakos kampas" + +msgid "" +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " +"printed more horizontally, allowing them to reach farther." +msgstr "" +"Šis nustatymas nustato didžiausią iškyšos kampą, kurį gali sudaryti medžio " +"atramos šakos. Padidinus kampą, šakos gali būti atspausdintos horizontaliau, " +"todėl jos gali siekti toliau." + +msgid "Preferred Branch Angle" +msgstr "Pageidaujamas šakos kampas" + +#. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle" +msgid "" +"The preferred angle of the branches, when they do not have to avoid the " +"model. Use a lower angle to make them more vertical and more stable. Use a " +"higher angle for branches to merge faster." +msgstr "" +"Pageidaujamas šakų kampas, kai joms nereikia vengti modelio. Naudokite " +"mažesnį kampą, kad jos būtų vertikalesnės ir stabilesnės. Naudokite didesnį " +"kampą, kad šakos greičiau susijungtų." + +msgid "Tree support branch distance" +msgstr "Atstumas tarp atraminio medžio šakų" + +msgid "" +"This setting determines the distance between neighboring tree support nodes." +msgstr "Šis nustatymas nustato atstumą tarp kaimyninių medžio atraminių mazgų." + +msgid "Branch Density" +msgstr "Šakų tankis" + +#. TRN PrintSettings: "Organic supports" > "Branch Density" +msgid "" +"Adjusts the density of the support structure used to generate the tips of " +"the branches. A higher value results in better overhangs but the supports " +"are harder to remove, thus it is recommended to enable top support " +"interfaces instead of a high branch density value if dense interfaces are " +"needed." +msgstr "" +"Reguliuoja atraminės struktūros, naudojamos šakų viršūnėms formuoti, tankį. " +"Pasirinkus didesnę reikšmę, gaunamos geresnės iškyšos, tačiau atramas " +"sunkiau pašalinti, todėl, jei reikia tankios atramos, rekomenduojama įjungti " +"viršutinių atramų sąsajas, o ne didelę šakų tankio reikšmę." + +msgid "Adaptive layer height" +msgstr "Prisitaikantis sluoksnio aukštis" + +msgid "" +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." +msgstr "" +"Įjungus šią parinktį, medžio atraminio sluoksnio, išskyrus pirmąjį, aukštis " +"bus apskaičiuojamas automatiškai. " + +msgid "Auto brim width" +msgstr "Automatinis kraštų plotis" + +msgid "" +"Enabling this option means the width of the brim for tree support will be " +"automatically calculated." +msgstr "" +"Įjungus šią parinktį, medžio atramos krašto plotis apskaičiuojamas " +"automatiškai" + +msgid "Tree support brim width" +msgstr "Atraminio medžio krašto plotis" + +msgid "Distance from tree branch to the outermost brim line." +msgstr "Atstumas nuo medžio šakos iki išorinės krašto linijos" + +msgid "Tip Diameter" +msgstr "Galo skersmuo" + +#. TRN PrintSettings: "Organic supports" > "Tip Diameter" +msgid "Branch tip diameter for organic supports." +msgstr "Organinių atramų šakos galo skersmuo." + +msgid "Tree support branch diameter" +msgstr "Atraminio medžio šakų skersmuo" + +msgid "This setting determines the initial diameter of support nodes." +msgstr "Šiuo nustatymu nustatomas pradinis atraminių mazgų skersmuo." + +#. TRN PrintSettings: #lmFIXME +msgid "Branch Diameter Angle" +msgstr "Šakų skersmens kampas" + +#. TRN PrintSettings: "Organic supports" > "Branch Diameter Angle" +msgid "" +"The angle of the branches' diameter as they gradually become thicker towards " +"the bottom. An angle of 0 will cause the branches to have uniform thickness " +"over their length. A bit of an angle can increase stability of the organic " +"support." +msgstr "" +"Šakų skersmens kampas, joms palaipsniui storėjant link apačios. Jei kampas " +"lygus 0, šakos bus vienodo storio per visą ilgį. Šiek tiek didesnis kampas " +"gali padidinti organinės atramos stabilumą." + +msgid "Support wall loops" +msgstr "Atramų sienų kontūrai" + +msgid "" +"This setting specifies the count of support walls in the range of [0,2]. 0 " +"means auto." +msgstr "" +"Šis nustatymas nurodo atramų sienų storį intervale [0,2]. 0 reiškia " +"automatinis." + +msgid "Tree support with infill" +msgstr "Medžių atramos su užpildymu" + +msgid "" +"This setting specifies whether to add infill inside large hollows of tree " +"support." +msgstr "Šis nustatymas nurodo, ar į dideles medžio atramos ertmes dėti užpildą" + +msgid "Activate temperature control" +msgstr "Suaktyvinti temperatūros reguliavimą" + +msgid "" +"Enable this option for automated chamber temperature control. This option " +"activates the emitting of an M191 command before the " +"\"machine_start_gcode\"\n" +" which sets the chamber temperature and waits until it is reached. In " +"addition, it emits an M141 command at the end of the print to turn off the " +"chamber heater, if present.\n" +"\n" +"This option relies on the firmware supporting the M191 and M141 commands " +"either via macros or natively and is usually used when an active chamber " +"heater is installed." +msgstr "" +"Įjunkite šią parinktį, kad būtų galima automatizuotai valdyti kameros " +"temperatūrą. Ši parinktis įjungia M191 komandos transliavimą prieš " +"„machine_start_gcode“\n" +" kuri nustato kameros temperatūrą ir laukia, kol ji bus pasiekta. Be to, " +"spausdinimo pabaigoje ji išspinduliuoja komandą M141, kad būtų išjungtas " +"kameros šildytuvas, jei toks yra.\n" +"\n" +"Ši parinktis priklauso nuo to, ar programinė įranga palaiko komandas M191 ir " +"M141 per makrokomandas, ar gimtąja kalba, ir paprastai naudojama, kai " +"įrengtas aktyvus kameros šildytuvas." + +msgid "Chamber temperature" +msgstr "Kameros temperatūra" + +msgid "" +"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber " +"temperature can help suppress or reduce warping and potentially lead to " +"higher interlayer bonding strength. However, at the same time, a higher " +"chamber temperature will reduce the efficiency of air filtration for ABS and " +"ASA.\n" +"\n" +"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " +"should be disabled (set to 0) as the chamber temperature should be low to " +"avoid extruder clogging caused by material softening at the heat break.\n" +"\n" +"If enabled, this parameter also sets a G-code variable named " +"chamber_temperature, which can be used to pass the desired chamber " +"temperature to your print start macro, or a heat soak macro like this: " +"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " +"be useful if your printer does not support M141/M191 commands, or if you " +"desire to handle heat soaking in the print start macro if no active chamber " +"heater is installed." +msgstr "" +"Aukštos temperatūros medžiagoms, tokioms kaip ABS, ASA, PC ir PA, aukštesnė " +"temperatūra kameroje gali padėti sumažinti arba sumažinti deformacijas ir " +"padidinti tarpsluoksninio sukibimo stiprumą. Tačiau tuo pat metu aukštesnė " +"kameros temperatūra sumažina ABS ir ASA oro filtravimo efektyvumą.\n" +"\n" +"PLA, PETG, TPU, PVA ir kitoms žemos temperatūros medžiagoms ši parinktis " +"turėtų būti išjungta (nustatyta į 0), nes kameros temperatūra turėtų būti " +"žema, kad būtų išvengta ekstruderio užsikimšimo dėl medžiagos suminkštėjimo " +"šilumos slenkstyje.\n" +"\n" +"Jei įjungtas, šis parametras taip pat nustato gkodo kintamąjį " +"chamber_temperature, kuris gali būti naudojamas norimai kameros temperatūrai " +"perduoti spausdinimo pradžios makrokomandai arba tokiai šiluminio įšilimo " +"makrokomandai: (kiti kintamieji) CHAMBER_TEMP=[chamber_temperature]. Tai " +"gali būti naudinga, jei jūsų spausdintuvas nepalaiko M141/M191 komandų arba " +"jei norite, kad spausdinimo pradžios makrokomandoje būtų tvarkomas šilumos " +"įšildymas, jei nėra aktyvaus kameros šildytuvo." + +msgid "Nozzle temperature for layers after the initial one." +msgstr "Po pradinio sluoksnio esančių sluoksnių purkštuko temperatūra" + +msgid "Detect thin wall" +msgstr "Aptikti plonas sieneles" + +msgid "" +"Detect thin wall which can't contain two line width. And use single line to " +"print. Maybe printed not very well, because it's not closed loop." +msgstr "" +"Aptikti ploną sienelę, kurioje negali būti dviejų eilučių pločio. " +"Spausdinimui naudoti vieną liniją. Gali būti, kad nebus išspausdinta labai " +"gerai, nes tai nėra uždaras kontūras" + +msgid "" +"This G-code is inserted when change filament, including T command to trigger " +"tool change" +msgstr "" +"Šis gkodas įterpiamas, kai keičiama gija, įskaitant komandą T įrankiui " +"pakeisti" + +msgid "This G-code is inserted when the extrusion role is changed" +msgstr "Šis gkodas įterpiamas, kai pakeičiamas išspaudimo vaidmuo" + +msgid "" +"Line width for top surfaces. If expressed as a %, it will be computed over " +"the nozzle diameter." +msgstr "" +"Viršutinių paviršių linijos plotis. Jei išreiškiamas %, jis bus " +"apskaičiuojamas pagal purkštuko skersmenį." + +msgid "Speed of top surface infill which is solid." +msgstr "Viršutinio vientiso paviršiaus užpildo greitis" + +msgid "Top shell layers" +msgstr "Viršutiniai apvalkalo sluoksniai" + +msgid "" +"This is the number of solid layers of top shell, including the top surface " +"layer. When the thickness calculated by this value is thinner than top shell " +"thickness, the top shell layers will be increased." +msgstr "" +"Tai viršutinio apvalkalo vientisų sluoksnių skaičius, įskaitant viršutinį " +"paviršiaus sluoksnį. Kai pagal šią reikšmę apskaičiuotas storis yra " +"plonesnis už viršutinio apvalkalo storį, viršutinio apvalkalo sluoksnių " +"skaičius bus padidintas" + +msgid "Top solid layers" +msgstr "Viršutiniai vientisi sluoksniai" + +msgid "Top shell thickness" +msgstr "Viršutinio apvalkalo storis" + +msgid "" +"The number of top solid layers is increased when slicing if the thickness " +"calculated by top shell layers is thinner than this value. This can avoid " +"having too thin shell when layer height is small. 0 means that this setting " +"is disabled and thickness of top shell is absolutely determined by top shell " +"layers." +msgstr "" +"Sluoksniuojant didinamas viršutinių vientisų sluoksnių skaičius, jei pagal " +"viršutinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią " +"vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra " +"mažas. 0 reiškia, kad šis nustatymas išjungtas ir viršutinio apvalkalo " +"storis visiškai nustatomas pagal viršutinio apvalkalo sluoksnius" + +msgid "Speed of travel which is faster and without extrusion." +msgstr "Judėjimo greitis, kuris yra greitesnis ir be ekstruzijos" + +msgid "Wipe while retracting" +msgstr "Nuvalyti įtraukiant" + +msgid "" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." +msgstr "" +"Įtraukiant antgalį judinti išilgai paskutinio išspaudimo kelio, kad būtų " +"išvalyta ant antgalio nutekėjusi medžiaga. Tai gali sumažinti artefaktų " +"kiekį, kai po judėjimo spausdinama nauja dalis" + +msgid "Wipe Distance" +msgstr "Valymo atstumas" + +msgid "" +"Describe how long the nozzle will move along the last path when " +"retracting.\n" +"\n" +"Depending on how long the wipe operation lasts, how fast and long the " +"extruder/filament retraction settings are, a retraction move may be needed " +"to retract the remaining filament.\n" +"\n" +"Setting a value in the retract amount before wipe setting below will perform " +"any excess retraction before the wipe, else it will be performed after." +msgstr "" +"Apibūdinkite, kiek laiko antgalis judės paskutiniu keliu, kai bus " +"įtraukiamas.\n" +"\n" +"Priklausomai nuo to, kiek laiko trunka valymo operacija, kokie greiti ir " +"ilgi yra ekstruderio / gijų įtraukimo nustatymai, gali prireikti įtraukimo " +"judesio, kad būtų įtraukta likusi gija.\n" +"\n" +"Nustačius toliau esančio įvilkimo kiekio prieš valymą nustatymo reikšmę, bet " +"koks perteklinis įvilkimas bus atliktas prieš valymą, priešingu atveju jis " +"bus atliktas po jo." + +msgid "" +"The wiping tower can be used to clean up the residue on the nozzle and " +"stabilize the chamber pressure inside the nozzle, in order to avoid " +"appearance defects when printing objects." +msgstr "" +"Valymo bokštas gali būti naudojamas likučiams ant purkštuko išvalyti ir " +"kameros slėgiui purkštuko viduje stabilizuoti, kad spausdinant objektus būtų " +"išvengta paviršiaus defektų." + +msgid "Purging volumes" +msgstr "Valymo tūriai" + +msgid "Flush multiplier" +msgstr "Išleidimo daugiklis" + +msgid "" +"The actual flushing volumes is equal to the flush multiplier multiplied by " +"the flushing volumes in the table." +msgstr "" +"Faktinis išleidimo kiekis yra lygus išleidimo daugikliui, padaugintam iš " +"lentelėje nurodytų išleidimo kiekių." + +msgid "Prime volume" +msgstr "Pagrindinis tūris" + +msgid "The volume of material to prime extruder on tower." +msgstr "Medžiagos kiekis, skirtas ekstruderiui užpildyti ant bokšto." + +msgid "Width of the prime tower." +msgstr "Pagrindinio bokšto plotis" + +msgid "Wipe tower rotation angle" +msgstr "Valymo bokšto sukimosi kampas" + +msgid "Wipe tower rotation angle with respect to x-axis." +msgstr "Valymo bokšto sukimosi kampas x ašies atžvilgiu." + +msgid "Stabilization cone apex angle" +msgstr "Stabilizavimo kūgio viršūnės kampas" + +msgid "" +"Angle at the apex of the cone that is used to stabilize the wipe tower. " +"Larger angle means wider base." +msgstr "" +"Kūgio viršūnės kampas, naudojamas valymo bokštui stabilizuoti. Didesnis " +"kampas reiškia platesnį pagrindą." + +msgid "Maximum wipe tower print speed" +msgstr "Didžiausias valymo bokšto spausdinimo greitis" + +msgid "" +"The maximum print speed when purging in the wipe tower and printing the wipe " +"tower sparse layers. When purging, if the sparse infill speed or calculated " +"speed from the filament max volumetric speed is lower, the lowest will be " +"used instead.\n" +"\n" +"When printing the sparse layers, if the internal perimeter speed or " +"calculated speed from the filament max volumetric speed is lower, the lowest " +"will be used instead.\n" +"\n" +"Increasing this speed may affect the tower's stability as well as increase " +"the force with which the nozzle collides with any blobs that may have formed " +"on the wipe tower.\n" +"\n" +"Before increasing this parameter beyond the default of 90 mm/s, make sure " +"your printer can reliably bridge at the increased speeds and that ooze when " +"tool changing is well controlled.\n" +"\n" +"For the wipe tower external perimeters the internal perimeter speed is used " +"regardless of this setting." +msgstr "" +"Didžiausias spausdinimo greitis, kai atliekamas valymas valymo bokšte ir " +"spausdinami reti valymo bokšto sluoksniai. Jei valant reto sluoksnio " +"užpildymo greitis arba apskaičiuotas greitis pagal gijos maksimalų tūrinį " +"greitį yra mažesnis, vietoj jo bus naudojamas mažiausias.\n" +"\n" +"Spausdinant retus sluoksnius, jei vidinio perimetro greitis arba " +"apskaičiuotas greitis pagal gijos maksimalų tūrinį greitį yra mažesnis, " +"vietoj jo bus naudojamas mažiausias.\n" +"\n" +"Padidinus šį greitį, gali nukentėti bokšto stabilumas, taip pat padidėti " +"jėga, su kuria purkštuvas susiduria su bet kokiais nelygumais, kurie gali " +"susidaryti ant valymo bokšto.\n" +"\n" +"Prieš didindami šį parametrą daugiau nei numatytasis 90 mm/s, įsitikinkite, " +"kad jūsų spausdintuvas gali patikimai nutiesti tiltą didesniu greičiu ir kad " +"gijos pratekėjimas keičiant įrankį yra gerai kontroliuojamas.\n" +"\n" +"Valymo bokšto išoriniam perimetrui, nepriklausomai nuo šio parametro, " +"naudojamas vidinio perimetro greitis." + +msgid "" +"The extruder to use when printing perimeter of the wipe tower. Set to 0 to " +"use the one that is available (non-soluble would be preferred)." +msgstr "" +"Ekstruderis, naudojamas spausdinant valymo bokšto perimetrą. Nustatykite į " +"0, kad būtų naudojamas turimas ekstruderis (pageidautina, kad būtų " +"naudojamas netirpus)." + +msgid "Purging volumes - load/unload volumes" +msgstr "Išleidimo tūriai – pakrovimo/iškrovimo tūriai" + +msgid "" +"This vector saves required volumes to change from/to each tool used on the " +"wipe tower. These values are used to simplify creation of the full purging " +"volumes below." +msgstr "" +"Šis vektorius išsaugo reikiamus tūrius, kad būtų galima pakeisti/į kiekvieną " +"įrankį, naudojamą valymo bokštelyje. Šios vertės naudojamos siekiant " +"supaprastinti toliau pateiktų išvalymo tūrių kūrimą." + +msgid "" +"Purging after filament change will be done inside objects' infills. This may " +"lower the amount of waste and decrease the print time. If the walls are " +"printed with transparent filament, the mixed color infill will be seen " +"outside. It will not take effect, unless the prime tower is enabled." +msgstr "" +"Pakeitus giją, valymas bus atliekamas objektų užpildų viduje. Tai gali " +"sumažinti atliekų kiekį ir sutrumpinti spausdinimo laiką. Jei sienos " +"atspausdintos iš skaidraus filamento, mišrios spalvos užpildas bus matomas " +"išorėje. Jis nebus taikomas, nebent įjungtas pirminis bokštas." + +msgid "" +"Purging after filament change will be done inside objects' support. This may " +"lower the amount of waste and decrease the print time. It will not take " +"effect, unless the prime tower is enabled." +msgstr "" +"Pakeitus giją, valymas bus atliekamas objektų atramos viduje. Tai gali " +"sumažinti atliekų kiekį ir sutrumpinti spausdinimo laiką. Tai nebus " +"veiksminga, jei nebus įjungtas pirminis bokštas." + +msgid "" +"This object will be used to purge the nozzle after a filament change to save " +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect, unless the prime tower is enabled." +msgstr "" +"Šis objektas bus naudojamas purkštukui išvalyti po gijos pakeitimo, kad būtų " +"sutaupyta gija ir sutrumpintas spausdinimo laikas. Dėl to objektų spalvos " +"bus sumaišytos. Jis neveiks, jei nebus įjungtas pirminis bokštas." + +msgid "Maximal bridging distance" +msgstr "Maksimalus tiltelio atstumas" + +msgid "Maximal distance between supports on sparse infill sections." +msgstr "Maksimalus atstumas tarp atramų retose užpildymo dalyse." + +msgid "Wipe tower purge lines spacing" +msgstr "Atstumai tarp valymo bokšto valymo linijų" + +msgid "Spacing of purge lines on the wipe tower." +msgstr "Valymo bokšto valymo linijų atstumai." + +msgid "Extra flow for purging" +msgstr "Papildomas srautas valymui" + +msgid "" +"Extra flow used for the purging lines on the wipe tower. This makes the " +"purging lines thicker or narrower than they normally would be. The spacing " +"is adjusted automatically." +msgstr "" +"Papildomas srautas, naudojamas valymo bokšto išleidimo linijoms. Dėl to " +"išleidimo linijos tampa storesnės arba siauresnės nei įprastai. Atstumai " +"reguliuojami automatiškai." + +msgid "Idle temperature" +msgstr "Tuščiosios eigos temperatūra" + +msgid "" +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." +msgstr "" +"Purkštuko temperatūra, kai įrankis šiuo metu nenaudojamas kelių įrankių " +"nustatymuose.Tai naudojama tik tada, kai spausdinimo nustatymuose įjungta " +"Išleidimo prevencija. Nustatykite 0, kad išjungtumėte." + +msgid "X-Y hole compensation" +msgstr "X-Y angų kompensavimas" + +#, fuzzy +msgid "" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." +msgstr "" +"Objekto angos XY plokštumoje bus padidintos arba sumažintos pagal nustatytą " +"vertę. Teigiama reikšmė didina skyles. Neigiama reikšmė skyles sumažina. Ši " +"funkcija naudojama šiek tiek pakoreguoti dydį, kai objektas turi surinkimo " +"problemų" + +msgid "X-Y contour compensation" +msgstr "X-Y kontūro kompensavimas" + +#, fuzzy +msgid "" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." +msgstr "" +"Objekto kontūras XY plokštumoje bus padidintas arba sumažintas pagal " +"nustatytą vertę. Teigiama reikšmė didina kontūrą. Neigiama reikšmė kontūrą " +"sumažina. Ši funkcija naudojama šiek tiek pakoreguoti dydį, kai objektas yra " +"surenkamas" + +msgid "Convert holes to polyholes" +msgstr "Konvertuoti skyles į daugiakampes" + +msgid "" +"Search for almost-circular holes that span more than one layer and convert " +"the geometry to polyholes. Use the nozzle size and the (biggest) diameter to " +"compute the polyhole.\n" +"See http://hydraraptor.blogspot.com/2011/02/polyholes.html" +msgstr "" +"Ieškokite beveik apskritų skylių, apimančių daugiau nei vieną sluoksnį, ir " +"paverskite geometriją į daugiasluoksnes skyles. Norėdami apskaičiuoti " +"daugialypę skylę, naudokite purkštuko dydį ir (didžiausią) skersmenį.\n" +"Žr. http://hydraraptor.blogspot.com/2011/02/polyholes.html" + +msgid "Polyhole detection margin" +msgstr "Daugiašakių aptikimo riba" + +#, no-c-format, no-boost-format +msgid "" +"Maximum defection of a point to the estimated radius of the circle.\n" +"As cylinders are often exported as triangles of varying size, points may not " +"be on the circle circumference. This setting allows you some leeway to " +"broaden the detection.\n" +"In mm or in % of the radius." +msgstr "" +"Didžiausias taško nuokrypis nuo apskaičiuoto apskritimo spindulio.\n" +"Kadangi cilindrai dažnai eksportuojami kaip įvairaus dydžio trikampiai, " +"taškai gali būti ne apskritimo perimetre. Šis nustatymas suteikia tam tikrą " +"laisvę išplėsti aptikimą.\n" +"mm arba % spindulio." + +msgid "Polyhole twist" +msgstr "Daugiašakės sukimas" + +msgid "Rotate the polyhole every layer." +msgstr "Pasukite daugialypę skylę kiekviename sluoksnyje." + +msgid "G-code thumbnails" +msgstr "G-kodo miniatiūros" + +msgid "" +"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " +"following format: \"XxY, XxY, ...\"" +msgstr "" +"Nuotraukų dydžiai, saugomi .gcode ir .sl1 / .sl1s failuose tokiu formatu: " +"\"XxY, XxY, ...\"" + +msgid "Format of G-code thumbnails" +msgstr "G-kodo miniatiūrų formatas" + +msgid "" +"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " +"QOI for low memory firmware." +msgstr "" +"G-kodo miniatiūrų formatas: PNG – geriausia kokybė, JPG – mažiausio dydžio, " +"QOI – mažos atminties programinei įrangai" + +msgid "Use relative E distances" +msgstr "Naudoti santykinius E atstumus" + +msgid "" +"Relative extrusion is recommended when using \"label_objects\" option. Some " +"extruders work better with this option unchecked (absolute extrusion mode). " +"Wipe tower is only compatible with relative mode. It is recommended on most " +"printers. Default is checked." +msgstr "" +"Naudojant parinktį „label_objects“ rekomenduojama naudoti santykinį " +"išspaudimą. Kai kurie ekstruzijos įrenginiai veikia geriau, jei ši parinktis " +"nepažymėta (absoliučiosios ekstruzijos režimas). Valymo bokštas suderinamas " +"tik su santykiniu režimu. Jį rekomenduojama naudoti daugumoje spausdintuvų. " +"Pagal numatytuosius nustatymus pažymėta" + +msgid "" +"Classic wall generator produces walls with constant extrusion width and for " +"very thin areas is used gap-fill. Arachne engine produces walls with " +"variable extrusion width." +msgstr "" +"Klasikinis sienų generatorius sukuria pastovaus pločio sieneles, o labai " +"plonoms sritims užpildyti naudojamas tarpų užpildymas. \"Arachne\" variklis " +"gamina kintamo išspaudimo pločio sienas" + +msgid "Arachne" +msgstr "Arachnė" + +msgid "Wall transition length" +msgstr "Sienų perėjimo ilgis" + +msgid "" +"When transitioning between different numbers of walls as the part becomes " +"thinner, a certain amount of space is allotted to split or join the wall " +"segments. It's expressed as a percentage over nozzle diameter." +msgstr "" +"Pereinant nuo vieno sienelių skaičiaus prie kito, kai detalė tampa plonesnė, " +"sienelių segmentams padalyti arba sujungti skiriama tam tikra erdvė. Jis " +"išreiškiamas procentais nuo purkštuko skersmens" + +msgid "Wall transitioning filter margin" +msgstr "Sienos perėjimo filtro riba" + +msgid "" +"Prevent transitioning back and forth between one extra wall and one less. " +"This margin extends the range of extrusion widths which follow to [Minimum " +"wall width - margin, 2 * Minimum wall width + margin]. Increasing this " +"margin reduces the number of transitions, which reduces the number of " +"extrusion starts/stops and travel time. However, large extrusion width " +"variation can lead to under- or overextrusion problems. It's expressed as a " +"percentage over nozzle diameter." +msgstr "" +"Neleidžia pereiti iš vienos papildomos sienos į kitą. Ši riba išplečia " +"sekančio išspaudimo pločio diapazoną iki [minimalus sienelės plotis - riba, " +"2 * minimalus sienelės plotis + riba]. Padidinus šią ribą, sumažėja perėjimų " +"skaičius, todėl sumažėja ekstruzijos paleidimų / stabdymų skaičius ir " +"judėjimo laikas. Tačiau dėl didelio ekstruzijos pločio skirtumo gali kilti " +"nepakankamo arba per didelio ekstruzijos pločio problemų. Jis išreiškiamas " +"procentais nuo purkštuko skersmens" + +msgid "Wall transitioning threshold angle" +msgstr "Sienų perėjimo slenksčio kampas" + +msgid "" +"When to create transitions between even and odd numbers of walls. A wedge " +"shape with an angle greater than this setting will not have transitions and " +"no walls will be printed in the center to fill the remaining space. Reducing " +"this setting reduces the number and length of these center walls, but may " +"leave gaps or overextrude." +msgstr "" +"Kai reikia sukurti perėjimus tarp lyginio ir nelyginio sienų skaičiaus. " +"Pleišto formos, kurios kampas didesnis už šį nustatymą, perėjimų nebus, o " +"centre nebus atspausdintos sienos, kad būtų užpildyta likusi erdvė. " +"Sumažinus šį nustatymą, sumažėja šių centrinių sienelių skaičius ir ilgis, " +"tačiau gali likti tarpų arba jos gali būti per daug išsikišusios" + +msgid "Wall distribution count" +msgstr "Sienų pasiskirstymo skaičius" + +msgid "" +"The number of walls, counted from the center, over which the variation needs " +"to be spread. Lower values mean that the outer walls don't change in width." +msgstr "" +"Sienų skaičius, skaičiuojant nuo centro, ant kurių reikia paskirstyti " +"pokytį. Mažesnės reikšmės reiškia, kad išorinių sienų plotis nesikeičia" + +msgid "Minimum feature size" +msgstr "Minimalus elemento dydis" + +#, fuzzy +msgid "" +"Minimum thickness of thin features. Model features that are thinner than " +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." +msgstr "" +"Mažiausias plonų elementų storis. Modelio elementai, kurie yra plonesni už " +"šią vertę, nebus spausdinami, o elementai, kurie yra storesni už minimalų " +"elemento dydį, bus praplatinti iki minimalaus sienelės pločio. Jis " +"išreiškiamas procentais nuo purkštuko skersmens" + +msgid "Minimum wall length" +msgstr "Mažiausias sienos ilgis" + +msgid "" +"Adjust this value to prevent short, unclosed walls from being printed, which " +"could increase print time. Higher values remove more and longer walls.\n" +"\n" +"NOTE: Bottom and top surfaces will not be affected by this value to prevent " +"visual gaps on the outside of the model. Adjust 'One wall threshold' in the " +"Advanced settings below to adjust the sensitivity of what is considered a " +"top-surface. 'One wall threshold' is only visible if this setting is set " +"above the default value of 0.5, or if single-wall top surfaces is enabled." +msgstr "" +"Nustatykite šią reikšmę, kad nebūtų spausdinamos trumpos, neuždarytos " +"sienos, dėl kurių gali pailgėti spausdinimo laikas. Didesnės reikšmės " +"pašalina daugiau ir ilgesnių sienelių.\n" +"\n" +"PASTABA: Apatiniams ir viršutiniams paviršiams ši reikšmė įtakos neturės, " +"kad modelio išorėje nesusidarytų vizualūs tarpai. Toliau esančiuose " +"išplėstiniuose nustatymuose sureguliuokite Vienos sienelės slenkstis, kad " +"nustatytumėte jautrumą, kas laikoma viršutiniu paviršiumi. Vienos sienelės " +"slenkstis matomas tik tada, jei šis nustatymas nustatytas didesnis už " +"numatytąją vertę 0,5 arba jei įjungta vienos sienelės viršutinių paviršių " +"funkcija." + +msgid "First layer minimum wall width" +msgstr "Pirmojo sluoksnio mažiausias sienos plotis" + +msgid "" +"The minimum wall width that should be used for the first layer is " +"recommended to be set to the same size as the nozzle. This adjustment is " +"expected to enhance adhesion." +msgstr "" +"Mažiausią sienos plotį, kuris turėtų būti naudojamas pirmajam sluoksniui, " +"rekomenduojama nustatyti tokio pat dydžio, kaip ir purkštukas. Manoma, kad " +"šis nustatymas pagerins sukibimą." + +msgid "Minimum wall width" +msgstr "Mažiausias sienos plotis" + +msgid "" +"Width of the wall that will replace thin features (according to the Minimum " +"feature size) of the model. If the Minimum wall width is thinner than the " +"thickness of the feature, the wall will become as thick as the feature " +"itself. It's expressed as a percentage over nozzle diameter." +msgstr "" +"Sienos, kuri pakeis plonus modelio elementus, plotis (pagal minimalų " +"elemento dydį). Jei Minimalus sienos plotis yra plonesnis už elemento storį, " +"siena taps tokio pat storio kaip ir pats elementas. Jis išreiškiamas " +"procentais nuo purkštuko skersmens" + +msgid "Detect narrow internal solid infill" +msgstr "Aptikti siaurą vidinį vientisą užpildą" + +msgid "" +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." +msgstr "" +"Ši parinktis automatiškai nustato siaurą vidinę vientiso užpildo sritį. Jei " +"ši parinktis įjungta, šiai sričiai bus naudojamas koncentrinis raštas, kad " +"būtų pagreitintas spausdinimas. Priešingu atveju pagal numatytuosius " +"nustatymus naudojamas tiesiaeigis raštas." + +msgid "invalid value " +msgstr "netinkama reikšmė " + +msgid "Invalid value when spiral vase mode is enabled: " +msgstr "Netinkama reikšmė, kai įjungtas spiralinės vazos režimas: " + +msgid "too large line width " +msgstr "per didelis linijos plotis " + +msgid " not in range " +msgstr " nepatenka į intervalą " + +msgid "Export 3MF" +msgstr "Eksportuoti 3MF" + +msgid "Export project as 3MF." +msgstr "Eksportuokite projektą kaip 3MF." + +msgid "Export slicing data" +msgstr "Eksportuoti sluoksniavimo duomenis" + +msgid "Export slicing data to a folder." +msgstr "Eksportuoti sluoksniavimo duomenis į katalogą" + +msgid "Load slicing data" +msgstr "Įkelti sluoksniavimo duomenis" + +msgid "Load cached slicing data from directory." +msgstr "Įkelti į talpyklą įrašytus pjaustymo duomenis iš katalogo" + +msgid "Export STL" +msgstr "Eksportuoti STL" + +msgid "Export the objects as single STL." +msgstr "Eksportuoti visus objektus kaip vieną STL" + +msgid "Export multiple STLs" +msgstr "Eksportuoti kaip kelis STL" + +msgid "Export the objects as multiple STLs to directory." +msgstr "Eksportuokite objektus kaip kelis STL į katalogą" + +msgid "Slice" +msgstr "Sluoksniuoti" + +msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" +msgstr "" +"Sluoksniuoja plokštes: 0-visos plokštės, i-plokštė i, kitos-negaliojančios " + +msgid "Show command help." +msgstr "Rodoma komandos pagalba." + +msgid "UpToDate" +msgstr "Atnaujinta" + +msgid "Update the configs values of 3mf to latest." +msgstr "Atnaujinti 3mf konfigūracijos reikšmes į naujausias." + +msgid "downward machines check" +msgstr "tikrinti mažėjančias mašinas" + +msgid "" +"check whether current machine downward compatible with the machines in the " +"list." +msgstr "" +"patikrinti, ar dabartinė mašina yra suderinama su sąraše esančiomis " +"mašinomis." + +msgid "Load default filaments" +msgstr "Įkelti numatytąsias gijas" + +msgid "Load first filament as default for those not loaded." +msgstr "Įkelti pirmąją giją kaip numatytąją neįkeltoms gijoms" + +msgid "Minimum save" +msgstr "Minimalus išsaugojimas" + +msgid "export 3mf with minimum size." +msgstr "eksportuoti mažiausio dydžio 3mf." + +msgid "mtcpp" +msgstr "mtcpp" + +msgid "max triangle count per plate for slicing." +msgstr "maksimalus trikampių skaičius plokštelėje sluoksniavimui" + +msgid "mstpp" +msgstr "mstpp" + +msgid "max slicing time per plate in seconds." +msgstr "maksimalus vienos plokštės sluoksniavimo laikas sekundėmis" + +msgid "No check" +msgstr "Netikrinama" + +msgid "Do not run any validity checks, such as G-code path conflicts check." +msgstr "" +"Nevykdyti jokių galiojimo patikrinimų, pvz., gkodo kelio konfliktų " +"patikrinimo." + +msgid "Normative check" +msgstr "Normatyvinė patikra" + +msgid "Check the normative items." +msgstr "Patikrinti norminius elementus." + +msgid "Output Model Info" +msgstr "Išvesti modelio informaciją" + +msgid "Output the model's information." +msgstr "Išvedama modelio informacija." + +msgid "Export Settings" +msgstr "Eksportavimo nustatymai" + +msgid "Export settings to a file." +msgstr "Nustatymai eksportuojami į failą." + +msgid "Send progress to pipe" +msgstr "Siųsti pažangą į kanalą." + +msgid "Send progress to pipe." +msgstr "Siųsti pažangą į kanalą." + +msgid "Arrange Options" +msgstr "Išdėstymo parinktys" + +msgid "Arrange options: 0-disable, 1-enable, others-auto" +msgstr "Išdėstymo parinktys: 0-išjungti, 1-įjungti, kiti-automatiniai" + +msgid "Repetition count" +msgstr "Pakartojimų skaičius" + +msgid "Repetition count of the whole model." +msgstr "Viso modelio pasikartojimų skaičius" + +msgid "Ensure on bed" +msgstr "Užtikrinti ant pagrindo" + +msgid "" +"Lift the object above the bed when it is partially below. Disabled by default." +msgstr "" +"Pakelti daiktą virš pagrindo, kai jis iš dalies yra žemiau. Pagal " +"numatytuosius nustatymus išjungta" + +msgid "" +"Arrange the supplied models in a plate and merge them in a single model in " +"order to perform actions once." +msgstr "" +"Pateiktus modelius išdėstyti ant pagrindo ir sujungti į vieną modelį, kad " +"vieną kartą atliktumėte veiksmus." + +msgid "Convert Unit" +msgstr "Konvertuoti vienetus" + +msgid "Convert the units of model." +msgstr "Konvertuoti modelio matavimo vienetus" + +msgid "Orient Options" +msgstr "Orientacijos parinktys" + +msgid "Orient options: 0-disable, 1-enable, others-auto" +msgstr "Orientacijos parinktys: 0-išjungti, 1-įjungti, kiti-automatiniai" + +msgid "Rotation angle around the Z axis in degrees." +msgstr "Sukimosi kampas aplink Z ašį laipsniais." + +msgid "Rotate around Y" +msgstr "Pasukti aplink Y" + +msgid "Rotation angle around the Y axis in degrees." +msgstr "Sukimosi kampas aplink Y ašį laipsniais." + +msgid "Scale the model by a float factor." +msgstr "Modelio mastelio keitimas pagal kintamąjį koeficientą" + +msgid "Load General Settings" +msgstr "Įkelti bendruosius nustatymus" + +msgid "Load process/machine settings from the specified file." +msgstr "Įkelti proceso / mašinos nustatymus iš nurodyto failo" + +msgid "Load Filament Settings" +msgstr "Įkelti gijų nustatymus" + +msgid "Load filament settings from the specified file list." +msgstr "Įkelti gijų nustatymus iš nurodyto failų sąrašo" + +msgid "Skip Objects" +msgstr "Praleisti objektus" + +msgid "Skip some objects in this print." +msgstr "Praleisti kai kuriuos šio spausdinimo objektus" + +msgid "Clone Objects" +msgstr "Klonuoti objektus" + +msgid "Clone objects in the load list." +msgstr "Įkrovos sąraše esančių objektų klonavimas" + +msgid "Load uptodate process/machine settings when using uptodate." +msgstr "" +"įkelti \"naujausio\" proceso / mašinos nustatymus naudojant \"naujausia\"" + +msgid "" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." +msgstr "" +"įkelti \"naujausio\" proceso/įrenginio nustatymus iš nurodyto failo, kai " +"naudojamas \"naujausias\"" + +msgid "Load uptodate filament settings when using uptodate." +msgstr "įkelti naujausius gijų nustatymus, kai naudojate \"naujausius“" + +msgid "" +"Load uptodate filament settings from the specified file when using uptodate." +msgstr "" +"naudojant „naujausius“, įkelti naujausius gijų nustatymus iš nurodyto failo." + +msgid "" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." +msgstr "" +"jei įjungta, patikrinkite, ar dabartinė mašina yra suderinama su sąraše " +"esančiomis mašinomis." + +msgid "Downward machines settings" +msgstr "mašinų nustatymai žemyn" + +msgid "The machine settings list needs to do downward checking." +msgstr "mašinos nustatymų sąraše reikia atlikti žemyn einantį tikrinimą" + +msgid "Load assemble list" +msgstr "Įkelti surinkimo sąrašą" + +msgid "Load assemble object list from config file." +msgstr "Surinkimo objektų sąrašo įkėlimas iš konfigūracijos failo" + +msgid "Data directory" +msgstr "Duomenų katalogas" + +msgid "" +"Load and store settings at the given directory. This is useful for " +"maintaining different profiles or including configurations from a network " +"storage." +msgstr "" +"Įkelkite ir išsaugokite nustatymus nurodytame kataloge. Tai naudinga norint " +"išlaikyti skirtingus profilius arba įtraukti konfigūracijas iš tinklo " +"saugyklos." + +msgid "Output directory" +msgstr "Išvesties katalogas" + +msgid "Output directory for the exported files." +msgstr "Eksportuojamų failų išvesties katalogas." + +msgid "Debug level" +msgstr "Derinimo lygis" + +msgid "" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " +"5:trace\n" +msgstr "" +"Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, " +"3: informacija, 4: derinimas, 5: sekimas\n" + +msgid "Enable timelapse for print" +msgstr "Laiko intervalų spausdinimui įjungimas" + +msgid "If enabled, this slicing will be considered using timelapse." +msgstr "" +"Jei įjungta, šis sluoksniavimas bus atliekamas naudojant laiko intervalą." + +msgid "Load custom G-code" +msgstr "Įkelti pasirinktinį G-kodą" + +msgid "Load custom G-code from json" +msgstr "Įkelti pasirinktinį G-kodą iš json" + +msgid "Load filament ids" +msgstr "Įkelti gijų ID" + +msgid "Load filament ids for each object" +msgstr "Įkelti kiekvieno objekto gijų ID" + +msgid "Allow multiple colors on one plate" +msgstr "Leisti skirtingas spalvas ant tos pačios plokštės" + +msgid "If enabled, Arrange will allow multiple colors on one plate." +msgstr "Jei įjungta, išdėstymas leis kelias spalvas ant vienos plokštės." + +msgid "Allow rotation when arranging" +msgstr "Išdėstant leisti pasukti" + +msgid "If enabled, Arrange will allow rotation when placing objects." +msgstr "Jei įjungta, išdėstant objektus bus leidžiami pasukimai." + +msgid "Avoid extrusion calibrate region when arranging" +msgstr "Išdėstant vengti išspaudimo kalibravimo ploto" + +msgid "" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." +msgstr "" +"Jei įjungta, išdėstant objektus bus vengiama išspaudimo kalibravimo srities." + +msgid "Skip modified G-code in 3mf" +msgstr "Praleisti modifikuotus gkodus 3mf" + +msgid "Skip the modified G-code in 3mf from Printer or filament Presets" +msgstr "" +"Praleisti modifikuotus 3mf gkodus iš spausdintuvo arba filamento nustatymų" + +msgid "MakerLab name" +msgstr "MakerLab pavadinimas" + +msgid "MakerLab name to generate this 3mf" +msgstr "„MakerLab“ pavadinimas šiam 3mf generuoti" + +msgid "MakerLab version" +msgstr "„MakerLab“ versija" + +msgid "MakerLab version to generate this 3mf" +msgstr "„MakerLab“ versija šiam 3mf generuoti" + +msgid "metadata name list" +msgstr "metaduomenų pavadinimų sąrašas" + +msgid "metadata name list added into 3mf" +msgstr "metaduomenų pavadinimų sąrašas įtrauktas į 3mf" + +msgid "metadata value list" +msgstr "metaduomenų reikšmių sąrašas" + +msgid "metadata value list added into 3mf" +msgstr "į 3mf įtrauktas metaduomenų reikšmių sąrašas" + +msgid "Allow 3mf with newer version to be sliced." +msgstr "Leisti sluoksniuoti 3mf su naujesne versija" + +msgid "Current z-hop" +msgstr "Dabartinis z-šuolis" + +msgid "Contains z-hop present at the beginning of the custom G-code block." +msgstr "Turi z-šuolį, esantį pasirinktinio G-kodo bloko pradžioje." + +msgid "" +"Position of the extruder at the beginning of the custom G-code block. If the " +"custom G-code travels somewhere else, it should write to this variable so " +"OrcaSlicer knows where it travels from when it gets control back." +msgstr "" +"Ekstruderio padėtis pasirinktinio G-kodo bloko pradžioje. Jei pasirinktinis " +"G-kodas juda kur nors kitur, jis turėtų būti įrašytas į šį kintamąjį, kad " +"OrcaSlicer žinotų, iš kur jis juda, kai atgauna valdymą." + +msgid "" +"Retraction state at the beginning of the custom G-code block. If the custom " +"G-code moves the extruder axis, it should write to this variable so " +"OrcaSlicer de-retracts correctly when it gets control back." +msgstr "" +"Įtraukimo būsena pasirinktinio G-kodo bloko pradžioje. Jei pasirinktinis G-" +"kodas judina ekstruderio ašį, jis turėtų įrašyti į šį kintamąjį, kad " +"OrcaSlicer teisingai atšauktų įtraukimą, kai atgaus valdymą." + +msgid "Extra de-retraction" +msgstr "Papildomas ištraukimas" + +msgid "Currently planned extra extruder priming after de-retraction." +msgstr "Šiuo metu planuojamas papildomas ekstruderio užpildymas po ištraukimo." + +msgid "Absolute E position" +msgstr "Absoliuti E padėtis" + +msgid "" +"Current position of the extruder axis. Only used with absolute extruder " +"addressing." +msgstr "" +"Dabartinė ekstruderio ašies padėtis. Naudojama tik su absoliučiu ekstruderio " +"adresavimu." + +msgid "Current extruder" +msgstr "Dabartinis ekstruderis" + +msgid "Zero-based index of currently used extruder." +msgstr "Zero-based index of currently used extruder." + +msgid "Current object index" +msgstr "Dabartinio objekto indeksas" + +msgid "" +"Specific for sequential printing. Zero-based index of currently printed " +"object." +msgstr "" +"Specifinis nuoseklaus spausdinimo būdas. Šiuo metu spausdinamo objekto " +"indeksas (pradedant nuliu)." + +msgid "Has wipe tower" +msgstr "Turi valymo bokštą" + +msgid "Whether or not wipe tower is being generated in the print." +msgstr "Ar spausdinant generuojamas nuvalymo bokštas." + +msgid "Initial extruder" +msgstr "Pradinis ekstruderis" + +msgid "" +"Zero-based index of the first extruder used in the print. Same as " +"initial_tool." +msgstr "" +"Pirmojo spausdinimui naudojamo ekstruderio indeksas (pradedant nuliu). Toks " +"pat kaip initial_tool." + +msgid "Initial tool" +msgstr "Pradinis įrankis" + +msgid "" +"Zero-based index of the first extruder used in the print. Same as " +"initial_extruder." +msgstr "" +"Pirmojo spausdinimui naudojamo ekstruderio indeksas pagal nulį. Toks pat " +"kaip initial_extruder." + +msgid "Is extruder used?" +msgstr "Ar naudojamas ekstruderis?" + +msgid "" +"Vector of booleans stating whether a given extruder is used in the print." +msgstr "" +"Loginių reikšmių vektorius, nurodantis, ar spausdinant naudojamas tam tikras " +"ekstruderis." + +msgid "Has single extruder MM priming" +msgstr "Turi vieną ekstruderį MM užpildymui" + +msgid "Are the extra multi-material priming regions used in this print?" +msgstr "" +"Ar šiame spaudinyje naudojami papildomi kelių medžiagų pagrindo regionai?" + +msgid "Volume per extruder" +msgstr "Vieno ekstruderio tūris" + +msgid "Total filament volume extruded per extruder during the entire print." +msgstr "" +"Bendras gijų tūris, išspaustas iš vieno ekstruderio per visą spausdinimo " +"procesą." + +msgid "Total tool changes" +msgstr "Bendras įrankių keitimų skaičius" + +msgid "Number of tool changes during the print." +msgstr "Spausdinimo metu atliktų įrankių pakeitimų skaičius." + +msgid "Total volume" +msgstr "Bendras tūris" + +msgid "Total volume of filament used during the entire print." +msgstr "Bendras viso spausdinimo metu sunaudotas gijų tūris." + +msgid "Weight per extruder" +msgstr "Svoris vienam ekstruderiui" + +msgid "" +"Weight per extruder extruded during the entire print. Calculated from " +"filament_density value in Filament Settings." +msgstr "" +"Vieno ekstruderio išspaustas gijų svoris per visą spausdinimo procesą. " +"Apskaičiuojama pagal filament_density vertę Gijų nustatymuose." + +msgid "Total weight" +msgstr "Bendras svoris" + +msgid "" +"Total weight of the print. Calculated from filament_density value in " +"Filament Settings." +msgstr "" +"Bendras spaudinio svoris. Apskaičiuojama pagal filament_density vertę Gijos " +"nustatymuose." + +msgid "Total layer count" +msgstr "Bendras sluoksnių skaičius" + +msgid "Number of layers in the entire print." +msgstr "Viso spaudinio sluoksnių skaičius." + +msgid "Number of objects" +msgstr "Objektų skaičius" + +msgid "Total number of objects in the print." +msgstr "Bendras atspausdintų objektų skaičius." + +msgid "Number of instances" +msgstr "Egzempliorių skaičius" + +msgid "Total number of object instances in the print, summed over all objects." +msgstr "" +"Bendras atspausdintų objektų egzempliorių skaičius, sumuojamas visiems " +"objektams." + +msgid "Scale per object" +msgstr "Mastelis pagal objektą" + +msgid "" +"Contains a string with the information about what scaling was applied to the " +"individual objects. Indexing of the objects is zero-based (first object has " +"index 0).\n" +"Example: 'x:100% y:50% z:100'." +msgstr "" +"Pateikiama eilutė su informacija apie tai, koks mastelio keitimas buvo " +"pritaikytas atskiriems objektams. Objektai indeksuojami nuo nulio (pirmasis " +"objektas turi indeksą 0).\n" +"Pavyzdys: \"x:100% y:50% z:100\"." + +msgid "Input filename without extension" +msgstr "Įvesties failo pavadinimas be plėtinio" + +msgid "Source filename of the first object, without extension." +msgstr "Pirmojo objekto šaltinio failo pavadinimas be plėtinio." + +msgid "" +"The vector has two elements: x and y coordinate of the point. Values in mm." +msgstr "Vektorių sudaro du elementai: taško x ir y koordinatės. Vertės mm." + +msgid "" +"The vector has two elements: x and y dimension of the bounding box. Values " +"in mm." +msgstr "" +"Vektorių sudaro du elementai: x ir y ribojančio bloko matmenys. Reikšmės mm." + +msgid "First layer convex hull" +msgstr "Pirmojo sluoksnio išgaubtasis korpusas" + +msgid "" +"Vector of points of the first layer convex hull. Each element has the " +"following format:'[x, y]' (x and y are floating-point numbers in mm)." +msgstr "" +"Pirmojo sluoksnio išgaubtojo korpuso taškų vektorius. Kiekvienas elementas " +"yra tokio formato: \"[x, y]\" (x ir y yra slankiojo kablelio skaičiai mm)." + +msgid "Bottom-left corner of first layer bounding box" +msgstr "Pirmojo sluoksnio ribų lango apatinis kairysis kampas" + +msgid "Top-right corner of first layer bounding box" +msgstr "Pirmojo sluoksnio ribų lango viršutinis dešinysis kampas" + +msgid "Size of the first layer bounding box" +msgstr "Pirmojo sluoksnio ribų lango dydis" + +msgid "Bottom-left corner of print bed bounding box" +msgstr "Spausdinimo pagrindo ribų lango apatinis kairysis kampas" + +msgid "Top-right corner of print bed bounding box" +msgstr "Viršutinis dešinysis spausdinimo pagrindo ribų lango kampas" + +msgid "Size of the print bed bounding box" +msgstr "Spausdinimo pagrindo ribojančio lango dydis" + +msgid "Timestamp" +msgstr "Laiko žyma" + +msgid "String containing current time in yyyyMMdd-hhmmss format." +msgstr "Eilutė, kurioje nurodomas dabartinis laikas formatu yyyyMMdd-hhmmss." + +msgid "Day" +msgstr "Diena" + +msgid "Hour" +msgstr "Valanda" + +msgid "Minute" +msgstr "Minutės" + +msgid "Print preset name" +msgstr "Spausdinimo nustatymų pavadinimas" + +msgid "Name of the print preset used for slicing." +msgstr "Spausdinimo nustatymų, naudojamų sluoksniavimui, pavadinimas." + +msgid "Filament preset name" +msgstr "Gijos nustatymų pavadinimas" + +msgid "" +"Names of the filament presets used for slicing. The variable is a vector " +"containing one name for each extruder." +msgstr "" +"Sluoksniavimui naudojamų gijų nustatymų pavadinimai. Kintamasis yra " +"vektorius, kuriame yra po vieną kiekvieno ekstruderio pavadinimą." + +msgid "Printer preset name" +msgstr "Spausdintuvo nustatymų pavadinimas" + +msgid "Name of the printer preset used for slicing." +msgstr "Sluoksniavimui naudojamo spausdintuvo nustatymų pavadinimas." + +msgid "Physical printer name" +msgstr "Fizinio spausdintuvo pavadinimas" + +msgid "Name of the physical printer used for slicing." +msgstr "Fizinio spausdintuvo, naudojamo sluoksniavimui, pavadinimas." + +msgid "Number of extruders" +msgstr "Ekstruderių skaičius" + +msgid "" +"Total number of extruders, regardless of whether they are used in the " +"current print." +msgstr "" +"Bendras ekstruderių skaičius, neatsižvelgiant į tai, ar jie naudojami " +"dabartiniame spausdinime." + +msgid "Layer number" +msgstr "Sluoksnio numeris" + +msgid "Index of the current layer. One-based (i.e. first layer is number 1)." +msgstr "Dabartinio sluoksnio indeksas (pirmasis sluoksnis turi numerį 1)." + +msgid "Layer z" +msgstr "Sluoksnis z" + +msgid "" +"Height of the current layer above the print bed, measured to the top of the " +"layer." +msgstr "" +"Dabartinio sluoksnio aukštis virš spausdinimo pagrindo, matuojamas iki " +"sluoksnio viršaus." + +msgid "Maximal layer z" +msgstr "Maksimalusis sluoksnis z" + +msgid "Height of the last layer above the print bed." +msgstr "Paskutinio sluoksnio aukštis virš spausdinimo pagrindo." + +msgid "Filament extruder ID" +msgstr "Gijų ekstruderio ID" + +msgid "The current extruder ID. The same as current_extruder." +msgstr "Dabartinis ekstruderio ID. Toks pat kaip current_extruder." + +msgid "Error in zip archive" +msgstr "Klaida zip archyve" + +msgid "Generating walls" +msgstr "Sienų generavimas" + +msgid "Generating infill regions" +msgstr "Užpildomų regionų kūrimas" + +msgid "Generating infill toolpath" +msgstr "Užpildymo įrankių trajektorijų generavimas" + +msgid "Detect overhangs for auto-lift" +msgstr "Aptikti iškyšas automatiniam pakėlimui" + +msgid "Checking support necessity" +msgstr "Atramų reikalingumo tikrinimas" + +msgid "floating regions" +msgstr "ore kabančių sektoriių" + +msgid "floating cantilever" +msgstr "ore kabančią konstrukciją" + +msgid "large overhangs" +msgstr "didelių iškyšų" + +#, c-format, boost-format +msgid "" +"It seems object %s has %s. Please re-orient the object or enable support " +"generation." +msgstr "" +"Atrodo, kad objektas %s turi %s. Prašome perorientuoti objektą arba įjungti " +"atramų generavimą." + +msgid "Generating support" +msgstr "Atramų generavimas" + +msgid "Optimizing toolpath" +msgstr "Įrankių trajektorijų optimizavimas" + +msgid "Slicing mesh" +msgstr "Figūros sluoksniavimas" + +msgid "" +"No layers were detected. You might want to repair your STL file(s) or check " +"their size or thickness and retry.\n" +msgstr "" +"Sluoksnių neaptikta. Galbūt reikėtų pataisyti STL failą (-us) arba " +"patikrinti jų dydį ar storį ir bandyti dar kartą.\n" + +msgid "" +"An object's XY size compensation will not be used because it is also color-" +"painted.\n" +"XY Size compensation cannot be combined with color-painting." +msgstr "" +"Objekto XY dydžio kompensavimas nebus naudojamas, nes objektas taip pat yra " +"spalvotas.\n" +"XY dydžio kompensavimas negali būti derinamas su spalviniu dažymu." + +msgid "Support: generate contact points" +msgstr "Atramos: generuoti kontaktinius taškus" + +msgid "" +"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." +msgstr "" +"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, ." +"amf(.xml)." + +msgid "Loading of a model file failed." +msgstr "Nepavyko įkelti modelio failo." + +msgid "The supplied file couldn't be read because it's empty" +msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias" + +msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." +msgstr "" +"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip." +"amf." + +msgid "load_obj: failed to parse" +msgstr "load_obj: nepavyko apdoroti" + +msgid "load mtl in obj: failed to parse" +msgstr "įkelti mtl į obj: nepavyko apdoroti" + +msgid "The file contains polygons with more than 4 vertices." +msgstr "Faile yra daugiakampių, turinčių daugiau nei 4 viršūnes." + +msgid "The file contains polygons with less than 2 vertices." +msgstr "Faile yra daugiakampių, turinčių mažiau nei 2 viršūnes." + +msgid "The file contains invalid vertex index." +msgstr "Faile yra neteisingas viršūnių indeksas." + +msgid "This OBJ file couldn't be read because it's empty." +msgstr "Šio OBJ failo nepavyko perskaityti, nes jis tuščias." + +msgid "Flow Rate Calibration" +msgstr "Srauto kalibravimas" + +msgid "Max Volumetric Speed Calibration" +msgstr "Didžiausio tūrio greičio kalibravimas" + +msgid "Manage Result" +msgstr "Tvarkyti rezultatus" + +msgid "Manual Calibration" +msgstr "Rankinis kalibravimas" + +msgid "Result can be read by human eyes." +msgstr "Rezultatą galima nustatyti žmogaus akimis." + +msgid "Auto-Calibration" +msgstr "Automatinis kalibravimas" + +msgid "We would use Lidar to read the calibration result" +msgstr "Kalibravimo rezultatams nuskaityti naudotume lidarą" + +msgid "Prev" +msgstr "Prieš" + +msgid "Recalibration" +msgstr "Perkalibruoti" + +msgid "Calibrate" +msgstr "Kalibruoti" + +msgid "Finish" +msgstr "Baigti" + +msgid "How to use calibration result?" +msgstr "Kaip naudoti kalibravimo rezultatus?" + +msgid "" +"You could change the Flow Dynamics Calibration Factor in material editing" +msgstr "" +"Srauto dinamikos kalibravimo koeficientą galite pakeisti redaguodami medžiagą" + +msgid "" +"The current firmware version of the printer does not support calibration.\n" +"Please upgrade the printer firmware." +msgstr "" +"Dabartinė spausdintuvo programinės įrangos versija nepalaiko kalibravimo.\n" +"Atnaujinkite spausdintuvo programinę įrangą." + +msgid "Calibration not supported" +msgstr "Kalibravimas nepalaikomas" + +msgid "Error desc" +msgstr "Klaidų aprašas" + +msgid "Extra info" +msgstr "Papildoma informacija" + +msgid "Flow Dynamics" +msgstr "Srauto dinamika" + +msgid "Flow Rate" +msgstr "Srautas" + +msgid "Max Volumetric Speed" +msgstr "Didžiausias tūrinis greitis" + +#, c-format, boost-format +msgid "" +"Please input valid values:\n" +"Start value: >= %.1f\n" +"End value: <= %.1f\n" +"End value: > Start value\n" +"Value step: >= %.3f)" +msgstr "" +"Įveskite tinkamas reikšmes:\n" +"Pradinė reikšmė: >= %.1f\n" +"Galutinė reikšmė: <= %.1f\n" +"Galutinė reikšmė: > Pradinė reikšmė\n" +"Reikšmės žingsnis: >= %.3f)" + +msgid "The name cannot be empty." +msgstr "Pavadinimas negali būti tuščias." + +#, c-format, boost-format +msgid "The selected preset: %s was not found." +msgstr "Pasirinktas profilis: %s nerastas." + +msgid "The name cannot be the same as the system preset name." +msgstr "Pavadinimas negali sutapti su nustatytu sistemos pavadinimu." + +msgid "The name is the same as another existing preset name" +msgstr "Pavadinimas sutampa su kito nustatymo pavadinimu" + +msgid "create new preset failed." +msgstr "sukurti naują profilį nepavyko." + +msgid "" +"Are you sure to cancel the current calibration and return to the home page?" +msgstr "" +"Ar tikrai norite atšaukti dabartinį kalibravimą ir grįžti į pagrindinį " +"puslapį?" + +msgid "No Printer Connected!" +msgstr "Nėra prijungto spausdintuvo!" + +msgid "Printer is not connected yet." +msgstr "Spausdintuvas dar neprijungtas." + +msgid "Please select filament to calibrate." +msgstr "Pasirinkite giją, kurią norite kalibruoti." + +msgid "The input value size must be 3." +msgstr "Įvesties reikšmės dydis turi būti 3." + +msgid "" +"This machine type can only hold 16 history results per nozzle. You can " +"delete the existing historical results and then start calibration. Or you " +"can continue the calibration, but you cannot create new calibration " +"historical results.\n" +"Do you still want to continue the calibration?" +msgstr "" +"Šio tipo mašinoje galima laikyti tik 16 istorijos rezultatų iš vieno " +"purkštuko. Galite ištrinti turimus ankstesnius rezultatus ir tada pradėti " +"kalibravimą. Arba galite tęsti kalibravimą, tačiau negalite sukurti naujų " +"kalibravimo istorijos rezultatų.\n" +"Ar vis dar norite tęsti kalibravimą?" + +msgid "Connecting to printer..." +msgstr "Jungiamasi prie spausdintuvo..." + +msgid "The failed test result has been dropped." +msgstr "Nepavykusio testo rezultatas buvo panaikintas." + +msgid "Flow Dynamics Calibration result has been saved to the printer." +msgstr "Srauto dinamikos kalibravimo rezultatas išsaugotas spausdintuve" + +#, c-format, boost-format +msgid "" +"There is already a historical calibration result with the same name: %s. " +"Only one of the results with the same name is saved. Are you sure you want " +"to override the historical result?" +msgstr "" +"Jau yra ankstesnio kalibravimo rezultatas tokiu pačiu pavadinimu: %s. " +"Išsaugomas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite " +"pakeisti ankstesnį rezultatą?" + +#, c-format, boost-format +msgid "" +"This machine type can only hold %d history results per nozzle. This result " +"will not be saved." +msgstr "" +"Šis įrenginio tipas gali talpinti tik %d istorijos rezultatų iš vieno " +"purkštuko. Šis rezultatas nebus išsaugotas." + +msgid "Internal Error" +msgstr "Vidinė klaida" + +msgid "Please select at least one filament for calibration" +msgstr "Kalibravimui pasirinkite bent vieną giją" + +msgid "Flow rate calibration result has been saved to preset." +msgstr "Srauto kalibravimo rezultatas įrašytas į profilį" + +msgid "Max volumetric speed calibration result has been saved to preset." +msgstr "Maksimalaus tūrio greičio kalibravimo rezultatas įrašytas į profilį" + +msgid "When do you need Flow Dynamics Calibration" +msgstr "Kada jums reikia srauto dinamikos kalibravimo" + +msgid "" +"We now have added the auto-calibration for different filaments, which is " +"fully automated and the result will be saved into the printer for future " +"use. You only need to do the calibration in the following limited cases:\n" +"1. If you introduce a new filament of different brands/models or the " +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" +"3. If the max volumetric speed or print temperature is changed in the " +"filament setting" +msgstr "" +"Dabar pridėjome automatinį kalibravimą skirtingoms gijoms, kuris yra " +"visiškai automatizuotas, o rezultatas bus išsaugotas spausdintuve ir " +"naudojamas ateityje. Kalibravimą reikia atlikti tik šiais ribotais " +"atvejais:\n" +"1. Jei įdedate naują skirtingų gamintojų ir (arba) modelių giją arba gija " +"yra drėgna;\n" +"2. Jei antgalis nusidėvi arba pakeičiamas nauju;\n" +"3. Jei gijos nustatymuose keičiamas didžiausias tūrinis greitis arba " +"spausdinimo temperatūra." + +msgid "About this calibration" +msgstr "Apie šį kalibravimą" + +msgid "" +"Please find the details of Flow Dynamics Calibration from our wiki.\n" +"\n" +"Usually the calibration is unnecessary. When you start a single color/" +"material print, with the \"flow dynamics calibration\" option checked in the " +"print start menu, the printer will follow the old way, calibrate the " +"filament before the print; When you start a multi color/material print, the " +"printer will use the default compensation parameter for the filament during " +"every filament switch which will have a good result in most cases.\n" +"\n" +"Please note that there are a few cases that can make the calibration results " +"unreliable, such as insufficient adhesion on the build plate. Improving " +"adhesion can be achieved by washing the build plate or applying glue. For " +"more information on this topic, please refer to our Wiki.\n" +"\n" +"The calibration results have about 10 percent jitter in our test, which may " +"cause the result not exactly the same in each calibration. We are still " +"investigating the root cause to do improvements with new updates." +msgstr "" +"Išsamią informaciją apie srauto dinamikos kalibravimą rasite mūsų wiki.\n" +"\n" +"Paprastai kalibravimas nebūtinas. Kai pradedate spausdinti vienos spalvos / " +"medžiagos spaudinį, spausdinimo pradžios meniu pažymėjus parinktį \"Srauto " +"dinamikos kalibravimas\", spausdintuvas vadovausis senuoju būdu ir prieš " +"spausdinimą sukalibruos giją; kai pradedate spausdinti kelių spalvų / " +"medžiagos spaudinį, spausdintuvas kiekvieno gijos perjungimo metu naudos " +"numatytąjį gijos kompensavimo parametrą, kuris daugeliu atvejų duos gerą " +"rezultatą.\n" +"\n" +"Atkreipkite dėmesį, kad yra keletas atvejų, dėl kurių kalibravimo rezultatai " +"gali būti nepatikimi, pavyzdžiui, nepakankamas sukibimas su pagrindo " +"plokšte. Pagerinti sukibimą galima nuplaunant pagrindo plokštę arba užtepant " +"klijų. Daugiau informacijos šia tema rasite mūsų \"Wiki\".\n" +"\n" +"Mūsų bandyme kalibravimo rezultatai turi apie 10 proc. svyravimų, todėl " +"kiekvieno kalibravimo rezultatai gali būti ne visiškai vienodi. Mes vis dar " +"tiriame pagrindinę priežastį, kad galėtume atlikti patobulinimus su naujais " +"atnaujinimais." + +msgid "When to use Flow Rate Calibration" +msgstr "Kada naudoti srauto greičio kalibravimą" + +msgid "" +"After using Flow Dynamics Calibration, there might still be some extrusion " +"issues, such as:\n" +"1. Over-Extrusion: Excess material on your printed object, forming blobs or " +"zits, or the layers seem thicker than expected and not uniform\n" +"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" +"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " +"they should be" +msgstr "" +"Panaudojus srauto dinamikos kalibravimą, vis dar gali kilti problemų dėl " +"ekstruzijos, pvz:\n" +"1. Per didelis išspaudimas: ant spausdinamo objekto atsiranda medžiagos " +"perteklius, susidaro dėmės ar taškeliai arba sluoksniai atrodo storesni nei " +"tikėtasi ir netolygūs.\n" +"2. Nepakankamas išspaudimas: Labai ploni sluoksniai, silpnas užpildo " +"stiprumas arba viršutiniame modelio sluoksnyje esantys tarpai, net kai " +"spausdinama lėtai.\n" +"3. Prasta paviršiaus kokybė: Spausdinių paviršius atrodo šiurkštus arba " +"nelygus.\n" +"4. Silpnas struktūrinis vientisumas: Spaudiniai lengvai lūžta arba neatrodo " +"tokie tvirti, kokie turėtų būti." + +msgid "" +"In addition, Flow Rate Calibration is crucial for foaming materials like LW-" +"PLA used in RC planes. These materials expand greatly when heated, and " +"calibration provides a useful reference flow rate." +msgstr "" +"Be to, srauto greičio kalibravimas labai svarbus putojančioms medžiagoms, " +"pavyzdžiui, LW-PLA, naudojamoms RC lėktuvų gamyboje. Šios medžiagos labai " +"išsiplečia, kai yra kaitinamos, o kalibravimas suteikia naudingą etaloninį " +"srauto greitį." + +msgid "" +"Flow Rate Calibration measures the ratio of expected to actual extrusion " +"volumes. The default setting works well in Bambu Lab printers and official " +"filaments as they were pre-calibrated and fine-tuned. For a regular " +"filament, you usually won't need to perform a Flow Rate Calibration unless " +"you still see the listed defects after you have done other calibrations. For " +"more details, please check out the wiki article." +msgstr "" +"Srauto greičio kalibravimas matuoja numatyto ir faktinio išspaudimo tūrio " +"santykį. Numatytasis nustatymas gerai veikia \"Bambu Lab\" spausdintuvuose " +"ir su oficialiomis gijomis, nes jos iš anksto sukalibruotos ir tiksliai " +"sureguliuotos. Įprastai naudojamoms gijoms paprastai nereikia atlikti srauto " +"greičio kalibravimo, nebent atlikus kitus kalibravimus vis dar matote " +"išvardytus defektus. Išsamesnės informacijos rasite wiki straipsnyje." + +msgid "" +"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " +"directly measuring the calibration patterns. However, please be advised that " +"the efficacy and accuracy of this method may be compromised with specific " +"types of materials. Particularly, filaments that are transparent or semi-" +"transparent, sparkling-particled, or have a high-reflective finish may not " +"be suitable for this calibration and can produce less-than-desirable " +"results.\n" +"\n" +"The calibration results may vary between each calibration or filament. We " +"are still improving the accuracy and compatibility of this calibration " +"through firmware updates over time.\n" +"\n" +"Caution: Flow Rate Calibration is an advanced process, to be attempted only " +"by those who fully understand its purpose and implications. Incorrect usage " +"can lead to sub-par prints or printer damage. Please make sure to carefully " +"read and understand the process before doing it." +msgstr "" +"Automatinis srauto greičio kalibravimas naudoja \"Bambu Lab\" mikrolidarų " +"technologiją, tiesiogiai matuojančią kalibravimo modelius. Tačiau " +"atkreipkite dėmesį, kad šio metodo veiksmingumas ir tikslumas gali sumažėti " +"naudojant tam tikrų tipų medžiagas. Ypač skaidrios ar pusiau skaidrios, " +"blizgančios arba turinčios labai atspindinčią apdailą gijos gali būti " +"netinkamos šiam kalibravimui ir gali duoti prastesnius nei pageidaujami " +"rezultatus.\n" +"\n" +"Kalibravimo rezultatai gali skirtis priklausomai nuo kalibravimo ar gijų. " +"Vykdydami programinės aparatinės įrangos atnaujinimus laikui bėgant vis dar " +"tobuliname šio kalibravimo tikslumą ir suderinamumą.\n" +"\n" +"Įspėjimas: Srauto greičio kalibravimas yra sudėtingas procesas, kurį gali " +"atlikti tik tie, kurie visiškai supranta jo paskirtį ir pasekmes. " +"Neteisingas naudojimas gali lemti nekokybiškus spaudinius arba spausdintuvo " +"sugadinimą. Prieš atlikdami šį procesą būtinai atidžiai susipažinkite ir " +"supraskite jo eigą." + +msgid "When you need Max Volumetric Speed Calibration" +msgstr "Kada reikia maksimalaus tūrio greičio kalibravimo" + +msgid "Over-extrusion or under extrusion" +msgstr "Per didelis arba per mažas išspaudimas" + +msgid "Max Volumetric Speed calibration is recommended when you print with:" +msgstr "" +"Maksimalaus tūrio greičio kalibravimas rekomenduojamas, kai spausdinate su:" + +msgid "material with significant thermal shrinkage/expansion, such as..." +msgstr "medžiaga, kuri smarkiai susitraukia ir (arba) plečiasi, pvz.,..." + +msgid "materials with inaccurate filament diameter" +msgstr "medžiagos su netiksliu gijų skersmeniu" + +msgid "We found the best Flow Dynamics Calibration Factor" +msgstr "Radome geriausią srauto dinamikos kalibravimo koeficientą" + +msgid "" +"Part of the calibration failed! You may clean the plate and retry. The " +"failed test result would be dropped." +msgstr "" +"Dalis kalibravimo nepavyko! Galite nuvalyti pagrindą ir bandyti dar kartą. " +"Nepavykusio bandymo rezultatas bus panaikintas." + +msgid "" +"*We recommend you to add brand, materia, type, and even humidity level in " +"the Name" +msgstr "" +"*Į pavadinimą rekomenduojame įrašyti prekės ženklą, medžiagą, tipą ir net " +"drėgmės lygį" + +msgid "Failed" +msgstr "Nepavyko" + +msgid "Please enter the name you want to save to printer." +msgstr "Įveskite pavadinimą, kurį norite įrašyti į spausdintuvą." + +msgid "The name cannot exceed 40 characters." +msgstr "Pavadinimas negali būti ilgesnis nei 40 simbolių." + +msgid "" +"Only one of the results with the same name will be saved. Are you sure you " +"want to overwrite the other results?" +msgstr "" +"Bus išsaugotas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai " +"norite pakeisti kitus rezultatus?" + +msgid "Please find the best line on your plate" +msgstr "Raskite geriausią liniją ant pagrindo" + +msgid "Please find the corner with perfect degree of extrusion" +msgstr "Raskite kampą su tobulu išspaudimo laipsniu" + +msgid "Input Value" +msgstr "Įvesties reikšmė" + +msgid "Save to Filament Preset" +msgstr "Išsaugiti gijos profilyje" + +msgid "Preset" +msgstr "Profilis" + +msgid "Record Factor" +msgstr "Įrašo veiksnys" + +msgid "We found the best flow ratio for you" +msgstr "Radome jums geriausią srauto santykį" + +msgid "Flow Ratio" +msgstr "Srautas" + +msgid "Please input a valid value (0.0 < flow ratio < 2.0)" +msgstr "Įveskite galiojančią reikšmę (0,0 < srauto santykis < 2,0)" + +msgid "Please enter the name of the preset you want to save." +msgstr "Įveskite norimo išsaugoti profilio pavadinimą." + +msgid "Calibration1" +msgstr "Kalibravimas1" + +msgid "Calibration2" +msgstr "Kalibravimas2" + +msgid "Please find the best object on your plate" +msgstr "Raskite geriausią objektą ant pagrindo" + +msgid "Fill in the value above the block with smoothest top surface" +msgstr "" +"Užpildykite reikšmę virš bloko, kurio viršutinis paviršius yra lygiausias" + +msgid "Skip Calibration2" +msgstr "Praleisti kalibravimą2" + +#, c-format, boost-format +msgid "flow ratio : %s " +msgstr "srauto santykis : %s " + +msgid "Please choose a block with smoothest top surface." +msgstr "Pasirinkite bloką, kurio viršutinis paviršius lygiausias." + +msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" +msgstr "Įveskite tinkamą reikšmę (0 <= Maksimalus tūrinis greitis <= 60)" + +msgid "Calibration Type" +msgstr "Kalibravimo tipas" + +msgid "Complete Calibration" +msgstr "Pilnas kalibravimas" + +msgid "Fine Calibration based on flow ratio" +msgstr "Tikslusis kalibravimas pagal srauto santykį" + +msgid "Title" +msgstr "Pavadinimas" + +msgid "" +"A test model will be printed. Please clear the build plate and place it back " +"to the hot bed before calibration." +msgstr "" +"Bus atspausdintas bandomasis modelis. Prieš kalibruodami nuvalykite pagrindą " +"ir padėkite ją atgal į kaitinimo vietą." + +msgid "Printing Parameters" +msgstr "Spausdinimo parametrai" + +msgid "Plate Type" +msgstr "Plokštės tipas" + +msgid "filament position" +msgstr "gijos padėtis" + +msgid "External Spool" +msgstr "Išorinė ritė" + +msgid "Filament For Calibration" +msgstr "Gija kalibravimui" + +msgid "" +"Tips for calibration material: \n" +"- Materials that can share same hot bed temperature\n" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" +msgstr "" +"Patarimai dėl kalibravimo medžiagos: \n" +" - Medžiagos, kurios gali turėti tą pačią karšto pagrindo temperatūrą\n" +" - Skirtingas gijų prekės ženklas ir šeima (prekės ženklas = Bambu, šeima = " +"Basic, Matte)" + +msgid "Pattern" +msgstr "Raštas" + +msgid "Method" +msgstr "Metodas" + +#, c-format, boost-format +msgid "%s is not compatible with %s" +msgstr "%s nesuderinama su %s" + +msgid "TPU is not supported for Flow Dynamics Auto-Calibration." +msgstr "TPU nepalaiko srauto dinamikos automatinio kalibravimo." + +msgid "Connecting to printer" +msgstr "Jungiamasi prie spausdintuvo" + +msgid "From k Value" +msgstr "Nuo k reikšmės" + +msgid "To k Value" +msgstr "Iki k reikšmės" + +msgid "Step value" +msgstr "Žingsnio dydis" + +msgid "The nozzle diameter has been synchronized from the printer Settings" +msgstr "Purkštuko skersmuo buvo sinchronizuotas su spausdintuvo nustatymais" + +msgid "From Volumetric Speed" +msgstr "Nuo tūrinio greičio" + +msgid "To Volumetric Speed" +msgstr "Iki tūrinio greičio" + +msgid "Flow Dynamics Calibration Result" +msgstr "Srauto dinamikos kalibravimo rezultatai" + +msgid "New" +msgstr "Naujas" + +msgid "No History Result" +msgstr "Nėra ankstesnių rezultatų" + +msgid "Success to get history result" +msgstr "Sėkmingai gauti senesnį rezultatą" + +msgid "Refreshing the historical Flow Dynamics Calibration records" +msgstr "Senesnių srauto dinamikos kalibravimo įrašų atnaujinimas" + +msgid "Action" +msgstr "Veiksmas" + +#, c-format, boost-format +msgid "This machine type can only hold %d history results per nozzle." +msgstr "" +"Šis įrenginio tipas gali talpinti tik %d ankstesnių rezultatų iš vieno " +"purkštuko." + +msgid "Edit Flow Dynamics Calibration" +msgstr "Redaguoti srauto dinamikos kalibravimą" + +msgid "New Flow Dynamic Calibration" +msgstr "Naujas srauto dinaminis kalibravimas" + +msgid "Ok" +msgstr "Gerai" + +msgid "The filament must be selected." +msgstr "Turi būti pasirinkta gija." + +msgid "Network lookup" +msgstr "Tinklo paieška" + +msgid "Address" +msgstr "Adresas" + +msgid "Hostname" +msgstr "Hosto pavadinimas" + +msgid "Service name" +msgstr "Paslaugos pavadinimas" + +msgid "OctoPrint version" +msgstr "OctoPrint versija" + +msgid "Searching for devices" +msgstr "Ieškoma įrenginių" + +msgid "Finished" +msgstr "Baigta" + +msgid "Multiple resolved IP addresses" +msgstr "Keletas atrastų IP adresų" + +#, boost-format +msgid "" +"There are several IP addresses resolving to hostname %1%.\n" +"Please select one that should be used." +msgstr "" +"Yra keli IP adresai, kuriais galima nustatyti prievado vardą %1%.\n" +" Pasirinkite vieną, kuris turėtų būti naudojamas." + +msgid "PA Calibration" +msgstr "PA kalibravimas" + +msgid "DDE" +msgstr "DDE" + +msgid "Bowden" +msgstr "Bowden" + +msgid "Extruder type" +msgstr "Ekstruderio tipas" + +msgid "PA Tower" +msgstr "PA bokštas" + +msgid "PA Line" +msgstr "PA linija" + +msgid "PA Pattern" +msgstr "PA raštas" + +msgid "Start PA: " +msgstr "Pradėti PA: " + +msgid "End PA: " +msgstr "Baigti PA: " + +msgid "PA step: " +msgstr "PA žingsnis: " + +msgid "Accelerations: " +msgstr "Pagreičiai: " + +msgid "Speeds: " +msgstr "Greičiai: " + +msgid "Print numbers" +msgstr "Spausdinti numerius" + +msgid "Comma-separated list of printing accelerations" +msgstr "Kableliais atskirtas spausdinimo pagreičių sąrašas" + +msgid "Comma-separated list of printing speeds" +msgstr "Kableliais atskirtas spausdinimo greičių sąrašas" + +msgid "" +"Please input valid values:\n" +"Start PA: >= 0.0\n" +"End PA: > Start PA\n" +"PA step: >= 0.001)" +msgstr "" +"Įveskite galiojančias reikšmes:\n" +"Pradžios PA: >= 0,0\n" +"Pabaigos PA: > Pradžios PA\n" +"PA žingsnis: >= 0.001)" + +msgid "Temperature calibration" +msgstr "Temperatūros kalibravimas" + +msgid "PLA" +msgstr "PLA" + +msgid "ABS/ASA" +msgstr "ABS/ASA" + +msgid "PETG" +msgstr "PETG" + +msgid "PCTG" +msgstr "PCTG" + +msgid "TPU" +msgstr "TPU" + +msgid "PA-CF" +msgstr "PA-CF" + +msgid "PET-CF" +msgstr "PET-CF" + +msgid "Filament type" +msgstr "Gijos tipas" + +msgid "Start temp: " +msgstr "Pradžios temp: " + +msgid "End temp: " +msgstr "Galutinė temp: " + +msgid "Temp step: " +msgstr "Temp žingsnis: " + +msgid "" +"Please input valid values:\n" +"Start temp: <= 350\n" +"End temp: >= 170\n" +"Start temp > End temp + 5)" +msgstr "" +"Įveskite tinkamas reikšmes:\n" +"Pradžios temp: <= 350\n" +"Galutinė temp: >= 170\n" +"Pradžios temp > Galutinė temp + 5)" + +msgid "Max volumetric speed test" +msgstr "Didžiausio tūrio greičio bandymas" + +msgid "Start volumetric speed: " +msgstr "Pradinis tūrinis greitis: " + +msgid "End volumetric speed: " +msgstr "Galinis tūrinis greitis: " + +msgid "step: " +msgstr "žingsnis " + +msgid "" +"Please input valid values:\n" +"start > 0 \n" +"step >= 0\n" +"end > start + step)" +msgstr "" +"Įveskite tinkamas reikšmes:\n" +"pradinis > 0\n" +"žingsnis >= 0\n" +"galinis > pradinis + žingsnis)" + +msgid "VFA test" +msgstr "VFA testas" + +msgid "Start speed: " +msgstr "Pradinis greitis: " + +msgid "End speed: " +msgstr "Galinis greitis: " + +msgid "" +"Please input valid values:\n" +"start > 10 \n" +"step >= 0\n" +"end > start + step)" +msgstr "" +"Įveskite tinkamas reikšmes:\n" +"pradinis > 10\n" +"žingsnis >= 0\n" +"galinis > pradinis + žingsnis)" + +msgid "Start retraction length: " +msgstr "Pradinis įtraukimo ilgis: " + +msgid "End retraction length: " +msgstr "Galinis įtraukimo ilgis: " + +msgid "mm/mm" +msgstr "mm/mm" + +msgid "Send G-code to printer host" +msgstr "Siųsti G-kodą tinkliniam spausdintuvui" + +msgid "Upload to Printer Host with the following filename:" +msgstr "Įkelti į tinklinį spausdintuvą tokiu failo pavadinimu:" + +msgid "Use forward slashes ( / ) as a directory separator if needed." +msgstr "" +"Jei reikia, naudoti pasviruosius brūkšnius ( / ) kaip katalogų skyriklį." + +msgid "Upload to storage" +msgstr "Įkelti į saugyklą" + +msgid "Switch to Device tab after upload." +msgstr "Po įkėlimo pereikite į skirtuką Įrenginys." + +#, c-format, boost-format +msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?" +msgstr "Įkėlimo failo pavadinimas nesibaigia „%s“. Ar norite tęsti?" + +msgid "Upload" +msgstr "Įkelti" + +msgid "Print host upload queue" +msgstr "Įkėlimo spausdinimui tinkle eilė" + +msgid "ID" +msgstr "ID" + +msgid "Progress" +msgstr "Progresas" + +msgid "Host" +msgstr "Hostas" + +msgctxt "OfFile" +msgid "Size" +msgstr "Dydis" + +msgid "Filename" +msgstr "Failo pavadinimas" + +msgid "Cancel selected" +msgstr "Atšaukti pasirinktą" + +msgid "Show error message" +msgstr "Rodyti klaidos pranešimą" + +msgid "Queued" +msgstr "Eilėje" + +msgid "Uploading" +msgstr "Įkeliama" + +msgid "Cancelling" +msgstr "Atšaukiama" + +msgid "Error uploading to print host" +msgstr "Klaida siunčiant į spausdintuvą" + +msgid "" +"The selected bed type does not match the file. Please confirm before " +"starting the print." +msgstr "" +"Pasirinktas pagrindo tipas neatitinka failo. Prieš pradėdami spausdinti, " +"patvirtinkite." + +msgid "Time-lapse" +msgstr "Laiko intervalai" + +msgid "Heated Bed Leveling" +msgstr "Šildomo pagrindo išlyginimas" + +msgid "Textured Build Plate (Side A)" +msgstr "Tekstūruota pagrindo plokštė (A pusė)" + +msgid "Smooth Build Plate (Side B)" +msgstr "Lygi pagrindo plokštė (B pusė)" + +msgid "Unable to perform boolean operation on selected parts" +msgstr "Nepavyksta atlikti loginės operacijos su pasirinktomis dalimis" + +msgid "Mesh Boolean" +msgstr "Objektų jungimo / atėmimo / susikirtimo įrankiai" + +msgid "Union" +msgstr "Sąjunga" + +msgid "Difference" +msgstr "Skirtumas" + +msgid "Intersection" +msgstr "Susikirtimas" + +msgid "Source Volume" +msgstr "Išteklių tūris" + +msgid "Tool Volume" +msgstr "Įrankių tūris" + +msgid "Subtract from" +msgstr "Atimti iš" + +msgid "Subtract with" +msgstr "Atimti su" + +msgid "selected" +msgstr "pasirinkta" + +msgid "Part 1" +msgstr "1 dalis" + +msgid "Part 2" +msgstr "2 dalis" + +msgid "Delete input" +msgstr "Ištrinti įvestį" + +msgid "Network Test" +msgstr "Tinklo testas" + +msgid "Start Test Multi-Thread" +msgstr "Pradėti bandymą su keliais srautais" + +msgid "Start Test Single-Thread" +msgstr "Pradėti bandymą vienu srautu" + +msgid "Export Log" +msgstr "Eksportuoti žurnalą" + +msgid "OrcaSlicer Version:" +msgstr "\"OrcaSlicer\" versija:" + +msgid "System Version:" +msgstr "Sistemos versija:" + +msgid "DNS Server:" +msgstr "DNS serveris:" + +msgid "Test OrcaSlicer (GitHub)" +msgstr "Išbandyti OrcaSlicer(GitHub)" + +msgid "Test OrcaSlicer (GitHub):" +msgstr "Išbandyti OrcaSlicer(GitHub):" + +msgid "Test bing.com" +msgstr "Išbandyti Bing.com" + +msgid "Test bing.com:" +msgstr "Išbandyti Bing.com:" + +msgid "Log Info" +msgstr "Žurnalo informacija" + +msgid "Select filament preset" +msgstr "Pasirinkite gijos išankstinį nustatymą" + +msgid "Create Filament" +msgstr "Sukurti giją" + +msgid "Create Based on Current Filament" +msgstr "Sukurti pagal dabartinę giją" + +msgid "Copy Current Filament Preset " +msgstr "Nukopijuoti dabartinės gijos išankstinę nuostatą " + +msgid "Basic Information" +msgstr "Pagrindinė informacija" + +msgid "Add Filament Preset under this filament" +msgstr "Pridėti gijos nustatymą pagal šią giją" + +msgid "We could create the filament presets for your following printer:" +msgstr "Galime sukurti jūsų spausdintuvui skirtus gijų nustatymus:" + +msgid "Select Vendor" +msgstr "Pasirinkite pardavėją" + +msgid "Input Custom Vendor" +msgstr "Pasirinktinio pardavėjo įvedimas" + +msgid "Can't find vendor I want" +msgstr "Negaliu rasti norimo pardavėjo" + +msgid "Select Type" +msgstr "Pasirinkite tipą" + +msgid "Select Filament Preset" +msgstr "Pasirinkite išankstinį gijų nustatymą" + +msgid "Serial" +msgstr "Serijinis" + +msgid "e.g. Basic, Matte, Silk, Marble" +msgstr "pvz., pagrindinis, matinis, šilkinis, marmurinis" + +msgid "Filament Preset" +msgstr "Gijos išankstinis nustatymas" + +msgid "Create" +msgstr "Sukurti" + +msgid "Vendor is not selected, please reselect vendor." +msgstr "Pardavėjas nepasirinktas, pasirinkite pardavėją iš naujo." + +msgid "Custom vendor is not input, please input custom vendor." +msgstr "Pasirinktinis pardavėjas neįvestas, įveskite pasirinktinį pardavėją." + +msgid "" +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." +msgstr "" +"\"Bambu\" arba \"Generic\" negalima naudoti kaip pasirinktinių gijų " +"pardavėjo." + +msgid "Filament type is not selected, please reselect type." +msgstr "Nepasirinktas gijos tipas, pasirinkite tipą iš naujo." + +msgid "Filament serial is not entered, please enter serial." +msgstr "Gijos serijinis numeris neįvestas, įveskite serijinį numerį." + +msgid "" +"There may be escape characters in the vendor or serial input of filament. " +"Please delete and re-enter." +msgstr "" +"Gijų pardavėjo arba serijos numerio įvesties laukelyje gali būti " +"praleidžiamųjų simbolių. Ištrinkite ir įveskite iš naujo." + +msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." +msgstr "" +"Visi pasirinktinio pardavėjo ar serijos numerio įvesties duomenys yra " +"tarpai. Įveskite iš naujo." + +msgid "The vendor cannot be a number. Please re-enter." +msgstr "Pardavėjas negali būti skaičius. Prašome įvesti iš naujo." + +msgid "" +"You have not selected a printer or preset yet. Please select at least one." +msgstr "" +"Dar nepasirinkote spausdintuvo arba išankstinio nustatymo. Pasirinkite bent " +"vieną." + +#, c-format, boost-format +msgid "" +"The Filament name %s you created already exists.\n" +"If you continue creating, the preset created will be displayed with its full " +"name. Do you want to continue?" +msgstr "" +"Sukurtas gijos pavadinimas %s jau egzistuoja.\n" +"Jei toliau kursite, bus rodomas visas sukurto išankstinio nustatymo " +"pavadinimas. Ar norite tęsti?" + +msgid "Some existing presets have failed to be created, as follows:\n" +msgstr "Kai kurių esamų nustatymų nepavyko sukurti, pvz.:\n" + +msgid "" +"\n" +"Do you want to rewrite it?" +msgstr "" +"\n" +"Ar norite jį perrašyti?" + +msgid "" +"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 "" +"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo " +"serijinis @printeris, kurį pasirinkote\".\n" +"Norėdami pridėti daugiau spausdintuvų, eikite į spausdintuvo pasirinkimą" + +msgid "Create Printer/Nozzle" +msgstr "Sukurti spausdintuvą / purkštuką" + +msgid "Create Printer" +msgstr "Sukurti spausdintuvą" + +msgid "Create Nozzle for Existing Printer" +msgstr "Sukurti esamo spausdintuvo purkštuką" + +msgid "Create from Template" +msgstr "Sukurti pagal šabloną" + +msgid "Create Based on Current Printer" +msgstr "Kurti pagal esamą spausdintuvą" + +msgid "Import Preset" +msgstr "Importuoti nustatymus" + +msgid "Create Type" +msgstr "Sukurti tipą" + +msgid "The model was not found, please reselect vendor." +msgstr "Modelis nerastas, iš naujo pasirinkite pardavėją." + +msgid "Select Model" +msgstr "Pasirinkite modelį" + +msgid "Select Printer" +msgstr "Pasirinkite spausdintuvą" + +msgid "Input Custom Model" +msgstr "Įvesti pasirinktinį modelį" + +msgid "Can't find my printer model" +msgstr "Negaliu rasti savo spausdintuvo modelio" + +msgid "Rectangle" +msgstr "Stačiakampis" + +msgid "Printable Space" +msgstr "Spausdintina erdvė" + +msgid "Hot Bed STL" +msgstr "Šildomas pagrindas STL" + +msgid "Load stl" +msgstr "Įkelti stl" + +msgid "Hot Bed SVG" +msgstr "Šildomas pagrindas SVG" + +msgid "Load svg" +msgstr "Įkelti scg" + +msgid "Max Print Height" +msgstr "Maksimalus spausdinimo aukštis" + +#, c-format, boost-format +msgid "The file exceeds %d MB, please import again." +msgstr "Failas viršija %d MB, importuokite dar kartą." + +msgid "Exception in obtaining file size, please import again." +msgstr "Išimtis gaunant failo dydį, importuokite dar kartą." + +msgid "Preset path was not found, please reselect vendor." +msgstr "Nerastas nustatymų kelias, iš naujo pasirinkite pardavėją." + +msgid "The printer model was not found, please reselect." +msgstr "Spausdintuvo modelis nerastas, pasirinkite iš naujo." + +msgid "The nozzle diameter was not found, please reselect." +msgstr "Purkštuko skersmuo nerastas, pasirinkite iš naujo." + +msgid "The printer preset was not found, please reselect." +msgstr "Spausdintuvo išankstinis nustatymas nerastas, pasirinkite iš naujo." + +msgid "Printer Preset" +msgstr "Spausdintuvo nustatymai" + +msgid "Filament Preset Template" +msgstr "Gijos nustatymų šablonas" + +msgid "Deselect All" +msgstr "Atšaukti visus" + +msgid "Process Preset Template" +msgstr "Proceso nustatymų šablonas" + +msgid "Back Page 1" +msgstr "Atgal Puslapis 1" + +msgid "" +"You have not yet chosen which printer preset to create based on. Please " +"choose the vendor and model of the printer" +msgstr "" +"Dar nepasirinkote, pagal kurį spausdintuvo išankstinį nustatymą kurti. " +"Pasirinkite spausdintuvo gamintoją ir modelį" + +msgid "" +"You have entered an illegal input in the printable area section on the first " +"page. Please check before creating it." +msgstr "" +"Pirmojo puslapio spausdintinos srities skiltyje įvedėte neleistiną reikšmę. " +"Prieš jį kurdami patikrinkite." + +msgid "The custom printer or model is not entered, please enter it." +msgstr "Pasirinktinis spausdintuvas arba modelis neįvestas, įveskite jį." + +msgid "" +"The printer preset you created already has a preset with the same name. Do " +"you want to overwrite it?\n" +"\tYes: Overwrite the printer preset with the same name, and filament and " +"process presets with the same preset name will be recreated \n" +"and filament and process presets without the same preset name will be " +"reserve.\n" +"\tCancel: Do not create a preset, return to the creation interface." +msgstr "" +"Jūsų sukurtame spausdintuvo išankstiniame nustatyme jau yra to paties " +"pavadinimo išankstinis nustatymas. Ar norite jį perrašyti\n" +"\tTaip: perrašyti spausdintuvo nustatymus su tuo pačiu pavadinimu, ir " +"atkurti gijų ir procesų nustatymus su tais pačiais nustatymų \n" +"pavadinimais, o gijų ir procesų nustatymai be to paties pavadinimo bus " +"rezervuoti.\n" +"\tAtšaukti: Nesukurti išankstinio nustatymo, grįžti į kūrimo sąsają." + +msgid "You need to select at least one filament preset." +msgstr "Reikia pasirinkti bent vieną gijų nustatymą." + +msgid "You need to select at least one process preset." +msgstr "Reikia pasirinkti bent vieną proceso nustatymą." + +msgid "Create filament presets failed. As follows:\n" +msgstr "Nepavyko sukurti gijų nustatymų. Taip:\n" + +msgid "Create process presets failed. As follows:\n" +msgstr "" +"Nepavyko sukurti proceso nustatymų. Taip:\n" +"\n" + +msgid "Vendor was not found, please reselect." +msgstr "Pardavėjas nerastas, pasirinkite iš naujo." + +msgid "Current vendor has no models, please reselect." +msgstr "Dabartinis pardavėjas neturi modelių, pasirinkite iš naujo." + +msgid "" +"You have not selected the vendor and model or entered the custom vendor and " +"model." +msgstr "" +"Nepasirinkote pardavėjo ir modelio arba neįvedėte pasirinktinio pardavėjo ir " +"modelio." + +msgid "" +"There may be escape characters in the custom printer vendor or model. Please " +"delete and re-enter." +msgstr "" +"Pasirinktiniame spausdintuvo pardavėjo arba modelio pavadinime gali būti " +"praleidžiamų simbolių. Ištrinkite ir įveskite iš naujo." + +msgid "" +"All inputs in the custom printer vendor or model are spaces. Please re-enter." +msgstr "" +"Visi pasirinktinio spausdintuvo tiekėjo arba modelio įvesties duomenys yra " +"tarpai. Įveskite iš naujo." + +msgid "Please check bed printable shape and origin input." +msgstr "Patikrinkite pagrindo spausdinimo formą ir pradžią." + +msgid "" +"You have not yet selected the printer to replace the nozzle, please choose." +msgstr "" +"Dar nepasirinkote spausdintuvo, kuriuo norite pakeisti antgalį, pasirinkite." + +msgid "Printer Created Successfully" +msgstr "Sėkmingai sukurtas spausdintuvas" + +msgid "Filament Created Successfully" +msgstr "Sėkmingai sukurta gija" + +msgid "Printer Created" +msgstr "Sukurtas spausdintuvas" + +msgid "Please go to printer settings to edit your presets" +msgstr "" +"Eikite į spausdintuvo nustatymus, kad galėtumėte redaguoti išankstinius " +"nustatymus" + +msgid "Filament Created" +msgstr "Sukurta gija" + +msgid "" +"Please go to filament setting to edit your presets if you need.\n" +"Please note that nozzle temperature, hot bed temperature, and maximum " +"volumetric speed has a significant impact on printing quality. Please set " +"them carefully." +msgstr "" +"Jei reikia, eikite į gijos nustatymus ir redaguokite savo išankstinius " +"nustatymus.\n" +"Atkreipkite dėmesį, kad purkštuko temperatūra, karšto pagrindo temperatūra " +"ir didžiausias tūrinis greitis turi didelę įtaką spausdinimo kokybei. " +"Prašome atidžiai juos nustatyti." + +msgid "" +"\n" +"\n" +"Orca has detected that your user presets synchronization function is not " +"enabled, which may result in unsuccessful Filament settings on the Device " +"page.\n" +"Click \"Sync user presets\" to enable the synchronization function." +msgstr "" +"\n" +"\n" +"\"Orca\" nustatė, kad jūsų naudotojo nustatymų sinchronizavimo funkcija " +"neįjungta, todėl įrenginio puslapyje gali nepavykti nustatyti gijų " +"nustatymų.\n" +"Spustelėkite \" Sinchronizuoti naudotojo nustatymus\", kad įjungtumėte " +"sinchronizavimo funkciją." + +msgid "Printer Setting" +msgstr "Spausdintuvo nustatymai" + +msgid "Printer config bundle(.orca_printer)" +msgstr "Spausdintuvo konfigūracijos paketas(.orca_printer)" + +msgid "Filament bundle(.orca_filament)" +msgstr "Gijų paketas(.orca_filament)" + +msgid "Printer presets(.zip)" +msgstr "Spausdintuvo nustatymai(.zip)" + +msgid "Filament presets(.zip)" +msgstr "Gijų nustatymai(.zip)" + +msgid "Process presets(.zip)" +msgstr "Proceso nustatymai(.zip)" + +msgid "initialize fail" +msgstr "inicializuoti nepavyksta" + +msgid "add file fail" +msgstr "pridėti failą nepavyksta" + +msgid "add bundle structure file fail" +msgstr "pridėti paketų struktūros failą nepavyksta" + +msgid "finalize fail" +msgstr "baigti nepavyksta" + +msgid "open zip written fail" +msgstr "atidaryti zip raštu nepavyksta" + +msgid "Export successful" +msgstr "Sėkmingai eksportuota" + +#, c-format, boost-format +msgid "" +"The '%s' folder already exists in the current directory. Do you want to " +"clear it and rebuild it.\n" +"If not, a time suffix will be added, and you can modify the name after " +"creation." +msgstr "" +"Dabartiniame kataloge jau yra aplankas '%s'. Ar norite jį ištrinti ir " +"atkurti.\n" +"Jei ne, bus pridėta laiko priesaga, o pavadinimą galėsite keisti po sukūrimo." + +msgid "" +"Printer and all the filament&&process presets that belongs to the printer.\n" +"Can be shared with others." +msgstr "" +"Spausdintuvo ir visų spausdintuvui priklausančių gijų ir procesų išankstinės " +"nuostatos.\n" +"Galima dalytis su kitais." + +msgid "" +"User's filament preset set.\n" +"Can be shared with others." +msgstr "" +"Vartotojo iš anksto nustatytas gijų rinkinys.\n" +"Galima bendrinti su kitais." + +msgid "" +"Only display printer names with changes to printer, filament, and process " +"presets." +msgstr "" +"Spausdintuvų pavadinimai rodomi tik tada, kai pakeistos spausdintuvo, gijų " +"ir proceso išankstinės nuostatos." + +msgid "Only display the filament names with changes to filament presets." +msgstr "" +"Rodykite tik gijų pavadinimus su gijų išankstinių nustatymų pakeitimais." + +msgid "" +"Only printer names with user printer presets will be displayed, and each " +"preset you choose will be exported as a zip." +msgstr "" +"Bus rodomi tik spausdintuvų pavadinimai su naudotojo spausdintuvo " +"išankstiniais nustatymais, o kiekvienas pasirinktas išankstinis nustatymas " +"bus eksportuojamas kaip ZIP failas." + +msgid "" +"Only the filament names with user filament presets will be displayed, \n" +"and all user filament presets in each filament name you select will be " +"exported as a zip." +msgstr "" +"Bus rodomi tik gijų pavadinimai su naudotojo gijų išankstinėmis " +"nuostatomis, \n" +"o visi naudotojo gijų išankstiniai nustatymai kiekviename pasirinktame gijos " +"pavadinime bus eksportuojami kaip zip." + +msgid "" +"Only printer names with changed process presets will be displayed, \n" +"and all user process presets in each printer name you select will be " +"exported as a zip." +msgstr "" +"Bus rodomi tik spausdintuvų pavadinimai su pakeistomis proceso išankstinėmis " +"nuostatomis, \n" +"o visi naudotojo proceso nustatymai kiekviename pasirinktame spausdintuvo " +"pavadinime bus eksportuoti kaip zip." + +msgid "Please select at least one printer or filament." +msgstr "Pasirinkite bent vieną spausdintuvą arba giją." + +msgid "Please select a type you want to export" +msgstr "Pasirinkite tipą, kurį norite eksportuoti" + +msgid "Failed to create temporary folder, please try Export Configs again." +msgstr "" +"Nepavyko sukurti laikinojo aplanko, bandykite dar kartą eksportuoti " +"konfigūracijas." + +msgid "Edit Filament" +msgstr "Redaguoti giją" + +msgid "Filament presets under this filament" +msgstr "Gijos nustatymai pagal šią giją" + +msgid "" +"Note: If the only preset under this filament is deleted, the filament will " +"be deleted after exiting the dialog." +msgstr "" +"Pastaba: Jei ištrintas vienintelis šios gijos išankstinis nustatymas, gija " +"bus ištrinta išėjus iš dialogo lango." + +msgid "Presets inherited by other presets cannot be deleted" +msgstr "" +"Iš anksto nustatytų nustatymų, kuriuos paveldėjo kiti iš anksto nustatyti " +"nustatymai, negalima ištrinti" + +msgid "The following presets inherits this preset." +msgid_plural "The following preset inherits this preset." +msgstr[0] "Šį išankstinį nustatymą paveldi šis išankstinis nustatymas." +msgstr[1] "Šiuos išankstinius nustatymus paveldi šie išankstiniai nustatymai." +msgstr[2] "Šiuos išankstinius nustatymus paveldi šie išankstiniai nustatymai." + +msgid "Delete Preset" +msgstr "Ištrinti nustatymą" + +msgid "Are you sure to delete the selected preset?" +msgstr "Ar tikrai norite ištrinti pasirinktą nustatymą?" + +msgid "Delete preset" +msgstr "Ištrinti nustatymą" + +msgid "+ Add Preset" +msgstr "+ Pridėti nustatymą" + +msgid "Delete Filament" +msgstr "Ištrinti giją" + +msgid "" +"All the filament presets belong to this filament would be deleted.\n" +"If you are using this filament on your printer, please reset the filament " +"information for that slot." +msgstr "" +"Visi šiai gijai priklausantys išankstiniai nustatymai bus ištrinti.\n" +"Jei spausdintuve naudojate šią giją, iš naujo nustatykite tos angos gijos " +"informaciją." + +msgid "Delete filament" +msgstr "Ištrinti giją" + +msgid "Add Preset" +msgstr "Pridėti nustatymą" + +msgid "Add preset for new printer" +msgstr "Pridėti iš naujo spausdintuvo nustatymą" + +msgid "Copy preset from filament" +msgstr "Nukopijuoti nustatymą iš gijos" + +msgid "The filament choice not find filament preset, please reselect it" +msgstr "" +"Gijos pasirinkimas nerandamas iš anksto nustatytas, pasirinkite jį iš naujo" + +msgid "[Delete Required]" +msgstr "[Reikia ištrinti]" + +msgid "Edit Preset" +msgstr "Redaguoti nustatymą" + +msgid "For more information, please check out Wiki" +msgstr "Daugiau informacijos rasite Wiki" + +msgid "Collapse" +msgstr "Sutraukti" + +msgid "Daily Tips" +msgstr "Dienos patarimai" + +#, c-format, boost-format +msgid "nozzle memorized: %.1f %s" +msgstr "įsimintas purkštukas: %.1f %s" + +msgid "" +"Your nozzle diameter in preset is not consistent with memorized nozzle " +"diameter. Did you change your nozzle lately?" +msgstr "" +"Jūsų purkštuko skersmuo nustatytame režime neatitinka įsiminto purkštuko " +"skersmens. Ar neseniai keitėte purkštuką?" + +#, c-format, boost-format +msgid "*Printing %s material with %s may cause nozzle damage" +msgstr "*Spausdinant %s medžiagą su %s gali būti pažeistas purkštukas" + +msgid "Need select printer" +msgstr "Reikia pasirinkti spausdintuvą" + +msgid "The start, end or step is not valid value." +msgstr "Pradžios, pabaigos arba žingsnio reikšmė netinkama." + +msgid "" +"Unable to calibrate: maybe because the set calibration value range is too " +"large, or the step is too small" +msgstr "" +"Nepavyksta sukalibruoti: galbūt dėl to, kad nustatytas kalibravimo vertės " +"intervalas yra per didelis arba žingsnis yra per mažas" + +msgid "Physical Printer" +msgstr "Fizinis spausdintuvas" + +msgid "Print Host upload" +msgstr "Įkėlimas spausdinimui tinkle" + +msgid "Test" +msgstr "Testas" + +msgid "Could not get a valid Printer Host reference" +msgstr "Nepavyko gauti galiojančios tinklinio spausdintuvo nuorodos" + +msgid "Success!" +msgstr "Pavyko!" + +msgid "Are you sure to log out?" +msgstr "Ar tikrai norite atsijungti?" + +msgid "Refresh Printers" +msgstr "Atnaujinti spausdintuvus" + +msgid "View print host webui in Device tab" +msgstr "Spausdintuvo sąsajos peržiūra skirtuke Įrenginys" + +msgid "Replace the BambuLab's device tab with print host webui" +msgstr "Pakeiskite \"BambuLab\" įrenginio skirtuką spausdintuvo sąsaja" + +msgid "" +"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" +"signed certificate." +msgstr "" +"HTTPS CA failas yra neprivalomas. Jis reikalingas tik tuo atveju, jei " +"naudojate HTTPS su savarankiškai pasirašytu sertifikatu." + +msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" +msgstr "Sertifikato failai (*.crt, *.pem)|*.crt;*.pem|Visi failai|*.*" + +msgid "Open CA certificate file" +msgstr "Atidaryti CA sertifikato failą" + +#, c-format, boost-format +msgid "" +"On this system, %s uses HTTPS certificates from the system Certificate Store " +"or Keychain." +msgstr "" +"Šioje sistemoje %s naudoja HTTPS sertifikatus iš sistemos Certificate Store " +"arba Keychain." + +msgid "" +"To use a custom CA file, please import your CA file into Certificate Store / " +"Keychain." +msgstr "" +"Norėdami naudoti pasirinktinį CA failą, importuokite CA failą į sertifikatų " +"saugyklą / raktų pakabuką." + +msgid "Login/Test" +msgstr "Prisijungimas / bandymas" + +msgid "Connection to printers connected via the print host failed." +msgstr "Nepavyko prisijungti prie spausdintuvų, prijungtų per tinklą." + +#, c-format, boost-format +msgid "Mismatched type of print host: %s" +msgstr "Neatitinka tinklinio spausdintuvo tipas: %s" + +msgid "Connection to AstroBox is working correctly." +msgstr "Prisijungimas prie AstroBox veikia tinkamai." + +msgid "Could not connect to AstroBox" +msgstr "Nepavyko prisijungti prie AstroBox" + +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "Pastaba: reikalinga bent 1.1.0 AstroBox versija." + +msgid "Connection to Duet is working correctly." +msgstr "Ryšys su Duet veikia tinkamai." + +msgid "Could not connect to Duet" +msgstr "Nepavyko prisijungti prie Duet" + +msgid "Unknown error occurred" +msgstr "Įvyko nežinoma klaida" + +msgid "Wrong password" +msgstr "Neteisingas slaptažodis" + +msgid "Could not get resources to create a new connection" +msgstr "Nepavyko gauti išteklių naujam ryšiui sukurti" + +msgid "Upload not enabled on FlashAir card." +msgstr "Įkėlimas neįjungtas FlashAir kortelėje." + +msgid "Connection to FlashAir is working correctly and upload is enabled." +msgstr "Prisijungimas prie FlashAir veikia tinkamai ir įkėlimas įjungtas." + +msgid "Could not connect to FlashAir" +msgstr "Nepavyko prisijungti prie „FlashAir“" + +msgid "" +"Note: FlashAir with firmware 2.00.02 or newer and activated upload function " +"is required." +msgstr "" +"Pastaba: reikalinga „FlashAir“ su 2.00.02 ar naujesne programine įranga ir " +"aktyvuota įkėlimo funkcija." + +msgid "Connection to MKS is working correctly." +msgstr "Ryšys su MKS veikia tinkamai." + +msgid "Could not connect to MKS" +msgstr "Nepavyko prisijungti prie MKS" + +msgid "Connection to OctoPrint is working correctly." +msgstr "Prisijungimas prie OctoPrint veikia tinkamai." + +msgid "Could not connect to OctoPrint" +msgstr "Nepavyko prisijungti prie „OctoPrint“" + +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "Pastaba: reikalinga bent 1.1.0 OctoPrint versija." + +msgid "Connection to Prusa SL1 / SL1S is working correctly." +msgstr "Ryšys su Prusa SL1 / SL1S veikia tinkamai." + +msgid "Could not connect to Prusa SLA" +msgstr "Nepavyko prisijungti prie Prusa SLA" + +msgid "Connection to PrusaLink is working correctly." +msgstr "Ryšys su PrusaLink veikia tinkamai." + +msgid "Could not connect to PrusaLink" +msgstr "Nepavyko prisijungti prie „PrusaLink“" + +msgid "Storages found" +msgstr "Rastos saugyklos" + +#. TRN %1% = storage path +#, boost-format +msgid "%1% : read only" +msgstr "%1% : tik skaitymui" + +#. TRN %1% = storage path +#, boost-format +msgid "%1% : no free space" +msgstr "%1% : nėra laisvos vietos" + +#. TRN %1% = host +#, boost-format +msgid "Upload has failed. There is no suitable storage found at %1%." +msgstr "Įkelti nepavyko. %1% tinkamos saugyklos nerasta." + +msgid "Connection to Prusa Connect is working correctly." +msgstr "Ryšys su \"Prusa Connect\" veikia tinkamai." + +msgid "Could not connect to Prusa Connect" +msgstr "Nepavyko prisijungti prie \"Prusa Connect\"" + +msgid "Connection to Repetier is working correctly." +msgstr "Ryšys su REpieter veikia tinkamai." + +msgid "Could not connect to Repetier" +msgstr "Nepavyko prisijungti prie Repieter" + +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "Pastaba: reikalinga bent 0.90.0 Repetier versija." + +#, boost-format +msgid "" +"HTTP status: %1%\n" +"Message body: \"%2%\"" +msgstr "" +"HTTP būsena: %1%\n" +"Pranešimo tekstas: \"%2%\"" + +#, boost-format +msgid "" +"Parsing of host response failed.\n" +"Message body: \"%1%\"\n" +"Error: \"%2%\"" +msgstr "" +"Nepavyko apdoroti tinklo įrenginio atsakymo.\n" +"Pranešimo tekstas: „%1%“\n" +"Klaida: „%2%“" + +#, boost-format +msgid "" +"Enumeration of host printers failed.\n" +"Message body: \"%1%\"\n" +"Error: \"%2%\"" +msgstr "" +"Nepavyko suskaičiuoti tinklinių spausdintuvų.\n" +"Pranešimo tekstas: „%1%“\n" +"Klaida: „%2%“" + +msgid "" +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." +msgstr "" +"Dėl mažo sluoksnio aukščio sluoksnio linijos yra beveik nereikšmingos, o " +"spausdinimo kokybė - aukšta. Tinka daugeliui bendrųjų spausdinimo atvejų." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo greitis ir pagreitis " +"yra mažesni, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo " +"pasiekiama daug geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo " +"laikas." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"šiek tiek didesnis, todėl sluoksnio linijos yra beveik nepastebimos, o " +"spausdinimo laikas šiek tiek trumpesnis." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " +"height. This results in slightly visible layer lines but shorter print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl šiek tiek matomos sluoksnio linijos, tačiau trumpesnis " +"spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl beveik nematomos sluoksnio linijos, aukštesnė spausdinimo " +"kokybė ir trumpesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost invisible layer lines and much higher " +"printing quality, but much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jame yra mažesnės " +"sluoksnio linijos, mažesnis greitis ir pagreitis, o retas užpildymo raštas " +"yra \"Gyroid\". Taigi, dėl to beveik nematomos sluoksnių linijos ir daug " +"geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jis turi mažesnį " +"sluoksnio aukštį, todėl yra minimalios sluoksnio linijos ir aukštesnė " +"spausdinimo kokybė, tačiau trumpesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"lines, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jame yra mažesnės " +"sluoksnio linijos, mažesnis greitis ir pagreitis, o retas užpildymo raštas " +"yra \"Gyroid\". Taigi, dėl jo gaunamos minimalios sluoksnių linijos ir daug " +"geresnė spausdinimo kokybė, tačiau daug ilgesnė spausdinimo trukmė." + +msgid "" +"It has a normal layer height. This results in average layer lines and " +"printing quality. It is suitable for most general printing cases." +msgstr "" +"Jis turi įprastą sluoksnio aukštį ir lemia įprastas sluoksnio linijas bei " +"spausdinimo kokybę. Jis tinka daugeliui bendrųjų spausdinimo atvejų." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jame yra daugiau " +"sienelių kontūrų ir didesnis reto užpildo tankis. Taigi, dėl to spaudiniai " +"būna tvirtesni, tačiau sunaudojama daugiau gijų ir ilgiau trunka " +"spausdinimas." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo " +"kokybė, tačiau šiek tiek trumpesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo " +"kokybė, tačiau trumpesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo " +"kokybė, tačiau ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis " +"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra " +"\"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė " +"spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl sluoksnio linijos beveik nežymios, spausdinimo kokybė " +"geresnė, tačiau spausdinimo laikas ilgesnis." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height, lower speeds and acceleration, and the sparse infill pattern is " +"Gyroid. This results in almost negligible layer lines and much higher " +"printing quality, but much longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis " +"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra " +"\"Gyroid\". Taigi, dėl jo gaunamos beveik nereikšmingos sluoksnių linijos ir " +"daug geresnė spausdinimo kokybė, tačiau daug ilgesnė spausdinimo trukmė." + +msgid "" +"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " +"height. This results in almost negligible layer lines and longer print time." +msgstr "" +"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jis turi mažesnį " +"sluoksnio aukštį, todėl sluoksnio linijos yra beveik nežymios, o spausdinimo " +"laikas ilgesnis." + +msgid "" +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." +msgstr "" +"Jis pasižymi dideliu sluoksnio aukščiu, todėl matomos sluoksnio linijos ir " +"įprasta spausdinimo kokybė bei spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." +msgstr "" +"Palyginti su numatytuoju 0,6 mm antgalio profiliu, jame yra daugiau sienų " +"kontūrų ir didesnis reto užpildo tankis. Taigi, dėl to spaudiniai būna " +"tvirtesni, tačiau sunaudojama daugiau gijų ir ilgiau trunka spausdinimas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra " +"didesnis, dėl to ryškesnės sluoksnio linijos ir prastesnė spausdinimo " +"kokybė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo " +"laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl sluoksnio linijos yra daug akivaizdesnės, o spausdinimo " +"kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais sutrumpėja " +"spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl mažiau matomos sluoksnio linijos ir šiek tiek geresnė " +"spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." +msgstr "" +"Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo " +"kokybė, tačiau ilgesnis spausdinimo laikas." + +msgid "" +"It has a very big layer height. This results in very apparent layer lines, " +"low printing quality and general printing time." +msgstr "" +"Jis turi labai didelį sluoksnio aukštį, todėl labai matomos sluoksnio " +"linijos, prasta spausdinimo kokybė ir įprasta spausdinimo trukmė." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra " +"didesnis, todėl sluoksnio linijos yra labai ryškios, o spausdinimo kokybė " +"daug prastesnė, tačiau kai kuriais spausdinimo atvejais sutrumpėja " +"spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " +"layer height. This results in extremely apparent layer lines and much lower " +"printing quality, but much shorter printing time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra " +"daug didesnis, todėl sluoksnio linijos yra labai ryškios, o spausdinimo " +"kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais spausdinimas " +"trunka daug trumpiau." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra " +"šiek tiek mažesnis, todėl gaunama šiek tiek mažiau, bet vis tiek matomų " +"sluoksnio linijų ir šiek tiek geresnė spausdinimo kokybė, tačiau kai kuriais " +"spausdinimo atvejais ilgesnis spausdinimo laikas." + +msgid "" +"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." +msgstr "" +"Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra " +"mažesnis, todėl gaunama mažiau, bet vis tiek matomų sluoksnio linijų ir šiek " +"tiek geresnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais " +"ilgesnis spausdinimo laikas." + +msgid "Connected to Obico successfully!" +msgstr "Sėkmingai prisijungta prie \"Obico\"!" + +msgid "Could not connect to Obico" +msgstr "Nepavyko prisijungti prie \"Obico" + +msgid "Connected to SimplyPrint successfully!" +msgstr "Sėkmingai prisijungta prie \"SimplyPrint\"!" + +msgid "Could not connect to SimplyPrint" +msgstr "Nepavyko prisijungti prie \"SimplyPrint" + +msgid "Internal error" +msgstr "Vidinė klaida" + +msgid "Unknown error" +msgstr "Nežinoma klaida" + +msgid "SimplyPrint account not linked. Go to Connect options to set it up." +msgstr "" +"\"SimplyPrint\" paskyra nesusieta. Eikite į Prisijungimo parinktis ir ją " +"nustatykite." + +msgid "Connection to Flashforge is working correctly." +msgstr "Ryšys su \"Flashforge\" veikia tinkamai." + +msgid "Could not connect to Flashforge" +msgstr "Nepavyko prisijungti prie \"Flashforge" + +msgid "The provided state is not correct." +msgstr "Pateikta būsena neteisinga." + +msgid "Please give the required permissions when authorizing this application." +msgstr "Įgaliodami šią programą suteikite reikiamus leidimus." + +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Bandant prisijungti įvyko kažkas netikėto. Bandykite dar kartą." + +msgid "User canceled." +msgstr "Vartotojas atšauktas." + +msgid "Head diameter" +msgstr "Galvutės skersmuo" + +msgid "Max angle" +msgstr "Maksimalus kampas" + +msgid "Detection radius" +msgstr "Aptikimo spindulys" + +msgid "Remove selected points" +msgstr "Pašalinti pasirinktus taškus" + +msgid "Remove all" +msgstr "Pašalinti viską" + +msgid "Auto-generate points" +msgstr "Automatiškai generuoti taškus" + +msgid "Add a brim ear" +msgstr "Krašto \"ausys\"" + +msgid "Delete a brim ear" +msgstr "Ištrinti krašto \"ausį\"" + +msgid "Adjust section view" +msgstr "Pritaikyti sekcijos vaizdą" + +msgid "" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" +msgstr "" +"Įspėjimas: Jei krašto tipas nenustatytas kaip „pieštas“, krašto \"ausys\" " +"nebus įjungtos!" + +msgid "Set the brim type to \"painted\"" +msgstr "Nustatykite krašto tipą „pieštas“" + +msgid " invalid brim ears" +msgstr "netinkamos krašto \"ausys\"" + +msgid "Brim Ears" +msgstr "Krašto \"ausys\"" + +msgid "Please select single object." +msgstr "Pasirinkite vieną objektą." + +#: resources/data/hints.ini: [hint:Precise wall] +msgid "" +"Precise wall\n" +"Did you know that turning on precise wall can improve precision and layer " +"consistency?" +msgstr "" +"Tiksli siena\n" +"Ar žinojote, kad įjungus tikslią sienelę galima pagerinti tikslumą ir " +"sluoksnių nuoseklumą?" + +#: resources/data/hints.ini: [hint:Sandwich mode] +msgid "" +"Sandwich mode\n" +"Did you know that you can use sandwich mode (inner-outer-inner) to improve " +"precision and layer consistency if your model doesn't have very steep " +"overhangs?" +msgstr "" +"Sumuštinio režimas\n" +"Ar žinojote, kad galite naudoti daugiasluoksnį režimą (vidinis-išorinis-" +"vidinis), kad padidintumėte tikslumą ir sluoksnių nuoseklumą, jei jūsų " +"modelyje nėra labai stačių iškyšų?" + +#: resources/data/hints.ini: [hint:Chamber temperature] +msgid "" +"Chamber temperature\n" +"Did you know that OrcaSlicer supports chamber temperature?" +msgstr "" +"Kameros temperatūra\n" +"Ar žinojote, kad \"OrcaSlicer\" palaiko kameros temperatūrą?" + +#: resources/data/hints.ini: [hint:Calibration] +msgid "" +"Calibration\n" +"Did you know that calibrating your printer can do wonders? Check out our " +"beloved calibration solution in OrcaSlicer." +msgstr "" +"Kalibravimas\n" +"Ar žinojote, kad spausdintuvo kalibravimas gali padaryti stebuklus? " +"Išbandykite mūsų mėgstamą kalibravimo sprendimą \"OrcaSlicer\"." + +#: resources/data/hints.ini: [hint:Auxiliary fan] +msgid "" +"Auxiliary fan\n" +"Did you know that OrcaSlicer supports Auxiliary part cooling fan?" +msgstr "" +"Pagalbinis ventiliatorius\n" +"Ar žinojote, kad \"OrcaSlicer\" palaiko pagalbinį dalių aušinimo " +"ventiliatorių?" + +#: resources/data/hints.ini: [hint:Air filtration] +msgid "" +"Air filtration/Exhaust Fan\n" +"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" +msgstr "" +"Oro filtravimas / išmetimo ventiliatorius\n" +"Ar žinojote, kad \"OrcaSlicer\" gali palaikyti oro filtravimo / išmetimo " +"ventiliatorių?" + +#: resources/data/hints.ini: [hint:G-code window] +msgid "" +"G-code window\n" +"You can turn on/off the G-code window by pressing the C key." +msgstr "" +"G-kodo langas\n" +"G-kodo langą galite įjungti arba išjungti paspausdami klavišą C." + +#: resources/data/hints.ini: [hint:Switch workspaces] +msgid "" +"Switch workspaces\n" +"You can switch between Prepare and Preview workspaces by " +"pressing the Tab key." +msgstr "" +"Perjungti darbines erdves\n" +"Paspaudę Tab klavišą, galite perjungti Paruošti ir " +"Peržiūrėti darbines erdves." + +#: resources/data/hints.ini: [hint:How to use keyboard shortcuts] +msgid "" +"How to use keyboard shortcuts\n" +"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " +"3D scene operations." +msgstr "" +"Kaip naudoti sparčiuosius klavišus\n" +"Ar žinojote, kad \"Orca Slicer\" siūlo daugybę klaviatūros sparčiųjų klavišų " +"ir 3D scenos operacijų." + +#: resources/data/hints.ini: [hint:Reverse on odd] +msgid "" +"Reverse on odd\n" +"Did you know that Reverse on odd feature can significantly improve " +"the surface quality of your overhangs?" +msgstr "" +"Atvirkštinis ant nelyginio paviršiaus\n" +"Ar žinojote, kad atvirkštinio ant nelyginio paviršiaus funkcija gali " +"gerokai pagerinti jūsų iškyšų paviršiaus kokybę?" + +#: resources/data/hints.ini: [hint:Cut Tool] +msgid "" +"Cut Tool\n" +"Did you know that you can cut a model at any angle and position with the " +"cutting tool?" +msgstr "" +"Pjovimo įrankis\n" +"Ar žinojote, kad pjovimo įrankiu galite pjauti modelį bet kokiu kampu ir bet " +"kokioje padėtyje?" + +#: resources/data/hints.ini: [hint:Fix Model] +msgid "" +"Fix Model\n" +"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing " +"problems on the Windows system?" +msgstr "" +"Fiksuoti modelį\n" +"Ar žinojote, kad galite ištaisyti sugadintą 3D modelį ir išvengti daugybės " +"sluoksniavimo problemų \"Windows\" sistemoje?" + +#: resources/data/hints.ini: [hint:Timelapse] +msgid "" +"Timelapse\n" +"Did you know that you can generate a timelapse video during each print?" +msgstr "" +"Laiko intervalas\n" +"Ar žinojote, kad kiekvieno spausdinimo metu galite sukurti laiko intervalų " +"vaizdo įrašą?" + +#: resources/data/hints.ini: [hint:Auto-Arrange] +msgid "" +"Auto-Arrange\n" +"Did you know that you can auto-arrange all objects in your project?" +msgstr "" +"Automatinis išdėstymas\n" +"Ar žinojote, kad galite automatiškai išdėstyti visus projekto objektus?" + +#: resources/data/hints.ini: [hint:Auto-Orient] +msgid "" +"Auto-Orient\n" +"Did you know that you can rotate objects to an optimal orientation for " +"printing by a simple click?" +msgstr "" +"Automatinis orientavimas\n" +"Ar žinojote, kad objektus galima pasukti į optimalią spausdinimo orientaciją " +"vienu spustelėjimu?" + +#: resources/data/hints.ini: [hint:Lay on Face] +msgid "" +"Lay on Face\n" +"Did you know that you can quickly orient a model so that one of its faces " +"sits on the print bed? Select the \"Place on face\" function or press the " +"F key." +msgstr "" +"Padėti ant plokštumos\n" +"Ar žinojote, kad galite greitai suorientuoti modelį taip, kad viena jo " +"plokštuma būtų ant spausdinimo plokštės? Pasirinkite funkciją \"Padėti ant " +"plokštumos\" arba paspauskite klavišą F." + +#: resources/data/hints.ini: [hint:Object List] +msgid "" +"Object List\n" +"Did you know that you can view all objects/parts in a list and change " +"settings for each object/part?" +msgstr "" +"Objektų sąrašas\n" +"Ar žinojote, kad visus objektus/dalis galite peržiūrėti sąraše ir keisti " +"kiekvieno objekto/dalies nustatymus?" + +#: resources/data/hints.ini: [hint:Search Functionality] +msgid "" +"Search Functionality\n" +"Did you know that you use the Search tool to quickly find a specific Orca " +"Slicer setting?" +msgstr "" +"Paieškos funkcijos\n" +"Ar žinojote, kad naudodami paieškos įrankį galite greitai rasti konkretų " +"\"Orca Slicer\" nustatymą?" + +#: resources/data/hints.ini: [hint:Simplify Model] +msgid "" +"Simplify Model\n" +"Did you know that you can reduce the number of triangles in a mesh using the " +"Simplify mesh feature? Right-click the model and select Simplify model." +msgstr "" +"Supaprastinti modelį\n" +"Ar žinojote, kad galite sumažinti trikampių skaičių figūroje naudodami " +"funkciją \"Supaprastinti modelį\"? Dešiniuoju pelės klavišu spustelėkite " +"modelį ir pasirinkite Supaprastinti modelį." + +#: resources/data/hints.ini: [hint:Slicing Parameter Table] +msgid "" +"Slicing Parameter Table\n" +"Did you know that you can view all objects/parts on a table and change " +"settings for each object/part?" +msgstr "" +"Sluoksniavimo parametrų lentelė\n" +"Ar žinojote, kad lentelėje galite peržiūrėti visus objektus/dalis ir keisti " +"kiekvieno objekto/dalies nustatymus?" + +#: resources/data/hints.ini: [hint:Split to Objects/Parts] +msgid "" +"Split to Objects/Parts\n" +"Did you know that you can split a big object into small ones for easy " +"colorizing or printing?" +msgstr "" +"Skirstymas į objektus/dalis\n" +"Ar žinojote, kad didelį objektą galite suskaidyti į mažesnius, kad būtų " +"lengviau jį nuspalvinti ar spausdinti?" + +#: resources/data/hints.ini: [hint:Subtract a Part] +msgid "" +"Subtract a Part\n" +"Did you know that you can subtract one mesh from another using the Negative " +"part modifier? That way you can, for example, create easily resizable holes " +"directly in Orca Slicer." +msgstr "" +"Atimti dalį\n" +"Ar žinojote, kad galite atimti vieną figūrą iš kitos naudodami modifikatorių " +"\"Negatyvioji dalis\"? Taip galite, pavyzdžiui, tiesiogiai \"Orca Slicer\" " +"programoje kurti lengvai keičiamo dydžio skyles." + +#: resources/data/hints.ini: [hint:STEP] +msgid "" +"STEP\n" +"Did you know that you can improve your print quality by slicing a STEP file " +"instead of an STL?\n" +"Orca Slicer supports slicing STEP files, providing smoother results than a " +"lower resolution STL. Give it a try!" +msgstr "" +"STEP\n" +"Ar žinojote, kad spausdinimo kokybę galite pagerinti sluoksniuodami ne STL, " +"o STEP failą?\n" +"\"Orca Slicer\" palaiko STEP failų sluoksniavimą ir užtikrina sklandesnį " +"rezultatą nei mažesnės raiškos STL. Išbandykite!" + +#: resources/data/hints.ini: [hint:Z seam location] +msgid "" +"Z seam location\n" +"Did you know that you can customize the location of the Z seam, and even " +"paint it on your print, to have it in a less visible location? This improves " +"the overall look of your model. Check it out!" +msgstr "" +"Z siūlės vieta\n" +"Ar žinojote, kad galite keisti Z siūlės vietą ir net nupiešti ją ant " +"spaudinio, kad ji būtų mažiau matomoje vietoje? Tai pagerina bendrą modelio " +"išvaizdą. Patikrinkite!" + +#: resources/data/hints.ini: [hint:Fine-tuning for flow rate] +msgid "" +"Fine-tuning for flow rate\n" +"Did you know that flow rate can be fine-tuned for even better-looking " +"prints? Depending on the material, you can improve the overall finish of the " +"printed model by doing some fine-tuning." +msgstr "" +"Tikslus srauto greičio reguliavimas\n" +"Ar žinojote, kad srauto greitį galima tiksliai sureguliuoti, kad spaudiniai " +"atrodytų dar geriau? Priklausomai nuo medžiagos, atlikdami smulkų " +"reguliavimą galite pagerinti bendrą atspausdinto modelio apdailą." + +#: resources/data/hints.ini: [hint:Split your prints into plates] +msgid "" +"Split your prints into plates\n" +"Did you know that you can split a model that has a lot of parts into " +"individual plates ready to print? This will simplify the process of keeping " +"track of all the parts." +msgstr "" +"Suskirstykite atspaudus į plokštes\n" +"Ar žinojote, kad daug dalių turintį modelį galite padalyti į atskiras " +"spausdinti paruoštas plokštes? Tai supaprastins visų dalių apskaitos procesą." + +#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer +#: Height] +msgid "" +"Speed up your print with Adaptive Layer Height\n" +"Did you know that you can print a model even faster, by using the Adaptive " +"Layer Height option? Check it out!" +msgstr "" +"Spartinkite spausdinimą naudodami prisitaikantį sluoksnio aukštį\n" +"Ar žinojote, kad naudodami parinktį Prisitaikantis sluoksnio aukštis galite " +"spausdinti modelį dar greičiau? Patikrinkite!" + +#: resources/data/hints.ini: [hint:Support painting] +msgid "" +"Support painting\n" +"Did you know that you can paint the location of your supports? This feature " +"makes it easy to place the support material only on the sections of the " +"model that actually need it." +msgstr "" +"Atramų piešimas\n" +"Ar žinojote, kad galite nupiešti savo atramų vietą? Ši funkcija leidžia " +"lengvai naudoti atraminę medžiagą tik tose modelio dalyse, kuriose jos iš " +"tikrųjų reikia." + +#: resources/data/hints.ini: [hint:Different types of supports] +msgid "" +"Different types of supports\n" +"Did you know that you can choose from multiple types of supports? Tree " +"supports work great for organic models, while saving filament and improving " +"print speed. Check them out!" +msgstr "" +"Įvairių tipų atramos\n" +"Ar žinojote, kad galite rinktis iš kelių tipų atramų? Medžio formos atramos " +"puikiai tinka organiniams modeliams, taupo gijas ir padidina spausdinimo " +"greitį. Išbandykite jas!" + +#: resources/data/hints.ini: [hint:Printing Silk Filament] +msgid "" +"Printing Silk Filament\n" +"Did you know that Silk filament needs special consideration to print it " +"successfully? Higher temperature and lower speed are always recommended for " +"the best results." +msgstr "" +"Spausdinimas šilko gija\n" +"Ar žinojote, kad norint sėkmingai atspausdinti šilko giją reikia ypatingo " +"dėmesio? Siekiant geriausių rezultatų, visada rekomenduojama aukštesnė " +"temperatūra ir mažesnis greitis." + +#: resources/data/hints.ini: [hint:Brim for better adhesion] +msgid "" +"Brim for better adhesion\n" +"Did you know that when printed models have a small contact interface with " +"the printing surface, it's recommended to use a brim?" +msgstr "" +"Kraštas geresniam sukibimui\n" +"Ar žinojote, kad kai spausdinimo modeliai turi nedidelę sąlyčio sąsają su " +"spausdinimo paviršiumi, rekomenduojama naudoti kraštą?" + +#: resources/data/hints.ini: [hint:Set parameters for multiple objects] +msgid "" +"Set parameters for multiple objects\n" +"Did you know that you can set slicing parameters for all selected objects at " +"one time?" +msgstr "" +"Kelių objektų parametrų nustatymas\n" +"Ar žinojote, kad sluoksniavimo parametrus vienu metu galite nustatyti " +"visiems pasirinktiems objektams?" + +#: resources/data/hints.ini: [hint:Stack objects] +msgid "" +"Stack objects\n" +"Did you know that you can stack objects as a whole one?" +msgstr "" +"Daiktų krūva\n" +"Ar žinojote, kad objektus galima sudėti į krūvą kaip vieną?" + +#: resources/data/hints.ini: [hint:Flush into support/objects/infill] +msgid "" +"Flush into support/objects/infill\n" +"Did you know that you can save the wasted filament by flushing them into " +"support/objects/infill during filament change?" +msgstr "" +"Išleisti į atramas/objektus/užpildymą\n" +"Ar žinojote, kad keičiant gijas galima sutaupyti išeikvotų gijų, jas " +"nuleidžiant į atramas/objektus/užpildymą?" + +#: resources/data/hints.ini: [hint:Improve strength] +msgid "" +"Improve strength\n" +"Did you know that you can use more wall loops and higher sparse infill " +"density to improve the strength of the model?" +msgstr "" +"Padidinkite stiprumą\n" +"Ar žinojote, kad modelio tvirtumui padidinti galite naudoti daugiau sienų " +"kontūrų ir didesnį reto užpildo tankį?" + +#: resources/data/hints.ini: [hint:When need to print with the printer door +#: opened] +#, fuzzy +msgid "" +"When do you need to print with the printer door opened?\n" +"Did you know that opening the printer door can reduce the probability of " +"extruder/hotend clogging when printing lower temperature filament with a " +"higher enclosure temperature? More info about this in the Wiki." +msgstr "" +"Kai reikia spausdinti atidarius spausdintuvo dureles\n" +"Ar žinojote, kad atidarius spausdintuvo dureles gali sumažėti ekstruderio ir " +"(arba) karštosios jungties užsikimšimo tikimybė, kai spausdinate žemesnės " +"temperatūros filamentą su aukštesne korpuso temperatūra. Daugiau " +"informacijos apie tai rasite \"Wiki\"." + +#: resources/data/hints.ini: [hint:Avoid warping] +msgid "" +"Avoid warping\n" +"Did you know that when printing materials that are prone to warping such as " +"ABS, appropriately increasing the heatbed temperature can reduce the " +"probability of warping." +msgstr "" +"Išvengti deformacijos\n" +"Ar žinojote, kad spausdinant medžiagas, kurios linkusios deformuotis, " +"pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima " +"sumažinti deformavimosi tikimybę." + +#~ msgid "ShiftLeft mouse button" +#~ msgstr "Shift + kairys pelės mygtukas" + +#~ msgid "Unselect" +#~ msgstr "Išjungti pasirinkimą" + +#~ msgctxt "Verb" +#~ msgid "Scale" +#~ msgstr "Mastelis" + +#, c-format, boost-format +#~ msgid "Connect failed [%d]!" +#~ msgstr "Prisijungti nepavyko [%d]!" + +#~ msgid "Initialize failed (Device connection not ready)!" +#~ msgstr "Inicijavimas nepavyko (Įrenginio ryšys neparuoštas)!" + +#~ msgid "Initialize failed (Storage unavailable, insert SD card.)!" +#~ msgstr "Inicijavimas nepavyko (Saugykla neprieinama, įdėkite SD kortelę!)" + +#, c-format, boost-format +#~ msgid "Initialize failed (%s)!" +#~ msgstr "Inicijavimas nepavyko (%s)!" + +#~ msgid "" +#~ "We have added an experimental style \"Tree Slim\" that features smaller " +#~ "support volume but weaker strength.\n" +#~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." +#~ msgstr "" +#~ "Pridėjome eksperimentinį atraminės struktūros stilių pavadinimu \"Tree " +#~ "Slim\". Šis stilius pasižymi mažesniu atraminio taškelio tūriu, tačiau " +#~ "turi mažesnį tvirtumą.\n" +#~ "Rekomenduojame jį naudoti su šiais parametrais: 0 sąsajos sluoksnių, 0 " +#~ "viršutinio atstumo, 2 sienelės." + +#~ msgid "" +#~ "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the " +#~ "following settings: at least 2 interface layers, at least 0.1mm top z " +#~ "distance or using support materials on interface." +#~ msgstr "" +#~ "Rekomenduojami nustatymai \"Tree Strong\" ir \"Tree Hybrid\" atraminėms " +#~ "struktūroms: Mažiausiai 2 sąsajos sluoksniai, mažiausiai 0,1 mm " +#~ "viršutinis z atstumas arba naudojamos atraminės medžiagos sąsajoje." + +#~ msgid "Lift Z Enforcement" +#~ msgstr "Priverstinis Z pakėlimas" + +#~ msgid "LAN Connection Failed (Sending print file)" +#~ msgstr "LAN ryšys nepavyko (spausdinimo failo siuntimas)" + +#~ msgid "Step 3: Ping the IP address to check for packet loss and latency." +#~ msgstr "" +#~ "3 veiksmas: Ping IP adresą, kad patikrintumėte paketų praradimą ir " +#~ "vėlavimą." + +#~ msgid "IP and Access Code Verified! You may close the window" +#~ msgstr "Patikrintas IP ir prieigos kodas! Galite uždaryti langą" + +#~ msgid "" +#~ "Enable this option to optimize part cooling fan speed for overhang and " +#~ "bridge to get better cooling" +#~ msgstr "" +#~ "Įjunkite šią parinktį, kad optimizuotumėte dalies aušinimo " +#~ "ventiliatoriaus greitį iškyšai ir tilteliui ir užtikrintumėte geresnį " +#~ "aušinimą" + +#~ msgid "Fan speed for overhang" +#~ msgstr "Ventiliatoriaus greitis dėl iškyšos" + +#~ msgid "" +#~ "Force part cooling fan to be this speed when printing bridge or overhang " +#~ "wall which has large overhang degree. Forcing cooling for overhang and " +#~ "bridge can get better quality for these part" +#~ msgstr "" +#~ "Spausdindami tiltus arba iškyšas, kurių iškyšos laipsnis didelis, " +#~ "priverstinai nustatykite tokį aušinimo ventiliatoriaus greitį. " +#~ "Priverstinai aušinant iškyšas ir tiltus galima užtikrinti geresnę šių " +#~ "dalių kokybę" + +#~ msgid "Cooling overhang threshold" +#~ msgstr "Iškyšos aušinimo riba" + +#, c-format +#~ msgid "" +#~ "Force cooling fan to be specific speed when overhang degree of printed " +#~ "part exceeds this value. Expressed as percentage which indicates how much " +#~ "width of the line without support from lower layer. 0% means forcing " +#~ "cooling for all outer wall no matter how much overhang degree" +#~ msgstr "" +#~ "Priversti aušinimo ventiliatorių veikti tam tikru greičiu, kai " +#~ "atspausdintos dalies iškyšos laipsnis viršija šią vertę. Išreiškiama " +#~ "procentais, kurie rodo, kokio pločio linija be apatinio sluoksnio " +#~ "atramos. 0% reiškia, kad aušinti priverčiama visą išorinę sienelę, " +#~ "nesvarbu, koks yra iškyšos laipsnis." + +#~ msgid "" +#~ "Density of external bridges. 100% means solid bridge. Default is 100%." +#~ msgstr "" +#~ "Išorinių tiltų tankis. 100 % reiškia vientisą tiltą. Numatytoji reikšmė " +#~ "yra 100 %." + +#~ msgid "Thick bridges" +#~ msgstr "Stori tiltai" + +#~ msgid "Z-hop when retract" +#~ msgstr "Z šuolis, kai įtraukiama" + +#~ msgid "Branch Diameter with double walls" +#~ msgstr "Šakos skersmuo su dvigubomis sienelėmis" + +#~ msgid "" +#~ "Branches with area larger than the area of a circle of this diameter will " +#~ "be printed with double walls for stability. Set this value to zero for no " +#~ "double walls." +#~ msgstr "" +#~ "Šakos, kurių plotas didesnis nei šio skersmens apskritimo plotas, bus " +#~ "atspausdintos su dvigubomis sienelėmis dėl stabilumo. Nustatykite šią " +#~ "vertę lygią nuliui, kad nebūtų dvigubų sienelių." + +#, c-format, boost-format +#~ msgid "Support: generate toolpath at layer %d" +#~ msgstr "Atramos: generuoti įrankių trajektoriją sluoksnyje %d" + +#~ msgid "Support: detect overhangs" +#~ msgstr "Atramos: aptikti iškyšas" + +#~ msgid "Support: propagate branches" +#~ msgstr "Atramos: skleisti šakas" + +#~ msgid "Support: draw polygons" +#~ msgstr "Atramos: piešti daugiakampius" + +#~ msgid "Support: generate toolpath" +#~ msgstr "Atramos: generuoti įrankių trajektoriją" + +#, c-format, boost-format +#~ msgid "Support: generate polygons at layer %d" +#~ msgstr "Atramos: generuoti daugiakampius sluoksnyje %d" + +#, c-format, boost-format +#~ msgid "Support: fix holes at layer %d" +#~ msgstr "Atramos: ištaisyti skyles sluoksnyje %d" + +#, c-format, boost-format +#~ msgid "Support: propagate branches at layer %d" +#~ msgstr "Atramos: skleisti šakas sluoksnyje %d" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index 0e0f7d5215..632d9ebd6b 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" "X-Generator: Poedit 3.4.4\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Ondersteuning (Support) tekenen" msgid "Alt + Mouse wheel" @@ -110,7 +110,7 @@ msgstr "Op zijde leggen" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Het aantal filamenten overschrijdt het maximale aantal dat het " @@ -592,10 +592,10 @@ msgstr "Draadmodel tonen" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Kan niet toepassen bij een voorvertoning." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "De toepassing wordt al geannuleerd. Wacht even alstublieft." msgid "Face recognition" @@ -785,7 +785,7 @@ msgid "Change Text Type" msgstr "" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Stijl(%1%) hernoemen voor reliëftekst" msgid "Name can't be empty." @@ -1002,8 +1002,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Kan niet exact hetzelfde lettertype laden(\"%1%\"). Er is een vergelijkbaar " "lettertype(\"%2%\") geselecteerd. U moet een lettertype opgeven om tekst te " @@ -1131,7 +1131,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1303,7 +1303,7 @@ msgid "Measure" msgstr "Maatregel" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "Bevestig explosieverhouding = 1 en selecteer ten minste één object" msgid "Please select at least one object." @@ -1342,8 +1342,6 @@ msgid "" "Select 2 points or circles on objects and \n" " specify distance between them." msgstr "" -"Select 2 points or circles on objects and \n" -" specify distance between them." msgid "Face" msgstr "Face" @@ -1358,53 +1356,51 @@ msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"Feature 1 has been reset, \n" -"feature 2 has been feature 1" -msgid "Warning:please select Plane's feature." -msgstr "Warning: please select Plane's feature." +msgid "Warning: please select Plane's feature." +msgstr "" -msgid "Warning:please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." +msgstr "" -msgid "Warning:please select two different mesh." -msgstr "Warning: please select two different meshes." +msgid "Warning: please select two different meshes." +msgstr "" msgid "Copy to clipboard" msgstr "Kopieer naar klembord" msgid "Perpendicular distance" -msgstr "Perpendicular distance" +msgstr "" msgid "Distance" -msgstr "Distance" +msgstr "" msgid "Direct distance" -msgstr "Direct distance" +msgstr "" msgid "Distance XYZ" -msgstr "Distance XYZ" +msgstr "" msgid "Parallel" -msgstr "Parallel" +msgstr "" msgid "Center coincidence" -msgstr "Center coincidence" +msgstr "" -msgid "Featue 1" +msgid "Feature 1" msgstr "Feature 1" msgid "Reverse rotation" -msgstr "Reverse rotation" +msgstr "" msgid "Rotate around center:" -msgstr "Rotate around center:" +msgstr "" msgid "Parallel distance:" msgstr "" msgid "Flip by Face 2" -msgstr "Flip by Face 2" +msgstr "" msgid "Ctrl+" msgstr "Ctrl+" @@ -1447,7 +1443,7 @@ msgstr "" "herkend." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer zal sluiten, omdat het geen geheugen meer heeft. Dit kan een bug " @@ -1574,17 +1570,17 @@ msgid "new or open project file is not allowed during the slicing process!" msgstr "nieuw of geopend projectbestand is niet toegestaan tijdens het slicen!" msgid "Open Project" -msgstr "Open project" +msgstr "" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de " "nieuwste versie voordat deze normaal kan worden gebruikt" msgid "Privacy Policy Update" -msgstr "Privacy Policy Update" +msgstr "" msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " @@ -1788,7 +1784,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1879,16 +1875,16 @@ msgstr "Uitspoelen in de ondersteuning van objecten" msgid "Edit in Parameter Table" msgstr "Bewerken in de parametertabel" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Omzetten vanuit inch" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Terugzetten naar inch" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Omzetten vanuit meter" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Terugzetten naar meter" msgid "Assemble" @@ -2152,16 +2148,11 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." msgstr "" -"This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed .\n" -"\n" -"To manipulate with solid parts or negative volumes you have to invalidate " -"cut information first." msgid "Delete all connectors" msgstr "Verwijder alle vberbindingen" @@ -2169,7 +2160,7 @@ msgstr "Verwijder alle vberbindingen" msgid "Deleting the last solid part is not allowed." msgstr "Het is niet toegestaand om het laaste vaste deel te verwijderen." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "" "Het doelbestand bevat slechts 1 onderdeel en kan daarom niet worden " "opgesplitst." @@ -2178,7 +2169,7 @@ msgid "Assembly" msgstr "Montage" msgid "Cut Connectors information" -msgstr "Cut Connectors information" +msgstr "" msgid "Object manipulation" msgstr "Objectmanipulatie" @@ -2214,14 +2205,14 @@ msgid "Selection conflicts" msgstr "Selectieconflicten" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Als het eerste geselecteerde item een object is, dient het tweede item ook " "een object te zijn." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Als het eerst geselecteerde item een onderdeel is, moet het tweede een " "onderdeel van hetzelfde object zijn." @@ -2278,10 +2269,10 @@ msgid "to" msgstr "naar" msgid "Remove height range" -msgstr "Remove height range" +msgstr "" msgid "Add height range" -msgstr "Add height range" +msgstr "" msgid "Invalid numeric." msgstr "Onjuist getal." @@ -2291,7 +2282,7 @@ msgstr "" "één cel kan alleen naar één of meerdere cellen in dezelfde kolom worden " "gekopieerd" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "Het kopiëren van meerdere cellen wordt niet ondersteund." msgid "Outside" @@ -2313,13 +2304,13 @@ msgid "Mouse ear" msgstr "" msgid "Outer brim only" -msgstr "Outer brim only" +msgstr "" msgid "Inner brim only" -msgstr "Inner brim only" +msgstr "" msgid "Outer and inner brim" -msgstr "Outer and inner brim" +msgstr "" msgid "No-brim" msgstr "Geen extra rand (brim)" @@ -2370,13 +2361,13 @@ msgid "Custom" msgstr "Aangepast" msgid "Pause:" -msgstr "Pause:" +msgstr "" msgid "Custom Template:" -msgstr "Custom Template:" +msgstr "" msgid "Custom G-code:" -msgstr "Custom G-code:" +msgstr "" msgid "Custom G-code" msgstr "Aangepaste G-code" @@ -2394,40 +2385,40 @@ msgid "Add Pause" msgstr "Pauze toevoegen" msgid "Insert a pause command at the beginning of this layer." -msgstr "Insert a pause command at the beginning of this layer." +msgstr "" msgid "Add Custom G-code" msgstr "Aangepaste G-code toevoegen" msgid "Insert custom G-code at the beginning of this layer." -msgstr "Insert custom G-code at the beginning of this layer." +msgstr "" msgid "Add Custom Template" -msgstr "Aangepaste sjabloon toevoegen" +msgstr "" msgid "Insert template custom G-code at the beginning of this layer." -msgstr "Insert template custom G-code at the beginning of this layer." +msgstr "" msgid "Filament " msgstr "Filament " msgid "Change filament at the beginning of this layer." -msgstr "Change filament at the beginning of this layer." +msgstr "" msgid "Delete Pause" msgstr "Pauze verwijderen" msgid "Delete Custom Template" -msgstr "Delete Custom Template" +msgstr "" msgid "Edit Custom G-code" -msgstr "Edit Custom G-code" +msgstr "" msgid "Delete Custom G-code" -msgstr "Delete Custom G-code" +msgstr "" msgid "Delete Filament Change" -msgstr "Delete Filament Change" +msgstr "" msgid "No printer" msgstr "Geen printer" @@ -2439,25 +2430,25 @@ msgid "Failed to connect to the server" msgstr "Verbinding maken met de server is mislukt" msgid "Check the status of current system services" -msgstr "Check the status of current system services" +msgstr "" msgid "code" -msgstr "code" +msgstr "" msgid "Failed to connect to cloud service" -msgstr "Failed to connect to cloud service" +msgstr "" msgid "Please click on the hyperlink above to view the cloud service status" -msgstr "Please click on the hyperlink above to view the cloud service status" +msgstr "" msgid "Failed to connect to the printer" msgstr "Verbinding maken met de printer is mislukt" msgid "Connection to printer failed" -msgstr "Connection to printer failed" +msgstr "" msgid "Please check the network connection of the printer and Orca." -msgstr "Please check the network connection of the printer and Orca." +msgstr "" msgid "Connecting..." msgstr "Verbinden..." @@ -2475,13 +2466,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "Auto Refill" +msgstr "" msgid "AMS not connected" msgstr "AMS niet aangesloten" msgid "Load" -msgstr "Load" +msgstr "" msgid "Unload" msgstr "Lossen" @@ -2540,7 +2531,7 @@ msgid "Check filament location" msgstr "Controleer de positie van het filament" msgid "Grab new filament" -msgstr "Grab new filament" +msgstr "" msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " @@ -2553,8 +2544,8 @@ msgid "Edit" msgstr "Bewerken" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "De geselecteerde objecten bevinden zich op een vergrendeld printbed.\n" "Deze objecten kunnen niet automatisch worden gerangschikt." @@ -2563,8 +2554,8 @@ msgid "No arrangeable objects are selected." msgstr "Er zijn geen objecten geselecteerd die geschikt kunnen worden." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Dit printbed is vergrendeld,\n" "Het is niet mogelijk om automatisch te rangschikken op dit printbed." @@ -2604,15 +2595,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "De geselecteerde objecten bevinden zich op een vergrendeld printbed.\n" "Deze objecten kunnen niet automatisch worden georiënteerd." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Dit printbed is vergrendeld,\n" "Het is niet mogelijk om automatisch te orienteren op dit printbed." @@ -2630,10 +2621,10 @@ msgid "Filling" msgstr "Vullen" msgid "Bed filling canceled." -msgstr "Bed filling canceled." +msgstr "" msgid "Bed filling done." -msgstr "Bed filling done." +msgstr "" msgid "Searching for optimal orientation" msgstr "Zoeken naar optimale oriëntatie" @@ -2657,52 +2648,44 @@ msgid "Abnormal print file data. Please slice again." msgstr "Abnormal print file data: please slice again." msgid "Task canceled." -msgstr "Task canceled." +msgstr "" msgid "Upload task timed out. Please check the network status and try again." -msgstr "Upload task timed out. Please check the network status and try again." +msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Verbinding met cloudservice is mislukt. Probeer het nog eens." -msgid "Print file not found. please slice again." -msgstr "Print file not found; please slice again." +msgid "Print file not found. Please slice again." +msgstr "" msgid "" "The print file exceeds the maximum allowable size (1GB). Please simplify the " "model and slice again." msgstr "" -"The print file exceeds the maximum allowable size (1GB). Please simplify the " -"model and slice again." msgid "Failed to send the print job. Please try again." msgstr "Het verzenden van de printopdracht is mislukt. Probeer het opnieuw." msgid "Failed to upload file to ftp. Please try again." -msgstr "Failed to upload file to ftp. Please try again." +msgstr "" msgid "" "Check the current status of the bambu server by clicking on the link above." msgstr "" -"Check the current status of the Bambu Lab server by clicking on the link " -"above." msgid "" "The size of the print file is too large. Please adjust the file size and try " "again." msgstr "" -"The size of the print file is too large. Please adjust the file size and try " -"again." -msgid "Print file not found, Please slice it again and send it for printing." -msgstr "Print file not found; please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." +msgstr "" msgid "" "Failed to upload print file to FTP. Please check the network status and try " "again." msgstr "" -"Failed to upload print file via FTP. Please check the network status and try " -"again." msgid "Sending print job over LAN" msgstr "Printopdracht verzenden via LAN" @@ -2736,10 +2719,10 @@ msgstr "" "Er moet een MicroSD-kaart worden geplaatst voordat er via LAN kan worden " "afgedrukt." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "G-codebestand verzenden via LAN" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "G-codebestand naar microSD-kaart verzenden" #, c-format, boost-format @@ -2752,33 +2735,29 @@ msgstr "" "wordt gestuurd." msgid "Importing SLA archive" -msgstr "Importing SLA archive" +msgstr "" msgid "" "The SLA archive doesn't contain any presets. Please activate some SLA " "printer preset first before importing that SLA archive." msgstr "" -"The SLA archive doesn't contain any presets. Please activate some SLA " -"printer presets first before importing that SLA archive." msgid "Importing canceled." -msgstr "Importing canceled." +msgstr "" msgid "Importing done." -msgstr "Importing done." +msgstr "" msgid "" "The imported SLA archive did not contain any presets. The current SLA " "presets were used as fallback." msgstr "" -"The imported SLA archive did not contain any presets. The current SLA " -"presets were used as fallback." msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "You cannot load an SLA project with a multi-part object on the bed" +msgstr "" msgid "Please check your object list before preset changing." -msgstr "Please check your object list before preset changing." +msgstr "" msgid "Attention!" msgstr "Let op!" @@ -2789,10 +2768,10 @@ msgstr "Downloaden" msgid "Download failed" msgstr "Downloaden mislukt" -msgid "Cancelled" +msgid "Canceled" msgstr "Geannuleerd" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Succesvol geïnstalleerd." msgid "Installing" @@ -2863,9 +2842,6 @@ msgstr "Bevestigen" msgid "Close" msgstr "Sluiten" -msgid "Colour" -msgstr "Kleur" - msgid "" "Nozzle\n" "Temperature" @@ -2904,13 +2880,13 @@ msgstr "" "ondersteund." msgid "Setting Virtual slot information while printing is not supported" -msgstr "Setting Virtual slot information while printing is not supported" +msgstr "" msgid "Are you sure you want to clear the filament information?" -msgstr "Are you sure you want to clear the filament information?" +msgstr "" msgid "You need to select the material type and color first." -msgstr "You need to select the material type and color first." +msgstr "" #, c-format, boost-format msgid "Please input a valid value (K in %.1f~%.1f)" @@ -2921,13 +2897,13 @@ msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)" msgstr "" msgid "Other Color" -msgstr "Other Color" +msgstr "" msgid "Custom Color" -msgstr "Custom Color" +msgstr "" msgid "Dynamic flow calibration" -msgstr "Dynamic flow calibration" +msgstr "Dynamische flow kalibratie" msgid "" "The nozzle temp and max volumetric speed will affect the calibration " @@ -3030,17 +3006,13 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" -"Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases: when the lid is open or the " -"desiccant pack is changed. It takes a few hours to absorb the moisture, and " -"low temperatures also slow down the process." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Configureer welke AMS-sleuf moet worden gebruikt voor een filament dat voor " "de printopdracht wordt gebruikt." @@ -3060,7 +3032,7 @@ msgstr "AMS niet inschakelen" msgid "Print using materials mounted on the back of the case" msgstr "Print met filament op een externe spoel." -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Printen met filament in AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3082,18 +3054,13 @@ msgstr "De printer ondersteunt automatisch bijvullen momenteel niet." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" -"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" -"If there are two identical filaments in an AMS, AMS filament backup will be " -"enabled. \n" -"(This currently supports automatic supply of consumables with the same " -"brand, material type, and color)" msgid "DRY" msgstr "DRY" @@ -3115,7 +3082,7 @@ msgstr "" "nieuw Bambu Lab filament. Dit duurt ongeveer 20 seconden." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Opmerking: als er tijdens het printen een nieuw filament wordt geplaatst, " @@ -3133,8 +3100,8 @@ msgstr "Update gegevens bij aanzetten" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "De AMS leest automatisch de informatie van het ingevoegde filament bij het " "opstarten. Dit duurt ongeveer 1 minuut. Tijdens het leesproces zullen de " @@ -3162,24 +3129,22 @@ msgstr "" "wordt de resterende capaciteit automatisch bijgewerkt." msgid "AMS filament backup" -msgstr "AMS filament backup" +msgstr "" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS gaat automatisch verder met een andere spoel met dezelfde filament " "eigenschappen wanneer het huidige filament op is." msgid "Air Printing Detection" -msgstr "Air Printing Detection" +msgstr "" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" -"Detects clogging and filament grinding, halting printing immediately to " -"conserve time and filament." msgid "File" msgstr "Bestand" @@ -3231,7 +3196,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Sla uw project alstublieft op en herstart het programma." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "De G-code van het vorige bestand wordt verwerkt..." msgid "Slicing complete" @@ -3250,19 +3215,19 @@ msgid "Overflow" msgstr "Overloop" msgid "Underflow" -msgstr "Underflow" +msgstr "Onderflow" msgid "Floating reserved operand" msgstr "Zwevende gereserveerde operand" msgid "Stack overflow" -msgstr "Stack overflow" +msgstr "" msgid "Running post-processing scripts" msgstr "Het uitvoeren van post-processing scripts" msgid "Successfully executed post-processing script" -msgstr "Successfully executed post-processing script" +msgstr "" msgid "Unknown error occurred during exporting G-code." msgstr "Onbekende fout opgetreden tijdens exporteren van de G-code." @@ -3315,12 +3280,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr ".gcode-bestand geëxporteerd naar %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Onbekende fout tijdens het exporteren van de G-code" #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3340,10 +3305,10 @@ msgid "Device" msgstr "Apparaat" msgid "Task Sending" -msgstr "Task Sending" +msgstr "" msgid "Task Sent" -msgstr "Task Sent" +msgstr "" msgid "Edit multiple printers" msgstr "" @@ -3375,16 +3340,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "Device Name" +msgstr "" msgid "Task Name" -msgstr "Task Name" +msgstr "" msgid "Device Status" -msgstr "Device Status" +msgstr "" msgid "Actions" -msgstr "Actions" +msgstr "" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3403,7 +3368,7 @@ msgid "Upgrading" msgstr "" msgid "Incompatible" -msgstr "Incompatible" +msgstr "" msgid "syncing" msgstr "" @@ -3451,28 +3416,28 @@ msgid "Resume" msgstr "Hervatten" msgid "Stop" -msgstr "Stop" +msgstr "" msgid "Task Status" -msgstr "Task Status" +msgstr "" msgid "Sent Time" -msgstr "Sent Time" +msgstr "" msgid "There are no tasks to be sent!" -msgstr "There are no tasks to be sent!" +msgstr "" msgid "No historical tasks!" -msgstr "No historical tasks!" +msgstr "" msgid "Loading..." msgstr "Laden..." msgid "No AMS" -msgstr "No AMS" +msgstr "" msgid "Send to Multi-device" -msgstr "Send to Multi-device" +msgstr "" msgid "Preparing print job" msgstr "Print opdracht voorbereiden" @@ -3487,22 +3452,22 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "Use External Spool" +msgstr "" msgid "Use AMS" -msgstr "Use AMS" +msgstr "" msgid "Select Printers" -msgstr "Select Printers" +msgstr "" -msgid "Ams Status" -msgstr "AMS Status" +msgid "AMS Status" +msgstr "" msgid "Printing Options" -msgstr "Printing Options" +msgstr "" msgid "Bed Leveling" -msgstr "Bed leveling" +msgstr "" msgid "Timelapse" msgstr "Timelapse" @@ -3511,25 +3476,22 @@ msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "Send Options" +msgstr "" msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" "printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" +msgstr "" msgid "Wait" -msgstr "Wait" +msgstr "" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" -"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Send" msgstr "Versturen" @@ -3553,7 +3515,7 @@ msgid "The name is not allowed to end with space character." msgstr "Het is niet toegestaan om een naam met een spatie te laten eindigen." msgid "The name length exceeds the limit." -msgstr "The name length exceeds the limit." +msgstr "" msgid "Origin" msgstr "Begin" @@ -3629,18 +3591,16 @@ msgid "Bed Shape" msgstr "Printbed vorm" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"De aanbevolen minimumtemperatuur is lager dan 190 graden of de aanbevolen " -"maximumtemperatuur is hoger dan 300 graden.\n" +"De aanbevolen minimumtemperatuur is lager dan 190°C of de aanbevolen " +"maximumtemperatuur is hoger dan 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" -"The recommended minimum temperature cannot be higher than the recommended " -"maximum temperature.\n" msgid "Please check.\n" msgstr "Controleer het.\n" @@ -3657,11 +3617,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "De aanbevolen mondstuk temperatuur voor dit type filament is [%d, %d] graden " -"Celsius" +"Celsius." msgid "" "Too small max volumetric speed.\n" @@ -3672,9 +3632,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "De huidige kamertemperatuur is hoger dan de veilige temperatuur van het " "materiaal; dit kan leiden tot verzachting van het materiaal en verstoppingen " @@ -3739,7 +3699,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3790,18 +3750,16 @@ msgid "" "Spiral mode only works when wall loops is 1, support is disabled, top shell " "layers is 0, sparse infill density is 0 and timelapse type is traditional." msgstr "" -"Spiral mode only works when wall loops is 1, support is disabled, top shell " -"layers is 0, sparse infill density is 0 and timelapse type is traditional." msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Maar machines met een I3-structuur genereren geen timelapsevideo's." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Wilt u de voorgestelde instellingen automatisch aanpassen? \n" +"Wilt u de voorgestelde instellingen automatisch aanpassen?\n" "Ja - Pas de instellingen aan en zet de vaas modus automatisch aan\n" "Nee - Pas de vaas modus deze keer niet toe" @@ -3812,7 +3770,7 @@ msgid "Heatbed preheating" msgstr "Printbed opwarmen" msgid "Sweeping XY mech mode" -msgstr "Sweeping XY mech mode" +msgstr "" msgid "Changing filament" msgstr "Filament wordt gewisseld" @@ -3856,7 +3814,7 @@ msgstr "Printen is onderbroken door de gebruiker" msgid "Pause of front cover falling" msgstr "Pauze cover printkop los" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Micro Lidar wordt gecalibreerd" msgid "Calibrating extrusion flow" @@ -3893,8 +3851,8 @@ msgstr "Gepauzeerd vanwege een fout in de temperatuurregeling van de kamer" msgid "Cooling chamber" msgstr "Koelkamer" -msgid "Paused by the Gcode inserted by user" -msgstr "Gepauzeerd door de Gcode ingevoegd door gebruiker" +msgid "Paused by the G-code inserted by user" +msgstr "Gepauzeerd door de G-code ingevoegd door gebruiker" msgid "Motor noise showoff" msgstr "Motorgeluid showoff" @@ -3937,32 +3895,23 @@ msgstr "Updaten mislukt." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." -msgstr "" -"The current chamber temperature or the target chamber temperature exceeds " "45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." +msgstr "" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " -"above 45℃." -msgstr "" "Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " "to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." +msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " -"automatically be set to 0℃." -msgstr "" -"When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." +msgstr "" -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Het starten van de printopdracht is mislukt" msgid "" @@ -3976,7 +3925,7 @@ msgstr "Huidige stroomsnelheid cali param is ongeldig" msgid "Selected diameter and machine diameter do not match" msgstr "Geselecteerde diameter en machinediameter komen niet overeen" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Cali G-code niet gegenereerd" msgid "Calibration error" @@ -3989,14 +3938,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF wordt niet ondersteund door AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Vochtige PVA zal flexibel worden en vast komen te zitten in de AMS, zorg er " "dus voor dat je het droogt voor gebruik." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "CF/GF-filamenten zijn hard en bros. Ze kunnen gemakkelijk breken of vast " @@ -4012,7 +3961,7 @@ msgstr "" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -4053,7 +4002,7 @@ msgid "Specific for %1%" msgstr "" msgid "Presets" -msgstr "Presets" +msgstr "" msgid "Print settings" msgstr "Print instellingen" @@ -4071,7 +4020,7 @@ msgid "parameter name" msgstr "parameternaam" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s kan geen percentage zijn" #, c-format, boost-format @@ -4083,7 +4032,7 @@ msgstr "Parametervalidatie" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Value %s is out of range. The valid range is from %d to %d." +msgstr "" msgid "Value is out of range." msgstr "Waarde is buiten het bereik." @@ -4160,7 +4109,7 @@ msgstr "Ventilatorsnelheid:" msgid "Temperature: " msgstr "Temperatuur:" -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "G-codes worden geladen" msgid "Generating geometry vertex data" @@ -4170,7 +4119,7 @@ msgid "Generating geometry index data" msgstr "Geometrie-indexgegevens genereren" msgid "Statistics of All Plates" -msgstr "Statistics of All Plates" +msgstr "" msgid "Display" msgstr "Tonen" @@ -4191,7 +4140,7 @@ msgid "Total time" msgstr "Totale tijd" msgid "Total cost" -msgstr "Total cost" +msgstr "" msgid "up to" msgstr "tot" @@ -4274,10 +4223,7 @@ msgstr "Print" msgid "Printer" msgstr "Printer" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4287,10 +4233,10 @@ msgid "Normal mode" msgstr "Normale modus" msgid "Total Filament" -msgstr "Total Filament" +msgstr "" msgid "Model Filament" -msgstr "Model Filament" +msgstr "" msgid "Prepare time" msgstr "Voorbereidingstijd" @@ -4362,7 +4308,7 @@ msgid "Tool Move" msgstr "Beweeg tool" msgid "Tool Rotate" -msgstr "Tool Rotate" +msgstr "" msgid "Move Object" msgstr "Beweeg object" @@ -4386,7 +4332,7 @@ msgid "Spacing" msgstr "Uitlijning" msgid "0 means auto spacing." -msgstr "0 means auto spacing." +msgstr "" msgid "Auto rotate for arrangement" msgstr "Automatisch roteren voor rankschikking" @@ -4403,8 +4349,11 @@ msgstr "Uitlijnen op Y-as" msgid "Add plate" msgstr "Printbed toevoegen" -msgid "Auto orient" -msgstr "Automatisch oriënteren" +msgid "Auto orient all/selected objects" +msgstr "Automatisch oriënteren alle/geselecteerde objecten" + +msgid "Auto orient all objects on current plate" +msgstr "Automatisch oriënteren alle objecten op het huidige printbed" msgid "Arrange all objects" msgstr "Alle objecten rangschikken" @@ -4427,7 +4376,7 @@ msgstr "Printbed selecteren" msgid "Assembly Return" msgstr "Montage terug" -msgid "return" +msgid "Return" msgstr "Terug" msgid "Paint Toolbar" @@ -4456,24 +4405,24 @@ msgstr "Maat:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Er bevind zich een object buiten de grenzen van de printplaat." msgid "A G-code path goes beyond the max print height." msgstr "Een G-codepad gaat verder dan de maximale printhoogte." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Een G-code pad treedt buiten de grenzen van de printplaat." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Alleen het object waaraan gewerkt wordt is zichtbaar." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4489,7 +4438,7 @@ msgid "Micro lidar calibration" msgstr "Micro Lidar Kalibratie" msgid "Bed leveling" -msgstr "Bed leveling" +msgstr "" msgid "Vibration compensation" msgstr "Trillingscompensatie" @@ -4554,7 +4503,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Printer aansluiten (LAN)" msgid "Please input the printer access code:" @@ -4601,7 +4550,7 @@ msgid "No" msgstr "Nee" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "will be closed before creating a new model. Do you want to continue?" +msgstr "" msgid "Slice plate" msgstr "Slice printbed" @@ -4854,19 +4803,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4878,26 +4827,26 @@ msgstr "" msgid "Show &Labels" msgstr "Toon &Labels" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Toon objectlabels in 3D-scène" msgid "Show &Overhang" -msgstr "Show &Overhang" +msgstr "" -msgid "Show object overhang highlight in 3D scene" -msgstr "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." +msgstr "" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" msgstr "Voorkeuren" msgid "Help" -msgstr "Help" +msgstr "Hulp" msgid "Temperature Calibration" msgstr "Temperatuurkalibratie" @@ -4936,7 +4885,7 @@ msgid "Retraction test" msgstr "Retractietest" msgid "Orca Tolerance Test" -msgstr "Orca Tolerance Test" +msgstr "" msgid "Max flowrate" msgstr "Max flowrate" @@ -4994,7 +4943,7 @@ msgid "&View" msgstr "&Bekijken" msgid "&Help" -msgstr "&Help" +msgstr "&Hulp" #, c-format, boost-format msgid "A file exists with the same name: %s, do you want to overwrite it?" @@ -5026,7 +4975,7 @@ msgstr[0] "" msgstr[1] "" msgid "Export result" -msgstr "Export resultaat" +msgstr "Exporteer resultaat" msgid "Select profile to load:" msgstr "Selecteer het te laden profiel:" @@ -5057,13 +5006,13 @@ msgid "Filament Settings" msgstr "Filament instellingen" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Wil je je persoonlijke gegevens van Bambu Cloud synchroniseren? \n" +"Wil je je persoonlijke gegevens van Bambu Cloud synchroniseren?\n" "Het bevat de volgende informatie:\n" "1. Voorinstellingen verwerken\n" "2. Voorinstellingen voor filament\n" @@ -5096,7 +5045,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "De printercamera werkt niet goed." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Er heeft zich een probleem voorgedaan. Werk de printerfirmware bij en " "probeer het opnieuw." @@ -5104,7 +5053,6 @@ msgstr "" msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." msgstr "Voer het IP-adres in van de printer waarmee u verbinding wilt maken." @@ -5116,7 +5064,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Verbinding mislukt. Controleer het netwerk en probeer het opnieuw" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Controleer het netwerk en probeer het opnieuw. U kunt de printer opnieuw " @@ -5191,7 +5139,7 @@ msgid "Switch to video files." msgstr "Schakel over naar videobestanden." msgid "Switch to 3mf model files." -msgstr "Switch to 3mf model files." +msgstr "" msgid "Delete selected files from printer." msgstr "Verwijder geselecteerde bestanden van de printer." @@ -5212,7 +5160,7 @@ msgid "Refresh" msgstr "Vernieuwen" msgid "Reload file list from printer." -msgstr "Reload file list from printer." +msgstr "" msgid "No printers." msgstr "Geen printers." @@ -5224,14 +5172,12 @@ msgid "No files" msgstr "Geen bestanden" msgid "Load failed" -msgstr "Load failed" +msgstr "" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" -"Browsing file in SD card is not supported in current firmware. Please update " -"the printer firmware." msgid "" "Please check if the SD card is inserted into the printer.\n" @@ -5242,10 +5188,10 @@ msgstr "" "formatteren." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN Connection Failed (Failed to view sdcard)" +msgstr "" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "Browsing file in SD card is not supported in LAN Only Mode." +msgstr "" #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" @@ -5255,17 +5201,17 @@ msgstr[0] "" msgstr[1] "" msgid "Delete files" -msgstr "Delete files" +msgstr "" #, c-format, boost-format msgid "Do you want to delete the file '%s' from printer?" -msgstr "Do you want to delete the file '%s' from printer?" +msgstr "" msgid "Delete file" -msgstr "Delete file" +msgstr "" msgid "Fetching model information..." -msgstr "Fetching model information..." +msgstr "" msgid "Failed to fetch model information from printer." msgstr "Mislukt bij het ophalen van modelgegevens van de printer." @@ -5274,8 +5220,8 @@ msgid "Failed to parse model information." msgstr "Mislukt bij het parsen van modelinformatie." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" #, c-format, boost-format @@ -5287,8 +5233,6 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" -"File: %s\n" -"Title: %s\n" msgid "Download waiting..." msgstr "Download wacht..." @@ -5310,8 +5254,6 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Reconnecting the printer, the operation cannot be completed immediately, " -"please try again later." msgid "File does not exist." msgstr "Bestand bestaat niet." @@ -5375,7 +5317,7 @@ msgid "0" msgstr "0" msgid "Layer: N/A" -msgstr "Layer: N/A" +msgstr "" msgid "Clear" msgstr "Wissen" @@ -5384,8 +5326,6 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" -"You have completed printing the mall model, \n" -"but synchronizing rating information has failed." msgid "How do you like this printing file?" msgstr "Wat vind je van dit afdrukbestand?" @@ -5416,7 +5356,7 @@ msgid "Control" msgstr "Besturing" msgid "Printer Parts" -msgstr "Printer Parts" +msgstr "" msgid "Print Options" msgstr "Print Opties" @@ -5455,26 +5395,24 @@ msgid "Downloading..." msgstr "Downloaden..." msgid "Cloud Slicing..." -msgstr "Cloud Slicing..." +msgstr "" #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead." -msgstr "In Cloud Slicing Queue, there are %s tasks ahead of you." +msgstr "" #, c-format, boost-format msgid "Layer: %s" -msgstr "Layer: %s" +msgstr "" #, c-format, boost-format msgid "Layer: %d/%d" -msgstr "Layer: %d/%d" +msgstr "" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Verwarm het mondstuk tot boven de 170 graden voordat u filament laadt of " -"lost." +"Verwarm het mondstuk tot boven de 170°C voordat u filament laadt of lost." msgid "Still unload" msgstr "Nog steeds aan het ontladen" @@ -5482,7 +5420,7 @@ msgstr "Nog steeds aan het ontladen" msgid "Still load" msgstr "Laad nog steeds" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Selecteer een AMS-slot voor de kalibratie." msgid "" @@ -5505,7 +5443,7 @@ msgid "Sport" msgstr "Sport" msgid "Ludicrous" -msgstr "Ludicrous" +msgstr "" msgid "Can't start this without SD card." msgstr "Kan niet starten zonder microSD-kaart." @@ -5531,14 +5469,11 @@ msgstr "Indienen" msgid "Please click on the star first." msgstr "Klik eerst op de ster." -msgid "InFo" -msgstr "Informatie" - msgid "Get oss config failed." msgstr "Het ophalen van de oss-configuratie is mislukt." msgid "Upload Pictures" -msgstr "Upload Pictures" +msgstr "" msgid "Number of images successfully uploaded" msgstr "Aantal afbeeldingen succesvol geüpload" @@ -5552,8 +5487,8 @@ msgstr " upload config prase mislukt\n" msgid " No corresponding storage bucket\n" msgstr " Geen bijbehorende opslag bucket\n" -msgid " can not be opened\n" -msgstr " cannot be opened\n" +msgid " cannot be opened\n" +msgstr "" msgid "" "The following issues occurred during the process of uploading images. Do you " @@ -5579,13 +5514,10 @@ msgid "obtaining instance_id failed\n" msgstr "het verkrijgen van instance_id is mislukt\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" -"\n" -" error code: " -msgstr "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " +msgstr "" msgid "error message: " msgstr "foutmelding: " @@ -5593,15 +5525,12 @@ msgstr "foutmelding: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" -msgstr "" -"\n" -"\n" "Would you like to redirect to the webpage to give a rating?" +msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Sommige afbeeldingen zijn niet geüpload. Wilt u doorverwijzen naar de " "webpagina voor beoordeling?" @@ -5611,7 +5540,7 @@ msgstr "Je kunt tot 16 afbeeldingen selecteren." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "At least one successful print record of this print profile is required \n" "to give a positive rating (4 or 5 stars)." @@ -5656,7 +5585,7 @@ msgid "Newer 3mf version" msgstr "Nieuwere versie 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5679,7 +5608,7 @@ msgid "Latest Version: " msgstr "Laatste versie: " msgid "Not for now" -msgstr "Not for now" +msgstr "" msgid "Server Exception" msgstr "" @@ -5746,7 +5675,7 @@ msgid "Open Folder." msgstr "Open bestandsmap." msgid "Safely remove hardware." -msgstr "Safely remove hardware." +msgstr "" #, c-format, boost-format msgid "%1$d Object has custom supports." @@ -5770,7 +5699,7 @@ msgstr[1] "" #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "" msgstr[1] "" @@ -5795,7 +5724,7 @@ msgstr "Fout:" msgid "Warning:" msgstr "Waarschuwing:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Succesvol geëxporteerd" msgid "Model file downloaded." @@ -5813,10 +5742,10 @@ msgstr " Klik hier om het te installeren." msgid "WARNING:" msgstr "WAARSCHUWING:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Er zijn delen van het model die support nodig hebben. Zet support aan." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "G-code pad overlap" msgid "Support painting" @@ -5826,7 +5755,7 @@ msgid "Color painting" msgstr "Kleur aanbrengen" msgid "Cut connectors" -msgstr "Cut connectors" +msgstr "" msgid "Layers" msgstr "Lagen" @@ -5893,7 +5822,7 @@ msgid "Allow Prompt Sound" msgstr "Promptgeluid toestaan" msgid "Filament Tangle Detect" -msgstr "Filament Tangle Detection" +msgstr "" msgid "Nozzle Clumping Detection" msgstr "Detectie van klontvorming in mondstuk" @@ -6036,8 +5965,6 @@ msgid "" "Already did a synchronization, do you want to sync only changes or resync " "all?" msgstr "" -"Already did a synchronization; do you want to sync only changes or resync " -"all?" msgid "Sync" msgstr "Sync" @@ -6062,7 +5989,7 @@ msgstr "Wilt u de wijzigingen opslaan in \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Succesvol ontkoppeld. Het apparaat %s(%s) kan nu veilig van de computer " @@ -6124,8 +6051,8 @@ msgstr "Laad 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "Versie %s van de 3mf is nieuwer dan versie %s van %s. De volgende sleutels " "worden niet herkend:" @@ -6142,31 +6069,32 @@ msgstr "" "software te upgraden." msgid "Invalid values found in the 3mf:" -msgstr "Invalid values found in the 3mf:" +msgstr "" msgid "Please correct them in the param tabs" -msgstr "Please correct them in the Param tabs" - -msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "The 3mf has following modified G-code in filament or printer presets:" +msgstr "" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"The 3mf has the following modified G-code in filament or printer presets:" +msgstr "" + +msgid "" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Controleer of deze aangepaste G-codes veilig zijn om schade aan de machine " "te voorkomen!" -msgid "Modified G-codes" -msgstr "Modified G-code" +msgid "Modified G-code" +msgstr "" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "De 3mf heeft de volgende aangepaste voorinstellingen voor filament of " "printer:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Controleer of de G-codes in deze presets veilig zijn om schade aan de " @@ -6184,7 +6112,7 @@ msgstr "" "verschijnen!" msgid "Remember my choice." -msgstr "Remember my choice." +msgstr "" #, boost-format msgid "Failed loading file \"%1%\". An invalid configuration was found." @@ -6203,7 +6131,7 @@ msgid "" " Do you want to scale to millimeters?" msgstr "" "Het object uit bestand %s is erg klein, en misschien in meters of inches.\n" -" Wil je schalen naar millimeters?" +" Wil je schalen naar millimeters?" msgid "Object too small" msgstr "He tobject is te klein" @@ -6233,8 +6161,8 @@ msgid "The file does not contain any geometry data." msgstr "Het bestand bevat geen geometriegegevens." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Uw object lijkt te groot. Wilt u het verkleinen zodat het automatisch op het " "printbed past?" @@ -6259,23 +6187,18 @@ msgid "" "The file %s already exists\n" "Do you want to replace it?" msgstr "" -"The file %s already exists.\n" -"Do you want to replace it?" msgid "Confirm Save As" msgstr "Opslaan als bevestigen" msgid "Delete object which is a part of cut object" -msgstr "Delete object which is a part of cut object" +msgstr "" msgid "" "You try to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed." msgstr "" -"You are trying to delete an object which is a part of a cut object.\n" -"This action will break a cut correspondence.\n" -"After that, model consistency can't be guaranteed." msgid "The selected object couldn't be split." msgstr "Het geselecteerde object kan niet opgesplitst worden." @@ -6343,7 +6266,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Voorvertoning modus:\n" "Het geladen bestand bevat alleen G-code, hierdoor is het niet mogelijk om " @@ -6379,13 +6302,13 @@ msgid "prepare 3mf file..." msgstr "voorbereiden van 3mf bestand..." msgid "Download failed, unknown file format." -msgstr "Download failed; unknown file format." +msgstr "" -msgid "downloading project ..." +msgid "downloading project..." msgstr "project downloaden..." msgid "Download failed, File size exception." -msgstr "Download failed; File size exception." +msgstr "" #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6418,7 +6341,7 @@ msgstr "Importeer SLA-archief" msgid "The selected file" msgstr "Het geselecteerde bestand" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "Bevat geen geldige G-code" msgid "Error occurs while loading G-code file" @@ -6462,10 +6385,10 @@ msgstr "Er kan slechts 1 G-code bestand tegelijkertijd geopend worden." msgid "G-code loading" msgstr "G-Code wordt geladen" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-Code bestanden en modellen kunnen niet tegelijk geladen worden!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Modellen kunnen niet worden toegevoegd in voorbeeldmodus" msgid "All objects will be removed, continue?" @@ -6509,31 +6432,27 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try again." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try again." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "Reason: part \"%1%\" is empty." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "Reason: part \"%1%\" does not bound a volume." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "Reason: part \"%1%\" has self intersection." +msgstr "" #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "Reason: \"%1%\" and another part have no intersection." +msgstr "" msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be exported." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be exported." msgid "" "Are you sure you want to store original SVGs with their local paths into the " @@ -6575,11 +6494,11 @@ msgid "Invalid number" msgstr "Ongeldig nummer" msgid "Plate Settings" -msgstr "Plate Settings" +msgstr "" #, boost-format msgid "Number of currently selected parts: %1%\n" -msgstr "Number of currently selected parts: %1%\n" +msgstr "" #, boost-format msgid "Number of currently selected objects: %1%\n" @@ -6625,8 +6544,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" @@ -6788,6 +6707,12 @@ msgstr "" "Als dit is ingeschakeld wordt de vrij beweegbare camera gebruikt, anders een " "vaste camera." +msgid "Swap pan and rotate mouse buttons" +msgstr "Wissel de pan- en rotatiemuisknoppen om" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Als deze optie is ingeschakeld, worden de pan- en rotatiefuncties van de linker- en rechtermuisknop omgedraaid." + msgid "Reverse mouse zoom" msgstr "Omgekeerde muiszoom" @@ -6839,15 +6764,13 @@ msgstr "" "Als dit is ingeschakeld, onthoudt Orca automatisch de filament-/" "procesconfiguratie voor elke printer en schakelt deze automatisch om." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Beheer van meerdere apparaten (Werkt nadat Orca opnieuw is opgestart)." msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." msgid "Auto arrange plate after cloning" msgstr "Plaat automatisch rangschikken na het klonen" @@ -6858,7 +6781,7 @@ msgstr "Automatische rangschikking van de plaat na het klonen van een object" msgid "Network" msgstr "Netwerk" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/" "proces)" @@ -6935,7 +6858,7 @@ msgstr "Maximaal aantal recente projecten" msgid "Clear my choice on the unsaved projects." msgstr "Wis keuze voor niet-opgeslagen projecten." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Geen waarschuwingen bij het laden van 3MF met aangepaste G-codes" msgid "Auto-Backup" @@ -6954,7 +6877,7 @@ msgid "The period of backup in seconds." msgstr "De periode van de back-up in seconden." msgid "Downloads" -msgstr "Downloads" +msgstr "" msgid "Dark Mode" msgstr "Donkere modus" @@ -7005,16 +6928,16 @@ msgid "Mouse wheel reverses when zooming" msgstr "Omgekeerde scrollrichting tijdens het zoomen" msgid "Enable SSL(MQTT)" -msgstr "Enable SSL(MQTT)" +msgstr "" msgid "Enable SSL(FTP)" -msgstr "Enable SSL(FTP)" +msgstr "" msgid "Internal developer mode" -msgstr "Internal developer mode" +msgstr "" msgid "Log Level" -msgstr "Log level" +msgstr "" msgid "fatal" msgstr "fataal" @@ -7052,10 +6975,10 @@ msgstr "debug opslaan knop" msgid "save debug settings" msgstr "bewaar debug instellingen" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "De debug instellingen zijn succesvol opgeslagen!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Cloudomgeving geschakeld; log alsjeblieft nogmaals in!" msgid "System presets" @@ -7070,11 +6993,11 @@ msgstr "Onbruikbare voorinstellingen" msgid "AMS filaments" msgstr "AMS-filament" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Klik om de filament kleur te kiezen" -msgid "Please choose the filament colour" -msgstr "Please choose the filament color" +msgid "Please choose the filament color" +msgstr "" msgid "Add/Remove presets" msgstr "Voorinstellingen toevoegen/verwijderen" @@ -7091,7 +7014,7 @@ msgstr "Filament toevoegen/verwijderen" msgid "Add/Remove materials" msgstr "Materialen toevoegen/verwijderen" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Printers selecteren/verwijderen (systeemvoorinstellingen)" msgid "Create printer" @@ -7101,7 +7024,7 @@ msgid "The selected preset is null!" msgstr "De geselecteerde preset is nul!" msgid "End" -msgstr "End" +msgstr "" msgid "Customize" msgstr "Aanpassen" @@ -7116,7 +7039,7 @@ msgid "Plate name" msgstr "Plaat naam" msgid "Same as Global Print Sequence" -msgstr "Same as Global Print Sequence" +msgstr "" msgid "Print sequence" msgstr "Afdrukvolgorde" @@ -7134,7 +7057,7 @@ msgid "First layer filament sequence" msgstr "Eerste laag filamentvolgorde" msgid "Same as Global Plate Type" -msgstr "Same as Global Plate Type" +msgstr "" msgid "Same as Global Bed Type" msgstr "Hetzelfde als Global Bed Type" @@ -7165,14 +7088,14 @@ msgstr "3mf bestand uploaden" msgid "Jump to model publish web page" msgstr "Ga naar de website om het model te publiceren" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Notitie: het voorbereiden kan enkele minuten duren. Even geduld alstublieft." msgid "Publish" msgstr "Publiceren" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Het publiceren is geannuleerd" msgid "Slicing Plate 1" @@ -7197,7 +7120,7 @@ msgstr "Voorinstelling binnen project" msgid "Name is unavailable." msgstr "Naam is niet beschikbaar." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Het overschrijven van een systeem profiel is niet toegestaan" #, boost-format @@ -7205,12 +7128,14 @@ msgid "Preset \"%1%\" already exists." msgstr "Voorinstelling \"%1%\" bestaat al." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "Voorinstelling \"%1%\" bestaat al en is niet compatibel met de huidige " "printer." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Let er aub op dat opslaan de voorinstelling zal overschrijven" msgid "The name cannot be the same as a preset alias name." @@ -7307,7 +7232,7 @@ msgid "send completed" msgstr "versturen gelukt" msgid "Error code" -msgstr "Error code" +msgstr "" msgid "No login account, only printers in LAN mode are displayed" msgstr "Geen login-account, alleen printers in LAN-modus worden weergegeven" @@ -7394,8 +7319,6 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" -"The selected printer (%s) is incompatible with the chosen printer profile in " -"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "" @@ -7419,8 +7342,6 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" -"When spiral vase mode is enabled, machines with I3 structure will not " -"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." @@ -7435,13 +7356,10 @@ msgid "Please check the following:" msgstr "Controleer het volgende:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"The printer type selected when generating G-Code is not consistent with the " -"currently selected printer. It is recommended that you use the same printer " -"type for slicing." msgid "" "There are some unknown filaments in the AMS mappings. Please check whether " @@ -7471,19 +7389,18 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Het printen van materiaal met een hoge temperatuur (%s materiaal) met %s kan " "schade aan het mondstuk veroorzaken" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Please fix the error above, otherwise printing cannot continue." +msgstr "" msgid "" "Please click the confirm button if you still want to proceed with printing." msgstr "" -"Please click the confirm button if you still want to proceed with printing." msgid "" "Connecting to the printer. Unable to cancel during the connection process." @@ -7498,7 +7415,7 @@ msgstr "" "mislukken vanwege het verstrooide oppervlak." msgid "Automatic flow calibration using Micro Lidar" -msgstr "Automatic flow calibration using the Micro Lidar" +msgstr "" msgid "Modifying the device name" msgstr "De naam van het apparaat wijzigen" @@ -7522,7 +7439,6 @@ msgstr "" msgid "An SD card needs to be inserted before send to printer SD card." msgstr "" -"A MicroSD card needs to be inserted before sending to the printer SD card." msgid "The printer is required to be in the same LAN as Orca Slicer." msgstr "De printer moet zich in hetzelfde LAN bevinden als Orca Slicer." @@ -7579,7 +7495,7 @@ msgid "Pin Code" msgstr "Pincode" msgid "Binding..." -msgstr "Binding..." +msgstr "" msgid "Please confirm on the printer screen" msgstr "Bevestig dit op het printerscherm" @@ -7590,7 +7506,7 @@ msgstr "Inloggen mislukt. Controleer de pincode." msgid "Log in printer" msgstr "Inloggen op printer" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Wil je met het huidige account inloggen op de printer?" msgid "Check the reason" @@ -7603,17 +7519,12 @@ msgid "Terms and Conditions" msgstr "Algemene voorwaarden" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " -"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " -"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." -msgstr "" "Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " "device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " "Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." +msgstr "" msgid "and" msgstr "en" @@ -7622,10 +7533,10 @@ msgid "Privacy Policy" msgstr "Privacybeleid" msgid "We ask for your help to improve everyone's printer" -msgstr "We ask for your help to improve everyone's printer" +msgstr "" msgid "Statement about User Experience Improvement Program" -msgstr "Statement about User Experience Improvement Program" +msgstr "" #, c-format, boost-format msgid "" @@ -7635,26 +7546,15 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" -"In the 3D Printing community, we learn from each other's successes and " -"failures to adjust our own slicing parameters and settings. %s follows the " -"same principle and uses machine learning to improve its performance from the " -"successes and failures of the vast number of prints by our users. We are " -"training %s to be smarter by feeding them the real-world data. If you are " -"willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " -"not collect any Personal Data by which an individual can be identified " -"directly or indirectly, including without limitation names, addresses, " -"payment information, or phone numbers. By enabling this service, you agree " -"to these terms and the statement about Privacy Policy." msgid "Statement on User Experience Improvement Plan" -msgstr "Statement on User Experience Improvement Plan" +msgstr "" msgid "Log in successful." msgstr "Inloggen gelukt." @@ -7693,7 +7593,7 @@ msgstr "" "voorinstelling." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Een Prime-toren is vereist voor een vloeiende timeplase-modus. Er kunnen " @@ -7701,7 +7601,7 @@ msgstr "" "prime-toren wilt uitschakelen?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "Een prime-toren is vereist voor een vloeiende timelapse-modus. Er kunnen " @@ -7712,22 +7612,18 @@ msgid "Still print by object?" msgstr "Print je nog steeds per object?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Deze instellingen automatisch wijzigen? \n" +"Deze instellingen automatisch wijzigen?\n" "Ja - Wijzig deze instellingen automatisch\n" "Nee - Wijzig deze instellingen niet voor mij" @@ -7753,13 +7649,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "De laaghoogte overschrijdt de limiet in Printerinstellingen -> Extruder -> " "Laaghoogtelimieten, dit kan problemen met de afdrukkwaliteit veroorzaken." -msgid "Adjust to the set range automatically? \n" -msgstr "Automatisch aanpassen aan het ingestelde bereik? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Automatisch aanpassen aan het ingestelde bereik?\n" msgid "Adjust" msgstr "Aanpassen" @@ -7769,8 +7665,8 @@ msgstr "Negeer" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Experimentele functie: Het filament op grotere afstand terugtrekken en " @@ -7780,9 +7676,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Experimentele functie: Het filament op grotere afstand terugtrekken en " "afsnijden tijdens filamentwisselingen om flush te minimaliseren. Hoewel het " @@ -8033,34 +7929,34 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" msgstr "Cool (koud) printbed" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Dit is de bedtemperatuur wanneer de koelplaat is geïnstalleerd. Een waarde " "van 0 betekent dat het filament printen op de Cool Plate niet ondersteunt." -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -msgid "Engineering plate" -msgstr "Engineering plaat" +msgid "Engineering Plate" +msgstr "Engineering plate (technisch printbed)" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Dit is de bedtemperatuur wanneer de technische plaat is geïnstalleerd. Een " "waarde van 0 betekent dat het filament afdrukken op de Engineering Plate " @@ -8070,9 +7966,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Gladde PEI-plaat / Hoge temperatuurplaat" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Bedtemperatuur wanneer gladde PEI-plaat/hoge temperatuurplaat is " "geïnstalleerd. Waarde 0 betekent dat het filament niet geschikt is voor " @@ -8082,8 +7978,8 @@ msgid "Textured PEI Plate" msgstr "Getextureerde PEI-plaat" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Bedtemperatuur wanneer een getextureerde PEI-plaat is geïnstalleerd. 0 " "betekent dat het filament niet wordt ondersteund op de getextureerde PEI-" @@ -8147,13 +8043,13 @@ msgstr "Filament einde G-code" msgid "Wipe tower parameters" msgstr "Afveegblokparameters" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Toolwisselparameter voor multi-materialprinters met één extruder" msgid "Ramming settings" msgstr "Ramming-instellingen" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" msgid "Dependencies" @@ -8165,7 +8061,7 @@ msgstr "Profielafhankelijkheden" msgid "Printable space" msgstr "Ruimte waarbinnen geprint kan worden" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "" @@ -8188,8 +8084,8 @@ msgstr "" msgid "Accessory" msgstr "Accessoire" -msgid "Machine gcode" -msgstr "Machine gcode" +msgid "Machine G-code" +msgstr "" msgid "Machine start G-code" msgstr "Machine start G-code" @@ -8206,7 +8102,7 @@ msgstr "G-Code voor de laag wijziging" msgid "Layer change G-code" msgstr "G-code laag wijzigen" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "Time-lapse G-code" msgid "Change filament G-code" @@ -8299,7 +8195,7 @@ msgstr "" "%d Filament Preset en %d Process Preset zijn gekoppeld aan deze printer. " "Deze voorinstellingen worden verwijderd als de printer wordt verwijderd." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" "Presets die door andere presets worden geërfd, kunnen niet worden verwijderd!" @@ -8319,11 +8215,11 @@ msgstr[0] "De volgende voorinstelling zal ook verwijderd worden@" msgstr[1] "De volgende voorinstelling zal ook verwijderd worden@" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Weet je zeker dat je de geselecteerde preset wilt verwijderen? \n" +"Weet je zeker dat je de geselecteerde preset wilt verwijderen?\n" "Als de voorinstelling overeenkomt met een filament dat momenteel in gebruik " "is op je printer, reset dan de filamentinformatie voor die sleuf." @@ -8433,14 +8329,12 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "You have changed some settings of preset \"%1%\"." +msgstr "" msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" -"\n" -"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8449,7 +8343,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "You have previously modified your settings." +msgstr "" msgid "" "\n" @@ -8470,7 +8364,7 @@ msgid "Show all presets (including incompatible)" msgstr "Toon alle presets (inclusief incompatibele)" msgid "Select presets to compare" -msgstr "Select presets to compare" +msgstr "" msgid "" "You can only transfer to current active profile because it has been modified." @@ -8531,7 +8425,7 @@ msgstr "Er is een nieuwe versie beschikbaar" msgid "Configuration update" msgstr "Configuratie update" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "" "Er is een installatiebestand met een nieuwe configuratie. Wilt u deze " "installeren?" @@ -8542,13 +8436,13 @@ msgstr "Omschrijving:" msgid "Configuration incompatible" msgstr "De configuratie is niet geschikt" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "Het configuratie bestand is niet compatibel met de huidige toepassing." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Het configuratiepakket is niet compatibel met de huidige toepassing.\n" "%s zal het configuratiepakket bijwerken. Anders kan het niet starten." @@ -8557,73 +8451,69 @@ msgstr "" msgid "Exit %s" msgstr "Exit %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" "Het configuratie bestand is niet compatibel met de huidige versie van Bambu " "Studio." msgid "Configuration updates" -msgstr "Configuratie updates" +msgstr "" msgid "No updates available." -msgstr "Geen updates beschikbaar." +msgstr "" msgid "The configuration is up to date." -msgstr "De configuratie is up to date." +msgstr "" msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "" msgid "Recommended " -msgstr "Recommended " +msgstr "" msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "" msgid "Quick set:" -msgstr "Quick set:" +msgstr "" msgid "Color match" -msgstr "Color match" +msgstr "" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "" msgid "Append" -msgstr "Append" +msgstr "" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "" msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "" msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "" msgid "Map Filament" -msgstr "Map Filament" +msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" msgid "Ramming customization" msgstr "Ramming aanpassen" @@ -8731,7 +8621,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" @@ -8757,7 +8647,7 @@ msgid "Objects list" msgstr "Object lijst" msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files" -msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files" +msgstr "" msgid "⌘+Shift+G" msgstr "⌘+Shift+G" @@ -8783,16 +8673,16 @@ msgid "Global shortcuts" msgstr "Globale snelkoppelingen" msgid "Rotate View" -msgstr "Rotate View" +msgstr "" msgid "Pan View" -msgstr "Pan View" +msgstr "" msgid "Mouse wheel" msgstr "Muiswiel" msgid "Zoom View" -msgstr "Zoom View" +msgstr "" msgid "Shift+A" msgstr "Shift+A" @@ -8801,13 +8691,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Oriënteert automatisch geselecteerde objecten of alle objecten. Als er " "geselecteerde objecten zijn, oriënteert het alleen de geselecteerde " -"objecten. Anders oriënteert het alle objecten op de disk." +"objecten. Anders worden alle objecten van het project georiënteerd." + +msgid "Auto orients all objects on the active plate." +msgstr "" msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8917,8 +8810,11 @@ msgstr "Gizmo roteren" msgid "Gizmo cut" msgstr "Gizmo snijden" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Plaats gebied op het bed" +msgid "Gizmo place face on bed" +msgstr "Gizmo plaats gebied op het bed" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo mesh booleaan" msgid "Gizmo SLA support points" msgstr "Gizmo SLA-ondersteuningspunten" @@ -8926,8 +8822,17 @@ msgstr "Gizmo SLA-ondersteuningspunten" msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM seam schilderen" -msgid "Gizmo Text emboss / engrave" -msgstr "" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo tekst reliëf/graveren" + +msgid "Gizmo measure" +msgstr "Gizmo maatregel" + +msgid "Gizmo assemble" +msgstr "Gizmo monteren" + +msgid "Gizmo brim ears" +msgstr "Gizmo rand oren" msgid "Zoom in" msgstr "Zoom in" @@ -8968,8 +8873,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Stel het extrudernnumer in voor de objecten en onderdelen" -msgid "Delete objects, parts, modifiers " -msgstr "Verwijder objecten, onderdelen, aanpassingen " +msgid "Delete objects, parts, modifiers" +msgstr "Verwijder objecten, onderdelen, aanpassingen" msgid "Select the object/part and press space to change the name" msgstr "" @@ -9001,7 +8906,7 @@ msgstr "Horizontale schuifbalk - Beweeg actieve duim naar rechts" msgid "On/Off one layer mode of the vertical slider" msgstr "Aan/uit één laagmodus van de verticale schuifregelaar" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "" msgid "Move slider 5x faster" @@ -9020,7 +8925,7 @@ msgid "Release Note" msgstr "Release-opmerkingen" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "versie %s update informatie:" msgid "Network plug-in update" @@ -9033,7 +8938,7 @@ msgstr "" "volgende keer wordt gestart." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "" "Een nieuwe netwerk plug-in (%s) is beschikbaar. Wilt je deze installeren?" @@ -9044,43 +8949,43 @@ msgid "Skip this Version" msgstr "Deze versie overslaan" msgid "Done" -msgstr "Done" +msgstr "" msgid "resume" -msgstr "resume" +msgstr "" msgid "Resume Printing" -msgstr "Resume Printing" +msgstr "" -msgid "Resume Printing(defects acceptable)" -msgstr "Resume Printing (defects acceptable)" +msgid "Resume Printing (defects acceptable)" +msgstr "" -msgid "Resume Printing(problem solved)" -msgstr "Resume Printing (problem solved)" +msgid "Resume Printing (problem solved)" +msgstr "" msgid "Stop Printing" -msgstr "Stop Printing" +msgstr "" msgid "Check Assistant" -msgstr "Check Assistant" +msgstr "" msgid "Filament Extruded, Continue" -msgstr "Filament Extruded, Continue" +msgstr "" msgid "Not Extruded Yet, Retry" -msgstr "Not Extruded Yet, Retry" +msgstr "" msgid "Finished, Continue" -msgstr "Finished, Continue" +msgstr "" msgid "Load Filament" msgstr "Filament laden" msgid "Filament Loaded, Resume" -msgstr "Filament Loaded, Resume" +msgstr "" msgid "View Liveview" -msgstr "View Liveview" +msgstr "" msgid "Confirm and Update Nozzle" msgstr "Bevestig en update het mondstuk" @@ -9172,10 +9077,10 @@ msgstr "Nieuwste versie" msgid "Updating" msgstr "Bijwerken" -msgid "Updating failed" +msgid "Update failed" msgstr "Bijwerken mislukt" -msgid "Updating successful" +msgid "Update successful" msgstr "Update geslaagd" msgid "" @@ -9307,7 +9212,7 @@ msgstr "" "veroorzaakt." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Kan G-code niet genereren voor ongeldige handmatige G-code.\n" @@ -9357,7 +9262,7 @@ msgid "Multiple" msgstr "Meerdere" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Kan de lijndikte van %1% niet berekenen omdat de waarde van \"%2%\" niet " "opgehaald kan worden" @@ -9499,9 +9404,9 @@ msgstr "" "worden veroorzaakt.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Het is niet mogelijk om met meerdere filamenten te printen die een groot " "temperatuurverschil hebben. Anders kunnen de extruder en het mondstuk " @@ -9590,24 +9495,25 @@ msgstr "" "laaghoogte. Voor het werken met een prime toren is het van belang dat alle " "lagen dezelfde laaghoogte hebben." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Een prime toren vereist dat elke \"support opening\" een veelvoud van de " "laaghoogte is." -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "Een prime toren vereist dat alle objecten dezelfde laaghoogte hebben." msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Een prime-toren vereist dat alle objecten op hetzelfde aantal raftlagen " "worden afgedrukt." msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9619,7 +9525,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "De prime toren wordt alleen ondersteund als alle objecten dezelfde variabele " "laaghoogte hebben" @@ -9667,7 +9573,7 @@ msgstr "" "Er zijn support handhavers ingesteld, maar support staat uit. Schakel " "support in." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "De laaghoogte kan niet groter zijn dan de diameter van het mondstuk" msgid "" @@ -9774,8 +9680,8 @@ msgid "Elephant foot compensation" msgstr "\"Elephant foot\" compensatie" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Hierdoor krimpt de eerste laag op de bouwplaat om het \"elephant foot\" " "effect te compenseren." @@ -9799,7 +9705,7 @@ msgstr "Lagen" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Dit is de hoogte voor iedere laag. Kleinere laaghoogtes geven een grotere " "nauwkeurigheid maar een langere printtijd." @@ -9807,7 +9713,7 @@ msgstr "" msgid "Printable height" msgstr "Hoogte waarbinnen geprint kan worden" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "Dit is de maximale printbare hoogte gelimiteerd door de constructie van de " "printer" @@ -9815,7 +9721,7 @@ msgstr "" msgid "Preferred orientation" msgstr "Voorkeursoriëntatie" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" @@ -9824,7 +9730,7 @@ msgstr "Namen van printer voorinstellingen" msgid "Use 3rd-party print host" msgstr "Gebruik een printhost van derden" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "Toestaan om een BambuLab printer te besturen via printhosts van derden" msgid "Hostname, IP or URL" @@ -9848,7 +9754,7 @@ msgid "Device UI" msgstr "UI van het apparaat" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Geef de URL op van de gebruikersinterface van uw apparaat als deze niet " "hetzelfde is als print_host" @@ -9863,7 +9769,7 @@ msgstr "" "Orca Slicer kan G-codebestanden uploaden naar een printerhost. Dit veld moet " "de API-sleutel of het wachtwoord bevatten dat nodig is voor authenticatie." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Naam van de printer" msgid "HTTPS CA File" @@ -9896,7 +9802,7 @@ msgstr "" "offline distributiepunten. Men kan deze optie inschakelen voor " "zelfondertekende certificaten als de verbinding mislukt." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Namen van voorinstellingen gerelateerd aan de fysieke printer" msgid "Authorization Type" @@ -9908,22 +9814,23 @@ msgstr "API sleutel" msgid "HTTP digest" msgstr "HTTP samenvatting" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Vermijd het oversteken van walls" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Omweg om te voorkomen dat de printkop over wanden verplaatst, dit zou " "namelijk klodders op het oppervlak kunnen veroorzaken" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Walls vermijden - Maximale omleidingslengte" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Maximale omleidingsafstand om te voorkomen dat een muur wordt overgestoken: " "De printer zal geen omweg maken als de omleidingsafstand groter is dan deze " @@ -9938,8 +9845,8 @@ msgid "Other layers" msgstr "Andere lagen" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Dit is de bedtemperatuur voor alle lagen behalve de eerste. Een waarde van 0 " "betekent dat het filament het afdrukken op de Cool Plate niet ondersteunt." @@ -9948,28 +9855,28 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Dit is de bedtemperatuur voor lagen, behalve voor de eerste. Een waarde van " "0 betekent dat het filament afdrukken op de Engineering Plate niet " "ondersteunt." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Dit is de bedtemperatuur voor lagen, behalve voor de eerste. Een waarde van " "0 betekent dat het filament printen op de High Temp Plate niet ondersteunt." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Bedtemperatuur na de eerste laag. 0 betekent dat het filament niet wordt " "ondersteund op de getextureerde PEI-plaat." @@ -9981,71 +9888,65 @@ msgid "Initial layer bed temperature" msgstr "Printbed temperatuur voor de eerste laag" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Dit is de bedtemperatuur van de beginlaag. Een waarde van 0 betekent dat het " "filament printen op de Cool Plate niet ondersteunt." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Dit is de bedtemperatuur van de beginlaag. Een waarde van 0 betekent dat het " "filament afdrukken op de Engineering Plate niet ondersteunt." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Dit is de bedtemperatuur van de beginlaag. Een waarde van 0 betekent dat het " "filament printen op de High Temp Plate niet ondersteunt." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "De bedtemperatuur van de eerste laag 0 betekent dat het filament niet wordt " "ondersteund op de getextureerde PEI-plaat." -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Printbedden ondersteund door de printer" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "Engineering plate (technisch printbed)" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" -msgstr "" - msgid "First layer print sequence" msgstr "Afdrukvolgorde van de eerste laag" msgid "Other layers print sequence" -msgstr "Other layers print sequence" +msgstr "" msgid "The number of other layers print sequence" -msgstr "The number of other layers print sequence" +msgstr "" msgid "Other layers filament sequence" -msgstr "Other layers filament sequence" +msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" "De G-code wordt bij iedere laagwisseling toegevoegd voor het optillen van Z" @@ -10055,7 +9956,7 @@ msgstr "Aantal bodemlagen" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Dit is het aantal vaste lagen van de onderkant inclusief de onderste " "oppervlaktelaag. Wanneer de door deze waarde berekende dikte dunner is dan " @@ -10069,7 +9970,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Het aantal onderste solide lagen wordt verhoogd tijdens het slicen als de " "totale dikte van de onderste lagen lager is dan deze waarde. Dit zorgt " @@ -10090,22 +9991,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -10198,9 +10099,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10211,8 +10112,8 @@ msgid "Bridge flow ratio" msgstr "Brugflow" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10236,7 +10137,7 @@ msgstr "Flowratio bovenoppervlak" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10246,7 +10147,7 @@ msgid "Bottom surface flow ratio" msgstr "" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10264,8 +10165,8 @@ msgid "Only one wall on top surfaces" msgstr "Slechts één wand op de bovenste oppervlakken" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Gebruik slechts één wand op het vlakke bovenvlak, om meer ruimte te geven " "aan het bovenste invulpatroon" @@ -10286,11 +10187,11 @@ msgid "" msgstr "" msgid "Only one wall on first layer" -msgstr "Only one wall on first layer" +msgstr "" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" msgid "Extra perimeters on overhangs" @@ -10320,7 +10221,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10340,9 +10241,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -10369,13 +10270,13 @@ msgstr "" msgid "Classic mode" msgstr "" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "" msgid "Slow down for overhang" msgstr "Afremmen voor overhangende delen" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Schakel deze optie in om de snelheid omlaag te brengen voor verschillende " "overhangende hoeken" @@ -10386,11 +10287,11 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10411,7 +10312,7 @@ msgid "External" msgstr "" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10430,7 +10331,7 @@ msgstr "" msgid "Brim width" msgstr "Rand breedte" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Dit is de afstand van het model tot de buitenste randlijn." msgid "Brim type" @@ -10440,8 +10341,6 @@ msgid "" "This controls the generation of the brim at outer and/or inner side of " "models. Auto means the brim width is analyzed and calculated automatically." msgstr "" -"This controls the generation of the brim at outer and/or inner side of " -"models. Auto means the brim width is analyzed and calculated automatically." msgid "Painted" msgstr "" @@ -10451,13 +10350,13 @@ msgstr "Ruimte tussen rand en object" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Dit creëert ruimte tussen de binnenste brimlijn en het object en zorgt " "ervoor dat het object eenvoudiger van het printbed kan worden verwijderd." msgid "Brim ears" -msgstr "" +msgstr "Rand oren" msgid "Only draw brim over the sharp edges of the model." msgstr "" @@ -10466,8 +10365,8 @@ msgid "Brim ear max angle" msgstr "" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" @@ -10477,7 +10376,7 @@ msgstr "" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" msgid "Compatible machine" @@ -10513,7 +10412,7 @@ msgstr "" "een actief printprofiel. Als deze aanduiding op waar staat, wordt dit " "profiel beschouwd als geschikt voor het actieve printprofiel." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "" "Hiermee wordt de afdrukvolgorde bepaald, zodat u kunt kiezen tussen laag " "voor laag of object voor object printen." @@ -10527,7 +10426,7 @@ msgstr "Op basis van object" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" @@ -10540,7 +10439,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Schakel deze optie in om de afdruksnelheid te verlagen om de laatste laag " "printtijd niet korter te maken dan de laagtijddrempel in \"Maximale " @@ -10552,7 +10451,7 @@ msgstr "Normaal printen" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Dit is de standaard versnelling voor zowel normaal printen en verplaatsen " "behalve voor de eerste laag" @@ -10560,18 +10459,18 @@ msgstr "" msgid "Default filament profile" msgstr "Standaard filament profiel" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "" "Standaard filamentprofiel bij het overschakelen naar dit machineprofiel" msgid "Default process profile" msgstr "Standaard proces profiel" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Standaard procesprofiel bij het overschakelen naar dit machineprofiel" msgid "Activate air filtration" -msgstr "Activate air filtration" +msgstr "" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -10580,32 +10479,32 @@ msgid "Fan speed" msgstr "Ventilator snelheid" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Snelheid van de afzuigventilator tijdens het printen. Deze snelheid " -"overschrijft de snelheid in de aangepaste g-code van het filament." +"overschrijft de snelheid in de aangepaste G-code van het filament." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "" msgid "No cooling for the first" msgstr "Geen koeling voor de eerste" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" -msgstr "" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." "Schakel alle ventilatoren uit voor de eerste lagen. Het wordt geadviseerd om " "de koel ventilator voor de eerste laag uit te schakelen om een betere " "hechting met het printbed te krijgen" +msgstr "" msgid "Don't support bridges" msgstr "Geen support bij bruggen toepassen" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Dit schakelt de ondersteuning (support) voor bruggebieden uit, waardoor de " "ondersteuning (support) erg groot kan worden. Bruggen kunnen meestal direct " @@ -10652,20 +10551,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10688,31 +10587,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10739,20 +10632,20 @@ msgstr "" msgid "End G-code" msgstr "Einde G-code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Voeg een eind G-code toe bij het afwerken van de hele print." -msgid "Between Object Gcode" -msgstr "Tussen object Gcode" +msgid "Between Object G-code" +msgstr "Tussen object G-code" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" -"Gcode invoegen tussen objecten. Deze parameter wordt alleen actief wanneer u " +"G-code invoegen tussen objecten. Deze parameter wordt alleen actief wanneer u " "uw modellen object voor object afdrukt." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "" "Voeg een eind G-code toe bij het afronden van het printen van dit filament." @@ -10779,7 +10672,7 @@ msgstr "" msgid "Top surface pattern" msgstr "Patroon bovenvlak" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "" "Dit is het lijnenpatroon voor de vulling (infill) van het bovenoppervlak." @@ -10810,7 +10703,7 @@ msgstr "Octagram Spiraal" msgid "Bottom surface pattern" msgstr "Bodem oppvlakte patroon" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Dit is het lijnenpatroon van de vulling (infill) van het bodemoppervlak, " "maar niet van de vulling van de brug." @@ -10849,7 +10742,7 @@ msgid "Small perimeters threshold" msgstr "" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm" @@ -10857,7 +10750,7 @@ msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10871,7 +10764,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11004,7 +10897,7 @@ msgstr "" msgid "Extruder Color" msgstr "Extruder kleur" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Wordt alleen gebruikt als een visuele weergave op de UI" msgid "Extruder offset" @@ -11014,11 +10907,11 @@ msgid "Flow ratio" msgstr "Flow verhouding" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Het materiaal kan een volumetrische verandering hebben na het wisselen " "tussen gesmolten en gekristaliseerde toestand. Deze instelling verandert " @@ -11028,11 +10921,11 @@ msgstr "" "lichte over- of onderflow is." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11046,7 +10939,7 @@ msgid "" "enabled." msgstr "" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" msgid "Enable adaptive pressure advance (beta)" @@ -11093,19 +10986,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -11122,9 +11014,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -11139,8 +11031,9 @@ msgid "Keep fan always on" msgstr "Laat de ventilator aan staan" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Als deze instelling is ingeschakeld, zal de printkop ventilator altijd aan " "staan op een minimale snelheid om het aantal start en stop momenten te " @@ -11153,13 +11046,11 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" @@ -11168,7 +11059,7 @@ msgstr "Laag tijd" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "De printkop ventilator wordt ingeschakeld voor lagen waarvan de geschatte " "printtijd korter is dan deze waarde. Ventilatorsnelheid wordt geïnterpoleerd " @@ -11182,10 +11073,10 @@ msgid "Default filament color" msgstr "Standaard filamentkleur" msgid "Filament notes" -msgstr "Filament notes" +msgstr "" msgid "You can put your notes regarding the filament here." -msgstr "You can put your notes regarding the filament here." +msgstr "" msgid "Required nozzle HRC" msgstr "Vereiste mondstuk HRC" @@ -11200,7 +11091,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Deze instelling is het volume filament dat per seconde kan worden gesmolten " "en geëxtrudeerd. De afdruksnelheid wordt beperkt door de maximale " @@ -11216,7 +11107,7 @@ msgstr "Filament laadt tijd" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -11225,7 +11116,7 @@ msgstr "Tijd die nodig is om filament te ontladen" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -11234,15 +11125,15 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Filamentdiameter wordt gebruikt om de extrusie in de G-code te berekenen, " -"het is dus belangrijk dat deze nauwkeurig wordt ingegeven" +"het is dus belangrijk dat deze nauwkeurig wordt ingegeven." msgid "Pellet flow coefficient" msgstr "" @@ -11295,7 +11186,7 @@ msgid "Unloading speed" msgstr "Ontlaadsnelheid" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Snelheid die gebruikt wordt voor het ontladen van het afveegblok (heeft geen " @@ -11314,8 +11205,8 @@ msgid "Delay after unloading" msgstr "Vertraging na het ontladen" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Wachttijd voor het ontladen van het filament. Dit kan helpen om betrouwbare " @@ -11342,7 +11233,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11388,38 +11279,38 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" msgid "Multi-tool ramming volume" msgstr "" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "" msgid "Multi-tool ramming flow" msgstr "" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" msgid "Density" msgstr "Dichtheid" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Filamentdichtheid, alleen voor statistische doeleinden." msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Filament materiaal." msgid "Soluble material" msgstr "Oplosbaar materiaal" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Oplosbaar materiaal wordt doorgaans gebruikt om odnersteuning (support) en " "support interface te printen " @@ -11428,7 +11319,7 @@ msgid "Support material" msgstr "Support materiaal" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Support materiaal wordt vaak gebruikt om support en support interfaces af te " "drukken." @@ -11438,17 +11329,14 @@ msgstr "Verzachtingstemperatuur" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." -msgstr "" -"The material softens at this temperature, so when the bed temperature is " "equal to or greater than this, it's highly recommended to open the front " -"door and/or remove the upper glass to avoid clogs." +"door and/or remove the upper glass to avoid clogging." +msgstr "" msgid "Price" msgstr "Prijs" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Filament prijs. Alleen voor statistieken" msgid "money/kg" @@ -11457,7 +11345,7 @@ msgstr "Prijs per KG" msgid "Vendor" msgstr "Leverancier" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Verkoper van filament. Alleen voor show" msgid "(Undefined)" @@ -11468,7 +11356,7 @@ msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Dit is de hoek voor een dun opvulpatroon, dat het begin of de hoofdrichting " "van de lijnen bepaalt." @@ -11478,7 +11366,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -11493,13 +11381,13 @@ msgstr "Vulling percentage" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "Vulpatroon" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Dit is het lijnpatroon voor dunne interne vulling (infill)" msgid "Grid" @@ -11568,16 +11456,16 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" msgid "0 (no open anchors)" -msgstr "0 (no open anchors)" +msgstr "" msgid "1000 (unlimited)" -msgstr "1000 (unlimited)" +msgstr "" msgid "Maximum length of the infill anchor" msgstr "Maximale lengte van de vullingsbevestiging" @@ -11590,7 +11478,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11598,23 +11486,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Versnelling van de topoppervlakte-invulling. Gebruik van een lagere waarde " "kan de kwaliteit van de bovenlaag verbeteren." -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Versnelling van de buitenwand: een lagere waarde kan de kwaliteit verbeteren." @@ -11624,7 +11512,7 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "mm/s² of %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " @@ -11642,7 +11530,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Dit is de afdrukversnelling voor de eerste laag. Een beperkte versnelling " "kan de hechting van de bouwplaat verbeteren." @@ -11650,7 +11538,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Accel_to_decel inschakelen" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "De max_accel_to_decel van Klipper wordt automatisch aangepast" msgid "accel_to_decel" @@ -11658,25 +11546,25 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk van de buitenwand" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk van de binnenwand" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "" msgid "" @@ -11689,26 +11577,26 @@ msgstr "Laaghoogte van de eerste laag" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Dit is de hoogte van de eerste laag. Door de hoogte van de eerste laag hoger " "te maken, kan de hechting op het printbed worden verbeterd." -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "" "Dit is de snelheid voor de eerste laag behalve solide vulling (infill) delen" msgid "Initial layer infill" msgstr "Vulling (infill) van de eerste laag" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "" "Dit is de snelheid voor de solide vulling (infill) delen van de eerste laag." msgid "Initial layer travel speed" msgstr "" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "" msgid "Number of slow layers" @@ -11722,7 +11610,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Mondstuk temperatuur voor de eerste laag" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Mondstuk temperatuur om de eerste laag mee te printen bij gebruik van dit " "filament" @@ -11746,7 +11634,7 @@ msgstr "" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11767,17 +11655,17 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Deze instelling zorgt ervoor dat de toolhead willekeurig schudt tijdens het " "printen van muren, zodat het oppervlak er ruw uitziet. Deze instelling " "regelt de \"fuzzy\" positie." msgid "Contour" -msgstr "Contour" +msgstr "" msgid "Contour and hole" -msgstr "Contour and hole" +msgstr "" msgid "All walls" msgstr "Alle wanden" @@ -11787,7 +11675,7 @@ msgstr "Fuzzy skin dikte" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "De breedte van jittering: het is aan te raden deze lager te houden dan de " "lijndikte van de buitenste wand." @@ -11797,7 +11685,7 @@ msgstr "Fuzzy skin punt afstand" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "De gemiddelde afstand tussen de willekeurige punten die op ieder lijnsegment " "zijn geïntroduceerd" @@ -11805,14 +11693,14 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11875,29 +11763,26 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Dit is de snelheid voor het opvullen van gaten. Tussenruimtes hebben meestal " "een onregelmatige lijndikte en moeten daarom langzamer worden afgedrukt." msgid "Precise Z height" -msgstr "Precise Z height" +msgstr "" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" -"Enable this to get precise z height of object after slicing. It will get the " -"precise object height by fine-tuning the layer heights of the last few " -"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Boog montage" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11909,7 +11794,8 @@ msgstr "" msgid "Add line number" msgstr "Lijn hoogte toevoegen" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Schakel dit in om regelnummer (Nx) toe te voegen aan het begin van elke G-" "coderegel." @@ -11919,7 +11805,7 @@ msgstr "Eerste laag scannen" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Schakel dit in zodat de camera in de printer de kwaliteit van de eerste laag " "kan controleren." @@ -11929,7 +11815,7 @@ msgstr "Mondstuk type" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Het type metaal van het mondstuk. Dit bepaalt de slijtvastheid van het " "mondstuk en wat voor soort filament kan worden geprint" @@ -11962,7 +11848,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Printerstructuur" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "De fysieke opstelling en onderdelen van een afdrukapparaat" msgid "CoreXY" @@ -11995,10 +11881,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-codes if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" @@ -12022,7 +11908,7 @@ msgstr "" msgid "Time cost" msgstr "" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "" msgid "money/h" @@ -12047,8 +11933,8 @@ msgstr "" msgid "G-code flavor" msgstr "G-code type" -msgid "What kind of gcode the printer is compatible with" -msgstr "Het type G-code waarmee de printer compatibel is" +msgid "What kind of G-code the printer is compatible with." +msgstr "Het type G-code waarmee de printer compatibel is." msgid "Klipper" msgstr "" @@ -12056,20 +11942,20 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "Label objecten" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12082,7 +11968,7 @@ msgstr "" msgid "Exclude objects" msgstr "Objecten uitsluiten" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" msgid "Verbose G-code" @@ -12111,7 +11997,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12152,44 +12038,39 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Dit is de snelheid voor de dunne vulling (infill)" msgid "Inherits profile" msgstr "Afgeleid profiel" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" -msgstr "Interface shells" +msgstr "" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" -"Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" msgid "Maximum width of a segmented region" msgstr "Maximale breedte van een gesegmenteerd gebied" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" -"Maximum width of a segmented region. A value of 0 disables this feature." - msgid "Interlocking depth of a segmented region" msgstr "Insluitdiepte van een gesegmenteerde regio" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" @@ -12262,9 +12143,9 @@ msgid "All solid layer" msgstr "Alle vaste lagen" msgid "Ironing Pattern" -msgstr "Ironing Pattern" +msgstr "" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "" msgid "Ironing flow" @@ -12272,7 +12153,7 @@ msgstr "Flow tijdens strijken" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Dit is de hoeveelheid materiaal die dient te worden geëxtrudeerd tijdens het " "strijken. Het is relatief ten opzichte van de flow van normale laaghoogte. " @@ -12281,7 +12162,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Afstand tussen de strijklijnen" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "" "Dit is de afstand voor de lijnen die gebruikt worden voor het strijken." @@ -12290,13 +12171,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "Snelheid tijdens het strijken" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Dit is de print snelheid van de strijk lijnen" msgid "Ironing angle" @@ -12307,7 +12188,7 @@ msgid "" "uses the default method." msgstr "" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "De G-code wordt bij iedere laagwisseling toegevoegd na het optillen van Z" @@ -12316,7 +12197,7 @@ msgstr "Stille modus" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Dit geeft aan of de machine de stille modus ondersteunt waarin de machine " "een lagere versnelling gebruikt om te printen" @@ -12329,23 +12210,23 @@ msgstr "Machine limieten" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Deze G-code wordt gebruikt als code voor de pauze. Gebruikers kunnen een " "pauze-G-code invoegen in de G-code-viewer." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Deze G-code wordt gebruikt als een aangepaste code" msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -12457,12 +12338,12 @@ msgstr "Maximale versnelling voor terugtrekken (retraction) (M204 R)" msgid "Maximum acceleration for travel" msgstr "Maximale versnelling voor verplaatsen" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "De snelheid van de ventilator op de printkop kan verhoogd worden als " "automatisch koelen is ingeschakeld. Dit is de maximale snelheidslimiet van " @@ -12472,8 +12353,8 @@ msgid "Max" msgstr "Maximum" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "De hoogste printbare laaghoogte voor de extruder: dit wordt gebruikt om de " "maximale laaghoogte te beperken wanneer adaptieve laaghoogte is ingeschakeld." @@ -12487,23 +12368,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12518,11 +12399,11 @@ msgstr "" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12537,7 +12418,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Minimale snelheid voor de printkop ventilator" msgid "" @@ -12552,8 +12433,8 @@ msgid "Min" msgstr "Minimaal" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "De laagste printbare laaghoogte voor de extruder: dit wordt gebruikt om de " "minimale laaghoogte te beperken wanneer adaptieve laaghoogte is ingeschakeld." @@ -12593,7 +12474,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Mondstuk volume" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "" "Volume van het mondstuk tussen de filamentsnijder en het uiteinde van het " "mondstuk" @@ -12641,7 +12522,7 @@ msgstr "Extra laadafstand" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Als dit ingesteld is op 0, zal de afstand die het filament tijdens het laden " @@ -12650,7 +12531,7 @@ msgstr "" "worden. Als het negatief is, is de laadafstand dus korter." msgid "Start end points" -msgstr "Start end points" +msgstr "" msgid "The start and end points which is from cutter area to garbage can." msgstr "" @@ -12663,7 +12544,7 @@ msgstr "Reduceer terugtrekken (retraction) bij vulling (infill)" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Trek niet terug als de beweging zich volledig in een opvulgebied bevindt. " "Dat betekent dat het sijpelen niet zichtbaar is. Dit kan de retraction times " @@ -12678,7 +12559,7 @@ msgstr "" msgid "Filename format" msgstr "Bestandsnaam formaat" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" "Gebruikers kunnen zelf de project bestandsnaam kiezen tijdens het exporteren" @@ -12702,7 +12583,7 @@ msgstr "" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" msgid "mm²" @@ -12728,10 +12609,10 @@ msgid "" "nozzle diameter." msgstr "" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Dit is de snelheid voor de binnenste wanden" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Dit is het aantal wanden per laag." msgid "Alternate extra wall" @@ -12739,10 +12620,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12763,10 +12644,10 @@ msgid "Type of the printer" msgstr "" msgid "Printer notes" -msgstr "Printer notes" +msgstr "" msgid "You can put your notes regarding the printer here." -msgstr "You can put your notes regarding the printer here." +msgstr "" msgid "Printer variant" msgstr "Printervariant" @@ -12774,7 +12655,7 @@ msgstr "Printervariant" msgid "Raft contact Z distance" msgstr "Vlot (raft) contact Z afstand:" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Dit is de Z-afstand tussen een object en een raft. Het wordt genegeerd voor " "oplosbare materialen." @@ -12782,19 +12663,19 @@ msgstr "" msgid "Raft expansion" msgstr "Vlot (raft) expansie" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Dit vergroot alle raft lagen in het XY vlak." msgid "Initial layer density" msgstr "Dichtheid van de eerste laag" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Dit is de dichtheid van de eerste raft- of support laag." msgid "Initial layer expansion" msgstr "Vergroten van de eerste laag" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Dit zet de eerste raft- of steun (support) laag uit om de hechting van het " "bed te verbeteren." @@ -12804,15 +12685,15 @@ msgstr "Vlot (raft) lagen" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Het object wordt verhoogd met dit aantal support lagen. Gebruik deze functie " "om kromtrekken te voorkomen bij het afdrukken met ABS." msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Het G-codepad wordt gegenereerd na het vereenvoudigen van de contouren van " "modellen om teveel punten en G-codelijnen te vermijden. Kleinere waarden " @@ -12824,7 +12705,7 @@ msgstr "Drempel voor verplaatsingsafstand" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Activeer het terugtrekken (retraction) alleen als de verplaatsingsafstand " "groter is dan deze drempel." @@ -12833,7 +12714,7 @@ msgid "Retract amount before wipe" msgstr "Terugtrek (retract) hoeveelheid voor schoonvegen" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Dit is de lengte van snel intrekken (retraction) vóór een wipe, in " "verhouding tot de retraction lengte." @@ -12841,7 +12722,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Terugtrekken (retract) bij wisselen van laag" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "" "Dit forceert retraction (terugtrekken van filament) als er gewisseld wordt " "van laag" @@ -12851,7 +12732,7 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -12865,12 +12746,12 @@ msgstr "" "tijdens verplaatsingen over lange afstand te voorkomen. Stel in op 0 om " "terugtrekken (retraction) uit te schakelen." -msgid "Long retraction when cut(beta)" -msgstr "Long retraction when cut (beta)" +msgid "Long retraction when cut (beta)" +msgstr "" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -12880,14 +12761,12 @@ msgstr "" "ook het risico op verstoppingen in het mondstuk of andere printproblemen." msgid "Retraction distance when cut" -msgstr "Retraction distance when cut" +msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Experimental feature. Retraction length before cutting off during filament " -"change" msgid "Z-hop height" msgstr "" @@ -12895,39 +12774,36 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Wanneer er een terugtrekking (retraction) is, wordt het mondstuk een beetje " "opgetild om ruimte te creëren tussen het mondstuk en de print. Dit voorkomt " "dat het mondstuk de print raakt bij verplaatsen. Het gebruik van " "spiraallijnen om Z op te tillen kan stringing voorkomen." -msgid "Z hop lower boundary" -msgstr "Z hop ondergrens" +msgid "Z-hop lower boundary" +msgstr "Z-hop ondergrens" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"Z hop treedt alleen in werking wanneer Z boven deze waarde ligt en onder de " -"parameter: \"Z hop bovengrens\"." +"Z-hop treedt alleen in werking wanneer Z boven deze waarde ligt en onder de " +"parameter: \"Z-hop bovengrens\"." -msgid "Z hop upper boundary" -msgstr "Z hop bovengrens" +msgid "Z-hop upper boundary" +msgstr "Z-hop bovengrens" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"Als deze waarde positief is, treedt Z hop alleen in werking als Z boven de " -"parameter ligt: \"Z hop ondergrens\" en onder deze waarde ligt" +"Als deze waarde positief is, treedt Z-hop alleen in werking als Z boven de " +"parameter ligt: \"Z-hop ondergrens\" en onder deze waarde ligt" msgid "Z-hop type" msgstr "" -msgid "Z hop type" -msgstr "" - msgid "Slope" msgstr "Helling" @@ -12938,8 +12814,8 @@ msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12962,7 +12838,7 @@ msgid "On surfaces" msgstr "" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" @@ -12998,15 +12874,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Terugtrek (retraction) snelheid" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Dit is de snelheid voor terugtrekken (retraction)" msgid "De-retraction Speed" msgstr "Snelheid van terugtrekken (deretraction)" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "De snelheid voor het herladen van filament in de extruder na een " "terugtrekking (retraction); als u dit op 0 zet, betekent dit dat het " @@ -13030,13 +12906,13 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" msgstr "Naad positie" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Dit is de startpositie voor ieder deel van de buitenste wand." msgid "Nearest" @@ -13074,20 +12950,17 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "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 "" -"Apply scarf joints only to smooth perimeters where traditional seams do not " -"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "Conditional angle threshold" +msgstr "" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -13114,7 +12987,7 @@ 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 " +"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 " @@ -13130,50 +13003,45 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "Scarf start height" +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 "" -"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." msgid "Scarf around entire wall" -msgstr "Scarf around entire wall" +msgstr "" msgid "The scarf extends to the entire length of the wall." -msgstr "The scarf extends to the entire length of the wall." +msgstr "" msgid "Scarf length" -msgstr "Scarf length" +msgstr "" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Length of the scarf. Setting this parameter to zero effectively disables the " -"scarf." msgid "Scarf steps" -msgstr "Scarf steps" +msgstr "" msgid "Minimum number of segments of each scarf." -msgstr "Minimum number of segments of each scarf." +msgstr "" msgid "Scarf joint for inner walls" -msgstr "Scarf joint for inner walls" +msgstr "" msgid "Use scarf joint for inner walls as well." -msgstr "Use scarf joint for inner walls as well." +msgstr "" msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -13194,7 +13062,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -13206,14 +13074,14 @@ msgstr "Veegsnelheid" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "De veegsnelheid wordt bepaald door de snelheidsinstelling die in deze " -"configuratie is opgegeven.Als de waarde wordt uitgedrukt als percentage " +"configuratie is opgegeven. Als de waarde wordt uitgedrukt als percentage " "(bijv. 80%), wordt deze berekend op basis van de bovenstaande instelling van " -"de rijsnelheid.De standaardwaarde voor deze parameter is 80%." +"de rijsnelheid. De standaardwaarde voor deze parameter is 80%." msgid "Skirt distance" msgstr "Rand (skirt) afstand" @@ -13230,10 +13098,10 @@ msgid "" msgstr "" msgid "Skirt height" -msgstr "Skirt height" +msgstr "" -msgid "How many layers of skirt. Usually only one layer" -msgstr "Number of skirt layers: usually only one" +msgid "How many layers of skirt. Usually only one layer." +msgstr "" msgid "Single loop draft shield" msgstr "" @@ -13250,7 +13118,7 @@ msgstr "Tochtscherm" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -13279,7 +13147,7 @@ msgstr "" msgid "Skirt loops" msgstr "Rand (skirt) lussen" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "Dit is het aantal lussen voor de skirt. 0 betekent dat de skirt is " "uitgeschakeld." @@ -13297,15 +13165,16 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "De printnelheid in geëxporteerde G-code wordt vertraagd wanneer de geschatte " "laagtijd korter is dan deze waarde om een betere koeling voor deze lagen te " @@ -13316,7 +13185,7 @@ msgstr "Minimale drempel voor dunne opvulling (infill)" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Dunne opvullingen (infill) die kleiner zijn dan deze drempelwaarde worden " "vervangen door solide interne vulling (infill)." @@ -13332,7 +13201,7 @@ msgid "" "computed over the nozzle diameter." msgstr "" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Dit is de snelheid voor de interne solide vulling (infill), bodem en " "bovenste oppervlakte zijn hiervan uitgezonderd" @@ -13340,29 +13209,27 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Dit maakt spiralen mogelijk, waardoor de Z-bewegingen van de buitencontour " "worden afgevlakt en een solide model wordt omgezet in een enkelwandige print " "met solide onderlagen. Het uiteindelijke gegenereerde model heeft geen naad." msgid "Smooth Spiral" -msgstr "Smooth Spiral" +msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" -"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "Max XY Smoothing" +msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Maximale afstand om punten in XY te verplaatsen om te proberen een gladde " "spiraal te bereiken. Als het wordt uitgedrukt als een %, wordt het berekend " @@ -13418,8 +13285,8 @@ msgstr "Temperatuur variatie" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -13436,23 +13303,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "Start G-code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Start G-code bij het starten van een print" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Start G-code wanneer het printen van dit filament begint" msgid "Single Extruder Multi Material" msgstr "Multi-material met één extruder" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" msgid "Manual Filament Change" @@ -13469,18 +13336,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -13552,11 +13419,15 @@ msgstr "Support inschakelen" msgid "Enable support generation." msgstr "Dit maakt het genereren van support mogelijk." +#, fuzzy msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" +"normal (auto) en tree (auto) worden gebruikt om automatisch steun te " +"genereren. Als normaal (handmatig) of tree (handmatig) is geselecteerd, " +"worden alleen ondersteuningen handhavers gegenereerd." msgid "Normal (auto)" msgstr "Normaal (automatisch)" @@ -13573,14 +13444,14 @@ msgstr "tree (handmatig)" msgid "Support/object xy distance" msgstr "Support/object XY afstand" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Dit regelt de XY-afstand tussen een object en zijn support." msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" msgstr "Patroon hoek" @@ -13593,7 +13464,7 @@ msgstr "" msgid "On build plate only" msgstr "Alleen op het printbed" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Deze instelling genereert alleen support die begint op het printbed." msgid "Support critical regions only" @@ -13615,14 +13486,14 @@ msgstr "Verwijder kleine overstekken die mogelijk geen steun nodig hebben." msgid "Top Z distance" msgstr "Top Z afstand" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "" "Dit bepaald de Z-afstand tussen de bovenste support interfaces en het object." msgid "Bottom Z distance" msgstr "Onderste Z-afstand" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "De z-opening tussen de onderste ondersteuningsinterface en het object" msgid "Support/raft base" @@ -13630,7 +13501,7 @@ msgstr "Support/raft base" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament voor het printen van ondersteuning (support) en raft. \"Standaard\" " "betekent geen specifiek filament voor ondersteuning (support) en het " @@ -13664,7 +13535,7 @@ msgstr "Support/raft interface" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament om ondersteuning (support) te printen. \"Standaard\" betekent geen " "specifiek filament voor ondersteuning (support), en het huidige filament " @@ -13673,13 +13544,13 @@ msgstr "" msgid "Top interface layers" msgstr "Bovenste interface lagen" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Dit is het aantal bovenste interfacelagen." msgid "Bottom interface layers" msgstr "Onderste interfacelagen" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Aantal onderste interfacelagen" msgid "Same as top" @@ -13688,25 +13559,25 @@ msgstr "Hetzelfde als boven" msgid "Top interface spacing" msgstr "Bovenste interface-afstand" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Dit is de afstand tussen de interfacelijnen. 0 betekent solide interface." msgid "Bottom interface spacing" msgstr "Onderste interface-afstand" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Dit is de afstand tussen de onderste interfacelijnen. 0 betekent solide " "interface." -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Dit is de snelheid voor het printen van de support interfaces." msgid "Base pattern" msgstr "Basis patroon" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Dit is het lijnpatroon voor support." msgid "Rectilinear grid" @@ -13721,30 +13592,30 @@ msgstr "Interfacepatroon" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Dit is het lijnpatroon voor support interfaces. Het standaardpatroon voor " "niet-oplosbare support interfaces is Rechtlijnig, terwijl het " "standaardpatroon voor oplosbare support interfaces Concentrisch is." msgid "Rectilinear Interlaced" -msgstr "Rectilinear Interlaced" +msgstr "" msgid "Base pattern spacing" msgstr "Basis patroon afstand" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Dit bepaald de ruimte tussen de support lijnen." msgid "Normal Support expansion" msgstr "Normale uitbreiding van de ondersteuning" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" "Vergroot (+) of verklein (-) het horizontale bereik van de normale " "ondersteuning" -msgid "Speed of support" +msgid "Speed of support." msgstr "Dit is de snelheid voor het printen van support." msgid "" @@ -13780,12 +13651,9 @@ msgstr "Onafhankelijke support laaghoogte" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" -"Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " -"when the prime tower is enabled." msgid "Threshold angle" msgstr "Drempel hoek" @@ -13810,8 +13678,8 @@ msgid "Tree support branch angle" msgstr "Tree support vertakkingshoek" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Deze instelling bepaalt de maximale overhanghoek die de uitloop van de tree " @@ -13853,8 +13721,8 @@ msgid "Adaptive layer height" msgstr "Adaptieve laaghoogte" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" msgid "Auto brim width" @@ -13862,13 +13730,13 @@ msgstr "" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" msgid "Tree support brim width" msgstr "Tree support brim width" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" msgid "Tip Diameter" @@ -13909,7 +13777,7 @@ msgstr "Tree support met vulling" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Deze instelling geeft aan of er opvulling moet worden toegevoegd in grote " "holtes van de tree support." @@ -13923,7 +13791,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13938,13 +13806,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13953,7 +13821,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Mondstuk temperatuur voor de lagen na de eerste laag" msgid "Detect thin wall" @@ -13961,20 +13829,20 @@ msgstr "Detecteer dunne wanden" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Dit detecteert dunne wanden die geen twee lijnen kunnen bevatten en gebruikt " "een enkele lijn tijdens het printen. Het kan zijn dat de kwaliteit minder " "goed is, omdat er geen gesloten lus is" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Deze G-code wordt ingevoegd wanneer filament wordt vervangen, inclusief T-" "commando's om gereedschapswissel te activeren." -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" msgid "" @@ -13982,7 +13850,7 @@ msgid "" "the nozzle diameter." msgstr "" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "" "Dit is de snelheid voor de solide vulling (infill) van de bovenste laag" @@ -13992,7 +13860,7 @@ msgstr "Aantal lagen bovenkant" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Dit is het aantal solide lagen van de bovenkant, inclusief de bovenste " "oppervlaktelaag. Wanneer de door deze waarde berekende dikte dunner is dan " @@ -14009,7 +13877,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Het aantal bovenste solide lagen wordt verhoogd tijdens het slicen als de " "totale dikte van de bovenste lagen lager is dan deze waarde. Dit zorgt " @@ -14017,15 +13885,16 @@ msgstr "" "deze instelling niet actief is en dat de dikte van de bovenkant bepaald " "wordt door het aantal bodem lagen." -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Dit is de snelheid waarmee verplaatsingen zullen worden gedaan." msgid "Wipe while retracting" msgstr "Vegen tijdens intrekken (retracting)" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Dit beweegt het mondstuk langs het laatste extrusiepad bij het terugtrekken " "(retraction) om eventueel gelekt materiaal op het mondstuk te reinigen. Dit " @@ -14037,11 +13906,11 @@ msgstr "Veeg afstand" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -14077,7 +13946,7 @@ msgstr "" "Dit is het volume van het materiaal dat de extruder op de prime toren " "uitwerpt." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Dit is de breedte van de prime toren." msgid "Wipe tower rotation angle" @@ -14111,7 +13980,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -14161,8 +14030,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Dit object wordt gebruikt om het mondstuk te reinigen nadat het filament is " "vervangen om filament te besparen en de printtijd te verkorten. Als " @@ -14194,18 +14063,20 @@ msgid "Idle temperature" msgstr "" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "X-Y-gaten compensatie" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Gaten in objecten worden met de ingestelde waarde groter of kleiner in het " "XY-vlak. Positieve waarden maken de gaten groter en negatieve waarden maken " @@ -14215,11 +14086,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y contourcompensatie" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "De contouren van objecten worden met de ingestelde waarde in het XY-vlak " "groter of kleiner gemaakt. Positieve waarden maken contouren groter en " @@ -14269,7 +14141,7 @@ msgstr "Bestandstype van G-code-voorbeelden" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Bestandstype van G-code-voorbeelden: PNG voor de beste kwaliteit, JPG voor " "kleinste bestand, QOI voor firmware met weinig geheugen" @@ -14278,10 +14150,10 @@ msgid "Use relative E distances" msgstr "Relatieve E-afstanden gebruiken" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Relatieve extrusie wordt aanbevolen bij gebruik van de optie " "\"label_objects\". Sommige extruders werken beter als deze optie niet is " @@ -14292,7 +14164,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "De klassieke wandgenerator produceert wanden met constante extrusiebreedte " "en voor zeer dunne gebieden wordt gap-fill gebruikt. De Arachne generator " @@ -14307,7 +14179,7 @@ msgstr "Lengte wandovergang" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Bij de overgang tussen verschillende aantallen muren naarmate het onderdeel " "dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen om de " @@ -14324,7 +14196,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Voorkom heen en weer schakelen tussen een extra wand en een wand minder. " "Deze marge breidt het bereik van extrusiebreedten uit dat volgt op [Minimum " @@ -14342,7 +14214,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Wanneer moet u overgangen maken tussen even en oneven aantallen muren? Een " "wigvorm met een hoek groter dan deze instelling heeft geen overgangen en er " @@ -14355,7 +14227,7 @@ msgstr "Aantal wandverdelingen" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Het aantal wanden, geteld vanuit het midden, waarover de variatie moet " "worden verdeeld. Lagere waarden betekenen dat de buitenwanden niet in " @@ -14364,11 +14236,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minimale kenmerkgrootte" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Minimale dikte van dunne onderdelen. Modelkenmerken die dunner zijn dan deze " "waarde worden niet afgedrukt, terwijl functies die dikker zijn dan de " @@ -14409,7 +14282,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Breedte van de muur die dunne delen (volgens de minimale functiegrootte) van " "het model zal vervangen. Als de minimale wandbreedte dunner is dan de dikte " @@ -14420,9 +14293,9 @@ msgid "Detect narrow internal solid infill" msgstr "Detecteer dichte interne solide vulling (infill)" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Deze optie detecteert automatisch smalle interne solide opvul (infill) " "gebieden. Indien ingeschakeld, wordt het concentrische patroon gebruikt voor " @@ -14430,16 +14303,16 @@ msgstr "" "rechtlijnige patroon gebruikt." msgid "invalid value " -msgstr "invalid value " +msgstr "" msgid "Invalid value when spiral vase mode is enabled: " -msgstr "Invalid value when spiral vase mode is enabled: " +msgstr "" msgid "too large line width " -msgstr "too large line width " +msgstr "" msgid " not in range " -msgstr " not in range " +msgstr "" msgid "Export 3MF" msgstr "Exporteer 3mf" @@ -14456,7 +14329,7 @@ msgstr "Exporteer slicinggegevens naar een map" msgid "Load slicing data" msgstr "Laad slicinggegevens" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Laad slicinggegevens in de cache uit de directory" msgid "Export STL" @@ -14468,7 +14341,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -14491,13 +14364,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "Standaard filamenten laden" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Laad standaard het eerste filament voor degenen die niet zijn geladen" msgid "Minimum save" @@ -14510,25 +14383,25 @@ msgid "mtcpp" msgstr "mtcpp" msgid "max triangle count per plate for slicing." -msgstr "max triangle count per plate for slicing" +msgstr "" msgid "mstpp" msgstr "mstpp" msgid "max slicing time per plate in seconds." -msgstr "max slicing time per plate in seconds" +msgstr "" msgid "No check" msgstr "Geen controle" -msgid "Do not run any validity checks, such as gcode path conflicts check." -msgstr "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." +msgstr "" msgid "Normative check" -msgstr "Normative check" +msgstr "" msgid "Check the normative items." -msgstr "Check the normative items." +msgstr "" msgid "Output Model Info" msgstr "Model informatie weergeven" @@ -14554,17 +14427,17 @@ msgstr "Rangschik opties" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Rangschik opties: 0-uitzetten, 1-aanzetten, anders-automatisch" -msgid "Repetions count" +msgid "Repetition count" msgstr "Aantal herhalingen" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Aantal herhalingen van het hele model" msgid "Ensure on bed" msgstr "Plaats op bed" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" msgid "" @@ -14577,7 +14450,7 @@ msgstr "" msgid "Convert Unit" msgstr "Eenheid converteren" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Converteer de eenheden van het model" msgid "Orient Options" @@ -14595,65 +14468,65 @@ msgstr "Draai over de Y-as" msgid "Rotation angle around the Y axis in degrees." msgstr "Rotatiehoek rond de Y-as in graden." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Schaal het model met een float-factor" msgid "Load General Settings" msgstr "Standaard instellingen laden" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Proces/machine instellingen laden vanuit een gekozen bestand" msgid "Load Filament Settings" msgstr "Filament instellingen laden" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Filament instellingen laden vanuit een bestandslijst" msgid "Skip Objects" -msgstr "Skip Objects" +msgstr "" -msgid "Skip some objects in this print" -msgstr "Skip some objects in this print" +msgid "Skip some objects in this print." +msgstr "" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "laad actuele proces-/machine-instellingen bij gebruik van up-to-date" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "laad actuele proces-/machine-instellingen uit het opgegeven bestand bij " "gebruik van up-to-date" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14681,20 +14554,18 @@ msgid "" "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " "5:trace\n" msgstr "" -"Sets debug logging level. 0:fataal, 1:error, 2:waarschuwing, 3:info, " -"4:debug, 5:trace\n" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" -msgstr "Laad aangepaste gcode" +msgid "Load custom G-code" +msgstr "Laad aangepaste G-code" -msgid "Load custom gcode from json" -msgstr "Laad aangepaste gcode vanuit json" +msgid "Load custom G-code from json." +msgstr "Laad aangepaste G-code vanuit json." msgid "Load filament ids" msgstr "" @@ -14702,30 +14573,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14752,13 +14623,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Huidige z-hop" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" msgid "" @@ -14842,10 +14713,10 @@ msgstr "" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "" msgid "Total volume" @@ -15027,27 +14898,25 @@ msgid "Generating infill toolpath" msgstr "Infill toolpath genereren" msgid "Detect overhangs for auto-lift" -msgstr "Detect overhangs for auto-lift" +msgstr "" msgid "Checking support necessity" msgstr "Controleren of support is noodzakelijk" msgid "floating regions" -msgstr "floating regions" +msgstr "" msgid "floating cantilever" -msgstr "floating cantilever" +msgstr "" msgid "large overhangs" -msgstr "large overhangs" +msgstr "" #, c-format, boost-format msgid "" "It seems object %s has %s. Please re-orient the object or enable support " "generation." msgstr "" -"It seems object %s has %s. Please re-orient the object or enable support " -"generation." msgid "Generating support" msgstr "Support genereren" @@ -15056,23 +14925,18 @@ msgid "Optimizing toolpath" msgstr "Optimaliseren van het pad" msgid "Slicing mesh" -msgstr "Slicing mesh" +msgstr "" msgid "" "No layers were detected. You might want to repair your STL file(s) or check " "their size or thickness and retry.\n" msgstr "" -"No layers were detected. You might want to repair your STL file(s) or check " -"their size or thickness and retry.\n" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" -"An object's XY size compensation will not be used because it is also color-" -"painted.\n" -"XY Size compensation can not be combined with color-painting." msgid "Support: generate contact points" msgstr "Support: contactpunten genereren" @@ -15080,38 +14944,33 @@ msgstr "Support: contactpunten genereren" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Unknown file format: input file must have .stl, .obj, or .amf(.xml) " -"extension." msgid "Loading of a model file failed." -msgstr "Loading of model file failed." +msgstr "" msgid "The supplied file couldn't be read because it's empty" -msgstr "The supplied file couldn't be read because it's empty." +msgstr "" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." -msgstr "Unknown file format: input file must have .3mf or .zip.amf extension." - -msgid "Canceled" -msgstr "Canceled" +msgstr "" msgid "load_obj: failed to parse" -msgstr "load_obj: failed to parse" +msgstr "" msgid "load mtl in obj: failed to parse" -msgstr "load mtl in obj: failed to parse" +msgstr "" msgid "The file contains polygons with more than 4 vertices." -msgstr "The file contains polygons with more than 4 vertices." +msgstr "" msgid "The file contains polygons with less than 2 vertices." -msgstr "The file contains polygons with less than 2 vertices." +msgstr "" msgid "The file contains invalid vertex index." -msgstr "The file contains invalid vertex index." +msgstr "" msgid "This OBJ file couldn't be read because it's empty." -msgstr "This OBJ file couldn't be read because it's empty." +msgstr "" msgid "Flow Rate Calibration" msgstr "Flow Rate kalibratie" @@ -15129,7 +14988,7 @@ msgid "Result can be read by human eyes." msgstr "Het resultaat kan door mensenogen worden gelezen." msgid "Auto-Calibration" -msgstr "Auto-Calibration" +msgstr "" msgid "We would use Lidar to read the calibration result" msgstr "We zouden Lidar gebruiken om het kalibratieresultaat af te lezen" @@ -15198,7 +15057,7 @@ msgid "The name cannot be empty." msgstr "De naam mag niet leeg zijn." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "De geselecteerde preset: %s is niet gevonden." msgid "The name cannot be the same as the system preset name." @@ -15214,8 +15073,6 @@ msgstr "nieuwe voorinstelling maken mislukt." msgid "" "Are you sure to cancel the current calibration and return to the home page?" msgstr "" -"Are you sure you want to cancel the current calibration and return to the " -"home page?" msgid "No Printer Connected!" msgstr "Geen printer aangesloten!" @@ -15233,7 +15090,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Dit type machine kan slechts 16 historische resultaten per mondstuk " @@ -15248,7 +15105,7 @@ msgstr "Aansluiten op de printer..." msgid "The failed test result has been dropped." msgstr "Het mislukte testresultaat is verwijderd." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Flow Dynamics kalibratieresultaat is opgeslagen in de printer" #, c-format, boost-format @@ -15275,12 +15132,12 @@ msgstr "Interne fout" msgid "Please select at least one filament for calibration" msgstr "Selecteer ten minste één filament voor kalibratie" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" "Het resultaat van de debietkalibratie is opgeslagen in een " "voorkeursinstelling." -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Het kalibratieresultaat van de maximale volumetrische snelheid is opgeslagen " "in de vooraf ingestelde waarde" @@ -15293,10 +15150,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "We hebben nu de automatische kalibratie voor verschillende filamenten " "toegevoegd. Deze is volledig geautomatiseerd en het resultaat wordt " @@ -15338,22 +15195,13 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"After using Flow Dynamics Calibration, there might still be some extrusion " -"issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" @@ -15398,22 +15246,6 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " -"directly measuring the calibration patterns. However, please be advised that " -"the efficacy and accuracy of this method may be compromised with specific " -"types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only " -"by those who fully understand its purpose and implications. Incorrect usage " -"can lead to sub-par prints or printer damage. Please make sure to carefully " -"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" msgstr "Wanneer u maximale volumetrische snelheidskalibratie nodig hebt" @@ -15460,7 +15292,7 @@ msgstr "De naam mag niet langer zijn dan 40 tekens." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Slechts één van de resultaten met dezelfde naam wordt opgeslagen. Weet je " "zeker dat je de andere resultaten wilt overschrijven?" @@ -15514,9 +15346,6 @@ msgstr "Kalibratie overslaan2" msgid "flow ratio : %s " msgstr "Stroomverhouding : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Kies een blok met de gladste bovenkant" - msgid "Please choose a block with smoothest top surface." msgstr "Kies een blok met de gladste bovenkant." @@ -15547,7 +15376,7 @@ msgid "Printing Parameters" msgstr "Afdrukparameters" msgid "Plate Type" -msgstr "Plate Type" +msgstr "" msgid "filament position" msgstr "filament positie" @@ -15561,7 +15390,7 @@ msgstr "Filament voor kalibratie" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Tips voor kalibratiemateriaal: \n" "- Materialen die dezelfde warmbedtemperatuur kunnen delen\n" @@ -15607,7 +15436,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Kalibratieresultaat van Flow Dynamics" msgid "New" -msgstr "New" +msgstr "" msgid "No History Result" msgstr "Geen geschiedenisresultaat" @@ -15630,19 +15459,19 @@ msgid "Edit Flow Dynamics Calibration" msgstr "Flow Dynamics-kalibratie bewerken" msgid "New Flow Dynamic Calibration" -msgstr "New Flow Dynamic Calibration" +msgstr "" msgid "Ok" msgstr "Ok" msgid "The filament must be selected." -msgstr "The filament must be selected." +msgstr "" msgid "Network lookup" msgstr "Netwerk opzoeken" msgid "Address" -msgstr "Address" +msgstr "" msgid "Hostname" msgstr "Hostnaam" @@ -15813,7 +15642,7 @@ msgstr "Beëindig terugtreklengte: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Stuur G-code naar printerhost" msgid "Upload to Printer Host with the following filename:" @@ -15861,7 +15690,7 @@ msgstr "Annuleer geselecteerde" msgid "Show error message" msgstr "Foutmelding tonen" -msgid "Enqueued" +msgid "Queued" msgstr "In de wachtrij" msgid "Uploading" @@ -15950,17 +15779,17 @@ msgstr "Systeemversie:" msgid "DNS Server:" msgstr "DNS-server:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test bing.com" +msgstr "" msgid "Test bing.com:" -msgstr "Test bing.com:" +msgstr "" msgid "Log Info" msgstr "Log-informatie" @@ -16020,7 +15849,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "Custom vendor missing; please input custom vendor." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" of \"Generic\" kan niet worden gebruikt als leverancier voor " "aangepaste filamenten." @@ -16043,8 +15872,8 @@ msgstr "" "Alle ingangen in de aangepaste verkoper of serie zijn spaties. Voer opnieuw " "in." -msgid "The vendor can not be a number. Please re-enter." -msgstr "The vendor can not be a number; please re-enter." +msgid "The vendor cannot be a number. Please re-enter." +msgstr "" msgid "" "You have not selected a printer or preset yet. Please select at least one." @@ -16053,11 +15882,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"De filamentnaam %s die je hebt gemaakt, bestaat al. \n" +"De filamentnaam %s die je hebt gemaakt, bestaat al.\n" "Als u doorgaat, wordt de gemaakte voorinstelling weergegeven met de " "volledige naam. Wilt u doorgaan?" @@ -16073,8 +15902,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" @@ -16098,7 +15927,7 @@ msgstr "Preset importeren" msgid "Create Type" msgstr "Type maken" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "The model was not found; please reselect vendor." msgid "Select Model" @@ -16141,16 +15970,16 @@ msgstr "Het bestand is groter dan %d MB, importeer opnieuw." msgid "Exception in obtaining file size, please import again." msgstr "Uitzondering in het verkrijgen van bestandsgrootte, importeer opnieuw." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Preset-pad niet gevonden; selecteer leverancier opnieuw." msgid "The printer model was not found, please reselect." msgstr "Het printermodel is niet gevonden, selecteer opnieuw." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "De diameter van het mondstuk is niet gevonden. Selecteer opnieuw." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" @@ -16214,7 +16043,7 @@ msgstr "Voorinstellingen voor filament maken mislukt. Als volgt:\n" msgid "Create process presets failed. As follows:\n" msgstr "Procesvoorinstellingen maken mislukt. Als volgt:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Leverancier is niet gevonden; selecteer opnieuw." msgid "Current vendor has no models, please reselect." @@ -16249,10 +16078,10 @@ msgstr "" "Je hebt de printer waarvoor je het mondstuk wilt vervangen nog niet " "geselecteerd; kies een printer." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Printer succesvol gemaakt" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Filament succesvol gemaakt" msgid "Printer Created" @@ -16281,7 +16110,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -16341,12 +16170,12 @@ msgstr "" "creation." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "Ingestelde preset vullingsset van de gebruiker.\n" @@ -16394,7 +16223,7 @@ msgid "Please select a type you want to export" msgstr "Selecteer het type preset dat je wilt exporteren" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Failed to create temporary folder, please try Export Configs again." +msgstr "" msgid "Edit Filament" msgstr "Bewerk filament" @@ -16409,7 +16238,7 @@ msgstr "" "Opmerking: Als de enige preset onder deze gloeidraad wordt verwijderd, wordt " "de gloeidraad verwijderd na het verlaten van het dialoogvenster." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" "Presets die door andere presets worden geërfd, kunnen niet worden verwijderd" @@ -16434,12 +16263,12 @@ msgid "Delete Filament" msgstr "Draad verwijderen" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Alle presets van het filament die bij dit filament horen, worden " -"verwijderd. \n" +"verwijderd.\n" "Als u dit filament gebruikt in uw printer, reset dan de filamentinformatie " "voor die sleuf." @@ -16568,17 +16397,17 @@ msgstr "Verbinding met printers aangesloten via de printhost mislukt." msgid "Mismatched type of print host: %s" msgstr "Verkeerd type afdrukhost: %s" -msgid "Connection to AstroBox works correctly." -msgstr "Connection to AstroBox is working correctly." +msgid "Connection to AstroBox is working correctly." +msgstr "" msgid "Could not connect to AstroBox" msgstr "Kan geen verbinding maken met AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "Note: AstroBox version 1.1.0 or higher is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Duet works correctly." -msgstr "Connection to Duet is working correctly." +msgid "Connection to Duet is working correctly." +msgstr "" msgid "Could not connect to Duet" msgstr "Kan geen verbinding maken met Duet" @@ -16595,8 +16424,8 @@ msgstr "Kan geen bronnen krijgen om een nieuwe verbinding te maken" msgid "Upload not enabled on FlashAir card." msgstr "Uploaden niet ingeschakeld op FlashAir-kaart." -msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "Connection to FlashAir is working correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." +msgstr "" msgid "Could not connect to FlashAir" msgstr "Kan geen verbinding maken met FlashAir" @@ -16608,29 +16437,29 @@ msgstr "" "Opmerking: FlashAir met firmware 2.00.02 of nieuwer en geactiveerde " "uploadfunctie is vereist." -msgid "Connection to MKS works correctly." -msgstr "Connection to MKS is working correctly." +msgid "Connection to MKS is working correctly." +msgstr "" msgid "Could not connect to MKS" msgstr "Kan geen verbinding maken met MKS" -msgid "Connection to OctoPrint works correctly." -msgstr "Connection to OctoPrint is working correctly." +msgid "Connection to OctoPrint is working correctly." +msgstr "" msgid "Could not connect to OctoPrint" msgstr "Kan geen verbinding maken met OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Note: OctoPrint version 1.1.0 or higher is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "Connection to Prusa SL1 / SL1S is working correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." +msgstr "" msgid "Could not connect to Prusa SLA" msgstr "Kan geen verbinding maken met Prusa SLA" -msgid "Connection to PrusaLink works correctly." -msgstr "Connection to PrusaLink is working correctly." +msgid "Connection to PrusaLink is working correctly." +msgstr "" msgid "Could not connect to PrusaLink" msgstr "Kan geen verbinding maken met PrusaLink" @@ -16653,20 +16482,20 @@ msgstr "%1% : geen vrije ruimte" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Upload is mislukt. Er is geen geschikte opslag gevonden op %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "De verbinding met Prusa Connect werkt goed." msgid "Could not connect to Prusa Connect" msgstr "Kon geen verbinding maken met Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "De verbinding met Repetier werkt goed." msgid "Could not connect to Repetier" msgstr "Kan geen verbinding maken met Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "Note: Repetier version 0.90.0 or higher is required." +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "" #, boost-format msgid "" @@ -16697,8 +16526,8 @@ msgstr "" "Fout: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Het heeft een kleine laaghoogte en resulteert in bijna verwaarloosbare " "laaglijnen en een hoge afdrukkwaliteit. Het is geschikt voor de meeste " @@ -16706,8 +16535,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "Vergeleken met het standaardprofiel van een 0,2 mm mondstuk, heeft het " "lagere snelheden en acceleratie, en het spaarzame infill patroon is Gyroid. " @@ -16716,234 +16545,163 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height. This results in almost negligible layer lines and " -"slightly longer print time." +"slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height. This results in slightly visible layer lines but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height. This results in almost invisible layer lines and higher print " -"quality but longer print time." +"quality but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost invisible layer lines and much higher print " "quality but much longer print time." - -msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." msgstr "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height. This results in minimal layer lines and higher print quality but " -"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" + +msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in minimal layer lines and much higher print quality " "but much longer print time." +msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Het heeft een normale laaghoogte en resulteert in gemiddelde laaglijnen en " "afdrukkwaliteit. Het is geschikt voor de meeste afdrukgevallen." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in less apparent layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost negligible layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and longer print time." +msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "De laagdikte is groot, wat resulteert in zichtbare laaglijnen en een normale " "afdrukkwaliteit en afdruktijd." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height. This results in much more apparent layer lines and much lower print " "quality, but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height. This results in less apparent layer lines and slightly higher print " +"height. This results in less apparent layer lines and slight higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "De laagdikte is erg groot, wat resulteert in duidelijke lijnen, een lage " "afdrukkwaliteit en een kortere afdruktijd." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height. This results in very apparent layer lines and much lower print " "quality but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height. This results in extremely apparent layer lines and much lower " "print quality but much shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " "smaller layer height. This results in slightly less but still apparent layer " -"lines and slightly higher print quality, but longer print time in some cases." +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "Vergeleken met het standaardprofiel van een 0,8 mm mondstuk, heeft het een " "kleinere laaghoogte. Dit resulteert in minder maar nog steeds zichtbare " @@ -16971,7 +16729,7 @@ msgstr "Onbekende fout" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -16986,7 +16744,7 @@ msgstr "Geef de vereiste machtigingen wanneer u deze toepassing autoriseert." msgid "Something unexpected happened when trying to log in, please try again." msgstr "Er is iets onverwachts gebeurd bij het inloggen. Probeer het opnieuw." -msgid "User cancelled." +msgid "User canceled." msgstr "Gebruiker geannuleerd." msgid "Head diameter" @@ -17017,18 +16775,18 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" msgstr "" msgid " invalid brim ears" -msgstr "" +msgstr " ongeldige rand oren" msgid "Brim Ears" -msgstr "" +msgstr "Rand Oren" msgid "Please select single object." msgstr "Selecteer een enkel object." @@ -17112,11 +16870,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Hoe sneltoetsen te gebruiken\n" "Wist u dat Orca Slicer een breed scala aan sneltoetsen en 3D-" -"scènebewerkingen biedt." +"scènebewerkingen biedt?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -17159,7 +16917,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Automatisch rangschikken\n" "Wist je dat je alle objecten in je project automatisch kunt rangschikken?" @@ -17168,7 +16926,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Automatische oriëntatie\n" "Wist je dat je met een simpele klik objecten kunt roteren naar een optimale " @@ -17349,7 +17107,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Brim voor betere hechting\n" @@ -17360,7 +17118,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Parameters instellen voor meerdere objecten\n" "Wist u dat u slicing parameters kunt instellen voor alle geselecteerde " @@ -17377,7 +17135,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Flush in support/voorwerpen/infill\n" @@ -17394,13 +17152,13 @@ msgstr "" "Wist je dat je meer wandlussen en een hogere dunne invuldichtheid kunt " "gebruiken om de sterkte van het model te verbeteren?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Wanneer moet u printen met de printerdeur open?\n" "Wist je dat het openen van de printerdeur de kans op verstopping van de " @@ -17413,7 +17171,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Kromtrekken voorkomen\n" "Wist je dat bij het printen van materialen die gevoelig zijn voor " @@ -17439,17 +17197,6 @@ msgstr "" #~ "instellingen aan: ten minste 2 interfacelagen, ten minste 0,1 mm op z " #~ "afstand of gebruik support materiaal op de interface." -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "When using support material for the support interface, we recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" - #~ msgid "This setting specify the count of walls around support" #~ msgstr "Deze instelling specificeert het aantal muren rond de ondersteuning" @@ -17481,9 +17228,6 @@ msgstr "" #~ msgid "Support: propagate branches at layer %d" #~ msgstr "Support: verspreid takken op laag %d" -#~ msgid "Current Cabin humidity" -#~ msgstr "Current Cabin humidity" - #~ msgid "Stopped." #~ msgstr "Gestopt." @@ -17575,35 +17319,16 @@ msgstr "" #~ msgid "Thick bridges" #~ msgstr "Dikke bruggen" -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "normal(auto) en tree(auto) worden gebruikt om automatisch steun te " -#~ "genereren. Als normaal(handmatig) of tree(handmatig) is geselecteerd, " -#~ "worden alleen ondersteuningen handhavers gegenereerd." - #~ msgctxt "Verb" #~ msgid "Scale" #~ msgstr "Schalen" -#~ msgid "Cool plate" -#~ msgstr "Koudeplaat" - -#~ msgid "Z hop when retract" -#~ msgstr "Z hop tijdens terugtrekken (retraction)" +#~ msgid "Z-hop when retract" +#~ msgstr "Z-hop tijdens terugtrekken (retraction)" #~ msgid "Reverse on odd" #~ msgstr "Overhang omkering" -#~ msgid "" -#~ "While printing by Object, the extruder may collide skirt.\n" -#~ "Thus, reset the skirt layer to 1 to avoid that." -#~ msgstr "" -#~ "While printing by object, the extruder may collide with a skirt.\n" -#~ "Thus, reset the skirt layer to 1 to avoid collisions." - #~ msgid "Limited" #~ msgstr "Gelimiteerd" @@ -17632,7 +17357,7 @@ msgstr "" #~ "bovenoppervlakken zijn ingeschakeld." #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Verlaag deze waarde iets (bijvoorbeeld 0,9) om de hoeveelheid materiaal " @@ -17648,13 +17373,13 @@ msgstr "" #~ msgid "Speed of bridge and completely overhang wall" #~ msgstr "Dit is de snelheid voor bruggen en 100% overhangende wanden." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Tijd welke nodig is om nieuw filament te laden tijdens het wisselen. " #~ "Enkel voor statistieken." #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Tijd welke nodig is om oud filament te lossen tijdens het wisselen. Enkel " #~ "voor statistieken." @@ -17677,23 +17402,6 @@ msgstr "" #~ "tijdens een toolwissel (tijdens het uitvoeren van de T-code). Deze tijd " #~ "wordt toegevoegd aan de totale printtijd in de tijdsschatting." -#~ msgid "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials,the actual chamber " -#~ "temperature should not be high to avoid cloggings, so 0 which stands for " -#~ "turning off is highly recommended" -#~ msgstr "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials, the actual chamber " -#~ "temperature should not be high to avoid clogs, so 0 (turned off) is " -#~ "highly recommended." - #~ msgid "" #~ "Different nozzle diameters and different filament diameters is not " #~ "allowed when prime tower is enabled." @@ -17718,9 +17426,6 @@ msgstr "" #~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)" #~ msgstr "Voer een geldige waarde in (K in 0~0,3, N in 0,6~2,0)" -#~ msgid "Printer local connection failed, please try again." -#~ msgstr "Printer local connection failed; please try again." - #~ msgid "" #~ "Please find the details of Flow Dynamics Calibration from our wiki.\n" #~ "\n" @@ -17782,12 +17487,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Zoek de hoek met de perfecte extrusiegraad" -#~ msgid "V" -#~ msgstr "V" - -#~ msgid "Export &Configs" -#~ msgstr "Export &Configs" - #~ msgid "Infill direction" #~ msgstr "Vulling (infill) richting" @@ -17809,34 +17508,15 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Lossen" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Kies een AMS sleuf en druk op de \"Laden\" of \"Verwijderen\" knop om het " -#~ "filament automatisch te laden of te verwijderen." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Moederbord" #~ msgid "TH" #~ msgstr "th" -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - #~ msgid "active" #~ msgstr "Actief" -#~ msgid "Jump to layer" -#~ msgstr "Jump to layer" - #~ msgid "Cabin humidity" #~ msgstr "Vochtigheid in de cabine" @@ -17871,7 +17551,7 @@ msgstr "" #~ "tijd geeft de indicator de vochtigheid mogelijk niet nauwkeurig weer." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Opmerking: als er tijdens het afdrukken nieuw filament wordt geplaatst, " @@ -17889,7 +17569,7 @@ msgstr "" #~ msgstr "Initialisatie is mislukt (geen camera-apparaat)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "De printer is bezig met downloaden. Wacht tot het downloaden is voltooid." @@ -17907,23 +17587,9 @@ msgstr "" #~ msgid "Load failed [%d]!" #~ msgstr "Laden mislukt [%d]!" -#, c-format, boost-format -#~ msgid "No files [%d]" -#~ msgstr "No files [%d]" - -#, c-format, boost-format -#~ msgid "Load failed [%d]" -#~ msgstr "Load failed [%d]" - -#~ msgid "Failed to fetching model informations from printer." -#~ msgstr "Failed to fetch model information from printer." - -#~ msgid "Failed to parse model informations." -#~ msgstr "Failed to parse model information" - #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -17932,11 +17598,11 @@ msgstr "" #~ "wisselen van preset?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Je hebt een aantal vooraf ingestelde instellingen gewijzigd. \n" +#~ "Je hebt een aantal vooraf ingestelde instellingen gewijzigd.\n" #~ "Wilt u deze gewijzigde instellingen (nieuwe waarde) behouden na het " #~ "wisselen van presets?" @@ -17950,7 +17616,7 @@ msgstr "" #~ msgid "Configuration package updated to " #~ msgstr "Het configuratiebestand is bijgewerkt naar " -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "De configuratie kan niet worden geladen." #~ msgid "Movement:" @@ -17982,10 +17648,10 @@ msgstr "" #~ msgstr "Connectors must be on object surface." #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Foutieve staat. \n" +#~ "Foutieve staat.\n" #~ "Geen onderdelen geselecteerd om te behouden na knippen" #~ msgid "Edit Text" @@ -17997,30 +17663,6 @@ msgstr "" #~ msgid "Exception" #~ msgstr "Uitzondering" -#~ msgid "Choose SLA archive:" -#~ msgstr "Choose SLA archive:" - -#~ msgid "Import file" -#~ msgstr "Import file" - -#~ msgid "Import model and profile" -#~ msgstr "Import model and profile" - -#~ msgid "Import profile only" -#~ msgstr "Import profile only" - -#~ msgid "Import model only" -#~ msgstr "Import model only" - -#~ msgid "Accurate" -#~ msgstr "Accurate" - -#~ msgid "Balanced" -#~ msgstr "Balanced" - -#~ msgid "Quick" -#~ msgstr "Quick" - #~ msgid "" #~ "Discribe how long the nozzle will move along the last path when retracting" #~ msgstr "" @@ -18038,9 +17680,6 @@ msgstr "" #~ "functie Simplify mesh? Klik met de rechtermuisknop op het model en " #~ "selecteer Model vereenvoudigen. Lees meer in de documentatie." -#~ msgid "Filling bed " -#~ msgstr "Filling bed" - #, boost-format #~ msgid "%1% infill pattern doesn't support 100%% density." #~ msgstr "%1% het gekozen vulling patroon ondersteund geen 100%% dichtheid." @@ -18055,10 +17694,6 @@ msgstr "" #~ "Nee - Zet de dichtheid automatisch terug naar de standaard niet 100% " #~ "waarde" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." -#~ msgstr "" -#~ "Verwarm de nozzle tot meer dan 170 graden voordat je het filament laadt." - #, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" #~ msgstr "" @@ -18072,22 +17707,12 @@ msgstr "" #~ msgstr "" #~ "Deze instelling specificeert het aantal wanden rond de tree support." -#, c-format, boost-format -#~ msgid " doesn't work at 100%% density " -#~ msgstr " doesn't work at 100%% density " - -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "Hulpmiddel op zijde plaatsen" #~ msgid "Export as STL" #~ msgstr "Exporteer als STL-bestand" -#~ msgid "Check cloud service status" -#~ msgstr "Check cloud service status" - #~ msgid "Please input a valid value (K in 0~0.5)" #~ msgstr "Voer een geldige waarde in (K in 0 ~ 0,5)" @@ -18108,10 +17733,6 @@ msgstr "" #~ msgid "Add/Remove printers" #~ msgstr "Printers toevoegen/verwijderen" -#, c-format, boost-format -#~ msgid "%s is not supported by AMS." -#~ msgstr "%s is not supported by the AMS." - #~ msgid "Don't remind me of this version again" #~ msgstr "Herinner me niet meer aan deze versie." @@ -18150,31 +17771,12 @@ msgstr "" #~ "Weet u hoe u de weergave en selectie van objecten/onderdelen met de muis " #~ "en het aanraakscherm in de 3D-scène kunt bedienen?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Model repareren\n" -#~ "Wist u dat u een beschadigd 3D-model kunt repareren om veel snijproblemen " -#~ "te voorkomen?" - -# Source and destination string both English but don't match! -#~ msgid "Embeded" -#~ msgstr "Embedded" - #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "OrcaSlicer configuratiebestand is mogelijks corrupt, en kan niet verwerkt " -#~ "worden.Verwijder het configuratiebestand en probeer het opnieuw." - -#~ msgid "Online Models" -#~ msgstr "Online Models" - -#~ msgid "Show online staff-picked models on the home page" -#~ msgstr "Show online staff-picked models on the home page" +#~ "worden. Verwijder het configuratiebestand en probeer het opnieuw." #~ msgid "The minimum printing speed when slow down for cooling" #~ msgstr "De minimale printsnelheid indien er afgeremd wordt om af te koelen" @@ -18219,22 +17821,16 @@ msgstr "" #~ msgid "The model has too many empty layers." #~ msgstr "Het model heeft te veel lege lagen." -#~ msgid "Cali" -#~ msgstr "Cali" - #~ msgid "Calibration of extrusion" #~ msgstr "Kalibratie van de extrusie" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Push new filament into the extruder" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" -#~ "De printbed temperatuur voor de overige lagen is %d graden celcius lager " +#~ "De printbed temperatuur voor de overige lagen is %d graden Celcius lager " #~ "dan de temperatuur voor de eerste laag.\n" #~ "Hierdoor kan de print loskomen van het printbed gedurende de printtaak" @@ -18251,21 +17847,9 @@ msgstr "" #~ "Houd de printer open tijdens het printproces om te zorgen voor " #~ "luchtcirculatie, of om de temperatuur van het warmwaterbed te verlagen." -#~ msgid "Total Time Estimation" -#~ msgstr "Total Time Estimation" - #~ msgid "Resonance frequency identification" #~ msgstr "Identificatie van de resonantiefrequentie" -#~ msgid "Immediately score" -#~ msgstr "Immediately score" - -#~ msgid "Please give a score for your favorite Bambu Market model." -#~ msgstr "Please give a score for your favorite Bambu Market model." - -#~ msgid "Score" -#~ msgstr "Score" - #~ msgid "Bambu High Temperature Plate" #~ msgstr "Bambu High Temperature (hoge temperatuur) Plate" @@ -18279,8 +17863,8 @@ msgstr "" #~ msgstr "High Temp Plate (hoge temperatuur printbed)" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Dit is de bedtemperatuur wanneer de hogetemperatuurplaat is " #~ "geïnstalleerd. Een waarde van 0 betekent dat het filament printen op de " diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index 53146b7cc2..1f26741e65 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -16,7 +16,7 @@ msgstr "" "First-Translator: Krzysztof Morga \n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Malowanie podpór" msgid "Alt + Mouse wheel" @@ -112,7 +112,7 @@ msgstr "Połóż na powierzchni" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Liczba filamentów przekracza maksymalną ilość obsługiwaną przez narzędzie " @@ -601,10 +601,10 @@ msgstr "Pokaż siatkę" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Nie można zastosować w czasie podglądu procesu." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operacja jest już anulowana. Proszę poczekać kilka sekund." msgid "Face recognition" @@ -798,7 +798,7 @@ msgid "Change Text Type" msgstr "Zmień rodzaj tekstu" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Zmien nazwe stylu (%1%) dla wytłaczanego tekstu" msgid "Name can't be empty." @@ -1018,8 +1018,8 @@ msgstr "Czcionka „%1%” nie może być użyta. Wybierz inną." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Nie można wczytać dokładnie tej samej czcionki („%1%”). Aplikacja wybrała " "podobną („%2%”). Należy określić czcionkę, aby umożliwić edycję tekstu." @@ -1148,7 +1148,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "Kształt jest oznaczony jako niewidoczny (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Wypełnienie kształtu (%1%) zawiera nieobsługiwane: %2%." @@ -1189,7 +1189,7 @@ msgid "" "Also disables 'reload from disk' option." msgstr "" "Nie zapisuj lokalnej ścieżki do pliku 3MF.\n" -"Uniemożliwia również opcję „przeładuj z dysku”." +"Uniemożliwia również opcję \"przeładuj z dysku\"." #. TRN: An menu option to convert the SVG into an unmodifiable model part. msgid "Bake" @@ -1206,7 +1206,7 @@ msgid "Save SVG file" msgstr "Zapisz plik SVG" msgid "Save as '.svg' file" -msgstr "Zapisz jako plik „.svg”" +msgstr "Zapisz jako plik \".svg\"" msgid "Size in emboss direction." msgstr "Rozmiar w kierunku wytłaczania." @@ -1248,7 +1248,7 @@ msgstr "Odbij poziomo" #. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else). msgid "Change SVG Type" -msgstr "Zmień rodzaj SVG" +msgstr "Zmień typ SVG" #. TRN - Input label. Be short as possible msgid "Mirror" @@ -1263,7 +1263,7 @@ msgstr "Plik nie istnieje (%1%)." #, boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "Nazwa pliku musi kończyć się na „.svg”, ale wybrałeś %1%" +msgstr "Nazwa pliku musi kończyć się na \".svg\", ale wybrałeś %1%" #, boost-format msgid "Nano SVG parser can't load from file (%1%)." @@ -1322,7 +1322,7 @@ msgid "Measure" msgstr "Zmierz" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Proszę potwierdzić współczynnik eksplozji = 1 i wybrać przynajmniej jeden " "obiekt" @@ -1382,13 +1382,13 @@ msgstr "" "Funkcja 1 została zresetowana,\n" "funkcja 2 została funkcją 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Uwaga: proszę wybrać funkcję płaszczyzny." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Uwaga: wybierz funkcję Punkt lub Okrąg." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Uwaga: proszę wybrać dwie różne siatki." msgid "Copy to clipboard" @@ -1412,7 +1412,7 @@ msgstr "Równolegle" msgid "Center coincidence" msgstr "Koincydencja centralna" -msgid "Featue 1" +msgid "Feature 1" msgstr "Funkcja 1" msgid "Reverse rotation" @@ -1468,7 +1468,7 @@ msgstr "" "rozpoznane." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer zakończy działanie z powodu braku pamięci. To może być błąd. " @@ -1528,10 +1528,10 @@ msgstr "" "Czy kontynuować?" msgid "Remember my choice" -msgstr "Zapamiętanie decyzji" +msgstr "Zapamiętaj moją decyzję" msgid "Loading configuration" -msgstr "Wczytywanie konfiguracji" +msgstr "Ładowanie konfiguracji" #, c-format, boost-format msgid "Click to download new version in default browser: %s" @@ -1605,7 +1605,7 @@ msgstr "Otwórz projekt" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do " "najnowszej wersji, aby działać normalnie" @@ -1816,7 +1816,7 @@ msgstr "Orca String Hell" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1838,7 +1838,7 @@ msgid "Add settings" msgstr "Dodaj ustawienia" msgid "Change type" -msgstr "Zmień rodzaj" +msgstr "Zmień typ" msgid "Set as an individual object" msgstr "Ustaw jako osobny obiekt" @@ -1913,16 +1913,16 @@ msgstr "Płucz do podpory obiektów" msgid "Edit in Parameter Table" msgstr "Edytuj w tabeli parametrów" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Konwertuj z cali" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Przywróć do cali" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Konwertuj z metra" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Przywróć do metra" msgid "Assemble" @@ -2182,7 +2182,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2199,7 +2199,7 @@ msgstr "Usuń wszystkie łączniki" msgid "Deleting the last solid part is not allowed." msgstr "Usunięcie ostatniej części bryły jest niedozwolone." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "" "Obiekt docelowy zawiera tylko jedną część i nie może zostać podzielony." @@ -2243,14 +2243,14 @@ msgid "Selection conflicts" msgstr "Konflikty wyboru" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Jeśli pierwszy zaznaczony element to obiekt, to drugi powinien również być " "obiektem." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Jeśli pierwszy zaznaczony element to część, to drugi powinien być częścią " "tego samego obiektu." @@ -2317,7 +2317,7 @@ msgstr "" "jedna komórka może być skopiowana do jednej lub wielu komórek w tej samej " "kolumnie" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "kopiowanie wielu komórek nie jest obsługiwane" msgid "Outside" @@ -2333,22 +2333,22 @@ msgid "Infill density(%)" msgstr "Gęstość wypełnienia (%)" msgid "Auto Brim" -msgstr "Automatyczne obrzeże" +msgstr "Automatyczny brim" msgid "Mouse ear" msgstr "Ucho myszy" msgid "Outer brim only" -msgstr "Tylko zewnętrzne obrzeże" +msgstr "Tylko zewnętrzny brim" msgid "Inner brim only" -msgstr "Tylko wewnętrzne obrzeże" +msgstr "Tylko wewnętrzny brim" msgid "Outer and inner brim" -msgstr "Zewnętrzne i wewnętrzne obrzeże" +msgstr "Zewnętrzny i wewnętrzny brim" msgid "No-brim" -msgstr "Bez obrzeża" +msgstr "Bez brimu" msgid "Outer wall speed" msgstr "Prędkość zewnętrznej ściany" @@ -2357,7 +2357,7 @@ msgid "Plate" msgstr "Płyta" msgid "Brim" -msgstr "Obrzeże (brim)" +msgstr "Brim" msgid "Object/Part Setting" msgstr "Ustawienia obiektu/części" @@ -2551,9 +2551,7 @@ msgid "Pull back current filament" msgstr "Wycofuje obecny filament" msgid "Push new filament into extruder" -msgstr "" -"Załaduj nowy\n" -"filament do extrudera" +msgstr "Załaduj nowy filament do extrudera" msgid "Purge old filament" msgstr "Oczyść dyszę" @@ -2576,15 +2574,15 @@ msgid "" "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically " "load or unload filaments." msgstr "" -"Wybierz gniazdo AMS, a następnie naciśnij przycisk „Ładuj” lub " -"„Rozładuj” ,aby automatycznie załadować lub wyładować filamenty." +"Wybierz gniazdo AMS, a następnie naciśnij przycisk „Ładuj” lub „Rozładuj”, " +"aby automatycznie załadować lub wyładować filamenty." msgid "Edit" msgstr "Edytuj" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Wszystkie wybrane obiekty są na zablokowanej płycie,\n" "Nie można zastosować automatycznego układu tych obiektów." @@ -2593,8 +2591,8 @@ msgid "No arrangeable objects are selected." msgstr "Nie wybrano obiektów do układania." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Ta płyta jest zablokowana,\n" "Nie można zastosować automatycznego układu na tej płycie." @@ -2634,15 +2632,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Wszystkie wybrane obiekty są na zablokowanej płycie,\n" "Nie można zastosować automatycznej orientacji na tych obiektach." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Ta płyta jest zablokowana,\n" "Nie można zastosować automatycznej orientacji na tej płycie." @@ -2696,7 +2694,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Nie udało się połączyć z usługą w chmurze. Spróbuj ponownie." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Plik druku nie znaleziony. Proszę powtórzyć cięcie." msgid "" @@ -2725,7 +2723,7 @@ msgstr "" "Rozmiar pliku drukowania jest zbyt duży. Proszę dostosować rozmiar pliku i " "spróbować ponownie." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Nie znaleziono pliku drukowania; proszę ponownie pociąć i wysłać do druku." @@ -2765,10 +2763,10 @@ msgstr "Pomyślnie wysłano. Automatyczne przejście do następnej strony za %ss msgid "An SD card needs to be inserted before printing via LAN." msgstr "Przed drukowaniem przez LAN należy włożyć kartę SD." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Wysyłanie pliku G-code przez LAN" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Wysyłanie pliku G-code na kartę SD" #, c-format, boost-format @@ -2816,10 +2814,10 @@ msgstr "Pobieranie" msgid "Download failed" msgstr "Nie udało się pobrać" -msgid "Cancelled" -msgstr "Anulowane" +msgid "Canceled" +msgstr "Anulowano" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Instalacja zakończona pomyślnie." msgid "Installing" @@ -2861,13 +2859,13 @@ msgid "About %s" msgstr "O %s" msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer." -msgstr "OrcaSlicer jest oparty o BambuStudio, PrusaSlicer i SuperSlicer." +msgstr "OrcaSlicer jest oparty na BambuStudio, PrusaSlicer i SuperSlicer." msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." -msgstr "BambuStudio jest oparty o PrusaSlicer od PrusaResearch." +msgstr "BambuStudio jest oparty na PrusaSlicer od PrusaResearch." msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." -msgstr "PrusaSlicer początkowo oparty o Slic3r od Alessandro Ranellucci." +msgstr "PrusaSlicer początkowo oparty na Slic3r od Alessandro Ranellucci." msgid "" "Slic3r was created by Alessandro Ranellucci with the help of many other " @@ -2890,9 +2888,6 @@ msgstr "Potwierdź" msgid "Close" msgstr "Zamknij" -msgid "Colour" -msgstr "Kolor" - msgid "" "Nozzle\n" "Temperature" @@ -2970,7 +2965,7 @@ msgid "Nozzle Diameter" msgstr "Średnica dyszy" msgid "Bed Type" -msgstr "Rodzaj płyty" +msgstr "Typ płyty" msgid "Nozzle temperature" msgstr "Temperatura dyszy" @@ -3057,8 +3052,8 @@ msgstr "Aktualna wilgotność AMS" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Pamiętaj o wymianie pakietu pochłaniacza wilgoci gdy stanie się on zbyt " @@ -3068,7 +3063,7 @@ msgstr "" "również spowolnią ten proces." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Konfiguruj, które gniazdo AMS powinno być używane dla filamentu w trakcie " "zadania drukowania" @@ -3089,7 +3084,7 @@ msgid "Print using materials mounted on the back of the case" msgstr "" "Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Drukowanie filamentem z AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3117,7 +3112,7 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -3146,7 +3141,7 @@ msgstr "" "włożeniu. To zajmie około 20 sekund." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Uwaga: jeśli podczas drukowania zostanie włożony nowy filament, system AMS " @@ -3165,8 +3160,8 @@ msgstr "Aktualizacja po włączeniu zasilania" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "AMS automatycznie odczyta informacje o włożonym filamencie podczas " "uruchamiania. To zajmie około 1 minuty. Proces odczytu sprawi, że rolki " @@ -3197,8 +3192,8 @@ msgid "AMS filament backup" msgstr "Automatyczne przełączenie filamentu AMS" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS automatycznie przełączy się na inną szpule z tym samym rodzajem " "filamentu, gdy obecny filament się skończy" @@ -3262,7 +3257,7 @@ msgstr "Wystąpił błąd krytyczny: \"%1%\"" msgid "Please save project and restart the program." msgstr "Zapisz projekt i uruchom program ponownie." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Przetwarzanie G-code z poprzedniego pliku..." msgid "Slicing complete" @@ -3349,12 +3344,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Plik G-code został wyeksportowany do %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Nieznany błąd podczas eksportowania G-code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3531,8 +3526,8 @@ msgstr "Użyj AMS" msgid "Select Printers" msgstr "Wybierz drukarki" -msgid "Ams Status" -msgstr "Status Ams" +msgid "AMS Status" +msgstr "Status AMS" msgid "Printing Options" msgstr "Opcje drukowania" @@ -3541,7 +3536,7 @@ msgid "Bed Leveling" msgstr "Poziomowanie stołu" msgid "Timelapse" -msgstr "Film poklatkowy" +msgstr "Timelapse" msgid "Flow Dynamic Calibration" msgstr "Kalibracja dynamiki przepływu" @@ -3553,7 +3548,7 @@ msgid "Send to" msgstr "Wyślij do" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "drukarek jednocześnie. (Zależy to od liczby urządzeń, które można podgrzewać " @@ -3563,7 +3558,7 @@ msgid "Wait" msgstr "Czekaj" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "minut na każdą partię. (Zależy od tego, jak długo trwa proces nagrzewania.)" @@ -3659,9 +3654,10 @@ msgstr "Wybierz plik STL do zaimportowania modelu stołu z:" msgid "Bed Shape" msgstr "Kształt stołu" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" "Zalecana temperatura jest poniżej minimalnych 190 stopni lub temperatura " "przekracza zalecane maksimum 300 stopni.\n" @@ -3688,8 +3684,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Zalecana temperatura dyszy dla tego typu filamentu wynosi [%d, %d] stopni " "Celsjusza" @@ -3703,9 +3699,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla " "filamentu, co może prowadzić do jego mięknięcia i zatykania. Maksymalna " @@ -3757,7 +3753,7 @@ msgid "" "\n" "The value will be reset to 0." msgstr "" -"Zbyt duża kompensacja efektu „stopy słonia” nie jest wskazana.\n" +"Zbyt duża kompensacja efektu \"stopy słonia\" nie jest wskazana.\n" "Jeśli rzeczywiście występuje poważny efekt stopy słonia, proszę sprawdzić " "inne ustawienia.\n" "Na przykład, czy temperatura stołu jest zbyt wysoka.\n" @@ -3772,7 +3768,7 @@ msgstr "" "„zapewnij stałą grubość pionowej powłoki”." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3823,7 +3819,7 @@ msgid "" "seam_slope_start_height need to be smaller than layer_height.\n" "Reset to 0." msgstr "" -"seam_slope_start_height musi być mniejsza niż wysokość warstwy. \n" +"seam_slope_start_height musi być mniejsza niż wysokość warstwy.\n" "Zresetuj do wartości 0" msgid "" @@ -3832,17 +3828,17 @@ msgid "" msgstr "" "Tryb Wazy działa tylko wtedy gdy liczba pętli ściany wynosi 1, wyłączone są " "podpory, liczba warstw górnej powłoki wynosi 0, gęstość wypełnienia wynosi " -"0, a rodzaj filmu poklatkowego ustalony jest na tradycyjny." +"0, a rodzaj timelapse ustalony jest na tradycyjny." msgid " But machines with I3 structure will not generate timelapse videos." -msgstr " Jednak maszyny z budową I3 nie będą generować filmów poklatkowych." +msgstr " Jednak maszyny z budową I3 nie będą generować filmów timelapse." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Czy zmienić te ustawienia automatycznie? \n" +"Czy zmienić te ustawienia automatycznie?\n" "Tak - Zmień te ustawienia automatycznie i włącz tryb Wazy\n" "Nie - Zrezygnuj tym razem z używania trybu Wazy" @@ -3897,7 +3893,7 @@ msgstr "Drukowanie zostało wstrzymane przez użytkownika" msgid "Pause of front cover falling" msgstr "Pauza - osłona głowicy drukującej odpadła" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Kalibracja mikro Lidaru" msgid "Calibrating extrusion flow" @@ -3933,23 +3929,23 @@ msgstr "Pauza z powodu błędu kontroli temperatury komory" msgid "Cooling chamber" msgstr "Chłodzenie komory" -msgid "Paused by the Gcode inserted by user" -msgstr "Pauza spowodowana wstawionym przez użytkownika Gcode" +msgid "Paused by the G-code inserted by user" +msgstr "Pauza spowodowana wstawionym przez użytkownika G-code" msgid "Motor noise showoff" msgstr "Prezentacja hałasu silnika" msgid "Nozzle filament covered detected pause" -msgstr "Wstrzymanie z powodu pokrycia dyszy filamentem" +msgstr "Wstrzymanio z powodu pokrycia dyszy filamentem" msgid "Cutter error pause" -msgstr "Wstrzymanie z powodu błędu noża" +msgstr "Wstrzymanio z powodu błędu noża" msgid "First layer error pause" -msgstr "Wstrzymanie z powodu błędu pierwszej warstwy" +msgstr "Wstrzymanio z powodu błędu pierwszej warstwy" msgid "Nozzle clog pause" -msgstr "Wstrzymanie z powodu zatkanej dyszy" +msgstr "Wstrzymano z powodu zatkania dyszy" msgid "Unknown" msgstr "Nieznany" @@ -3977,7 +3973,7 @@ msgstr "Nie udało się uaktualnić." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "Aktualna temperatura komory lub docelowa temperatura komory przekracza 45℃. " @@ -3985,8 +3981,8 @@ msgstr "" "niskiej temperaturze (PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "W extruderze jest załadowany filament o niskiej temperaturze (PLA/PETG/TPU). " @@ -3995,14 +3991,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Jeśli ustawisz temperaturę komory poniżej 40℃, kontrola temperatury komory " "nie będzie aktywowana. Docelowa temperatura komory zostanie automatycznie " "ustawiona na 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Nie udało się rozpocząć zadania drukowania" msgid "" @@ -4015,7 +4011,7 @@ msgstr "Bieżący parametr kalibracji przepływu jest nieprawidłowy" msgid "Selected diameter and machine diameter do not match" msgstr "Wybrana średnica i średnica maszyny nie pasują do siebie" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Nie udało się wygenerować kodu kalibracji" msgid "Calibration error" @@ -4028,14 +4024,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF nie jest obsługiwane przez AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Wilgotne PVA staje się elastyczne i może utknąć wewnątrz AMS, proszę " "pamiętać o wysuszeniu go przed użyciem." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "Filamenty CF/GF są twarde i kruche, łatwo je złamać i zaklinować w AMS, " @@ -4051,7 +4047,7 @@ msgstr "Edytuj własny G-code (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "Prametry zdefiniowane (Podwójne kliknięcie, aby dodać do G-code)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Szukaj zmiennych w G-code" msgid "Add selected placeholder to G-code" @@ -4067,7 +4063,7 @@ msgid "Read Only" msgstr "Tylko do odczytu" msgid "Read Write" -msgstr "Odczyt/zapis" +msgstr "Odczyt/Zapis" msgid "Slicing State" msgstr "Stan cięcia" @@ -4110,7 +4106,7 @@ msgid "parameter name" msgstr "nazwa parametru" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s nie może być procentem" #, c-format, boost-format @@ -4200,7 +4196,7 @@ msgstr "Wentylator: " msgid "Temperature: " msgstr "Temperatura: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Wczytywanie G-kodów" msgid "Generating geometry vertex data" @@ -4297,7 +4293,7 @@ msgid "travel" msgstr "przemieszczenie" msgid "Extruder" -msgstr "Extruder" +msgstr "" msgid "Filament change times" msgstr "Liczba zmian filamentu" @@ -4314,10 +4310,7 @@ msgstr "Drukuj" msgid "Printer" msgstr "Drukarka" -msgid "Custom g-code" -msgstr "Niestandardowy G-code" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Zmiana narzędzia" msgid "Time Estimation" @@ -4351,7 +4344,7 @@ msgid "Adaptive" msgstr "Adaptacyjne" msgid "Quality / Speed" -msgstr "Jakość / prędkość" +msgstr "Jakość / Prędkość" msgid "Smooth" msgstr "Wygładź" @@ -4443,8 +4436,11 @@ msgstr "Wyrównaj do osi Y" msgid "Add plate" msgstr "Dodaj płytę" -msgid "Auto orient" -msgstr "Automatyczna orientacja" +msgid "Auto orient all/selected objects" +msgstr "Automatyczna orientacja wszystkie/wybrane obiekty" + +msgid "Auto orient all objects on current plate" +msgstr "Automatyczna orientacja wszystkie obiekty na bieżącej płycie" msgid "Arrange all objects" msgstr "Rozmieść wszystkie obiekty" @@ -4467,8 +4463,8 @@ msgstr "Wybierz płytę" msgid "Assembly Return" msgstr "Powrót do montażu" -msgid "return" -msgstr "wróć" +msgid "Return" +msgstr "Wróć" msgid "Paint Toolbar" msgstr "Pasek narzędzi do malowania" @@ -4496,26 +4492,26 @@ msgstr "Rozmiar:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Wykryto konflikty ścieżek G-code na warstwie %d, z = %.2lf mm. Proszę " "oddalić od siebie obiekty będące w konflikcie (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Obiekt jest położony poza granicą płyty." msgid "A G-code path goes beyond the max print height." msgstr "Trasa G-code wychodzi poza maksymalną wysokość druku." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Trasa G-code wychodzi poza granicę płyty." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Widoczny jest tylko edytowany obiekt." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4587,7 +4583,7 @@ msgid "Custom camera source" msgstr "Zewnętrzna kamera IP" msgid "Show \"Live Video\" guide page." -msgstr "Pokaż stronę z przewodnikiem „Transmisja na żywo”." +msgstr "Pokaż stronę z przewodnikiem \"Transmisja na żywo\"." msgid "720p" msgstr "720p" @@ -4595,7 +4591,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Podłącz drukarkę (LAN)" msgid "Please input the printer access code:" @@ -4605,7 +4601,7 @@ msgid "" "You can find it in \"Settings > Network > Connection code\"\n" "on the printer, as shown in the figure:" msgstr "" -"Możesz znaleźć go w sekcji „Ustawienia > Sieć > Kod połączenia”\n" +"Możesz znaleźć go w sekcji \"Ustawienia > Sieć > Kod połączenia\"\n" "na drukarce, jak pokazano na rysunku:" msgid "Invalid input." @@ -4895,7 +4891,7 @@ msgstr "Auto Perspektywa" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Automatycznie przełączaj między rzutem ortograficznym a perspektywą przy " "przechodzeniu z widoku górnego/dolnego/bocznego" @@ -4903,13 +4899,13 @@ msgstr "" msgid "Show &G-code Window" msgstr "Wyświetlanie okna &G-code" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "Przełącza wyświetlanie okna G-code w scenie podglądu" msgid "Show 3D Navigator" msgstr "Wyświetlanie nawigatora 3D" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" "Przełącza wyświetlanie nawidgatora 3D w scenie przygotowania i podglądu" @@ -4922,19 +4918,19 @@ msgstr "Przywraca domyślny układ okna" msgid "Show &Labels" msgstr "Wyświetlanie &etykiet" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Przełącza wyświetlanie etykiet obiektów w scenie 3D" msgid "Show &Overhang" msgstr "Wyświetlanie &nawisów" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "Przełącza podświetlenie nawisów obiektów w scenie 3D" msgid "Show Selected Outline (beta)" msgstr "Wyświetlanie zaznaczonych konturów (beta)" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "Przełącza wyświetlanie konturu wokół zaznaczonego obiektu w scenie 3D" msgid "Preferences" @@ -5112,13 +5108,13 @@ msgid "Filament Settings" msgstr "Ustawienia filamentu" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Czy zsynchronizować dane osobiste z Bambu Cloud? \n" +"Czy zsynchronizować dane osobiste z Bambu Cloud?\n" "Uwzględnia to następujące informacje:\n" "1. Ustawienia procesu\n" "2. Ustawienia filamentu\n" @@ -5155,7 +5151,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "Kamera drukarki jest uszkodzona." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Wystąpił problem. Proszę zaktualizować oprogramowanie drukarki i spróbować " "ponownie." @@ -5178,7 +5174,7 @@ msgstr "" "ponownie." msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Proszę sprawdzić połączenie sieciowe i spróbować ponownie. Jeśli problem " @@ -5244,7 +5240,7 @@ msgid "Show all files, recent first." msgstr "Pokaż wszystkie pliki, najnowsze na początku." msgid "Switch to timelapse files." -msgstr "Przełącz na pliki filmów poklatkowych." +msgstr "Przełącz na pliki filmów timelapse." msgid "Video" msgstr "Wideo" @@ -5337,8 +5333,8 @@ msgid "Failed to parse model information." msgstr "Nie udało się przeanalizować informacji o modelu." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Plik .gcode.3mf nie zawiera danych G-code. Proszę poddać go obróbce w " "programie Orca Slicer i wyeksportować jako nowy plik .gcode.3mf." @@ -5532,9 +5528,9 @@ msgstr "Warstwa: %s" msgid "Layer: %d/%d" msgstr "Warstwa: %d/%d" +#, fuzzy msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" "Przed załadowaniem lub rozładunkiem filamentu, podgrzej dyszę do temperatury " "powyżej 170 stopni." @@ -5545,7 +5541,7 @@ msgstr "Wycofaj" msgid "Still load" msgstr "Podaj" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Przed kalibracją wybierz gniazdo AMS" msgid "" @@ -5594,9 +5590,6 @@ msgstr "Prześlij" msgid "Please click on the star first." msgstr "Najpierw kliknij gwiazdkę." -msgid "InFo" -msgstr "Informacje" - msgid "Get oss config failed." msgstr "Pobranie konfiguracji OSS nie powiodło się." @@ -5615,7 +5608,7 @@ msgstr " błąd przesyłania konfiguracji\n" msgid " No corresponding storage bucket\n" msgstr " Brak odpowiadającego pojemnika na dane\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " nie można otworzyć\n" msgid "" @@ -5642,7 +5635,7 @@ msgid "obtaining instance_id failed\n" msgstr "nie udało się uzyskać instance_id\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5657,7 +5650,7 @@ msgstr "komunikat o błędzie: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5665,7 +5658,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Niektóre z twoich zdjęć nie zostały przesłane. Chcesz przekierować się na " "stronę internetową w celu oceny?" @@ -5675,7 +5668,7 @@ msgstr "Możesz wybrać maksymalnie 16 zdjęć." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Aby wystawić pozytywną ocenę (4 lub 5 gwiazdek), wymagana \n" "jest co najmniej jedna udana rejestracja tego profilu druku." @@ -5720,7 +5713,7 @@ msgid "Newer 3mf version" msgstr "Nowa wersja 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "Wersja pliku 3MF jest w wersji Beta i jest nowsza niż obecna wersja " @@ -5835,10 +5828,10 @@ msgstr[2] "%1$d obiektów jest pomalowanych kolorem." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d obiekt został wczytany jako część obiektu wyciętego." -msgstr[1] "%1$d obiekty zostały wczytane jako części obiektu wyciętego" -msgstr[2] "%1$d obiektów zostało wczytanych jako części obiektu wyciętego" +msgstr[1] "%1$d obiekty zostały wczytane jako części obiektu wyciętego." +msgstr[2] "%1$d obiektów zostało wczytanych jako części obiektu wyciętego." msgid "ERROR" msgstr "BŁĄD" @@ -5861,7 +5854,7 @@ msgstr "Błąd:" msgid "Warning:" msgstr "Ostrzeżenie:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Eksport zakończony sukcesem." msgid "Model file downloaded." @@ -5879,11 +5872,11 @@ msgstr " Kliknij tutaj, aby zainstalować." msgid "WARNING:" msgstr "OSTRZEŻENIE:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Twój model wymaga podpór! Włącz generowanie podpór." -msgid "Gcode path overlap" -msgstr "Nakładanie się ścieżek Gcode" +msgid "G-code path overlap" +msgstr "Nakładanie się ścieżek G-code" msgid "Support painting" msgstr "Namaluj podpory" @@ -6058,7 +6051,7 @@ msgid "Connection" msgstr "Połączenie" msgid "Bed type" -msgstr "Rodzaj płyty" +msgstr "Typ płyty" msgid "Flushing volumes" msgstr "Objętość płukania" @@ -6128,7 +6121,7 @@ msgstr "Czy zapisać zmiany w „%1%”?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Pomyślnie odmontowano. Urządzenie %s(%s) może teraz być bezpiecznie usunięte " @@ -6166,8 +6159,8 @@ msgid "" "Enabling traditional timelapse photography may cause surface imperfections. " "It is recommended to change to smooth mode." msgstr "" -"Włączenie tradycyjnego filmów poklatkowych może powodować niedoskonałości " -"powierzchni. Zaleca się zmianę trybu na płynny." +"Włączenie tradycyjnego timelapsu może powodować niedoskonałości powierzchni. " +"Zaleca się zmianę trybu na płynny." msgid "Expand sidebar" msgstr "Rozwiń pasek boczny" @@ -6188,8 +6181,8 @@ msgstr "Wczytaj 3MF" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "Wersja 3mf %s jest nowsza niż wersja %s %s, znaleziono następujące " "nierozpoznane klucze:" @@ -6211,24 +6204,25 @@ msgstr "Znaleziono nieprawidłowe wartości w pliku 3MF:" msgid "Please correct them in the param tabs" msgstr "Proszę poprawić je na kartach parametrów" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "Plik 3MF ma zmodyfikowane G-code w profilach filamentu lub drukarki:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Proszę potwierdzić, że te zmodyfikowane G-code są bezpieczne, aby zapobiec " "ewentualnym uszkodzeniom maszyny!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "Zmodyfikowane G-codes" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "Plik 3MF ma już dostosowane profile filamentu lub drukarki:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Proszę potwierdź, że G-code w tych profilach jest bezpieczny, aby zapobiec " @@ -6292,8 +6286,8 @@ msgid "The file does not contain any geometry data." msgstr "Plik nie zawiera żadnych danych geometrycznych." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Importowany model przekracza wymiary przestrzeni roboczej. Czy przeskalować " "go do odpowiednich rozmiarów?" @@ -6402,7 +6396,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Tryb tylko podglądu:\n" "wczytany plik zawiera tylko G-code, nie można wyświetlić karty przygotowania." @@ -6438,7 +6432,7 @@ msgstr "przygotuj plik 3mf..." msgid "Download failed, unknown file format." msgstr "Nie udało się pobrać. Nieznany format pliku." -msgid "downloading project ..." +msgid "downloading project..." msgstr "pobieranie projektu ..." msgid "Download failed, File size exception." @@ -6479,8 +6473,8 @@ msgstr "Importuj archiwum SLA" msgid "The selected file" msgstr "Wybrany plik" -msgid "does not contain valid gcode." -msgstr "nie zawiera prawidłowego gcode." +msgid "does not contain valid G-code." +msgstr "nie zawiera prawidłowego G-code." msgid "Error occurs while loading G-code file" msgstr "Wystąpił błąd podczas wczytywania pliku z G-code" @@ -6525,10 +6519,10 @@ msgstr "Można otworzyć tylko jeden plik G-code w tym samym czasie." msgid "G-code loading" msgstr "Wczytywanie pliku G-code" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Pliki G-code nie mogą być wczytywane razem z modelami!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Nie można dodawać modeli w trybie podglądu!" msgid "All objects will be removed, continue?" @@ -6692,8 +6686,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Płyta %d: %s Nie zaleca się używania do druku filamentu %s(%s). Jeśli nadal " @@ -6769,7 +6763,7 @@ msgid "Login Region" msgstr "Region logowania" msgid "Stealth Mode" -msgstr "Tryb ukrycia" +msgstr "Tryb niewidoczny" msgid "" "This stops the transmission of data to Bambu's cloud services. Users who " @@ -6854,6 +6848,12 @@ msgstr "Używanie wolnego widoku kamery" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Przełącza pomiędzy wolnym a ograniczonym widokiem kamery." +msgid "Swap pan and rotate mouse buttons" +msgstr "Zamień przyciski przesuwania i obracania myszy" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Jeśli włączone, zamienia funkcje przesuwania i obracania lewym i prawym przyciskiem myszy." + msgid "Reverse mouse zoom" msgstr "Odwrócone przybliżanie myszką" @@ -6899,7 +6899,7 @@ msgstr "" "Automatycznie zapamiętuje i przełącza konfigurację filamentu/procesu dla " "każdej drukarki." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Obsługiwanie wielu urządzeń (wymaga ponownego uruchomienia programu)" msgid "" @@ -6918,7 +6918,7 @@ msgstr "Automatyczne rozmieszcza obiekty na płycie po ich powieleniu" msgid "Network" msgstr "Sieć" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Automatyczne synchronizowanie profili użytkownika (drukarka/filament/proces)" @@ -6935,7 +6935,7 @@ msgid "Clear my choice on the unsaved presets." msgstr "Wyczyść wybory w niezapisanych profilach." msgid "Associate files to OrcaSlicer" -msgstr "Skojarzenia plików" +msgstr "Skojarzenia plików z OrcaSlicer" msgid "Associate .3mf files to OrcaSlicer" msgstr "Skojarzenie plików .3mf" @@ -6956,7 +6956,7 @@ msgid "If enabled, sets OrcaSlicer as default application to open .step files" msgstr "Ustala OrcaSlicer jako domyślny program do otwierania plików .step" msgid "Associate web links to OrcaSlicer" -msgstr "Powiązania odnośników" +msgstr "Powiązania odnośników z OrcaSlicer" msgid "Associate URLs to OrcaSlicer" msgstr "Powiąż URL z OrcaSlicer" @@ -6990,7 +6990,7 @@ msgstr "Określa maksymalną liczbę ostatnich projektów" msgid "Clear my choice on the unsaved projects." msgstr "Wyczyść wybory na niezapisanych projektach." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Brak ostrzeżeń przy wczytywaniu plików 3MF z zmodyfikowanymi G-code" msgid "Auto-Backup" @@ -7107,10 +7107,10 @@ msgstr "przycisk zapisywania debugowania" msgid "save debug settings" msgstr "zapisz ustawienia debugowania" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Ustawienia DEBUG zapisano pomyślnie!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Przełącz środowisko w chmurze i proszę zaloguj się ponownie!" msgid "System presets" @@ -7125,10 +7125,10 @@ msgstr "Profile niekompatybilne" msgid "AMS filaments" msgstr "Filamenty AMS" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Kliknij, aby wybrać kolor filamentu" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Proszę wybrać kolor filamentu" msgid "Add/Remove presets" @@ -7146,7 +7146,7 @@ msgstr "Dodaj/Usuń filament" msgid "Add/Remove materials" msgstr "Dodaj/Usuń filamenty" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Wybierz/Usuń drukarki (profile systemowe)" msgid "Create printer" @@ -7218,13 +7218,13 @@ msgstr "Przesyłanie 3mf" msgid "Jump to model publish web page" msgstr "Przejdź do strony publikacji modelu" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "Uwaga: Przygotowanie może zająć kilka minut. Proszę o cierpliwość." msgid "Publish" msgstr "Opublikuj" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Publikacja została anulowana" msgid "Slicing Plate 1" @@ -7249,7 +7249,7 @@ msgstr "Profil wewnątrz projektu" msgid "Name is unavailable." msgstr "Nazwa jest niedostępna." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Zastąpienie profilu systemowego jest niedozwolone" #, boost-format @@ -7257,10 +7257,12 @@ msgid "Preset \"%1%\" already exists." msgstr "Profil „%1%” już istnieje." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "Profil „%1%” już istnieje i jest niekompatybilny z aktualną drukarką." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Zwróć uwagę, że zapisanie spowoduje zastąpienie tego profilu" msgid "The name cannot be the same as a preset alias name." @@ -7324,22 +7326,22 @@ msgid "Busy" msgstr "Zajęty" msgid "Bambu Cool Plate" -msgstr "Bambu Cool Plate" +msgstr "" msgid "PLA Plate" msgstr "Płyta PLA" msgid "Bambu Engineering Plate" -msgstr "Bambu Engineering Plate" +msgstr "" msgid "Bambu Smooth PEI Plate" -msgstr "Bambu Smooth PEI Plate" +msgstr "" msgid "High temperature Plate" msgstr "Płyta wysokotemperaturowa" msgid "Bambu Textured PEI Plate" -msgstr "Bambu Textured PEI Plate" +msgstr "" msgid "Send print job to" msgstr "Wyślij zadanie druku do" @@ -7444,7 +7446,7 @@ msgstr "" "programie (%s)." msgid "An SD card needs to be inserted to record timelapse." -msgstr "Aby nagrywać filmy poklatkowe, należy włożyć kartę SD." +msgstr "Aby nagrywać timelapse, należy włożyć kartę SD." msgid "" "Cannot send the print job to a printer whose firmware is required to get " @@ -7463,14 +7465,14 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" -"Po włączeniu trybu „spiralna waza”, maszyny o strukturze I3 nie będą " -"generować filmów poklatkowych." +"Po włączeniu trybu wazy, maszyny o strukturze I3 nie będą generować filmów " +"timelapse." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." msgstr "" -"Film poklatkowy nie jest obsługiwany, ponieważ sekwencja druku jest " -"ustawiona na „Obiekt po obiekcie”." +"Timelapse nie jest obsługiwany, ponieważ sekwencja druku jest ustawiona na " +"„Obiekt po obiekcie”." msgid "Errors" msgstr "Błędy" @@ -7479,7 +7481,7 @@ msgid "Please check the following:" msgstr "Proszę sprawdzić następujące rzeczy:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7514,7 +7516,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Drukowanie materiału o wysokiej temperaturze (%s materiał) z %s może " @@ -7631,7 +7633,7 @@ msgstr "Nie udało się zalogować. Proszę sprawdzić kod PIN." msgid "Log in printer" msgstr "Zaloguj się do drukarki" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Czy zalogować się do tej drukarki z obecnym kontem?" msgid "Check the reason" @@ -7644,10 +7646,10 @@ msgid "Terms and Conditions" msgstr "Warunki i zasady" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Dziękujemy za zakup urządzenia Bambu Lab. Przed użyciem urządzenia Bambu Lab " @@ -7677,7 +7679,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7734,24 +7736,24 @@ msgstr "" "profilu." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" -"Wieża czyszcząca jest wymagana dla płynnego filmu poklatkowego. Możliwe są " -"wady na modelu bez wieży czyszczącej. Czy na pewno wyłączyć wieżę czyszczącą?" +"Wieża czyszcząca jest wymagana dla płynnego timelapse. Możliwe są wady na " +"modelu bez wieży czyszczącej. Czy na pewno wyłączyć wieżę czyszczącą?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" -"Wieża czyszcząca jest wymagana dla płynnego filmu poklatkowego. Możliwe są " -"wady na modelu bez wieży czyszczącej. Czy włączyć wieżę czyszczącą?" +"Wieża czyszcząca jest wymagana dla płynnego timelapse. Możliwe są wady na " +"modelu bez wieży czyszczącej. Czy włączyć wieżę czyszczącą?" msgid "Still print by object?" msgstr "Czy nadal drukować według obiektu?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7762,11 +7764,11 @@ msgstr "" "i wyłączenie niezależnej wysokości warstwy podpory" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Zmienić te ustawienia automatycznie? \n" +"Zmienić te ustawienia automatycznie?\n" "Tak - Zmień te ustawienia automatycznie\n" "Nie - Nie zmieniaj tych ustawień dla mnie" @@ -7792,13 +7794,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> " "Limity wysokości warstwy, co może powodować problemy z jakością druku." -msgid "Adjust to the set range automatically? \n" -msgstr "Dostosować automatycznie do ustawionego zakresu? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Dostosować automatycznie do ustawionego zakresu?\n" msgid "Adjust" msgstr "Dostosuj" @@ -7808,8 +7810,8 @@ msgstr "Ignoruj" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą " @@ -7819,9 +7821,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą " "odległość w celu zminimalizowania płukania, a następne jego odcięcie. Choć " @@ -7835,10 +7837,10 @@ msgid "" "by right-click the empty position of build plate and choose \"Add " "Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" -"Podczas nagrywania filmu poklatkowego bez głowicy drukującej zaleca się " -"dodanie „Film poklatkowy - Wieża czyszcząca” \n" +"Podczas nagrywania timelapse bez głowicy drukującej zaleca się dodanie " +"„Timelapse - Wieża czyszcząca” \n" "przez kliknięcie prawym przyciskiem myszy na pustym miejscu płyty i wybranie " -"„Dodaj Prymityw”->„Film poklatkowy - Wieża czyszcząca”." +"„Dodaj Prymityw”->„Timelapse - Wieża czyszcząca”." msgid "" "A copy of the current system preset will be created, which will be detached " @@ -8073,11 +8075,11 @@ msgid "Nozzle temperature when printing" msgstr "Temperatura dyszy podczas druku" msgid "Cool Plate (SuperTack)" -msgstr "Cool Plate (SuperTack)" +msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura stołu, gdy zainstalowana jest cool plate. Wartość 0 oznacza, że " "filament nie jest przystosowany do druku na Cool Plate SuperTack" @@ -8086,50 +8088,50 @@ msgid "Cool Plate" msgstr "Cool Plate / PLA Plate" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Temperatura stołu, gdy zainstalowana jest Cool Plate. Wartość 0 oznacza, że " "filament nie jest przystosowany do druku na Cool Plate" -msgid "Textured Cool plate" -msgstr "Textured Cool plate" +msgid "Textured Cool Plate" +msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura stołu przy zainstalowanej Cool Plate. Wartość 0 oznacza, że " "filament nie jest przystosowany do druku na Textured Cool Plate" -msgid "Engineering plate" -msgstr "Engineering Plate" +msgid "Engineering Plate" +msgstr "" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Temperatura stołu, gdy zainstalowana jest Engineering Plate. Wartość 0 " "oznacza, że filament nie jest przystosowany do druku na Engineering Plate" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Smooth PEI Plate / High Temp Plate" +msgstr "" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Temperatura stołu, gdy zainstalowana jest Smooth PEI Plate/High Temp Plate. " "Wartość 0 oznacza, że filament nie jest przystosowany do druku na Smooth PEI " "Plate/High Temp Plate" msgid "Textured PEI Plate" -msgstr "Textured PEI Plate" +msgstr "" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura stołu, gdy zainstalowana jest Textured PEI Plate. Wartość 0 " "oznacza, że filament nie jest przystosowany do druku na Textured PEI Plate" @@ -8192,13 +8194,13 @@ msgstr "Końcowy G-code filamentu" msgid "Wipe tower parameters" msgstr "Parametry wieży czyszczącej" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Parametry zmiany narzędzia dla drukarek MM z jednym ekstruderem" msgid "Ramming settings" msgstr "Ustawienia wyciskania" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Parametry zmiany narzędzia w drukarkach wieloekstruzyjnych MM" msgid "Dependencies" @@ -8210,7 +8212,7 @@ msgstr "Zależności profilowe" msgid "Printable space" msgstr "Przestrzeń do druku" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Podano nieprawidłową wartość dla parametru%1%: %2%" @@ -8233,7 +8235,7 @@ msgstr "Adaptacyjna siatka stołu" msgid "Accessory" msgstr "Akcesoria" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-code drukarki" msgid "Machine start G-code" @@ -8251,7 +8253,7 @@ msgstr "G-code przed zmianą warstwy" msgid "Layer change G-code" msgstr "G-code zmiany warstwy" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "G-code timelapse" msgid "Change filament G-code" @@ -8293,8 +8295,8 @@ msgid "" "Do you want to change the diameter for all extruders to first extruder " "nozzle diameter value?" msgstr "" -"Wybrano tryb „Pojedynczy ekstruder wielomateriałowy”. \n" -"Wszystkie ekstrudery muszą mieć tę samą średnicę dyszy. \n" +"Wybrano tryb „Pojedynczy ekstruder wielomateriałowy”.\n" +"Wszystkie ekstrudery muszą mieć tę samą średnicę dyszy.\n" "Czy chcesz, aby średnica wszystkich dysz była taka sama jak średnica dyszy " "pierwszego ekstrudera?" @@ -8329,10 +8331,9 @@ msgid "" "Shall I disable it in order to enable Firmware Retraction?" msgstr "" "Opcja wycierania dyszy nie jest dostępna podczas korzystania z trybu " -"cofnięcia zaszytego w firmware. \n" +"retrakcji zaszytego w firmware.\n" "\n" -"Czy wyłączyć ją, aby umożliwić włączenie cofnięcia filamentu za pomocą " -"firmware?" +"Czy wyłączyć ją, aby umożliwić włączenie retrakcji za pomocą firmware?" msgid "Firmware Retraction" msgstr "Retrakcja realizowana przez firmware" @@ -8348,7 +8349,7 @@ msgstr "" "%d profil filamentu i %d profil procesu jest przypisany do tej drukarki. Te " "profile zostaną skasowane, jeśli drukarka zostanie usunięta." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "Profile dziedziczone przez inne profile nie mogą być usunięte!" msgid "The following presets inherit this preset." @@ -8369,11 +8370,11 @@ msgstr[1] "Następujące profile również zostaną usunięte." msgstr[2] "Następujące profile również zostaną usunięte." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Czy na pewno usunąć wybrany profil? \n" +"Czy na pewno usunąć wybrany profil?\n" "Jeśli profil odpowiada filamentowi aktualnie używanemu w drukarce, proszę " "zresetować informacje o filamentach dla tego slotu." @@ -8588,7 +8589,7 @@ msgstr "Dostępna jest nowa wersja" msgid "Configuration update" msgstr "Aktualizacja konfiguracji" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Dostępny jest nowy pakiet konfiguracyjny, czy chcesz go zainstalować?" msgid "Description:" @@ -8597,13 +8598,13 @@ msgstr "Opis:" msgid "Configuration incompatible" msgstr "Niekompatybilna konfiguracja" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "pakiet konfiguracyjny jest niekompatybilny z obecną aplikacją." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Pakiet konfiguracyjny jest niekompatybilny z obecną aplikacją.\n" "%s zaktualizuje pakiet konfiguracyjny, w przeciwnym razie nie będzie mógł " @@ -8613,7 +8614,7 @@ msgstr "" msgid "Exit %s" msgstr "Wyjście z %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "pakiet konfiguracyjny jest niekompatybilny z obecną aplikacją." msgid "Configuration updates" @@ -8666,18 +8667,18 @@ msgid "Map Filament" msgstr "Przypisz filament" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Uwaga: Kolor został wybrany. Możesz kliknąć OK \n" "aby kontynuować, lub dostosować go ręcznie." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Ostrzeżenie: Suma nowo dodanych i \n" -" obecnych ekstruderów przekracza 16." +"obecnych ekstruderów przekracza 16." msgid "Ramming customization" msgstr "Dostosowanie wyciskania" @@ -8795,7 +8796,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Twój system nie posiada kodeków H.264 dla GStreamer, które są wymagane do " @@ -8867,13 +8868,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Ta funkcja automatycznie ustawia orientację zaznaczonych lub wszystkich " "obiektów. Jeśli są wybrane obiekty, ustawi tylko te wybrane. W przeciwnym " -"razie ustawia wszystkie obiekty na aktualnej płycie roboczej." +"razie ustawi wszystkie obiekty bieżącego projektu." + +msgid "Auto orients all objects on the active plate." +msgstr "Ta funkcja automatycznie ustawia orientację wszystkie obiekty na aktualnej płycie roboczej." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8983,17 +8987,29 @@ msgstr "Obracanie za pomocą „uchwytów”" msgid "Gizmo cut" msgstr "Cięcie za pomocą „uchwytów”" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "Położenie na płaszczyźnie za pomocą „uchwytów”" +msgid "Gizmo mesh boolean" +msgstr "Gizmo operacje boolowskie na siatce" + msgid "Gizmo SLA support points" msgstr "Punkty podpór SLA za pomocą „uchwytów”" msgid "Gizmo FDM paint-on seam" msgstr "Uchwyt malowania szwu FDM" -msgid "Gizmo Text emboss / engrave" -msgstr "Uchwyt wytłaczania / grawerowania tekstu" +msgid "Gizmo text emboss/engrave" +msgstr "Uchwyt wytłaczania/grawerowania tekstu" + +msgid "Gizmo measure" +msgstr "Gizmo mierzyć" + +msgid "Gizmo assemble" +msgstr "Gizmo montować" + +msgid "Gizmo brim ears" +msgstr "Gizmo uszy brim" msgid "Zoom in" msgstr "Przybliżenie" @@ -9034,8 +9050,8 @@ msgstr "Uchwyt" msgid "Set extruder number for the objects and parts" msgstr "Ustaw numer extrudera dla obiektów i części" -msgid "Delete objects, parts, modifiers " -msgstr "Usuń obiekty, części, modyfikatory " +msgid "Delete objects, parts, modifiers" +msgstr "Usuń obiekty, części, modyfikatory" msgid "Select the object/part and press space to change the name" msgstr "Wybierz obiekt/część i naciśnij spację, aby zmienić nazwę" @@ -9064,7 +9080,7 @@ msgstr "Poziomy suwak - Przesuń aktywny punkt w prawo" msgid "On/Off one layer mode of the vertical slider" msgstr "Włącz/wyłącz wyświetlanie jednej warstwy suwaka pionowego" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Włącz/Wyłącz okno G-code" msgid "Move slider 5x faster" @@ -9083,7 +9099,7 @@ msgid "Release Note" msgstr "Informacje o wydaniu" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "informacje o aktualizacji wersji %s:" msgid "Network plug-in update" @@ -9096,7 +9112,7 @@ msgstr "" "Orca Slicer." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Dostępna jest nowa wtyczka sieciowa (%s). Czy zainstalować ją?" msgid "New version of Orca Slicer" @@ -9114,10 +9130,10 @@ msgstr "wznów" msgid "Resume Printing" msgstr "Wznów zadanie drukowania" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Wznów drukowanie (wady są do zaakceptowania)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Wznów drukowanie (problem został rozwiązany)" msgid "Stop Printing" @@ -9241,10 +9257,10 @@ msgstr "Najnowsza wersja" msgid "Updating" msgstr "Aktualizowanie" -msgid "Updating failed" +msgid "Update failed" msgstr "Aktualizacja nieudana" -msgid "Updating successful" +msgid "Update successful" msgstr "Aktualizacja udana" msgid "" @@ -9374,7 +9390,7 @@ msgstr "" "się, że nie dojdzie do kolizji." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Nie udało się wygenerować G-code dla nieprawidłowego niestandardowego G-" @@ -9426,7 +9442,7 @@ msgid "Multiple" msgstr "Wielokrotne" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Nie udało się obliczyć szerokości linii %1%. Nie można uzyskać wartości " "„%2%” " @@ -9565,9 +9581,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Nie można drukować jednocześnie wieloma filamentami o znacznych różnicach " "temperatur. Może to spowodować zablokowanie lub uszkodzenie extrudera i dyszy" @@ -9579,8 +9595,8 @@ msgid "" "Smooth mode of timelapse is not supported when \"by object\" sequence is " "enabled." msgstr "" -"Tryb „Wygładzony” filmu poklatkowego nie jest wspierany, gdy włączona jest " -"sekwencja „według obiektu”." +"Tryb „Wygładzony” timelapse nie jest obsługiwany, gdy włączona jest " +"sekwencja druku „według obiektu”." msgid "" "Please select \"By object\" print sequence to print multiple objects in " @@ -9665,25 +9681,26 @@ msgstr "" "Wieża czyszcząca nie jest wspierana, gdy włączona jest adaptacyjna wysokość " "warstwy. Wymaga to, aby wszystkie obiekty miały tę samą wysokość warstwy." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Wieża czyszcząca wymaga, aby „szczelina podpory” była wielokrotnością " "wysokości warstwy" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "Wieża czyszcząca wymaga, aby wszystkie obiekty miały tę samą wysokość warstwy" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Wieża czyszcząca wymaga, aby wszystkie obiekty były drukowane na tej samej " "liczbie warstw tratwy" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "Wieża czyszcząca jest obsługiwana tylko dla wielu obiektów, pod warunkiem, " "że mają tę samą wartość support_top_z_distance." @@ -9697,7 +9714,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "Wieża czyszcząca jest dostępna dla wielu modeli pod warunkiem, że mają one " "taką samą wysokość warstwy" @@ -9758,7 +9775,7 @@ msgstr "" "Używane są wzmocnienia podpór, ale funkcja podpór nie jest włączona. Proszę " "ją włączyć." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Wysokość warstwy nie może przekraczać średnicy dyszy" msgid "" @@ -9847,7 +9864,7 @@ msgstr "" "używanych filamentów jest zbyt zróżnicowany." msgid "Generating skirt & brim" -msgstr "Generowanie Skirtu i Brimu" +msgstr "Generowanie skirtu i brimu" msgid "Exporting G-code" msgstr "Eksportowanie G-code" @@ -9884,17 +9901,17 @@ msgid "Bed custom model" msgstr "Niestandardowy model stołu" msgid "Elephant foot compensation" -msgstr "Kompensacja „stopy słonia”" +msgstr "Kompensacja \"stopy słonia\"" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Zmniejszenie pierwszej warstwy w płaszczyźnie XY o określoną wartość, aby " -"skompensować efekt „stopy słonia”" +"skompensować efekt \"stopy słonia\"" msgid "Elephant foot compensation layers" -msgstr "Warstwy kompensacji „stopy słonia”" +msgstr "Warstwy kompensacji \"stopy słonia\"" msgid "" "The number of layers on which the elephant foot compensation will be active. " @@ -9902,7 +9919,7 @@ msgid "" "the next layers will be linearly shrunk less, up to the layer indicated by " "this value." msgstr "" -"Liczba warstw, na które będzie rozciągać się kompensacja „stopy słonia”. " +"Liczba warstw, na które będzie rozciągać się kompensacja \"stopy słonia\". " "Pierwsza warstwa zostanie zmniejszona o wartość kompensacji „stopy słonia”, " "a następne warstwy będą zmniejszane liniowo, aż do warstwy wskazanej przez " "tę wartość." @@ -9912,7 +9929,7 @@ msgstr "warstwy" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Wysokość każdej warstwy. Mniejsza wysokość warstwy oznacza większą " "dokładność, ale dłuższy czas drukowania" @@ -9920,7 +9937,7 @@ msgstr "" msgid "Printable height" msgstr "Maksymalna wysokość" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "Maksymalna wysokość możliwa do wydrukowania, ograniczona przez mechanizm " "drukarki" @@ -9928,7 +9945,7 @@ msgstr "" msgid "Preferred orientation" msgstr "Preferowana orientacja" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "Automatyczne orientowanie plików STL na osi Z przy początkowym imporcie" @@ -9938,7 +9955,7 @@ msgstr "Nazwy profilu drukarki" msgid "Use 3rd-party print host" msgstr "Użyj serwera druku firm trzecich" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Zezwól na kontrolowanie drukarki BambuLab przez serwery druku innych firm" @@ -9955,14 +9972,14 @@ msgstr "" "Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno " "zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za " "HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę " -"użytkownika i hasło w URL w następującym formacie: https://" -"username:password@your-octopi-address/" +"użytkownika i hasło w URL w następującym formacie: https://username:" +"password@your-octopi-address/" msgid "Device UI" msgstr "UI urządzenia" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Podaj URL interfejsu użytkownika swojego urządzenia, jeśli nie jest taki sam " "jak print_host" @@ -9977,7 +9994,7 @@ msgstr "" "Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno " "zawierać klucz API lub hasło wymagane do uwierzytelnienia." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Nazwa drukarki" msgid "HTTPS CA File" @@ -10010,7 +10027,7 @@ msgstr "" "offline punktów dystrybucji. Można chcieć włączyć tę opcję dla " "samopodpisanych certyfikatów, jeśli połączenie zawodzi." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Nazwy profili odnoszących się do drukarki fizycznej" msgid "Authorization Type" @@ -10022,22 +10039,23 @@ msgstr "Klucz API" msgid "HTTP digest" msgstr "HTTP digest" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Unikanie ruchów nad obrysami" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Omijaj i unikaj przemieszczania się nad ścianą, co może spowodować powstanie " "grudek na powierzchni" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Maksymalna długość objazdu" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Unikanie ruchów nad obrysami-\n" "Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli " @@ -10053,42 +10071,42 @@ msgid "Other layers" msgstr "Pozostałe warstwy" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " -"nie obsługuje drukowania na Cool Plate" +"nie obsługuje drukowania na Cool Plate." msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura stołu dla warstw, z wyjątkiem pierwszej. Wartość 0 oznacza, że " -"filament nie nadaje się do druku na Textured Cool Plate" +"filament nie nadaje się do druku na Textured Cool Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " -"nie obsługuje drukowania na Engineering Plate" +"nie obsługuje drukowania na Engineering Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " -"nie obsługuje drukowania na High Temp Plate" +"nie obsługuje drukowania na High Temp Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament " -"nie obsługuje drukowania na Textured PEI Plate" +"nie obsługuje drukowania na Textured PEI Plate." msgid "Initial layer" msgstr "Pierwsza warstwa" @@ -10097,61 +10115,55 @@ msgid "Initial layer bed temperature" msgstr "Temperatura stołu pierwszej warstwy" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura stołu dla pierwszej warstwy. Wartość 0 oznacza, że filament nie " "obsługuje druku na Cool Plate SuperTack." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " "obsługuje drukowania na Cool Plate" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Temperatura stołu dla pierwszej warstwy. Wartość 0 oznacza, że filament nie " "nadaje się do druku na Textured Cool Plate" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " "obsługuje drukowania na Engineering Plate" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " "obsługuje drukowania na High Temp Plate" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie " "obsługuje drukowania na Textured PEI Plate" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Rodzaje płyt roboczych obsługiwanych przez drukarkę" msgid "Smooth Cool Plate" -msgstr "Smooth Cool Plate" - -msgid "Engineering Plate" -msgstr "Engineering Plate" +msgstr "" msgid "Smooth High Temp Plate" -msgstr "Smooth High Temp Plate" - -msgid "Textured Cool Plate" -msgstr "Textured Cool Plate" +msgstr "" msgid "First layer print sequence" msgstr "Sekwencja druku pierwszej warstwy" @@ -10165,7 +10177,7 @@ msgstr "Liczba warstw ze zmienioną kolejnością drukowania" msgid "Other layers filament sequence" msgstr "Kolejność filamenu dla pozostałych warstw" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" "Ten G-code jest wstawiany przy każdej zmianie warstwy, tuż przed " "podniesieniem osi Z" @@ -10176,7 +10188,7 @@ msgstr "Dolne warstwy powłoki" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "To jest liczba pełnych warstw dolnej powłoki, włączając w to dolną " "powierzchnie. Jeżeli grubość obliczona na podstawie tej wartości jest " @@ -10191,7 +10203,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Ilość dolnych, pełnych warstw zostaje zwiększona podczas przygotowywania " "modelu do druku (slicingu), jeżeli wyliczona grubość dolnych warstw powłoki " @@ -10213,22 +10225,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Włącza wypełnienie szczelin dla zaznaczonych powierzchni stałych. Minimalna " "długość szczeliny, która zostanie wypełniona, może być kontrolowana z opcji " @@ -10380,9 +10392,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10404,8 +10416,8 @@ msgid "Bridge flow ratio" msgstr "Współczynnik przepływu przy mostach" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10442,7 +10454,7 @@ msgstr "Współczynnik przepływu górnej powierzchni" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10459,7 +10471,7 @@ msgid "Bottom surface flow ratio" msgstr "Współczynnik przepływu dolnej powierzchni" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10484,8 +10496,8 @@ msgid "Only one wall on top surfaces" msgstr "Tylko jedna ściana na górnych powierzchniach" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Użyj tylko jednej ściany na płaskiej górnej powierzchni, aby zapewnić więcej " "miejsca dla wzoru górnego wypełnienia" @@ -10506,7 +10518,7 @@ msgid "" msgstr "" "Jeśli górna powierzchnia ma być drukowana i jest częściowo zakryta inną " "warstwą, nie będzie traktowana jako górna warstwa, jeśli jej szerokość jest " -"mniejsza niż ta wartość. \n" +"mniejsza niż ta wartość.\n" "Może to być przydatne, aby zapobiec uruchamianiu funkcji „jeden perymetr na " "górze” na powierzchni, która powinna być pokryta tylko perymetrami. Ta " "wartość może być podawana w mm lub jako % szerokości ekstruzji perymetru.\n" @@ -10519,7 +10531,7 @@ msgstr "Tylko jedna ściana na pierwszej warstwie" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Użyj tylko jednej ściany na pierwszej warstwie, aby dać więcej miejsca na " "wzór dolnego wypełnienia" @@ -10559,7 +10571,7 @@ msgid "Reverse only internal perimeters" msgstr "Przeciwny kierunek tylko dla wewnętrznych obrysów" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10593,9 +10605,9 @@ msgstr "Mostek dla fazowanych otworów" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Ta opcja generuje mostki (wsparcie) dla otworów z fazowaniem, co pozwala na " "ich drukowanie bez konieczności stosowania dodatkowych podpór. Wybierz:\n" @@ -10635,13 +10647,13 @@ msgstr "" msgid "Classic mode" msgstr "Tryb klasyczny" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Włącz tę opcję, aby używać trybu klasycznego" msgid "Slow down for overhang" msgstr "Zwalnienie przy nawisach" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "Włącz tę opcję, aby zwolnić drukowanie dla różnych stopni nawisu" msgid "Slow down for curled perimeters" @@ -10650,11 +10662,11 @@ msgstr "Zwalnienie na łukach" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10692,7 +10704,7 @@ msgid "External" msgstr "Zewnętrzny" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10717,19 +10729,19 @@ msgstr "" "będzie obliczana na podstawie prędkości mostu. Wartość domyślna wynosi 150%." msgid "Brim width" -msgstr "Szerokość obrzeża" +msgstr "Szerokość brimu" -msgid "Distance from model to the outermost brim line" -msgstr "Odległość od modelu do najbardziej zewnętrznej linii Brimu" +msgid "Distance from model to the outermost brim line." +msgstr "Odległość od modelu do najbardziej zewnętrznej linii brimu" msgid "Brim type" -msgstr "Typ obrzeża" +msgstr "Rodzaj brimu" msgid "" "This controls the generation of the brim at outer and/or inner side of " "models. Auto means the brim width is analyzed and calculated automatically." msgstr "" -"To kontroluje generowanie Brimu na zewnętrznej i/lub wewnętrznej stronie " +"To kontroluje generowanie brimu na zewnętrznej i/lub wewnętrznej stronie " "modeli. Auto oznacza, że szerokość Brimu jest analizowana i obliczana " "automatycznie." @@ -10737,41 +10749,41 @@ msgid "Painted" msgstr "Malowane" msgid "Brim-object gap" -msgstr "Odstęp obrzeża od obiektu" +msgstr "Odstęp brimu od obiektu" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" -"Szczelina między najbardziej wewnętrzną linią Brimu a obiektem może ułatwić " -"usunięcie Brimu" +"Szczelina między najbardziej wewnętrzną linią brimu a obiektem może ułatwić " +"usunięcie brimu" msgid "Brim ears" -msgstr "Uszy obrzeża" +msgstr "Uszy brim" msgid "Only draw brim over the sharp edges of the model." -msgstr "Rysuj Brim tylko na ostrych krawędziach modelu." +msgstr "Rysuj brim tylko na ostrych krawędziach modelu." msgid "Brim ear max angle" -msgstr "Maksymalny kąt uszu Brimu" +msgstr "Maksymalny kąt dla ucha brim" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" -"Maksymalny kąt, przy którym pojawia się ucho Brimu.\n" +"Maksymalny kąt, przy którym pojawia się ucho brimu.\n" "Jeśli ustawione na 0, Brim nie zostanie utworzony.\n" "Jeśli ustawione na ~180, Brim zostanie utworzony wszędzie, oprócz prostych " "sekcji." msgid "Brim ear detection radius" -msgstr "Promień wykrywania uszu Brimu" +msgstr "Promień wykrywania ucha brim" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "Kształt zostanie zredukowany przed wykryciem ostrych kątów. Ten parametr " "wskazuje minimalną długość odchylenia dla redukcji.\n" @@ -10810,7 +10822,7 @@ msgstr "" "profilu druku. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny " "profil jest kompatybilny z aktywnym profilem druku." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Sekwencja druku, warstwa po warstwie lub obiekt po obiekcie" msgid "By layer" @@ -10822,7 +10834,7 @@ msgstr "Wg obiektu" msgid "Intra-layer order" msgstr "Kolejność warstw" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" "Kolejność druku obiektów w obrębie jednej warstwy. Domyślnie lub według " "listy obiektów" @@ -10837,7 +10849,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Włącz tę opcję, aby zmniejszyć prędkość drukowania, aby czas ostatniej " "warstwy nie był krótszy niż próg czasu warstwy w „Maksymalny próg prędkości " @@ -10849,7 +10861,7 @@ msgstr "Normalne drukowanie" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Domyślne przyspieszenie zarówno normalnego druku, jak i przemieszczenia, z " "wyjątkiem pierwszej warstwy" @@ -10857,13 +10869,13 @@ msgstr "" msgid "Default filament profile" msgstr "Domyślny profil filamentu" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Domyślny profil filamentu przy przełączaniu na ten profil drukarki" msgid "Default process profile" msgstr "Domyślny profil procesu" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Domyślny profil procesu przy przełączaniu na ten profil drukarki" msgid "Activate air filtration" @@ -10877,21 +10889,21 @@ msgid "Fan speed" msgstr "Prędkość wentylatora" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Prędkość wentylatora wyciągowego podczas drukowania. Ta prędkość zastąpi " -"ustawienia prędkości w niestandardowym G-code dla filamentu" +"ustawienia prędkości w niestandardowym G-code dla filamentu." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Prędkość wentylatora wyciągowego po zakończeniu drukowania" msgid "No cooling for the first" msgstr "Brak chłodzenia na pierwszych" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Wyłącz wszystkie wentylatory chłodzące na pierwszych określonych warstwach. " "Wentylator chłodzący pierwszą warstwę był zazwyczaj wyłączony, aby uzyskać " @@ -10901,8 +10913,8 @@ msgid "Don't support bridges" msgstr "Nie twórz podpór pod mostami" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Nie używaj podpór dla całego obszaru mostu, co powoduje, że podpora jest " "bardzo duża. Most zwykle może być drukowany bezpośrednio bez podpór, jeśli " @@ -10934,6 +10946,7 @@ msgstr "" msgid "Extra bridge layers (beta)" msgstr "Dodatkowe warstwy mostów (beta)" +#, fuzzy msgid "" "This option enables the generation of an extra bridge layer over internal " "and/or external bridges.\n" @@ -10950,23 +10963,56 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" +"Ta opcja umożliwia tworzenie dodatkowej warstwy mostu nad mostami " +"wewnętrznymi i/lub zewnętrznymi.\n" +"\n" +"Dodatkowa warstwa poprawia wygląd i wytrzymałość mostów, co z kolei zwiększa " +"jakość druku kolejnych warstw wypełnienia. Jest to szczególnie przydatne w " +"przypadku szybkich drukarek, gdzie prędkości drukowania mostów i wypełnienia " +"mogą się znacznie różnić. Dodatkowa warstwa zmniejsza również ryzyko " +"powstawania defektu w postaci wybrzuszenia na górnych powierzchniach oraz " +"ogranicza ryzyko odklejania się mostów zewnętrznych od perymetrów.\n" +"\n" +"Zaleca się ustawienie co najmniej opcji „Dla mostów zewnętrznych”,chyba że " +"występują specyficzne problemy z modelem.\n" +"\n" +"Opcje:\n" +"\n" +"Wyłączone – dodatkowa warstwa nie jest generowana. Jest to domyślne " +"ustawienie zapewniające kompatybilność.\n" +"\n" +"Dla mostów zewnętrznych – dodatkowa warstwa jest dodawana tylko do mostów " +"zewnętrznych. Należy pamiętać, że małe mosty, które są krótsze lub węższe " +"niż ustawiona liczba perymetrów, zostaną pominięte, ponieważ druga warstwa " +"nie przyniesie korzyści. Druga warstwa będzie ekstrudowana równolegle do " +"pierwszej, aby zwiększyć wytrzymałość.\n" +"\n" +"Dla mostów wewnętrznych – dodatkowa warstwa jest dodawana tylko do mostów " +"wewnętrznych znajdujących się nad rzadkim wypełnieniem. Warto pamiętać, że " +"mosty wewnętrzne są uwzględniane w całkowitej liczbie górnych warstw modelu. " +"Druga warstwa będzie ekstrudowana maksymalnie prostopadle do pierwszej. " +"Jeśli w odizolowanym obszarze warstwy występują mosty o różnych kątach, jako " +"orientacja zostanie wybrany kąt ostatniego obszaru.\n" +"\n" +"Dla wszystkich mostów – dodatkowa warstwa jest generowana zarówno dla mostów " +"wewnętrznych, jak i zewnętrznych.\n" msgid "Disabled" msgstr "Wyłączony" @@ -10983,35 +11029,52 @@ msgstr "Zastosowanie do wszystkich" msgid "Filter out small internal bridges" msgstr "Filtrowanie małych wewnętrznych mostów" +#, fuzzy msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" +"Ta opcja może pomóc zmniejszyć efekt wybrzuszenia na górnych powierzchniach " +"w mocno nachylonych lub zakrzywionych modelach.\n" +"Domyślnie małe mosty wewnętrzne są filtrowane, a wewnętrzne wypełnienie " +"pełne drukowane jest bezpośrednio nad rzadkim wypełnieniem. Działa to dobrze " +"w większości przypadków, przyspieszając drukowanie bez dużych kompromisów w " +"jakości górnej powierzchni. Jednak w przypadku mocno nachylonych powierzchni " +"lub zakrzywionych modeli, szczególnie przy niskiej gęstości wypełnienia, " +"może to prowadzić do wyginania się niepodpartego wypełnienia pełnego, co " +"skutkuje wybrzuszeniem.\n" +"Włączenie ograniczonego filtrowania lub braku filtrowania spowoduje " +"drukowanie mostów wewnętrznych nad niepodpartym wypełnieniem pełnym. " +"Poniższe opcje kontrolują czułość filtrowania, czyli decydują o tym, gdzie " +"będą tworzone mosty wewnętrzne.\n" +"Filtrowanie – włącza tę opcję. Jest to domyślne zachowanie, które działa " +"dobrze w większości przypadków.\n" +"Ograniczone filtrowanie – tworzy mosty wewnętrzne na mocno nachylonych " +"powierzchniach, unikając tworzenia niepotrzebnych mostów wewnętrznych. " +"Działa to dobrze w przypadku trudnych modeli.\n" +"Brak filtrowania – tworzy mosty wewnętrzne nad każdym potencjalnym " +"wewnętrznym występem. Ta opcja jest przydatna w przypadku modeli o mocno " +"nachylonych górnych powierzchniach, ale w większości przypadków tworzy zbyt " +"wiele zbędnych mostów." msgid "Filter" msgstr "Filtr" @@ -11037,20 +11100,20 @@ msgstr "" msgid "End G-code" msgstr "Końcowy G-code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Końcowy G-code po zakończeniu całego druku" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "G-code między obiektami" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Wstaw G-code między obiektami. Ten parametr będzie miał wpływ tylko wtedy, " -"gdy drukujesz swoje modele obiekt po obiekcie" +"gdy drukujesz swoje modele obiekt po obiekcie." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Końcowy G-code po zakończeniu drukowania tym filamentem" msgid "Ensure vertical shell thickness" @@ -11091,7 +11154,7 @@ msgstr "Umiarkowane" msgid "Top surface pattern" msgstr "Wzór górnej powierzchni" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Wzór linii wypełnienia górnej powierzchni" msgid "Concentric" @@ -11121,7 +11184,7 @@ msgstr "Spirala oktagramu" msgid "Bottom surface pattern" msgstr "Wzór dolnej powierzchni" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Wzór linii wypełnienia dolnej powierzchni, nie dotyczy wypełnienia mostu" @@ -11169,14 +11232,14 @@ msgid "Small perimeters threshold" msgstr "Próg małego obrysu" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm" msgid "Walls printing order" msgstr "Kolejność drukowania ścian" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11190,7 +11253,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11384,7 +11447,7 @@ msgstr "" msgid "Extruder Color" msgstr "Kolor extrudera" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Używane tylko jako wizualna pomoc w interfejsie użytkownika" msgid "Extruder offset" @@ -11394,31 +11457,31 @@ msgid "Flow ratio" msgstr "Współczynnik przepływu" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Materiał może ulegać zmianie objętościowej po przejściu między stanem " "ciekłym a krystalicznym. Ustawienie to proporcjonalnie zmienia przepływ " "ekstruzji tego filamentu w G-code. Zalecany zakres wartości mieści się " "między 0,95 a 1,05. Być może możesz dostroić tę wartość, aby uzyskać gładką " -"powierzchnię, gdy występuje lekkie przelewanie lub niedomiar" +"powierzchnię, gdy występuje lekkie przelewanie lub niedomiar." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" "Materiał może mieć zmiany objętości po przejściu między stanem ciekłym a " "stanem krystalicznym. Ta opcja zmienia proporcjonalnie cały przepływ " -"wytłaczania filamentu w gcode. Zalecany zakres wartości to od 0,95 do 1,05. " +"wytłaczania filamentu w G-code. Zalecany zakres wartości to od 0,95 do 1,05. " "Może warto dostosować tę wartość, aby uzyskać ładną, gładką powierzchnię, " "gdy występuje niewielkie przepełnienie lub niedobór.\n" "\n" @@ -11435,7 +11498,7 @@ msgstr "" "Włącz wzrost ciśnienia (PA), wynik automatycznej kalibracji zostanie " "nadpisany po włączeniu." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" "Pressure advance (Klipper), znane również jako Linear advance (Marlin)." @@ -11499,19 +11562,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "0.033.96.1000\n" "0.029.7.91.300\n" @@ -11536,8 +11598,7 @@ msgstr "" "PA. Jeśli różnica nie jest widoczna, należy użyć wartości PA z szybszego " "testu.\n" "3. Wprowadź trójki wartości PA, przepływu i przyspieszenia w polu tekstowym " -"tutaj i zapisz swój profil filamentu.\n" -"\n" +"tutaj i zapisz swój profil filamentu." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)" @@ -11557,14 +11618,14 @@ msgid "Pressure advance for bridges" msgstr "Wzrost ciśnienia (PA) dla mostów" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" -"Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć. \n" +"Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n" "\n" "Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność " "lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich " @@ -11582,8 +11643,9 @@ msgid "Keep fan always on" msgstr "Wentylator zawsze włączony" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Jeśli włączysz to ustawienie, wentylator chłodzący części nigdy nie zostanie " "zatrzymany i będzie pracował przynajmniej z minimalną prędkością, aby " @@ -11596,23 +11658,20 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Jeśli ta opcja jest włączona, zapewni to, że zewnętrzne obwody nie będą " "spowalniane, aby spełnić minimalny czas warstwy. Jest to szczególnie pomocne " "w poniższych sytuacjach:\n" -"\n" "1. Aby uniknąć zmian połysku podczas drukowania filamentami z połuskiem.\n" "2. Aby uniknąć zmian prędkości zewnętrznych ścian, które mogą powodować " "drobne artefakty ścian, przypominające zygzaki.\n" "3. Aby uniknąć drukowania z prędkościami, które powodują powstawanie " -"drobnych artefaktów (VFA) na zewnętrznych ścianach.\n" +"drobnych artefaktów (VFA) na zewnętrznych ścianach." msgid "Layer time" msgstr "Czas warstwy" @@ -11620,7 +11679,7 @@ msgstr "Czas warstwy" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Wentylator chłodzący części zostanie włączony dla warstw, których szacowany " "czas jest krótszy niż ta wartość. Prędkość wentylatora jest interpolowana " @@ -11652,7 +11711,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "To ustawienie określa, ile objętości filamentu może być stopione i " "wyciśnięte na sekundę. Prędkość drukowania jest ograniczana przez maksymalną " @@ -11668,7 +11727,7 @@ msgstr "Czas ładowania filamentu" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Czas na załadowanie nowego filamentu przy jego zmianie. Zwykle dotyczy to " "maszyn wielomateriałowych z jednym ekstruderem. Dla maszyn z wymiennym " @@ -11681,7 +11740,7 @@ msgstr "Czas rozładowania filamentu" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Czas na rozładowanie starego filamentu przy jego zmianie. Zwykle dotyczy to " "maszyn wielomateriałowych z jednym ekstruderem. Dla maszyn z wymiennym " @@ -11694,18 +11753,18 @@ msgstr "Czas zmiany narzędzia" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Czas potrzebny na zmianę narzędzia. Zwykle dotyczy to maszyn z wymiennym " "narzędziem lub maszyn wielonarzędziowych. Dla maszyn wielomateriałowych z " "jednym ekstruderem zazwyczaj wynosi 0. Tylko do statystyk." msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Średnica filamentu jest używana do obliczania ekstruzji w G-code, więc jest " -"bardzo ważna i powinna być dokładna" +"bardzo ważna i powinna być dokładna." msgid "Pellet flow coefficient" msgstr "Współczynnik przepływu granulatu" @@ -11773,7 +11832,7 @@ msgid "Unloading speed" msgstr "Prędkość rozładowania" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Prędkość stosowana do usuwania filamentu na wieży czyszczącej (nie ma wpływu " @@ -11792,8 +11851,8 @@ msgid "Delay after unloading" msgstr "Opóźnienie po rozładowaniu" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Czas bezczynności po rozładowaniu filamentu. Może pomóc w bezproblemowej " @@ -11821,7 +11880,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Odległość kształtowania mierzona od środka rurki chłodzącej" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11876,7 +11935,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Wykonuj raming podczas korzystania z drukarki wieloinstrumentowej (tj. gdy " "opcja „Pojedynczy extruder wielomateriałowy” w ustawieniach drukarki jest " @@ -11887,32 +11946,32 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Objętość wyciskania multi-tool" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Objętość do wyciśnięcia przed zmianą narzędzia." msgid "Multi-tool ramming flow" msgstr "Przepływ wyciskania multi-tool" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Przepływ używany do ramingu filamentu przed zmianą narzędzia." msgid "Density" msgstr "Gęstość" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Gęstość filamentu. Tylko do celów statystycznych" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Typ filamentu" msgid "Soluble material" msgstr "Materiał rozpuszczalny" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Materiał rozpuszczalny jest powszechnie używany do drukowania podpór i " "warstw łączących podpory z modelem" @@ -11921,7 +11980,7 @@ msgid "Support material" msgstr "Materiał podporowy" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Materiał podporowy jest powszechnie używany do drukowania podpór i warstw " "łączących podpory z modelem" @@ -11931,8 +11990,8 @@ msgstr "Temperatura mięknięcia" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Materiał mięknie w tej temperaturze, więc gdy temperatura stołu jest równa " "lub wyższa, zaleca się otwarcie drzwi przednich i/lub usunięcie górnej " @@ -11941,7 +12000,7 @@ msgstr "" msgid "Price" msgstr "Cena" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Cena filamentu. Tylko do celów statystycznych" msgid "money/kg" @@ -11950,7 +12009,7 @@ msgstr "zł/kg" msgid "Vendor" msgstr "Dostawca" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Dostawca filamentu. Tylko do celów prezentacyjnych" msgid "(Undefined)" @@ -11961,7 +12020,7 @@ msgstr "Kierunek wzoru wypełnienia" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Kąt dla wzoru wypełnienia, który kontroluje początek lub główny kierunek " "linii" @@ -11971,7 +12030,7 @@ msgstr "Kierunek wzoru pełnego wypełnienia" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia" msgid "Rotate solid infill direction" @@ -11986,7 +12045,7 @@ msgstr "Gęstość wypełnienia" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Gęstość wewnętrznego rzadkiego wypełnienia, 100% przekształca całe rzadkie " "wypełnienie w wypełnienie pełne, a użyty zostanie wzór wewnętrznego pełnego " @@ -11995,7 +12054,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Wzór wypełnienia" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Wzór dla wewnętrznego wypełnienia" msgid "Grid" @@ -12014,7 +12073,7 @@ msgid "Tri-hexagon" msgstr "Trójkątne" msgid "Gyroid" -msgstr "Żyroid" +msgstr "Gyroidalny" msgid "Honeycomb" msgstr "Plaster miodu" @@ -12068,7 +12127,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12080,7 +12139,7 @@ msgstr "" "określony parametr, linia wypełnienia zostanie połączona z segmentem obrysu " "tylko z jednej strony. Długość tego segmentu zostanie ograniczona do " "wartości określonej w parametrze infill_anchor, ale nie przekroczy tej " -"wartości. \n" +"wartości.\n" "Aby wyłączyć funkcję kotwiczenia, należy ustawić wartość na zero. Ustaw " "zero, aby wyłączyć kotwiczenie obrysów do pojedynczej linii wypełnienia." @@ -12101,7 +12160,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12119,23 +12178,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "0 (bez przymocowania)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Przyspieszenie na zewnętrznych ścianach" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Przyspieszenie na wewnętrznych ścianach" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Przyspieszenie ruchów podróżnych" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Przyspieszenie dla wypełnienia górnej powierzchni. Użycie niższej wartości " "może poprawić jakość górnej powierzchni" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Przyspieszenie na zewnętrznej ścianie. Użycie niższej wartości może poprawić " "jakość" @@ -12151,8 +12210,8 @@ msgid "mm/s² or %" msgstr "mm/s² lub %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage " -"(e.g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." msgstr "" "Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w " "procentach (np. 100%), będzie obliczana na podstawie domyślnego " @@ -12169,7 +12228,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Przyspieszenie dla pierwszej warstwy. Użycie niższej wartości może poprawić " "przyczepność do stołu" @@ -12177,7 +12236,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Włącz accel_to_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "" "Maksymalne przyspieszenie hamowania Klippera zostanie dostosowane " "automatycznie" @@ -12187,27 +12246,27 @@ msgstr "Dopasuj przyspieszenie przed zmianą kierunku" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" "Maksymalne przyspieszenie hamowania Klippera zostanie dostosowane do tego %% " "przyspieszenia" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk zewnętrznych ścian" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk wewnętrznych ścian" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Jerk dla górnej powierzchni" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Jerk dla wypełnienia" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Jerk pierwszej warstwy" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Jerk przemieszczenia" msgid "" @@ -12222,24 +12281,24 @@ msgstr "Wysokość pierwszej warstwy" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Wysokość pierwszej warstwy. Nieznaczne zwiększenie grubości pierwszej " "warstwy może poprawić przyczepność do stołu" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Prędkość pierwszej warstwy z wyjątkiem pełnego wypełnienia" msgid "Initial layer infill" msgstr "Wypełnienie pierwszej warstwy" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Prędkość pełnego wypełnienia na pierwszej warstwie" msgid "Initial layer travel speed" msgstr "Prędkość przemieszczenia pierwszej warstwy" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Prędkość przemieszczenia dla pierwszej warstwy" msgid "Number of slow layers" @@ -12255,7 +12314,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Temperatura dyszy dla pierwszej warstwy" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Temperatura dyszy do drukowania pierwszej warstwy przy użyciu tego filamentu" @@ -12283,7 +12342,7 @@ msgstr "Prędkość wentylatora dla warstwy łączącej podpory" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12316,7 +12375,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Losowe wibracje podczas drukowania ścian, aby nadać powierzchni chropowaty " "wygląd. To ustawienie reguluje „chropowatość”" @@ -12331,36 +12390,36 @@ msgid "All walls" msgstr "Wszystkie ściany" msgid "Fuzzy skin thickness" -msgstr "Grubość rozmycia powłoki" +msgstr "Grubość skóry fuzzy" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Szerokość w granicach której występuje rozmycie. Zaleca się, aby była " "poniżej szerokości linii zewnętrznej ściany." msgid "Fuzzy skin point distance" -msgstr "Odstęp między punktami rozmycia powłoki" +msgstr "Odstęp między punktami skóry fuzzy" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Średnia odległość między losowymi punktami wprowadzonymi na każdym odcinku " "linii" msgid "Apply fuzzy skin to first layer" -msgstr "Rozmycie powłoki na pierwszej warstwie" +msgstr "Skóra fuzzy na pierwszej warstwie" -msgid "Whether to apply fuzzy skin on the first layer" -msgstr "Określa czy zastosować rozmycie powłoki od pierwszej warstwy" +msgid "Whether to apply fuzzy skin on the first layer." +msgstr "Określa czy zastosować skórę fuzzy od pierwszej warstwy" msgid "Fuzzy skin noise type" -msgstr "Rodzaj szumu rozmycia powłoki" +msgstr "Rodzaj szumu skóry fuzzy" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12369,13 +12428,13 @@ msgid "" "Voronoi: Divides the surface into voronoi cells, and displaces each one by a " "random amount. Creates a patchwork texture." msgstr "" -"Określa rodzaj szumu używanego do generowania rozmycia powłoki.\n" +"Określa rodzaj szumu używanego do generowania skóry fuzzy.\n" "Klasyczny: klasyczny, jednolity, losowy szum.\n" "Perlin: szum Perlina, który zapewnia bardziej spójną teksturę.\n" "Billow: podobny do szumu Perlina, ale bardziej toporny.\n" "Pofałdowany multifraktal: szum falisty z ostrymi, postrzępionymi elementami. " "Tworzy tekstury przypominające marmur.\n" -"Woronoj: dzieli powierzchnię na komórki Woronoja i przesuwa każdą z nich o " +"Voronoi: dzieli powierzchnię na komórki Woronoja i przesuwa każdą z nich o " "losową wartość. Tworzy teksturę patchworkową." msgid "Classic" @@ -12391,10 +12450,10 @@ msgid "Ridged Multifractal" msgstr "Pofałdowany multifraktal" msgid "Voronoi" -msgstr "Woronoj" +msgstr "Voronoi" msgid "Fuzzy skin feature size" -msgstr "Rozmiar cechy rozmycia powłoki" +msgstr "Rozmiar cechy skóry fuzzy" msgid "" "The base size of the coherent noise features, in mm. Higher values will " @@ -12404,7 +12463,7 @@ msgstr "" "wyniku większe cechy." msgid "Fuzzy Skin Noise Octaves" -msgstr "Liczba oktaw szumu rozmycia powłoki" +msgstr "Liczba oktaw szumu skóry fuzzy" msgid "" "The number of octaves of coherent noise to use. Higher values increase the " @@ -12414,7 +12473,7 @@ msgstr "" "zwiększają szczegółowość szumu, ale również zwiększają czas obliczeń." msgid "Fuzzy skin noise persistence" -msgstr "Trwałość szumu rozmycia powłoki" +msgstr "Trwałość szumu skóry fuzzy" msgid "" "The decay rate for higher octaves of the coherent noise. Lower values will " @@ -12440,7 +12499,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Prędkość wypełniania szczelin. Przerwa zazwyczaj ma nieregularną szerokość " "linii i powinna być drukowana wolniej" @@ -12463,7 +12522,7 @@ msgstr "Dopasowanie łuków" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12483,15 +12542,16 @@ msgstr "" msgid "Add line number" msgstr "Dodaj numer linii" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" -msgstr "Włącz to, aby dodać numer linii (Nx) na początku każdej linii G-Code" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." +msgstr "Włącz to, aby dodać numer linii (Nx) na początku każdej linii G-Code." msgid "Scan first layer" msgstr "Skanuj pierwszą warstwę" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Włącz to, aby włączyć kamerę w drukarce do sprawdzania jakości pierwszej " "warstwy" @@ -12501,7 +12561,7 @@ msgstr "Typ dyszy" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Materiał metalu dyszy. Określa on odporność na ścieranie dyszy oraz rodzaj " "filamentu, który można drukować" @@ -12534,7 +12594,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Struktura drukarki" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Fizyczna konstrukcja i komponenty urządzenia do druku" msgid "CoreXY" @@ -12568,10 +12628,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Uruchom wentylator na określoną liczbę sekund wcześniej niż planowany czas " @@ -12615,7 +12675,7 @@ msgstr "" msgid "Time cost" msgstr "Koszt czasu" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Koszt drukarki za godzinę" msgid "money/h" @@ -12645,8 +12705,8 @@ msgstr "" msgid "G-code flavor" msgstr "Rodzaj G-code" -msgid "What kind of gcode the printer is compatible with" -msgstr "Z jakim rodzajem G-code drukarka jest kompatybilna" +msgid "What kind of G-code the printer is compatible with." +msgstr "Z jakim rodzajem G-code drukarka jest kompatybilna." msgid "Klipper" msgstr "Klipper" @@ -12654,20 +12714,20 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Drukarka do druku granulatem" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "Włącz tę opcję, jeśli Twoja drukarka używa granulatu zamiast filamentu" msgid "Support multi bed types" msgstr "Wspiera różne typy płyt roboczych" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "Włącz tę opcję, jeśli chcesz używać wielu rodzajów płyt roboczych" msgid "Label objects" msgstr "Etykietuj obiekty" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12680,8 +12740,8 @@ msgstr "" msgid "Exclude objects" msgstr "Wyłącz obiekty" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "Włącz tę opcję, aby dodać polecenie EXCLUDE OBJECT do G-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." +msgstr "Włącz tę opcję, aby dodać polecenie EXCLUDE OBJECT do G-code." msgid "Verbose G-code" msgstr "Rozszerzony G-code" @@ -12710,7 +12770,7 @@ msgid "Infill combination - Max layer height" msgstr "Kombinacja wypełnienia - Maks. wysokość warstwy" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12770,7 +12830,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "Górny obszar wypełnienia jest nieznacznie powiększony, aby zachodził na " "ścianę w celu lepszego połączenia i zminimalizowania pojawiania się otworów " @@ -12778,13 +12838,13 @@ msgstr "" "jest dobrym punktem wyjścia, minimalizującym pojawianie się otworów. Wartość " "procentowa odnosi się do szerokości linii wypełnienia" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Prędkość wewnętrznego wypełnienia" msgid "Inherits profile" msgstr "Dziedziczy profil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Nazwa nadrzędnego profilu" msgid "Interface shells" @@ -12793,7 +12853,7 @@ msgstr "Powłoki łączące" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Wymuszaj generowanie warstw między sąsiadującymi materiałami/woluminami. " "Przydatne przy wydrukach z wieloma ekstruderami, materiałów o przejrzystej " @@ -12811,7 +12871,7 @@ msgstr "Głębokość zazębiania się podzielonego na segmenty obszaru" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Głębokość zazębiania się podzielonego na segmenty obszaru. Zostanie ona " @@ -12900,7 +12960,7 @@ msgstr "Wszystkie jednolite warstwy" msgid "Ironing Pattern" msgstr "Wzór prasowania" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Wzór, który zostanie użyty podczas prasowania" msgid "Ironing flow" @@ -12908,7 +12968,7 @@ msgstr "Przepływ prasowania" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Ilość materiału do wytłoczenia podczas prasowania. Względem przepływu o " "normalnej wysokości warstwy. Zbyt wysoka wartość powoduje nadmierną " @@ -12917,7 +12977,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Odstęp między liniami" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Odstęp między liniami prasowania" msgid "Ironing inset" @@ -12925,13 +12985,13 @@ msgstr "Wstawka prasowania" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "Odległość od krawędzi. Wartość 0 ustawia ją na połowę średnicy dyszy." msgid "Ironing speed" msgstr "Szybkość prasowania" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Prędkość drukowania linii dla prasowania" msgid "Ironing angle" @@ -12944,17 +13004,17 @@ msgstr "" "Kąt, pod jakim wykonywane jest prasowanie. Liczba ujemna wyłącza tę funkcję " "i używa domyślnej metody." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Ten fragment G-code jest wstawiany przy każdej zmianie warstwy po " -"podniesieniu osi Z" +"podniesieniu osi Z." msgid "Supports silent mode" msgstr "Obsługuje tryb cichy" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Czy drukarka obsługuje tryb cichy, w którym drukarka używa niższego " "przyspieszenia do druku" @@ -12967,26 +13027,27 @@ msgstr "Limity maszyny" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Jeśli ta opcja jest włączona, limity maszyny zostaną wysłane do pliku G-" "code.\n" "Ta opcja zostanie zignorowana, jeśli wybrany jest G-code Klipper." +#, fuzzy msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Ten G-code zostanie użyty przy pauzie wydruku. Użytkownik może wstawić G-" -"code do przeglądarki gcode" +"code do przeglądarki G-code." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Ten G-code będzie użyty jako niestandardowy" msgid "Small area flow compensation (beta)" msgstr "Kompensacja przepływu małych obszarów (beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" "Włącz kompensację przepływu dla małych obszarów wypełnienia\n" "\n" @@ -13107,12 +13168,12 @@ msgstr "Maksymalne przyspieszenie cofania (M204 R)" msgid "Maximum acceleration for travel" msgstr "Maksymalne przyspieszenie podczas przemieszczania" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "Maksymalne przyspieszenie podróży (M204 T), dotyczy tylko Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Prędkość wentylatora chłodzenia części może być zwiększona, gdy jest " "włączona funkcja automatycznego chłodzenia. To jest maksymalne ograniczenie " @@ -13122,8 +13183,8 @@ msgid "Max" msgstr "Max" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Największa wysokość warstwy drukowalnej dla extrudera. Używane do " "ograniczenia maksymalnej wysokości warstwy podczas włączonej adaptacyjnej " @@ -13138,23 +13199,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13177,13 +13238,13 @@ msgstr "" "potrzebna. Może ona jednak zapewnić pewne marginalne korzyści w niektórych " "przypadkach, gdy prędkości funkcji znacznie się różnią. Na przykład, gdy " "występują agresywne spowolnienia spowodowane nawisami. W takich przypadkach " -"zalecana jest wysoka wartość około 300-350 mm3/s2, ponieważ pozwala to na " +"zalecana jest wysoka wartość około 300-350 mm³/s², ponieważ pozwala to na " "wystarczające wygładzenie, aby wspomóc wzrost ciśnienia w celu uzyskania " "płynniejszego przejścia przepływu.\n" "\n" "W przypadku wolniejszych drukarek bez przyspieszenia ciśnienia wartość ta " -"powinna być znacznie niższa. Wartość 10-15 mm3/s2 jest dobrym punktem " -"wyjścia dla extruderów z napędem bezpośrednim i 5-10 mm3/s2 dla extruderów " +"powinna być znacznie niższa. Wartość 10-15 mm³/s² jest dobrym punktem " +"wyjścia dla extruderów z napędem bezpośrednim i 5-10 mm³/s² dla extruderów " "typu Bowden.\n" "\n" "Ta funkcja jest znana jako Pressure Equalizer w Prusa slicer.\n" @@ -13198,11 +13259,11 @@ msgstr "Długość odcinka do wygładzenia" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -13231,7 +13292,7 @@ msgstr "" "prędkości na widocznych zewnętrznych obszarach, bez wpływu na prędkość " "drukowania wewnętrznych elementów, które nie są widoczne dla użytkownika." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Minimalna prędkość wentylatora chłodzenia części" msgid "" @@ -13251,8 +13312,8 @@ msgid "Min" msgstr "Min" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Najniższa możliwa do wydrukowania wysokość warstwy dla extrudera. Stosowana " "jako dolna granica dla adaptacyjnej wysokości warstw" @@ -13294,7 +13355,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Objętość dyszy" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Objętość przestrzeni w dyszy między nożem a wylotem dyszy" msgid "Cooling tube position" @@ -13339,7 +13400,7 @@ msgstr "Dodatkowa długość ładowania" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Gdy ta wartość wynosi zero, to długość ładowania filamentu z pozycji " @@ -13359,7 +13420,7 @@ msgstr "Zmniejszanie retrakcji wypełnienia" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Nie wykonuj retrakcji, gdy ruch odbywa się całkowicie w obszarze " "wypełnienia. Oznacza to, że wyciek nie będzie widoczny. Może to zmniejszyć " @@ -13376,7 +13437,7 @@ msgstr "" msgid "Filename format" msgstr "Format nazwy pliku" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" "Użytkownik może samodzielnie zdefiniować nazwę pliku projektu podczas " "eksportu" @@ -13407,7 +13468,7 @@ msgstr "Drukuj nawisy bez podpór - obszar otworów" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Maksymalna powierzchnia otworu w podstawie modelu przed jego wypełnieniem " "materiałem stożkowym. Wartość 0 wypełni wszystkie otwory w podstawie modelu." @@ -13436,10 +13497,10 @@ msgstr "" "Szerokość linii wewnętrznej ściany. Jeśli wyrażona w procentach, zostanie " "obliczona na podstawie średnicy dyszy." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Prędkość wewnętrznej ściany" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Ilość ścian każdej warstwy" msgid "Alternate extra wall" @@ -13447,10 +13508,10 @@ msgstr "Alternatywna dodatkowa ściana" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -13497,7 +13558,7 @@ msgstr "Wariant drukarki" msgid "Raft contact Z distance" msgstr "Odległość Z kontaktu z tratwą" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Dystans między modelem, a raftem, mierzony w poziomie. Ignorowany dla " "rozpuszczalnych warstw łączących" @@ -13505,19 +13566,19 @@ msgstr "" msgid "Raft expansion" msgstr "Rozszerzenie tratwy" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Rozszerzanie wszystkich warstw tratwy w płaszczyźnie XY" msgid "Initial layer density" msgstr "Gęstość pierwszej warstwy" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Gęstość pierwszej warstwy raftu lub podpór" msgid "Initial layer expansion" msgstr "Rozszerzenie pierwszej warstwy" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Rozszerz pierwszą warstwę tratwy lub podpory, aby poprawić przyczepność do " "płyty grzewczej" @@ -13527,58 +13588,58 @@ msgstr "Liczba warstw tratwy" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Model zostanie podniesiony o zadaną liczbę warstw i umieszczony na " "podporach. Użyj tej funkcji, aby uniknąć deformacji podczas drukowania ABS" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Ścieżka G-code jest generowana po uproszczeniu konturu modelu, aby uniknąć " "zbyt wielu punktów i linii w pliku G-code. Mniejsza wartość oznacza wyższą " -"rozdzielczość i więcej czasu na krojenie" +"rozdzielczość i więcej czasu na krojenie." msgid "Travel distance threshold" msgstr "Próg odległości podróży" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Wywołaj retrakcję tylko wtedy, gdy dystans przemieszania jest dłuższy niż ta " "wartość" msgid "Retract amount before wipe" -msgstr "Długość cofnięcia filamentu przed wytarciem dyszy" +msgstr "Długość retrakcji przed wytarciem dyszy" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" -"Długość szybkiego cofnięcia filamentu przed wytarciem dyszy, w stosunku do " -"długości cofnięcia." +"Długość szybkiej retrakcji przed wytarciem dyszy, w stosunku do długości " +"retrakcji." msgid "Retract when change layer" -msgstr "Wytarcie dyszy przy zmianie warstwy" +msgstr "Retrakcja przy zmianie warstwy" -msgid "Force a retraction when changes layer" -msgstr "Wymuś cofnięcie filamentu przy zmianie warstwy" +msgid "Force a retraction when changes layer." +msgstr "Wymuś retrakcje przy zmianie warstwy" msgid "Retract on top layer" -msgstr "Cofnięcie filamentu na górnej warstwie" +msgstr "Retrakcja na górnej warstwie" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Włącz wymuszanie retrakcji na górnej warstwie. Wyłączenie tej opcji może " "prowadzić do gromadzenia się materiału i zatkania dyszy, zwłaszcza przy " "drukowaniu skomplikowanych i wolnych wzorów, takich jak krzywa Hilberta." msgid "Retraction Length" -msgstr "Długość cofnięcia filamentu" +msgstr "Długość retrakcji" msgid "" "Some amount of material in extruder is pulled back to avoid ooze during long " @@ -13587,16 +13648,16 @@ msgstr "" "Pewna ilość materiału w ekstruderze jest cofana, aby zapobiec wyciekowi " "filamentu podczas długiego ruchu. Ustaw zero, aby zablokować retrakcje" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Długość retrakcji przed odcięciem filamentu (eksperymentalna)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Funkcja eksperymentalna. Wycofanie i odcięcie filamentu na większej " +"Funkcja eksperymentalna: Wycofanie i odcięcie filamentu na większej " "odległości podczas jego zmian w celu zminimalizowania objętości płukania. " "Chociaż znacząco zmniejszy to zużycie filamentu, może to również zwiększyć " "ryzyko zatkania dyszy lub innych problemów podczas drukowania." @@ -13605,10 +13666,10 @@ msgid "Retraction distance when cut" msgstr "Długość retrakcji podczas cięcia" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Funkcja eksperymentalna. Długość retrakcji przed odcięciem podczas zmiany " +"Funkcja eksperymentalna: Długość retrakcji przed odcięciem podczas zmiany " "filamentu" msgid "Z-hop height" @@ -13617,30 +13678,30 @@ msgstr "Wysokość Z-hop" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Zawsze gdy wykonana jest retrakcja, dysza jest nieco podnoszona, aby " "stworzyć odstęp między dyszą a wydrukiem. Zapobiega to uderzeniu dyszy w " "wydruk podczas przemieszczania. Użycie linii spiralnej do podniesienia Z " "może zapobiec powstawaniu strun" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Dolna granica Z-hop" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Jeśli podana jest dodatnia wartość, oś Z będzie podnosić się tylko poniżej " "ustawionej tutaj granicy. W ten sposób możesz zablokować podnoszenie się osi " "Z powyżej ustawionej wysokości." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Górna granica Z-hop" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Jeśli podano wartość dodatnią, oś Z będzie podnosić się tylko powyżej " "określonej tutaj wysokości. Dzięki temu możesz wyłączyć podnoszenie osi Z " @@ -13649,9 +13710,6 @@ msgstr "" msgid "Z-hop type" msgstr "Typ Z-hop" -msgid "Z hop type" -msgstr "Typ Z-hop" - msgid "Slope" msgstr "Ukośny" @@ -13662,8 +13720,8 @@ msgid "Traveling angle" msgstr "Kąt ruchu" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Kąt ruchu dla typu Z-hop: „Ukośny” i „Spiralny”. Ustawienie go na 90° " "skutkuje standardowym uniesieniem." @@ -13692,7 +13750,7 @@ msgid "On surfaces" msgstr "Na powierzchniach" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Wymuszaj zachowanie Z-hop. To ustawienie jest zależne od ustawień powyżej (Z-" @@ -13728,20 +13786,20 @@ msgstr "" "taką dodatkową ilość filamentu." msgid "Retraction Speed" -msgstr "Prędkość wycofania filamentu" +msgstr "Prędkość retrakcji" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Prędkość cofnięcia filamentu" msgid "De-retraction Speed" msgstr "Prędkość deretrakcji" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Prędkość ponownego załadowania filamentu do extrudera. Zero oznacza tę samą " -"prędkość co wycofania." +"prędkość co retrakcja." msgid "Use firmware retraction" msgstr "Użyj retrakcji sterowanej przez firmware." @@ -13761,15 +13819,15 @@ msgid "Disable set remaining print time" msgstr "Wyłącz ustawianie pozostałego czasu druku" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Zablokuj generowanie polecenia M73: Ustaw pozostały czas druku w końcowym G-" -"code" +"code." msgid "Seam position" msgstr "Pozycja szwu" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Początkowa pozycja do drukowania każdej części zewnętrznej ściany" msgid "Nearest" @@ -13863,7 +13921,7 @@ 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 " +"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 " @@ -13931,7 +13989,7 @@ msgid "Role base wipe speed" msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -13959,7 +14017,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -13970,7 +14028,7 @@ msgstr "" "Ściana Zewnętrzna/Wewnętrzna lub Wewnętrzna/Zewnętrzna/Wewnętrzna, " "deretrakcja jest wykonana nieco od wewnątrz od początku zewnętrznego obwodu. " "W ten sposób wszelkie potencjalne nadmierne wytłaczanie jest ukryte przed " -"zewnętrzną powierzchnią. \n" +"zewnętrzną powierzchnią.\n" "\n" "Jest to przydatne podczas drukowania z kolejnością drukowania Ściana " "zewnętrzna/Wewnętrzna lub Wewnętrzna/Zewnętrzna/Wewnętrzna, ponieważ w tych " @@ -13982,9 +14040,9 @@ msgstr "Prędkość wycierania" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Prędkość wycierania dyszy jest ustalona przez ustawienie prędkości określone " "w tej konfiguracji. Jeśli wartość jest wyrażona w procentach (np. 80%), " @@ -13992,27 +14050,27 @@ msgstr "" "wartość dla tego parametru to 80%" msgid "Skirt distance" -msgstr "Odstęp Skirtu od obiektu" +msgstr "Odstęp skirtu od obiektu" msgid "Distance from skirt to brim or object" -msgstr "Odległość Skirtu do obrzeża albo do obiektu" +msgstr "Odległość skirtu do brumu albo do obiektu" msgid "Skirt start point" -msgstr "Punkt początkowy Skirtu" +msgstr "Punkt początkowy skirtu" msgid "" "Angle from the object center to skirt start point. Zero is the most right " "position, counter clockwise is positive angle." msgstr "" -"Kąt między środkiem obiektu a punktem początkowym Skirtu. Zero to pozycja " -"najbardziej po prawej stronie, a w kieruneku przeciwnym do ruchu wskazówek " +"Kąt między środkiem obiektu a punktem początkowym skirtu. Zero to pozycja " +"najbardziej po prawej stronie, a w kierunku przeciwnym do ruchu wskazówek " "zegara to kąt dodatni." msgid "Skirt height" -msgstr "Wysokość Skirtu" +msgstr "Wysokość skirt" -msgid "How many layers of skirt. Usually only one layer" -msgstr "Ile warstw Skirtu. Zwykle tylko jedna warstwa" +msgid "How many layers of skirt. Usually only one layer." +msgstr "Ile warstw skirtu. Zwykle tylko jedna warstwa" msgid "Single loop draft shield" msgstr "Pojedyncza pętla Draft shield" @@ -14032,7 +14090,7 @@ msgstr "Draft shield" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14056,7 +14114,7 @@ msgid "Enabled" msgstr "Włączony" msgid "Skirt type" -msgstr "Rodzaj Skirtu" +msgstr "Rodzaj skirtu" msgid "" "Combined - single skirt for all objects, Per object - individual object " @@ -14072,29 +14130,29 @@ msgid "Per object" msgstr "Dla obiektu" msgid "Skirt loops" -msgstr "Ilość pętli Skirtu" +msgstr "Liczba pętli skirt" -msgid "Number of loops for the skirt. Zero means disabling skirt" -msgstr "To jest liczba pętli Skirtu. Zero oznacza, wyłączone tej funkcji" +msgid "Number of loops for the skirt. Zero means disabling skirt." +msgstr "To jest liczba pętli skirt. Zero oznacza, wyłączone tej funkcji" msgid "Skirt speed" -msgstr "Prędkość Skirtu" +msgstr "Prędkość skirtu" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "" -"Prędkość Skirtu, w mm/s. Zero oznacza użycie domyślnej prędkości ekstruzji " -"warstwy." +"Prędkość dla skirtu, w mm/s. Zero oznacza użycie domyślnej prędkości " +"ekstruzji warstwy." msgid "Skirt minimum extrusion length" -msgstr "Minimalna długość ekstruzji Skirtu" +msgstr "Minimalna długość ekstruzji skirtu" msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Minimalna długość ekstruzji filamentu w mm podczas drukowania skirtu. Zero " @@ -14106,19 +14164,20 @@ msgstr "" "weryfikacji. W takim przypadku zwiększ liczbę pętli." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Prędkość drukowania w wyeksportowanym gcode zostanie zwolniona, gdy " "szacowany czas warstwy jest krótszy niż ta wartość, aby uzyskać lepsze " -"chłodzenie tych warstw" +"chłodzenie tych warstw." msgid "Minimum sparse infill threshold" msgstr "Minimalny próg wypełnienia" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Obszar wypełnienia, który jest mniejszy od wartości progowej zostaje " "zastąpiony wewnętrznym, pełnym wypełnieniem" @@ -14136,7 +14195,7 @@ msgstr "" "Szerokość linii wewnętrznego pełnego wypełnienia. Jeśli wyrażona w " "procentach, będzie obliczana na podstawie średnicy dyszy." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Prędkość wewnętrznego pełnego wypełnienia, nie dotyczy górnej i dolnej " "powierzchni" @@ -14144,7 +14203,7 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Tryb Wazy wygładza ruchy osi z zewnętrznego konturu. Zamienia cały model w " "wydruk jednościenny z pełnymi dolnymi warstwami. Końcowy wygenerowany model " @@ -14155,7 +14214,7 @@ msgstr "Wygładzona spirala" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Wygładzona spirala wygładza również ruchy w osiach X i Y, dzięki czemu nie " "jest widoczny żaden szew, nawet w kierunkach XY na ścianach, które nie są " @@ -14167,7 +14226,7 @@ msgstr "Maksymalne wygładzanie XY" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Maksymalna odległość, o którą można przesunąć punkty w płaszczyźnie XY, aby " "spróbować uzyskać gładką spiralę. Jeśli wyrażone jako %, będzie obliczane " @@ -14228,8 +14287,8 @@ msgstr "Zmiana temperatury" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Różnica temperatur, która ma być zastosowana, gdy ekstruder nie jest " "aktywny. Wartość nie będzie użyta, gdy „temperatura w bezczynności” w " @@ -14254,7 +14313,7 @@ msgid "Preheat steps" msgstr "Kroki wstępnego podgrzewania" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Wprowadź wiele poleceń dotyczących podgrzewania (np. M104.1). Funkcja ta " @@ -14264,16 +14323,16 @@ msgstr "" msgid "Start G-code" msgstr "Początkowy G-code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Początkowy G-code przy rozpoczynaniu całego drukowania" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Początkowy G-code przy rozpoczynaniu drukowania tym filamentem" msgid "Single Extruder Multi Material" msgstr "Pojedynczy extruder wielomateriałowy" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Użyj pojedynczej dyszy do drukowania wieloma filamentami" msgid "Manual Filament Change" @@ -14295,18 +14354,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Oczyszczanie na wieży czyszczącej" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Oczyszczanie pozostałego filamentu do wieży czyszczącej" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Włącz szybką ekstruzję filamentu" msgid "No sparse layers (beta)" msgstr "Warstwy bez czyszczenia (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14379,9 +14438,9 @@ msgid "Enable support generation." msgstr "Włącz generowanie podpór." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Opcje Normal (auto) i Drzewo (auto) służą do automatycznego generowania " "podpór. Jeśli wybrane zostaną Normal (manual) lub Drzewo (manual), " @@ -14402,7 +14461,7 @@ msgstr "Drzewo (manual)" msgid "Support/object xy distance" msgstr "Odległość XY miedzy podporą a obiektem" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Odstęp materiału podporowego od modelu w osiach XY" msgid "Support/object first layer gap" @@ -14422,7 +14481,7 @@ msgstr "" msgid "On build plate only" msgstr "Tylko na stole" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Nie twórz podpór na powierzchni modelu, tylko na stole" msgid "Support critical regions only" @@ -14444,13 +14503,13 @@ msgstr "Usuń małe nawisy, które prawdopodobnie nie wymagają podpór." msgid "Top Z distance" msgstr "Odstęp góry w osi Z" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "Odstęp osi Z między górną warstwą łączącą podporę z obiektem" msgid "Bottom Z distance" msgstr "Odstęp spodu w osi Z" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "Odległość w osi Z między dolną warstwą łączącyą a obiektem" msgid "Support/raft base" @@ -14458,7 +14517,7 @@ msgstr "Podstawa podpory/tratwy" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament do drukowania podstawy podpory i raftu. „Domyślnie” oznacza brak " "wyboru konkretnego filamentu dla ich podstawy. Zostanie użyty obecny filament" @@ -14491,7 +14550,7 @@ msgstr "Warstwy łączące podpory/tratwy" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament do drukowania warstw łączących podpory z modelem. „Domyślnie” " "oznacza brak konkretnego filamentu dla podpory i używanie obecnego filamentu" @@ -14499,13 +14558,13 @@ msgstr "" msgid "Top interface layers" msgstr "Górne warstwy łączące" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Liczba górnych warstw łączących" msgid "Bottom interface layers" msgstr "Dolne warstwy łączące" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Liczba dolnych warstw łączących" msgid "Same as top" @@ -14514,7 +14573,7 @@ msgstr "Takie samo jak u góry" msgid "Top interface spacing" msgstr "Rozstaw górnych warstw łączących" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Odstęp między liniami powierzchni warstwy łączącej. Wartość zero oznacza, że " "warstwa łącząca jest jednolita i bez przerw" @@ -14522,18 +14581,18 @@ msgstr "" msgid "Bottom interface spacing" msgstr "Rozstaw dolnych warstw łączących" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Odstęp między liniami dolnej powierzchni warstwy łączącej. Wartość zero " "oznacza, że warstwa łącząca jest jednolita i bez przerw" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Prędkość dla warstw łączących" msgid "Base pattern" msgstr "Wzór podstawowy" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Liniowy wzór podpór" msgid "Rectilinear grid" @@ -14548,7 +14607,7 @@ msgstr "Wzór warstwy łączącej" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Wzór linii dla warstw łączących podpory. Standardowy wzór dla warstwy " "łączącej podpory nierozpuszczalnej jest Prostoliniowy, natomiast dla warstwy " @@ -14560,16 +14619,16 @@ msgstr "Prostoliniowe przeplatane" msgid "Base pattern spacing" msgstr "Rozstaw wzoru podstawowego" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Odstępy między liniami podpory" msgid "Normal Support expansion" msgstr "Rozszerzenie normalnej podpory" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Rozszerz (+) lub skurcz (-) poziomy zasięg normalnego wsparcia" -msgid "Speed of support" +msgid "Speed of support." msgstr "Prędkość podpory" msgid "" @@ -14613,7 +14672,7 @@ msgstr "Niezależna wysokość warstwy podpory" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Warstwa podpory używa niezależnej wysokości warstwy od warstwy obiektu. " @@ -14648,8 +14707,8 @@ msgid "Tree support branch angle" msgstr "Kąt nachylenia gałęzi" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "To ustawienie określa maksymalny kąt nawisu, jaki mogą tworzyć gałęzie " @@ -14697,27 +14756,27 @@ msgid "Adaptive layer height" msgstr "Adaptacyjna wysokość warstwy" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Włączenie tej opcji oznacza, że wysokość warstwy podpory drzewo, z wyjątkiem " "pierwszej, zostanie automatycznie obliczona " msgid "Auto brim width" -msgstr "Automatyczna szerokość Brimu" +msgstr "Automatyczna szerokość brimu" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" -"Włączenie tej opcji oznacza, że szerokość Brimu dla podpory drzewo będzie " +"Włączenie tej opcji oznacza, że szerokość brimu dla podpory drzewo będzie " "automatycznie obliczana" msgid "Tree support brim width" -msgstr "Szerokość Brimu dla podpory drzewa" +msgstr "Szerokość brimu dla podpory drzewa" -msgid "Distance from tree branch to the outermost brim line" -msgstr "Odległość od gałęzi drzewa do najbardziej zewnętrznej linii Brimu" +msgid "Distance from tree branch to the outermost brim line." +msgstr "Odległość od gałęzi drzewa do najbardziej zewnętrznej linii brimu" msgid "Tip Diameter" msgstr "Średnica końcówki" @@ -14762,7 +14821,7 @@ msgstr "Podpora w formie drzewa z wypełnieniem" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "To ustawienie określa, czy dodać wypełnienie wewnątrz dużych pustych " "przestrzeni podpor (drzewa)" @@ -14776,7 +14835,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14799,13 +14858,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -14832,7 +14891,7 @@ msgstr "" "lub jeśli chcesz zarządzać utrzymywaniem ciepła w makrze rozpoczynającym " "drukowanie, jeśli nie jest zainstalowany aktywna podgrzewacz komory." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Temperatura dyszy dla warstw po początkowej" msgid "Detect thin wall" @@ -14840,20 +14899,20 @@ msgstr "Wykrywanie cienkich ścian" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Wykrywaj ściany o grubości jednego obrysu. Są to obszary, gdzie 2 obrysy nie " "zmieszczą się i trzeba będzie połączyć je w jedną linię" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Ten gcode jest wstawiany podczas zmiany filamentu, w tym komendy T do " -"wywołania zmiany narzędzia" +"wywołania zmiany narzędzia." -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "Ten G-code jest dodawany przy zmianie funkcji ekstruzji" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "Ten G-code jest dodawany przy zmianie funkcji ekstruzji." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -14862,7 +14921,7 @@ msgstr "" "Szerokość linii dla górnych powierzchni. Jeśli wyrażona w procentach, będzie " "obliczona na podstawie średnicy dyszy." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Prędkość wypełnienia górnej powierzchni, która jest zwarta" msgid "Top shell layers" @@ -14871,7 +14930,7 @@ msgstr "Górne warstwy powłoki" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "To jest liczba pełnych warstw górnej powłoki, włączając w to górną " "powierzchnie. Jeżeli grubość obliczona na podstawie tej wartości jest " @@ -14889,7 +14948,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Liczba górnych zwartych warstw jest zwiększana podczas cięcia, jeśli grubość " "obliczona przez górną warstwe powłoki jest cieńsza niż ta wartość. Można w " @@ -14897,17 +14956,18 @@ msgstr "" "oznacza, że to ustawienie jest wyłączone, a grubość górnej powłoki jest " "absolutnie określona przez górne warstwy powłoki" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Prędkość przemieszczania, która jest szybsza i bez ekstruzji" msgid "Wipe while retracting" -msgstr "Czyszczenie przy cofnięciu" +msgstr "Wycieranie przy retrakcji" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" -"Przesuń dyszę wzdłuż ostatniej ścieżki ekstruzji podczas cofania, aby " +"Przesuń dyszę wzdłuż ostatniej ścieżki ekstruzji podczas retrakcji, aby " "oczyścić wyciekły filament na dyszy. Może to zminimalizować wystąpienie " "grudek podczas drukowania nowej części po przejeździe" @@ -14916,21 +14976,21 @@ msgstr "Odległość czyszczenia" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Opisz, jak długo dysza będzie się przesuwać wzdłuż ostatniej ścieżki podczas " -"cofania. \n" +"retrakcji.\n" "\n" "W zależności od tego, jak długo trwa operacja czyszczenia oraz jak szybkie i " "długie są ustawienia cofania extrudera/filamentu, może być potrzebny ruch " -"cofania, aby cofnąć pozostały filament. \n" +"cofania, aby cofnąć pozostały filament.\n" "\n" "Ustawienie wartości w ilości cofania przed ustawieniem czyszczenia poniżej " "spowoduje wykonanie nadmiernego cofania przed czyszczeniem, w przeciwnym " @@ -14965,7 +15025,7 @@ msgid "The volume of material to prime extruder on tower." msgstr "" "Objętość materiału, który ekstruder powinien upuścić na wieży czyszczącej." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Szerokość wieży czyszczącej" msgid "Wipe tower rotation angle" @@ -15001,7 +15061,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15009,7 +15069,7 @@ msgid "" "regardless of this setting." msgstr "" "Jest to funkcja odpowiedzialna za maksymalną prędkość drukowania podczas " -"oczyszczania w wieży czyszczącej i drukowania jej rzadkich warstw. \n" +"oczyszczania w wieży czyszczącej i drukowania jej rzadkich warstw.\n" "Podczas oczyszczania, jeśli prędkość rzadkiego wypełnienia jest niższa od " "prędkości obliczonej na podstawie maksymalnego natężenia przepływu " "filamentu, to właśnie ta niższa wartość zostanie wybrana.\n" @@ -15069,8 +15129,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "To jest obiekt wykorzystywany do oczyszczenia dyszy po zmianie filamentu, co " "pozwala zaoszczędzić filament i skrócić czas druku. W wyniku tego procesu " @@ -15105,9 +15165,9 @@ msgid "Idle temperature" msgstr "Temperatura w bezczynności" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Temperatura dyszy, gdy narzędzie nie jest aktualnie używane w konfiguracjach " "wielonarzędziowych. Jest to używane tylko wtedy, gdy „Zapobieganie " @@ -15117,10 +15177,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Kompensacja otworów X-Y" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Otwory obiektu będą powiększane lub zmniejszane w płaszczyźnie XY przez " "zadaną wartość (ujemna = zmniejszenie, dodatnia = zwiększenie). Funkcja ta " @@ -15129,11 +15191,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Kompensacja konturu X-Y" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Model zostanie zmniejszony lub zwiększony w osiach X i Y o zadaną wartość " "(ujemna = zmniejszenie, dodatnia = zwiększenie). Może być przydatne przy " @@ -15191,7 +15254,7 @@ msgstr "Format miniatur G-code" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Format miniatur G-code: PNG dla najlepszej jakości, JPG dla najmniejszego " "rozmiaru, QOI dla oprogramowania o niskiej pamięci" @@ -15202,10 +15265,10 @@ msgstr "" "wartości dla Extrudera" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Względna ekstruzja jest zalecana przy użyciu opcji „label_objects”. Niektóre " "extrudery działają lepiej z tą opcją odznaczoną (tryb absolutnej ekstruzji). " @@ -15215,7 +15278,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Klasyczny generator ścian tworzy ściany o stałej szerokości ekstruzji, a do " "bardzo cienkich obszarów używa wypełnienia szczelin. Silnik Arachne generuje " @@ -15230,7 +15293,7 @@ msgstr "Długość przejścia ściany" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Podczas przechodzenia między różnymi liczbami obrysów, gdy część staje się " "cieńsza, przydzielana jest pewna ilość miejsca na rozdzielenie lub " @@ -15247,7 +15310,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Unikaj zmiany między zbyt grubą a zbyt cienką ścianą. Ten margines rozszerza " "zakres szerokości ekstruzji na [Minimalną szerokość ściany - margines, 2 * " @@ -15266,7 +15329,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Kiedy tworzyć przejścia między parzystą i nieparzystą liczbą obrysów. " "Kształt klina o kącie większym niż to ustawienie nie będzie miał przejść, a " @@ -15280,7 +15343,7 @@ msgstr "Liczba rozdzielanych ścian" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Ilość ścian, licząc od środka, na których należy rozłożyć zmienność. Niższe " "wartości oznaczają, że zewnętrzne ściany nie zmieniają szerokości" @@ -15288,11 +15351,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minimalny rozmiar detalu" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Minimalna grubość cienkich detali. Detale modelu, które są cieńsze niż ta " "wartość, nie będą drukowane, natomiast detale grubsze niż minimalny rozmiar " @@ -15342,7 +15406,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Szerokość obrysu, który zastąpi cienkie detale modelu (zgodnie z minimalnym " "rozmiarem detalu). Jeśli minimalna szerokość obrysu jest mniejsza niż " @@ -15353,9 +15417,9 @@ msgid "Detect narrow internal solid infill" msgstr "Wykryj wąskie wewnętrzne pełne wypełnienie" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Ta opcja automatycznie wykryje wąski obszar wewnętrznego pełnego " "wypełnienia. Jeśli włączone, zostanie użyty wzór koncentryczny dla tego " @@ -15389,7 +15453,7 @@ msgstr "Eksportuj dane slicowania do folderu." msgid "Load slicing data" msgstr "Wczytaj dane cięcia" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Załaduj buforowane dane slicowania z katalogu" msgid "Export STL" @@ -15401,7 +15465,7 @@ msgstr "Eksportuj obiekty jako jeden plik STL." msgid "Export multiple STLs" msgstr "Eksportuj jako wiele plików STL" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Eksportuj obiekty jako wiele plików STL do katalogu." msgid "Slice" @@ -15424,13 +15488,13 @@ msgstr "Sprawdź kompatybilność wsteczną maszyn" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "Sprawdza, czy aktualna maszyna jest kompatybilna z maszynami z listy" msgid "Load default filaments" msgstr "Załaduj domyślne filamenty" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "" "Załaduj pierwszy filament jako domyślny dla tych, które nie zostały " "załadowane" @@ -15456,10 +15520,11 @@ msgstr "maksymalny czas slicowania na podłoże w sekundach." msgid "No check" msgstr "Brak sprawdzania" -msgid "Do not run any validity checks, such as gcode path conflicts check." +#, fuzzy +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Nie uruchamiaj żadnych testów poprawności, takich jak sprawdzanie konfliktów " -"ścieżek gcode." +"ścieżek G-code." msgid "Normative check" msgstr "Kontrola normatywna" @@ -15491,17 +15556,17 @@ msgstr "Opcje aranżacji" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Opcje aranżacji: 0-wyłącz, 1-włącz, inne-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Liczba powtórzeń" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Liczba powtórzeń całego modelu" msgid "Ensure on bed" msgstr "Zapewnij na stole roboczym" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Podnieś obiekt ponad stół roboczy, gdy jest częściowo poniżej. Domyślnie " "wyłączone." @@ -15516,7 +15581,7 @@ msgstr "" msgid "Convert Unit" msgstr "Konwertuj jednostkę" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Konwertuj jednostki modelu" msgid "Orient Options" @@ -15534,69 +15599,69 @@ msgstr "Obróć wokół osi Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Kąt obrotu wokół osi Y w stopniach." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Skaluj model przez czynnik zmiennoprzecinkowy" msgid "Load General Settings" msgstr "Załaduj ustawienia ogólne" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Załaduj ustawienia procesu/maszyny z określonego pliku" msgid "Load Filament Settings" msgstr "Załaduj ustawienia filamentu" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Załaduj ustawienia filamentu z określonej listy plików" msgid "Skip Objects" msgstr "Pomiń obiekty" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Pomiń niektóre obiekty w tym druku" msgid "Clone Objects" msgstr "Powiel obiekty" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" "załaduj aktualne ustawienia procesu/maszyny podczas korzystania z " "aktualizacji" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "załaduj aktualne ustawienia procesu/maszyny z określonego pliku podczas " "korzystania z aktualizacji" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "Jeśli włączone, sprawdza, czy bieżąca maszyna jest wstecznie kompatybilna z " "maszynami z listy." -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "ustawienia wstecznej kompatybilności maszyn" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "Wczytaj listę montażu" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "Wczytaj listę obiektów montażu z pliku konfiguracyjnego" msgid "Data directory" @@ -15620,23 +15685,23 @@ msgid "Debug level" msgstr "Poziom debugowania" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " -"5:trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" +"trace\n" msgstr "" -"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, " -"4:debug, 5:trace\n" +"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:" +"debug, 5:trace\n" msgid "Enable timelapse for print" -msgstr "Włącz timelaps dla druku" +msgstr "Włącz timelapse dla druku" -msgid "If enabled, this slicing will be considered using timelapse" -msgstr "" +msgid "If enabled, this slicing will be considered using timelapse." +msgstr "Jeśli włączone, to cięcie będzie uwzględniać tryb timelapse." -msgid "Load custom gcode" -msgstr "Załaduj własny gcode" +msgid "Load custom G-code" +msgstr "Załaduj własny G-code" -msgid "Load custom gcode from json" -msgstr "Załaduj własny gcode z json" +msgid "Load custom G-code from json." +msgstr "Załaduj własny G-code z json." msgid "Load filament ids" msgstr "Wczytaj identyfikatory filamentu" @@ -15644,35 +15709,37 @@ msgstr "Wczytaj identyfikatory filamentu" msgid "Load filament ids for each object" msgstr "Wczytaj identyfikatory filamentu dla każdego obiektu" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Zezwól na użycie wielu kolorów na jednej płycie" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" "Jeśli włączone, układ pozwoli na użycie wielu kolorów na jednej płycie." -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Zezwól na obracanie podczas rozmieszczania" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" "Jeśli włączone, pozwoli na obracanie obiektów podczas ich rozmieszczanie." -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Unikaj obszaru kalibracji ekstrudera podczas rozmieszczania" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Jeśli włączone, rozmieszczanie obiektów będzie omijać obszar kalibracji " "ekstrudera podczas ustawiania obiektów" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "Pomiń zmodyfikowany G-code w 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" +"Pomiń zmodyfikowane pliki gcode w 3MF z profilem ustawień drukarki lub " +"filamentu." msgid "MakerLab name" msgstr "Nazwa MakerLab" @@ -15698,13 +15765,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Zezwól na cięcie plików 3MF w nowszej wersji" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Bieżący Z-hop" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Zawiera z-hop obecny na początku bloku niestandardowego G-code" msgid "" @@ -15810,10 +15877,10 @@ msgstr "" "Całkowita objętość filamentu wytłoczona przez każdy ekstruder podczas całego " "wydruku" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Całkowita zmiana narzędzia" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Liczba zmian narzędzi podczas druku." msgid "Total volume" @@ -16057,7 +16124,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Kompensacja rozmiaru XY obiektu nie będzie używana, ponieważ jest także " "malowany na kolor.\n" @@ -16069,8 +16136,8 @@ msgstr "Podpory: tworzenie miejsc kontaktowych" msgid "" "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension." msgstr "" -"Nieznany format pliku. Plik wejściowy musi mieć " -"rozszerzenie .stl, .obj, .amf(.xml)." +"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ." +"amf(.xml)." msgid "Loading of a model file failed." msgstr "Nie udało się wczytać pliku modelu." @@ -16080,11 +16147,8 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf " -"lub .zip.amf." - -msgid "Canceled" -msgstr "Anulowano" +"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip." +"amf." msgid "load_obj: failed to parse" msgstr "load_obj: nie udało się przetworzyć" @@ -16143,7 +16207,7 @@ msgstr "Jak używać wyniku kalibracji?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "" -"Możesz zmienić współczynnik Kalibracji Dynamiki Przepływu podczas edycji " +"Możesz zmienić współczynnik kalibracji dynamiki przepływu podczas edycji " "profilu filamentu" msgid "" @@ -16189,7 +16253,7 @@ msgid "The name cannot be empty." msgstr "Nazwa nie może być pusta." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Nie znaleziono wybranej przedustawionej opcji: %s." msgid "The name cannot be the same as the system preset name." @@ -16221,7 +16285,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "To urządzenie może przechowywać tylko 16 wyników w historii dla jednej " @@ -16235,7 +16299,7 @@ msgstr "Łączenie z drukarką..." msgid "The failed test result has been dropped." msgstr "Odrzucono nieudany wynik testu." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Wynik kalibracji dynamiki przepływu został zapisany w drukarce" #, c-format, boost-format @@ -16261,24 +16325,24 @@ msgstr "Błąd wewnętrzny" msgid "Please select at least one filament for calibration" msgstr "Proszę wybrać co najmniej jeden filament do kalibracji" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "Wynik kalibracji natężenia przepływu został zapisany w profilu" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "Wynik kalibracji maksymalnego przepływu został zapisany do profilu" msgid "When do you need Flow Dynamics Calibration" -msgstr "Kiedy potrzebujesz Kalibracji Dynamiki Przepływu" +msgstr "Kiedy potrzebujesz kalibracji dynamiki przepływu" msgid "" "We now have added the auto-calibration for different filaments, which is " "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Teraz dodaliśmy automatyczną kalibrację dla różnych filamentów, która jest w " "pełni zautomatyzowana, a wynik zostanie zapisany w drukarce do przyszłego " @@ -16340,12 +16404,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Po użyciu kalibracji dynamiki przepływu mogą nadal występować pewne problemy " "z ekstruzją, takie jak:\n" @@ -16438,7 +16502,7 @@ msgid "materials with inaccurate filament diameter" msgstr "filamentami z niedokładną średnicą" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "Znaleźliśmy najlepszy współczynnik Kalibracji Dynamiki Przepływu" +msgstr "Znaleźliśmy najlepszy współczynnik kalibracji dynamiki przepływu" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " @@ -16465,7 +16529,7 @@ msgstr "Nazwa nie może przekraczać 40 znaków." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Tylko jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno " "chcesz zastąpić inne wyniki?" @@ -16519,9 +16583,6 @@ msgstr "Pomiń kalibrację 2" msgid "flow ratio : %s " msgstr "współczynnik przepływu: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Please choose a block with smoothest top surface" - msgid "Please choose a block with smoothest top surface." msgstr "Wybierz blok z najgładszą górną powierzchnią." @@ -16566,7 +16627,7 @@ msgstr "Filament do kalibracji" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Wskazówki dotyczące filamentu kalibracyjnego: \n" "- Materiały, które mogą dzielić tę samą temperaturę podgrzewanego stołu\n" @@ -16608,7 +16669,7 @@ msgid "To Volumetric Speed" msgstr "Do Prędkości Przepływu" msgid "Flow Dynamics Calibration Result" -msgstr "Wyniki Kalibracji Dynamiki Przepływu" +msgstr "Wynik kalibracji dynamiki przepływu" msgid "New" msgstr "Nowy" @@ -16631,7 +16692,7 @@ msgstr "" "To urządzenie może przechowywać tylko %d wyników w historii dla jednej dyszy." msgid "Edit Flow Dynamics Calibration" -msgstr "Edytuj Kalibrację Dynamiki Przepływu" +msgstr "Edytuj kalibrację dynamiki przepływu" msgid "New Flow Dynamic Calibration" msgstr "Nowa Kalibracji Dynamiki Przepływu" @@ -16714,10 +16775,10 @@ msgid "Print numbers" msgstr "Drukuj cyfry" msgid "Comma-separated list of printing accelerations" -msgstr "" +msgstr "Wartości przyspieszenia oddzielona przecinkami" msgid "Comma-separated list of printing speeds" -msgstr "" +msgstr "Wartości prędkości druku oddzielona przecinkami" msgid "" "Please input valid values:\n" @@ -16829,7 +16890,7 @@ msgstr "Długość retrakcji na końcu: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Wyślij G-Code do hosta drukarki" msgid "Upload to Printer Host with the following filename:" @@ -16878,7 +16939,7 @@ msgstr "Anuluj wybrane" msgid "Show error message" msgstr "Pokaż komunikat o błędzie" -msgid "Enqueued" +msgid "Queued" msgstr "W kolejce" msgid "Uploading" @@ -16894,6 +16955,8 @@ msgid "" "The selected bed type does not match the file. Please confirm before " "starting the print." msgstr "" +"Wybrany typ stołu roboczego nie pasuje do pliku. Proszę potwierdzić przed " +"rozpoczęciem druku." msgid "Time-lapse" msgstr "Timelapse" @@ -16967,14 +17030,14 @@ msgstr "Wersja systemu:" msgid "DNS Server:" msgstr "Serwer DNS:" -msgid "Test OrcaSlicer(GitHub)" -msgstr "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" +msgstr "Test OrcaSlicer (GitHub)" -msgid "Test OrcaSlicer(GitHub):" -msgstr "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" +msgstr "Test OrcaSlicer (GitHub):" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test bing.com" +msgstr "Test bing.com" msgid "Test bing.com:" msgstr "Test bing.com:" @@ -17038,7 +17101,7 @@ msgstr "" "Nie wprowadzono dostawcy, proszę wprowadzić niestandardowego producenta." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "„Bambu” lub „Generic” nie mogą być używane jako Dostawca dla " "niestandardowych filamentów." @@ -17061,7 +17124,7 @@ msgstr "" "Wszystkie wprowadzone dane w niestandardowym dostawcy lub serii to spacje. " "Proszę wprowadzić ponownie." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "Dostawca nie może być liczbą. Proszę wprowadzić ponownie." msgid "" @@ -17072,11 +17135,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Nazwa filamentu %s, którą utworzyłeś, już istnieje. \n" +"Nazwa filamentu %s, którą utworzyłeś, już istnieje.\n" "Jeśli będziesz kontynuować, utworzony preset będzie wyświetlany pod swoją " "pełną nazwą. Czy kontynuować?" @@ -17092,8 +17155,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Nazwa profilu zostanie zmieniona na „Dostawca Typ Seria @nazwa drukarki, " "którą wybrałeś”.\n" @@ -17120,7 +17183,7 @@ msgstr "Importuj profil wstępny" msgid "Create Type" msgstr "Utwórz rodzaj" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "Nie znaleziono modelu, proszę wybrać dostawcę ponownie." msgid "Select Model" @@ -17142,7 +17205,7 @@ msgid "Printable Space" msgstr "Przestrzeń do druku" msgid "Hot Bed STL" -msgstr "Model Stołu " +msgstr "Model Stołu" msgid "Load stl" msgstr "Wczytaj stl" @@ -17164,7 +17227,7 @@ msgid "Exception in obtaining file size, please import again." msgstr "" "Wyjątek podczas uzyskiwania rozmiaru pliku, proszę zaimportuj ponownie." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" "Ścieżka ustawień wstępnych nie została znaleziona, proszę wybrać dostawcę " "ponownie." @@ -17172,10 +17235,10 @@ msgstr "" msgid "The printer model was not found, please reselect." msgstr "Model drukarki nie został znaleziony, proszę wybrać ponownie" -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Średnica dyszy nie została znaleziona, proszę wybrać ponownie." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "Profil drukarki nie został znaleziony, proszę wybrać ponownie." msgid "Printer Preset" @@ -17220,7 +17283,7 @@ msgid "" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" "Profil drukarki o tej nazwie już istnieje. Czy chcesz go zastąpić?\n" -"\tTak: zastąp ustawienia drukarki o tej samej nazwie. \n" +"\tTak: zastąp ustawienia drukarki o tej samej nazwie.\n" "Profile filamentu i procesu bez tej samej nazwy zostaną zarezerwowane.\n" "\tAnuluj: nie twórz profilu i wróć do ekranu tworzenia." @@ -17236,7 +17299,7 @@ msgstr "Tworzenie ustawień filamentu nie powiodło się. Oto szczegóły:\n" msgid "Create process presets failed. As follows:\n" msgstr "Tworzenie ustawień procesu nie powiodło się. Oto szczegóły:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Dostawca nie został znaleziony, proszę wybrać ponownie." msgid "Current vendor has no models, please reselect." @@ -17273,10 +17336,10 @@ msgstr "" "Nie wybrałeś jeszcze drukarki, do której chcesz zamienić dyszę, proszę " "dokonaj wyboru." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Utworzenie profilu drukarki zakończyło się powodzeniem" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Utworzenie profilu filamentu zakończyło się powodzeniem" msgid "Printer Created" @@ -17304,7 +17367,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -17361,15 +17424,15 @@ msgstr "" "Jeśli nie, zostanie dodany sufiks czasowy do nazwy pliku." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Profil drukarki oraz wszystkie ustawienia filamentu i procesu, które do niej " -"należą. \n" +"należą.\n" "Można je udostępniać innym osobom." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "Profile filamentu.\n" @@ -17438,7 +17501,7 @@ msgstr "" "Uwaga: Jeśli ostatni profil tego filamentu zostanie usunięty, filament " "zostanie usunięty po zamknięciu okna dialogowego." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "Nie można usunąć profili dziedziczonych przez inne profile" msgid "The following presets inherits this preset." @@ -17463,7 +17526,7 @@ msgid "Delete Filament" msgstr "Usuń filament" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" @@ -17600,16 +17663,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Niepasujący typ hosta drukowania: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "Połączenie z AstroBox działa poprawnie." msgid "Could not connect to AstroBox" msgstr "Nie udało się połączyć z AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Uwaga: Wymagana jest wersja AstroBox co najmniej 1.1.0." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "Połączenie z Duet działa poprawnie." msgid "Could not connect to Duet" @@ -17627,7 +17690,7 @@ msgstr "Nie udało się uzyskać zasobów do utworzenia nowego połączenia" msgid "Upload not enabled on FlashAir card." msgstr "Przesyłanie nie jest włączone na karcie FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "Połączenie z FlashAir działa poprawnie, a przesyłanie jest włączone." msgid "Could not connect to FlashAir" @@ -17640,28 +17703,28 @@ msgstr "" "Uwaga: Wymagany jest FlashAir z oprogramowaniem 2.00.02 lub nowszym oraz " "aktywowaną funkcją przesyłania." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "Połączenie z MKS działa poprawnie." msgid "Could not connect to MKS" msgstr "Nie udało się połączyć z MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "Połączenie z OctoPrint działa poprawnie." msgid "Could not connect to OctoPrint" msgstr "Nie udało się połączyć z OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Uwaga: Wymagana jest wersja OctoPrint co najmniej 1.1.0." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Połączenie z Prusa SL1 / SL1S działa poprawnie." msgid "Could not connect to Prusa SLA" msgstr "Nie udało się połączyć z Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "Połączenie z PrusaLink działa poprawnie." msgid "Could not connect to PrusaLink" @@ -17686,19 +17749,19 @@ msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" "Przesyłanie nie powiodło się. Nie znaleziono odpowiedniego nośnika w %1%.." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Połączenie z Prusa Connect działa poprawnie." msgid "Could not connect to Prusa Connect" msgstr "Nie udało się połączyć z Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Połączenie z Repetier działa poprawnie." msgid "Could not connect to Repetier" msgstr "Nie udało się połączyć z Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Uwaga: Wymagana jest wersja Repetier co najmniej 0.90.0." #, boost-format @@ -17730,8 +17793,8 @@ msgstr "" "Błąd: „%2%”" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Ta niska wysokość warstwy prowadzi do praktycznie niewidocznych warstw i " "wysokiej jakości wydruku. Nadaje się do większości standardowych przypadków " @@ -17739,8 +17802,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma niższe " "prędkości i przyspieszenia, a wzorzec rzadkiego wypełnienia to Gyroidalny. " @@ -17748,8 +17811,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma " "nieznacznie większą wysokość warstwy, co skutkuje praktycznie " @@ -17757,8 +17820,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.2 mm, ma większą " "wysokość warstwy, co skutkuje lekko widocznymi liniami warstw, ale krótszym " @@ -17766,8 +17828,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "W porównaniu z domyślnym profilem dyszy o średnicy 0.2 mm, ma mniejszą " "wysokość warstwy, co prowadzi do praktycznie niewidocznych linii warstw i " @@ -17776,8 +17838,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "W porównaniu z domyślnym profilem dyszy 0.2 mm, ma mniejszą wysokość " "warstwy, niższe prędkości i przyspieszenie, oraz wzór wypełnienia jest " @@ -17785,9 +17847,9 @@ msgstr "" "jakości druku, ale znacznie wydłuża czasu druku." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "W porównaniu ze standardowym profilem dyszy o średnicy 0.2 mm, ten profil ma " "mniejszą wysokość warstwy, co prowadzi do praktycznie niewidocznych linii " @@ -17796,26 +17858,26 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "W porównaniu ze standardowym profilem dyszy o średnicy 0.2 mm, ma on " "mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, a także " -"zastosowany jest wzór wypełnienia Gyroid. To prowadzi do praktycznie " +"zastosowany jest wzór wypełnienia Gyroidalny. To prowadzi do praktycznie " "niewidocznych warstw i znacznie lepszej jakości wydruku, ale jednocześnie " "wydłuża jego czas." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Ta standardowa wysokość warstwy zapewnia normalną jakość druku, odpowiednią " "dla większości standardowych przypadków druku." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten " "profil ma więcej obwodów i większą gęstość wypełnienia. To zwiększa " @@ -17824,8 +17886,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten " "profil ma większą wysokość warstwy. W rezultacie warstwy są bardziej " @@ -17834,8 +17896,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "W porównaniu ze standardowym profilem dla dyszy o średnicy 0.4 mm, ten " "profil ma większą wysokość warstwy. W rezultacie warstwy są bardziej " @@ -17843,8 +17905,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " "mniejszą wysokość warstwy. W rezultacie warstwy są mniej widoczne, co " @@ -17853,8 +17915,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " "mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, oraz wzór " @@ -17863,8 +17925,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " "mniejszą wysokość warstwy. W rezultacie warstwy są prawie niewidoczne, co " @@ -17873,8 +17935,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " "mniejszą wysokość warstwy, niższe prędkości i przyspieszenia, a także " @@ -17884,24 +17946,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.4 mm, ten profil ma " "mniejszą wysokość warstwy. W rezultacie warstwy są prawie niewidoczne, co " "prowadzi do wyższej jakości druku, ale wydłużenia jego czas." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Ta wyższa wysokość warstwy, skutkuje widocznymi liniami warstw i zwykłą " "jakością i czasem druku." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " "więcej obwodów i większą gęstość wypełnienia. Skutkuje to zwiększeniem " @@ -17910,8 +17971,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " "większą wysokość warstwy. Skutkuje to bardziej zauważalnymi warstwami i " @@ -17920,8 +17981,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " "większą wysokość warstwy. Skutkuje to bardziej zauważalnymi warstwami i " @@ -17930,8 +17991,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " "mniejszą wysokość warstwy. W rezultacie warstwy są mniej zauważalne, co " @@ -17940,24 +18001,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.6 mm, ten profil ma " "mniejszą wysokość warstwy. W rezultacie warstwy są mniej zauważalne, co " "prowadzi do wyższej jakości druku, ale wydłuża jego czas." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Ta bardzo duża wysokość warstwy skutkuje wyraźnie widocznymi liniami warstw, " "niską jakością druku, a także standardowym czasem druku." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0.8 mm, ten profil ma " "nieco większą wysokość warstwy. W rezultacie są to wyraźnie widoczne warstwy " @@ -17966,8 +18027,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma " "znacznie większą wysokość warstwy. W rezultacie warstwy są bardzej widoczne, " @@ -17976,9 +18037,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma " "nieco mniejszą wysokość warstwy. W rezultacie warstwy są nieco mniej " @@ -17987,8 +18047,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "W porównaniu z domyślnym profilem dla dyszy o średnicy 0,8 mm, ten profil ma " "mniejszą wysokość warstwy, co prowadzi do mniejszych, ale nadal widocznych " @@ -18018,7 +18078,7 @@ msgstr "" "Nie połączono z kontem SimplyPrint. Przejdź do opcji Połącz, aby go " "skonfigurować." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "Połączenie z Flashforge działa poprawnie." msgid "Could not connect to Flashforge" @@ -18034,7 +18094,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "Wystąpił problem podczas próby logowania, proszę spróbować ponownie." -msgid "User cancelled." +msgid "User canceled." msgstr "Anulowane przez użytkownika." msgid "Head diameter" @@ -18056,29 +18116,29 @@ msgid "Auto-generate points" msgstr "Generuj punkty automatycznie" msgid "Add a brim ear" -msgstr "Dodaj ucho obrzeża" +msgstr "Dodaj ucho brim" msgid "Delete a brim ear" -msgstr "Usuń ucho obrzeża" +msgstr "Usuń ucho brim" msgid "Adjust section view" msgstr "Widok przekroju" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" -"Ostrzeżenie: rodzaj obrzeża nie jest ustawiony na „malowane”. Uszy obrzeża " -"nie będą działać!" +"Ostrzeżenie: rodzaj brimu nie jest ustawiony na „malowane”. Uszy brim nie " +"będą działać!" msgid "Set the brim type to \"painted\"" -msgstr "Ustal rodzaj obrzeża na „malowane“" +msgstr "Ustaw rodzaj brimu na „malowane“" msgid " invalid brim ears" -msgstr "nieprawidłowe uszy obrzeża" +msgstr " nieprawidłowe uszy brim" msgid "Brim Ears" -msgstr "Uszy obrzeża" +msgstr "Uszy brim" msgid "Please select single object." msgstr "Proszę wybrać pojedynczy obiekt." @@ -18162,11 +18222,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Jak korzystać ze skrótów klawiszowych\n" "Czy wiesz, że Orca Slicer oferuje szeroki zakres skrótów klawiszowych i " -"operacji na scenie 3D." +"operacji na scenie 3D?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -18203,13 +18263,13 @@ msgid "" "Timelapse\n" "Did you know that you can generate a timelapse video during each print?" msgstr "" -"Film poklatkowy\n" -"Czy wiesz, że możesz generować filmy poklatkowe podczas każdego druku?" +"Timelapse\n" +"Czy wiesz, że możesz generować filmy timelapse podczas każdego wydruku?" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Automatyczne rozmieszczanie\n" "Czy wiesz, że możesz automatycznie rozmieścić wszystkie obiekty w swoim " @@ -18219,7 +18279,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Automatyczna orientacja\n" "Czy wiesz, że możesz obracać obiekty do optymalnej orientacji do druku za " @@ -18399,7 +18459,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Brim dla lepszej przyczepności\n" @@ -18410,7 +18470,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Ustawianie parametrów dla wielu obiektów\n" "Czy wiesz, że możesz ustawić parametry cięcia dla wszystkich wybranych " @@ -18427,7 +18487,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Czyszczenie do podpór/obiektów/wypełnienia\n" @@ -18444,15 +18504,15 @@ msgstr "" "Czy wiesz, że możesz użyć więcej pętli ścian i większej gęstości " "wypełnienia, aby zwiększyć wytrzymałość modelu?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" -"Kiedy należy drukować przy otwartych drzwiach drukarki? \n" +"Kiedy należy drukować przy otwartych drzwiach drukarki?\n" "Czy wiesz, że otwarcie drzwiczek drukarki może zmniejszyć prawdopodobieństwo " "zatkania ekstrudera/hotendu podczas drukowania filamentem o niższej " "temperaturze gdy temperatura obudowy jest wyższa? Więcej informacji na ten " @@ -18463,12 +18523,12 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Unikaj odkształceń\n" "Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, " "takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może " -"zmniejszyć prawdopodobieństwo odkształceń." +"zmniejszyć prawdopodobieństwo odkształceń?" #~ msgid "" #~ "We have added an experimental style \"Tree Slim\" that features smaller " @@ -18489,17 +18549,6 @@ msgstr "" #~ "ustawienia: co najmniej 2 warstwy łączące, co najmniej 0,1 mm odległości " #~ "od góry lub używanie materiałów podporowych na łączeniach." -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "Przy użyciu materiału podporowego do warstw łączących podpory zalecamy " -#~ "następujące ustawienia:\n" -#~ "0 odległość osu Z od góry, 0 odstęp warstwy łączącej, wzór koncentryczny " -#~ "i wyłączenie niezależnej wysokości warstwy podpory" - #~ msgid "Branch Diameter with double walls" #~ msgstr "Średnica gałęzi z podwójnymi ścianami" @@ -18663,7 +18712,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -18727,26 +18776,6 @@ msgstr "" #~ "aby wyłączyć to narzucenie.\n" #~ "Można to nadpisać tylko za pomocą opcji disable_fan_first_layers." -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "Mniejsza wartość skutkuje płynniejszymi przejściami prędkości ekstruzji. " -#~ "Jednakże prowadzi to do znacznie większego pliku gcode i większej liczby " -#~ "instrukcji do przetworzenia przez drukarkę.\n" -#~ "\n" -#~ "Domyślna wartość 3 działa dobrze dla większości przypadków. Jeśli Twoja " -#~ "drukarka się zacina, zwiększ tę wartość, aby zredukować liczbę " -#~ "dostosowań.\n" -#~ "\n" -#~ "Dozwolone wartości: 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -18756,15 +18785,6 @@ msgstr "" #~ "minimalny czas warstwy powyżej, gdy włączona jest opcja zwalniania dla " #~ "lepszego schładzania warstwy." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "tryb 'normalny(auto)' oraz 'drzewo(auto)' służą do automatycznego " -#~ "generowania podpór. Jeśli wybierzesz 'normalny(manual)' lub " -#~ "'drzewo(manual)', zostaną wygenerowane jedynie podpory wymuszone" - #~ msgid "ShiftLeft mouse button" #~ msgstr "Shift + Lewy przycisk myszy" @@ -18775,16 +18795,10 @@ msgstr "" #~ msgid "Scale" #~ msgstr "Skala" -#~ msgid "Orca Slicer " -#~ msgstr "Orca Slicer " - -#~ msgid "Cool plate" -#~ msgstr "Cool plate / PLA Plate" - #~ msgid "Lift Z Enforcement" #~ msgstr "Wymuszenie podniesienia osi Z" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Z-hop podczas retrakcji" #, no-c-format, no-boost-format @@ -18816,7 +18830,7 @@ msgstr "" #~ "zmniejszeniu naprężeń w ścianach części." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -18829,7 +18843,7 @@ msgstr "" #~ "Reverse Threshold to 0 so that all internal walls print in alternating " #~ "directions on odd layers irrespective of their overhang degree." #~ msgstr "" -#~ "Zastosuj logikę przeciwnych obrysów tylko na wewnętrznych obrysach. \n" +#~ "Zastosuj logikę przeciwnych obrysów tylko na wewnętrznych obrysach.\n" #~ "\n" #~ "To ustawienie znacznie zmniejsza naprężenia części, ponieważ są one teraz " #~ "rozdzielone w przemiennych kierunkach. Powinno to zmniejszyć deformację " @@ -18869,7 +18883,7 @@ msgstr "" #~ "\n" #~ "Domyślnie wszystkie ściany są drukowane w kierunku przeciwnym do ruchu " #~ "wskazówek zegara, chyba że włączona jest opcja Odwróć dla nieparzystych " -#~ "warstw.Ustawienie tego na dowolną inną opcję niż Auto spowoduje, że " +#~ "warstw. Ustawienie tego na dowolną inną opcję niż Auto spowoduje, że " #~ "kierunek ściany będzie ustalony niezależnie od ustawienia Odwróć dla " #~ "nieparzystych.\n" #~ "\n" @@ -18887,46 +18901,10 @@ msgstr "" #~ "skirtu.\n" #~ "Dlatego zresetuj wysokość skirtu na 1, aby tego uniknąć." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "Kształt zostanie zredukowany przed wykryciem ostrych kątów. Ten parametr " -#~ "wskazuje minimalną długość odchylenia dla redukcji.\n" -#~ "0, aby dezaktywować" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Uruchom wentylator na określoną liczbę sekund wcześniej niż planowany " -#~ "czas startu (możliwe jest użycie ułamków sekundy). Przyjmuje się " -#~ "nieskończone przyspieszenie dla oszacowania tego czasu, przy " -#~ "uwzględnieniu jedynie ruchów G1 i G0 (obsługa ruchów po łuku nie jest " -#~ "wspierana).\n" -#~ "\n" -#~ "To nie spowoduje zmiany ustawień wentylatora z niestandardowych G-code " -#~ "(działają one jak rodzaj bariery).\n" -#~ "\n" -#~ "Nie spowoduje to również zmiany ustawień wentylatora w początkowym G-" -#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-" -#~ "code\".\n" -#~ "\n" -#~ "Ustaw 0, aby wyłączyć tę funkcję." - #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " #~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "with open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -18956,19 +18934,6 @@ msgstr "" #~ msgid "Limited" #~ msgstr "Ograniczony" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "Minimalna długość ekstruzji filamentu podczas drukowania Skirtu, wyrażona " -#~ "w milimetrach. Wartość zero oznacza, że ta funkcja jest wyłączona. \n" -#~ "\n" -#~ "Użycie wartości innej niż 0 jest przydatne, kiedy drukarka jest ustawiona " -#~ "tak aby nie drukowała początkowej linii czyszczącej." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -19003,7 +18968,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -19030,7 +18995,7 @@ msgstr "" #~ "Domyślnie, małe wewnętrzne mosty są odfiltrowywane, a wewnętrzna " #~ "struktura jest drukowana bezpośrednio na rzadkiej strukturze wypełnienia. " #~ "To działa dobrze w większości przypadków, przyspieszając drukowanie bez " -#~ "zbyt dużego kompromisu w jakości górnej powierzchni. \n" +#~ "zbyt dużego kompromisu w jakości górnej powierzchni.\n" #~ "\n" #~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy " #~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania " @@ -19094,7 +19059,7 @@ msgstr "" #~ "3. Nigdzie: Wyłącza wypełnienie\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Zmniejsz tę wartość minimalnie (na przykład do 0.9), aby zmniejszyć ilość " @@ -19138,13 +19103,13 @@ msgstr "" #~ "Prędkość wewnętrznego mostu. Jeśli wartość jest wyrażona w procentach, " #~ "będzie obliczana na podstawie prędkości mostu. Domyślna wartość to 150%." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Czas ładowania nowego filamentu podczas zmiany filamentu. Tylko do celów " #~ "statystycznych" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Czas rozładunku poprzedniego filamentu podczas zmiany filamentu. Tylko do " #~ "celów statystycznych" @@ -19182,8 +19147,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19264,12 +19229,6 @@ msgstr "" #~ "jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno chcesz " #~ "zastąpić ten wynik?" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " #~ "PrusaSlicer links from Printable.com" @@ -19298,9 +19257,6 @@ msgstr "" #~ "zewnętrznej powierzchni. Może to również spowodować prześwitywanie " #~ "wypełnienia przez zewnętrzne powierzchnie części." -#~ msgid "V" -#~ msgstr "V" - #~ msgid "Maximum print speed when purging" #~ msgstr "Maksymalna prędkość druku podczas czyszczenia" @@ -19310,7 +19266,7 @@ msgstr "" #~ "is lower, the lowest speed will be used instead.\n" #~ "Increasing this speed may affect the tower's stability, as purging can be " #~ "performed over sparse layers. Before increasing this parameter beyond the " -#~ "default of 90mm/sec, make sure your printer can reliably bridge at the " +#~ "default of 90 mm/s, make sure your printer can reliably bridge at the " #~ "increased speeds." #~ msgstr "" #~ "Maksymalna prędkość drukowania podczas oczyszczania w wieży czyszczącej. " @@ -19324,7 +19280,7 @@ msgstr "" #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer opiera się na BambuStudio od Bambulab, które wywodzi się z " @@ -19428,24 +19384,9 @@ msgstr "" #~ msgid "MainBoard" #~ msgstr "MainBoard (Płyta główna)" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - #~ msgid "HMS" #~ msgstr "Stan drukarki (HMS)" -#~ msgid "- ℃" -#~ msgstr "- ℃" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "active" #~ msgstr "aktywny" @@ -19485,7 +19426,7 @@ msgstr "" #~ "odzwierciedlać stan komory." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Uwaga: jeśli podczas drukowania włożony zostanie nowy filament, AMS nie " @@ -19503,7 +19444,7 @@ msgstr "" #~ msgstr "Inicjalizacja nie powiodła się (Brak urządzenia kamery)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Drukarka jest zajęta pobieraniem. Proszę czekać, aż pobieranie zostanie " #~ "zakończone." @@ -19538,9 +19479,6 @@ msgstr "" #~ msgid "Failed to fetching model information from printer." #~ msgstr "Nie udało się pobrać informacji o modelach z drukarki." -#~ msgid "Failed to parse model informations." -#~ msgstr "Nie udało się sparsować informacji o modelach." - #~ msgid "Connection lost. Please retry." #~ msgstr "Utracono połączenie. Proszę spróbować ponownie." @@ -19549,20 +19487,20 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Zmieniłeś niektóre ustawienia profilu \"%1%\". \n" +#~ "Zmieniłeś niektóre ustawienia profilu \"%1%\".\n" #~ "Czy chciałbyś zachować te zmienione ustawienia (nowa wartość) po zmianie " #~ "profilu?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" -#~ "Zmieniłeś niektóre ustawienia profilu. \n" +#~ "Zmieniłeś niektóre ustawienia profilu.\n" #~ "Czy chciałbyś zachować te zmienione ustawienia (nowa wartość) po zmianie " #~ "profilu?" @@ -19682,7 +19620,7 @@ msgstr "" #~ "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" +#~ "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 " @@ -19701,13 +19639,6 @@ msgstr "" #~ "Ta wartość może być określona w milimetrach lub jako procent bieżącej " #~ "wysokości warstwy. Domyślna wartość tego parametru to 0,05 mm." -#~ msgid "" -#~ "Speed of exhuast fan during printing.This speed will overwrite the speed " -#~ "in filament custom gcode" -#~ msgstr "" -#~ "Prędkość wentylatora wyciągowego podczas druku. Ta prędkość zastąpi " -#~ "prędkość w niestandardowym gcode filamentu" - #~ msgid "Speed of exhuast fan after printing completes" #~ msgstr "Prędkość wentylatora wyciągowego po zakończeniu druku" @@ -20185,9 +20116,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "Wybierz archiwum SLA:" -#~ msgid "Import file" -#~ msgstr "Importuj plik" - #~ msgid "Import model and profile" #~ msgstr "Importuj model i profil" @@ -20231,10 +20159,10 @@ msgstr "" #~ msgstr "łączniki są poza obiektem" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Nieprawidłowy stan. \n" +#~ "Nieprawidłowy stan.\n" #~ "Żadna część nie została wybrana do zachowania po cięciu" #~ msgid "Entering Cut gizmo" @@ -20517,9 +20445,6 @@ msgstr "" #~ "Wybrany plik 3MF zawiera model pomalowany do Multi Material przy pomocy " #~ "nowszej wersji OrcaSlicer i nie jest kompatybilny." -#~ msgid " " -#~ msgstr " " - #~ msgid "" #~ "Number of mm the overhang need to be for the reversal to be considered " #~ "useful. Can be a (%) of the perimeter width.\n" @@ -20628,7 +20553,7 @@ msgstr "" #~ msgstr "" #~ "Jeśli górna powierzchnia ma być drukowana i jest częściowo zakryta inną " #~ "warstwą, nie będzie traktowana jako górna warstwa, jeśli jej szerokość " -#~ "jest mniejsza niż ta wartość. \n" +#~ "jest mniejsza niż ta wartość.\n" #~ "Może to być przydatne, aby zapobiec uruchamianiu funkcji 'jeden perymetr " #~ "na górze' na powierzchni, która powinna być pokryta tylko perymetrami. Ta " #~ "wartość może być podawana w (mm lub jako %) szerokości ekstruzji " @@ -20640,13 +20565,6 @@ msgstr "" #~ msgid "Layer order" #~ msgstr "Kolejność warstw" -#~ msgid "" -#~ "OrcaSlicer will terminate because of running out of memory. It may be a " -#~ "bug. It will be appreciated if you report the issue to our team." -#~ msgstr "" -#~ "OrcaSlicer zakończy działanie z powodu braku pamięci. To może być błąd. " -#~ "Będziemy wdzięczni za zgłoszenie problemu naszemu zespołowi." - #~ msgid "" #~ "You can keep the modified presets in the new project, discard, or save " #~ "changes as new presets." @@ -20658,13 +20576,6 @@ msgstr "" #~ msgstr "" #~ "Nowy lub otwarty plik projektu nie jest dozwolony podczas procesu cięcia!" -#~ msgid "" -#~ "The version of Orca Slicer is too low and needs to be updated to the " -#~ "latest version before it can be used normally." -#~ msgstr "" -#~ "Wersja Orca Slicer jest zbyt niska i musi zostać zaktualizowana do " -#~ "najnowszej wersji, aby działać normalnie." - #~ msgid "" #~ "This action will break a cut correspondence.\n" #~ "After that model consistency can't be guaranteed.\n" @@ -20676,20 +20587,6 @@ msgstr "" #~ "Aby modyfikować bryły stałe lub obszary ujemne, najpierw trzeba " #~ "unieważnić informacje o cięciu." -#~ msgid "" -#~ "If first selected item is an object, the second one should also be an " -#~ "object." -#~ msgstr "" -#~ "Jeśli pierwszy zaznaczony element to obiekt, to drugi powinien również " -#~ "być obiektem." - -#~ msgid "" -#~ "If first selected item is a part, the second one should be a part in the " -#~ "same object." -#~ msgstr "" -#~ "Jeśli pierwszy zaznaczony element to część, to drugi powinien być częścią " -#~ "tego samego obiektu." - #~ msgid "" #~ "One cell can only be copied to one or multiple cells in the same column." #~ msgstr "" @@ -20733,15 +20630,6 @@ msgstr "" #~ "Ta płyta jest zablokowana,\n" #~ "Nie można zastosować automatycznej orientacji na tej płycie." -#~ msgid "" -#~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " -#~ "Ranellucci and the RepRap community" -#~ msgstr "" -#~ "Orca Slicer opiera się na BambuStudio od Bambulab, które wywodzi się z " -#~ "PrusaSlicer od Prusa Research. PrusaSlicer z kolei bazuje na Slic3r od " -#~ "Alessandro Ranellucci i społeczności RepRap." - #~ msgid "" #~ "When the current material runs out, the printer will continue to print in " #~ "the following order." @@ -20752,15 +20640,6 @@ msgstr "" #~ msgid "The printer does not currently support auto-refill." #~ msgstr "Obecnie drukarka nie obsługuje automatycznego uzupełniania." -#~ msgid "" -#~ "The AMS will automatically read the information of inserted filament on " -#~ "start-up. It will take about 1 minute. The reading process will roll " -#~ "filament spools." -#~ msgstr "" -#~ "AMS automatycznie odczyta informacje o włożonym filamencie podczas " -#~ "uruchamiania. To zajmie około 1 minuty. Proces odczytu sprawi, że rolki " -#~ "filamentów się obrócą." - #~ msgid "" #~ "Failed to download the plug-in. Please check your firewall settings and " #~ "VPN software, check and retry." @@ -20778,15 +20657,6 @@ msgstr "" #~ "), aby zlokalizować pozycję głowicy narzędziowej. Zapobiega to " #~ "przesunięciu urządzenia poza obszar drukowalny i zużyciu sprzętu." -#~ msgid "" -#~ "The current chamber temperature or the target chamber temperature exceeds " -#~ "45℃. In order to avoid extruder clogging, low-temperature filament (PLA/" -#~ "PETG/TPU) is not allowed to be loaded." -#~ msgstr "" -#~ "Aktualna temperatura komory lub docelowa temperatura komory przekracza " -#~ "45℃. Aby uniknąć zatkania ekstruzora, niedopuszczalne jest ładowanie " -#~ "filamentu o niskiej temperaturze (PLA/PETG/TPU)." - #~ msgid "" #~ "Low-temperature filament (PLA/PETG/TPU) is loaded in the extruder. In " #~ "order to avoid extruder clogging, it is not allowed to set the chamber " @@ -20796,23 +20666,6 @@ msgstr "" #~ "TPU). Aby uniknąć zatkania ekstruzora, nie wolno ustawiać temperatury " #~ "komory powyżej 45℃." -#~ msgid "" -#~ "Damp PVA will become flexible and get stuck inside AMS, please take care " -#~ "to dry it before use." -#~ msgstr "" -#~ "Wilgotne PVA staje się elastyczne i może utknąć wewnątrz AMS, proszę " -#~ "pamiętać o wysuszeniu go przed użyciem." - -#~ msgid "" -#~ "CF/GF filaments are hard and brittle, it's easy to break or get stuck in " -#~ "AMS, please use with caution." -#~ msgstr "" -#~ "Filamenty CF/GF są twarde i kruche, łatwo je złamać lub zatrzymać w AMS, " -#~ "proszę używać ostrożnie." - -#~ msgid "%s can't be a percentage" -#~ msgstr "%s nie może być procentem" - #~ msgid "" #~ "Is it %s%% or %s %s?\n" #~ "YES for %s%%,\n" @@ -20825,22 +20678,6 @@ msgstr "" #~ msgid "Allow multiple materials on the same plate" #~ msgstr "Pozwól na kilka filamentów na tej samej płycie" -#~ msgid "An object is laid over the boundary of plate." -#~ msgstr "Obiekt jest położony poza granicą płyty." - -#~ msgid "Only the object being edited is visible." -#~ msgstr "Widoczny jest tylko edytowany obiekt." - -#~ msgid "Connect Printer (LAN)" -#~ msgstr "Podłącz drukarkę (LAN)" - -#~ msgid "" -#~ "Please heat the nozzle to above 170 degrees before loading or unloading " -#~ "filament." -#~ msgstr "" -#~ "Przed załadowaniem lub rozładowaniem filamentu podgrzej dyszę do " -#~ "temperatury powyżej 170 stopni." - #~ msgid "" #~ "Cannot read filament info: the filament is loaded to the tool head, " #~ "please unload the filament and try again." @@ -20848,16 +20685,6 @@ msgstr "" #~ "Nie można odczytać informacji o filamentach: filament jest załadowany w " #~ "głowicy narzędzia, proszę go wyładować i spróbować ponownie." -#~ msgid "" -#~ "At least one successful print record of this print profile is required \n" -#~ "to give a positive rating (4 or 5 stars)." -#~ msgstr "" -#~ "Aby wystawić pozytywną ocenę (4 lub 5 gwiazdek), wymagana jest co " -#~ "najmniej jedna udana rejestracja tego profilu druku." - -#~ msgid "Your model needs support! Please make support material enable." -#~ msgstr "Twój model wymaga podpór! Włącz generowanie podpór." - #~ msgid "" #~ "No AMS filaments. Please select a printer in the 'Device' page to load " #~ "AMS info." @@ -20900,15 +20727,6 @@ msgstr "" #~ "Plik 3MF jest generowany przez starą wersję Orca Slicer, wczytuj tylko " #~ "dane geometrii." -#~ msgid "" -#~ "The 3mf has the following modified G-codes in filament or printer presets:" -#~ msgstr "" -#~ "Plik 3MF ma następujące zmodyfikowane kody G w profilach filamentu lub " -#~ "drukarki:" - -#~ msgid "The 3mf has the following customized filament or printer presets:" -#~ msgstr "Plik 3MF ma następujące dostosowane profile filamentu lub drukarki:" - #~ msgid "" #~ "„Fix Model” feature is currently only on Windows. Please repair the model " #~ "on Orca Slicer(windows) or CAD softwares." @@ -20923,49 +20741,14 @@ msgstr "" #~ "ustawieniach" #~ msgid "" -#~ "In the 3D Printing community, we learn from each other's successes and " -#~ "failures to adjust our own slicing parameters and settings. %s follows " -#~ "the same principle and uses machine learning to improve its performance " -#~ "from the successes and failures of the vast number of prints by our " -#~ "users. We are training %s to be smarter by feeding them the real-world " -#~ "data. If you are willing, this service will access information from your " -#~ "error logs and usage logs, which may include information described in " -#~ "Privacy Policy. We will not collect any Personal Data by which an " -#~ "individual can be identified directly or indirectly, including without " -#~ "limitation names, addresses, payment information, or phone numbers. By " -#~ "enabling this service, you agree to these terms and the statement about " -#~ "Privacy Policy." -#~ msgstr "" -#~ "W społeczności druku 3D uczymy się od siebie nawzajem, korzystając z " -#~ "sukcesów i porażek, aby dostosować nasze parametry i ustawienia cięcia. " -#~ "%s stosuje tę samą zasadę i wykorzystuje uczenie maszynowe do poprawy " -#~ "swojej wydajności na podstawie sukcesów i porażek ogromnej liczby " -#~ "wydruków naszych użytkowników. Szkolimy %s, aby było mądrzejsze, " -#~ "dostarczając mu danych z rzeczywistego świata. Jeśli wyrażasz zgodę, ta " -#~ "usługa uzyska dostęp do informacji z Twoich logów błędów i dzienników " -#~ "użycia, które mogą zawierać informacje opisane w Polityce Prywatności. " -#~ "Nie będziemy zbierać żadnych danych osobowych, dzięki którym można by " -#~ "bezpośrednio lub pośrednio zidentyfikować osobę, w tym między innymi " -#~ "nanawisk, adresów, informacji o płatnościach czy numerów telefonów. " -#~ "Włączając tę usługę, zgadzasz się na te warunki i oświadczenie o Polityce " -#~ "Prywatności." - -#~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Change these settings automatically\n" #~ "No - Do not change these settings for me" #~ msgstr "" -#~ "Zmienić te ustawienia automatycznie? \n" +#~ "Zmienić te ustawienia automatycznie?\n" #~ "Tak - Zmień te ustawienia automatycznie\n" #~ "Nie - Nie zmieniaj tych ustawień dla mnie" -#~ msgid "" -#~ "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -#~ "height limits, this may cause printing quality issues." -#~ msgstr "" -#~ "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> " -#~ "Limity wysokości warstwy, co może powodować problemy z jakością druku." - #~ msgid "Delete objects, parts, modifiers " #~ msgstr "Usuń obiekty, części, modyfikatory " @@ -20976,19 +20759,6 @@ msgstr "" #~ "Połączenie nieudane! Jeśli twój IP i kod dostępu są poprawne, przejdź do " #~ "kroku 3, aby rozwiązać problemy z siecią" -#, c-format -#~ msgid "" -#~ "Force cooling fan to be specific speed when overhang degree of printed " -#~ "part exceeds this value.Expressed as percentage which indicates how much " -#~ "width of the line without support from lower layer. 0% means forcing " -#~ "cooling for all outer wall no matter how much overhang degree" -#~ msgstr "" -#~ "Wymuś pracę wentylatora chłodzącego na określoną prędkość, gdy stopień " -#~ "nawisu drukowanej części przekracza tę wartość. Wyrażone w procentach, co " -#~ "wskazuje, jak duża jest szerokość linii bez podpór z niższej warstwy. 0%% " -#~ "oznacza wymuszanie chłodzenia dla całej zewnętrznej ściany, bez względu " -#~ "na stopień nawisu" - #, c-format, boost-format #~ msgid "" #~ "Number of mm the overhang need to be for the reversal to be considered " @@ -21000,13 +20770,6 @@ msgstr "" #~ "Wartość 0 umożliwia odwrócenie na każdej nieparzystej warstwie, " #~ "niezależnie od wszystkiego." -#~ msgid "" -#~ "Smooth Spiral smooths out X and Y moves as well resulting in no visible " -#~ "seam at all, even in the XY directions on walls that are not vertical" -#~ msgstr "" -#~ "Smooth Spiral wygładza również ruchy w osiach X i Y, co skutkuje brakiem " -#~ "widocznych szwów, nawet w kierunkach XY na ścianach, które nie są pionowe" - #, c-format, boost-format #~ msgid "" #~ "Maximum defection of a point to the estimated radius of the circle.\n" @@ -21025,10 +20788,10 @@ msgstr "" #~ msgstr "Pliki certyfikatów (.crt, .pem)|.crt;.pem|Wszystkie pliki|." #~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" +#~ "Relative extrusion is recommended when using \"label_objects\" option. " +#~ "Some extruders work better with this option unchecked (absolute extrusion " +#~ "mode). Wipe tower is only compatible with relative mode. It is always " +#~ "enabled on BambuLab printers. Default is checked." #~ msgstr "" #~ "Przy użyciu opcji \"label_objects\" zaleca się ekstruzję względną. " #~ "Niektóre ekstrudery działają lepiej, gdy ta opcja jest odznaczona (tryb " @@ -21087,14 +20850,14 @@ msgstr "" #~ "Tak - przełącz automatycznie na wzór prostoliniowy\n" #~ "Nie - automatycznie zresetuj gęstość do domyślnej wartości nie 100%" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "" #~ "Proszę podgrzać dyszę do ponad 170 stopni przed załadowaniem filamentu." -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "Pokaż okno G-kodu" -#~ msgid "If enabled, g-code window will be displayed." +#~ msgid "If enabled, G-code window will be displayed." #~ msgstr "Jeśli włączone, okno G-kodu zostanie wyświetlone." #, fuzzy, c-format @@ -21113,9 +20876,6 @@ msgstr "" #~ msgid " doesn't work at 100%% density " #~ msgstr " nie działa przy 100% gęstości " -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "Narzędzie - Połóż na Powierzchni" @@ -21206,7 +20966,7 @@ msgstr "" #~ msgid "Rotation angle around the X axis in degrees." #~ msgstr "Kąt obrotu wokół osi X w stopniach." -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "Wybrana przędło: %1% nie została znaleziona." #~ msgid "" @@ -21218,21 +20978,12 @@ msgstr "" #~ "Czy wiesz, jak kontrolować widok i wybór obiektów/części za pomocą myszy " #~ "i panelu dotykowego w scenie 3D?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Napraw model\n" -#~ "Czy wiesz, że możesz naprawić uszkodzony model 3D, aby uniknąć wielu " -#~ "problemów z krojeniem?" - #~ msgid "Embedded" #~ msgstr "Osadzone" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "Plik konfiguracyjny OrcaSlicer może być uszkodzony i nie można go " #~ "przeanalizować. Proszę usunąć plik i spróbować ponownie." @@ -21248,12 +20999,12 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" #~ "Obecnie nie ma dostępnych identycznych zapasowych materiałów " -#~ "eksploatacyjnych, i automatyczne uzupełnianie nie jest obecnie możliwe. \n" +#~ "eksploatacyjnych, i automatyczne uzupełnianie nie jest obecnie możliwe.\n" #~ "(Obecnie obsługiwane jest automatyczne zaopatrzenie w materiały " #~ "eksploatacyjne tej samej marki, typu materiału i koloru)" @@ -21321,14 +21072,11 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "Kalibracja ekstruzji" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Wsuń nowy filament do ekstrudera" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "Temperatura podłoża innych warstw jest niższa niż temperatura podłoża " #~ "pierwszej warstwy o więcej niż %d stopni Celsjusza.\n" @@ -21375,8 +21123,8 @@ msgstr "" #~ msgstr "Płyta wysokotemperaturowa" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Temperatura podłoża, gdy jest zainstalowana płyta wysokotemperaturowa. " #~ "Wartość 0 oznacza, że filament nie obsługuje drukowania na Płycie " @@ -21387,7 +21135,7 @@ msgstr "" #~ msgid "" #~ "If enabled, support loops will be generated under the contours of " -#~ "internal bridges.These support loops could prevent internal bridges from " +#~ "internal bridges. These support loops could prevent internal bridges from " #~ "extruding over the air and improve the top surface quality, especially " #~ "when the sparse infill density is low. This value determines the " #~ "thickness of the support loops. 0 means disable this feature" @@ -21398,13 +21146,6 @@ msgstr "" #~ "wypełnienia jest niska. Ta wartość określa grubość pętli podpory. 0 " #~ "oznacza wyłączenie tej funkcji" -#, fuzzy, c-format, boost-format -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "" -#~ "Maksymalne przyspieszenie Klippera max_accel_to_decel zostanie " -#~ "dostosowane do tego % przyspieszenia" - #~ msgid "" #~ "Style and shape of the support. For normal support, projecting the " #~ "supports into a regular grid will create more stable supports (default), " diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 201cb70159..8abbbcc195 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-16 22:32+0800\n" -"PO-Revision-Date: 2025-03-17 21:32-0300\n" -"Last-Translator: Alexandre Folle de Menezes \n" +"PO-Revision-Date: 2025-06-08 19:09-0300\n" +"Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" @@ -17,9 +17,9 @@ msgstr "" "X-Crowdin-Language: pt-BR\n" "X-Crowdin-Project: orcaslicer-pt-br\n" "X-Crowdin-Project-ID: 664934\n" -"X-Generator: Poedit 3.5\n" +"X-Generator: Poedit 3.6\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Pintura de Suportes" msgid "Alt + Mouse wheel" @@ -59,7 +59,7 @@ msgid "Erase all painting" msgstr "Apagar toda a pintura" msgid "Highlight overhang areas" -msgstr "Destacar áreas com saliências" +msgstr "Realçar áreas com saliências" msgid "Gap fill" msgstr "Preenchimento de vão" @@ -68,7 +68,7 @@ msgid "Perform" msgstr "Executar" msgid "Gap area" -msgstr "Área das lacunas" +msgstr "Área de vão" msgid "Tool type" msgstr "Tipo de ferramenta" @@ -92,7 +92,7 @@ msgid "Fill" msgstr "Preencher" msgid "Gap Fill" -msgstr "Preencher lacunas" +msgstr "Preencher vão" #, boost-format msgid "Allows painting only on facets selected by: \"%1%\"" @@ -115,7 +115,7 @@ msgstr "Apoiar face à superfície" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "A contagem de filamentos excede o número máximo que a ferramenta de pintura " @@ -602,11 +602,11 @@ msgstr "Mostrar malha" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "" -"Não é possível aplicar quando a visualização do processo está em andamento." +"Não é possível aplicar quando a pré-visualização do processo está em andamento." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operação já está sendo cancelada. Por favor, aguarde alguns segundos." msgid "Face recognition" @@ -651,7 +651,7 @@ msgid "Thickness" msgstr "Espessura" msgid "Text Gap" -msgstr "Espaço de Texto" +msgstr "Vão de Texto" msgid "Angle" msgstr "Ângulo" @@ -753,7 +753,7 @@ msgid "Text input doesn't show font boldness." msgstr "A entrada de texto não mostra a negrito da fonte." msgid "Text input doesn't show gap between lines." -msgstr "A entrada de texto não mostra o espaçamento entre linhas." +msgstr "A entrada de texto não mostra o vão entre linhas." msgid "Too tall, diminished font height inside text input." msgstr "Muito alto, altura da fonte diminuída dentro da entrada de texto." @@ -800,8 +800,8 @@ msgid "Change Text Type" msgstr "Alterar tipo de texto" #, boost-format -msgid "Rename style(%1%) for embossing text" -msgstr "Renomear estilo(%1%) para texto em relevo" +msgid "Rename style (%1%) for embossing text" +msgstr "Renomear estilo (%1%) para texto em relevo" msgid "Name can't be empty." msgstr "O nome não pode estar vazio." @@ -962,13 +962,13 @@ msgid "points" msgstr "pontos" msgid "Revert gap between characters" -msgstr "Reverter espaçamento entre caracteres" +msgstr "Reverter vão entre caracteres" msgid "Distance between characters" msgstr "Distância entre caracteres" msgid "Revert gap between lines" -msgstr "Reverter espaçamento entre linhas" +msgstr "Reverter vão entre linhas" msgid "Distance between lines" msgstr "Distância entre linhas" @@ -1020,8 +1020,8 @@ msgstr "A fonte \"%1%\" não pode ser usada. Por favor selecione outra." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Não é possível carregar a mesma fonte exatamente (\"%1%\"). A aplicação " "selecionou uma similar (\"%2%\"). Você deve especificar uma fonte para " @@ -1060,11 +1060,11 @@ msgstr "Alinhamento" #. TRN - Input label. Be short as possible msgid "Char gap" -msgstr "Espaço de caractere" +msgstr "Vão de caractere" #. TRN - Input label. Be short as possible msgid "Line gap" -msgstr "Espaço de linha" +msgstr "Vão de linha" #. TRN - Input label. Be short as possible msgid "Boldness" @@ -1151,7 +1151,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "A forma está marcada como invisível (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "O preenchimento da forma (%1%) contém não suportado: %2%." @@ -1278,7 +1278,7 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "O arquivo SVG NÃO contém um único caminho para ser relevado (%1%)." msgid "No feature" -msgstr "" +msgstr "Sem recurso" msgid "Vertex" msgstr "Vértice" @@ -1326,9 +1326,9 @@ msgid "Measure" msgstr "Medir" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" -"Por favor, confirme a taxa de explosão = 1, e selecione pelo menos um objeto" +"Por favor, confirme a taxa de explosão = 1, e selecione pelo menos um objeto." msgid "Please select at least one object." msgstr "Por favor selecione pelo menos um objeto." @@ -1385,13 +1385,13 @@ msgstr "" "O recurso 1 foi redefinido, \n" "o recurso 2 foi o recurso 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Aviso: por favor selecione o recurso do Plano." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Aviso: por favor selecione o recurso do Ponto ou do Círculo." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Aviso: por favor selecione duas malhas diferentes." msgid "Copy to clipboard" @@ -1415,7 +1415,7 @@ msgstr "Paralelo" msgid "Center coincidence" msgstr "Centralizar coincidência" -msgid "Featue 1" +msgid "Feature 1" msgstr "Recurso 1" msgid "Reverse rotation" @@ -1473,7 +1473,7 @@ msgstr "" "foram reconhecidos." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer será encerrado devido à falta de memória. Pode ser um bug. " @@ -1570,7 +1570,7 @@ msgid "Loading current presets" msgstr "Carregando predefinições atuais" msgid "Loading a mode view" -msgstr "Carregando uma visualização de modo" +msgstr "Carregando uma vista de modo" msgid "Choose one file (3mf):" msgstr "Escolha um arquivo (3mf):" @@ -1610,10 +1610,10 @@ msgstr "Abrir Projeto" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "A versão do Orca Slicer é muito antiga e precisa ser atualizada para a " -"versão mais recente antes de poder ser usada normalmente" +"versão mais recente antes de poder ser usada normalmente." msgid "Privacy Policy Update" msgstr "Atualização da Política de Privacidade" @@ -1719,7 +1719,7 @@ msgid "Bottom Minimum Shell Thickness" msgstr "Espessura Mínima da Casca de Base" msgid "Ironing" -msgstr "Passar ferro" +msgstr "Passar a ferro" msgid "Fuzzy Skin" msgstr "Textura Difusa" @@ -1785,7 +1785,7 @@ msgid "Delete the selected object" msgstr "Apagar o objeto selecionado" msgid "Load..." -msgstr "Carregar..." +msgstr "Carregar…" msgid "Cube" msgstr "Cubo" @@ -1815,14 +1815,14 @@ msgid "Voron Cube" msgstr "Cubo Voron" msgid "Stanford Bunny" -msgstr "Stanford Bunny" +msgstr "Coelho de Stanford" msgid "Orca String Hell" msgstr "Orca String Hell" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1919,16 +1919,16 @@ msgstr "Purgar nos suportes dos objetos" msgid "Edit in Parameter Table" msgstr "Editar na Tabela de Parâmetros" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Converter de polegadas" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Restaurar para polegadas" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Converter de metros" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Restaurar para metros" msgid "Assemble" @@ -2185,7 +2185,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2202,7 +2202,7 @@ msgstr "Excluir todos os conectores" msgid "Deleting the last solid part is not allowed." msgstr "Não é permitido excluir a última peça sólida." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "O objeto de destino contém apenas uma peça e não pode ser dividido." msgid "Assembly" @@ -2245,14 +2245,14 @@ msgid "Selection conflicts" msgstr "Conflitos de seleção" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Se o primeiro item selecionado for um objeto, o segundo também deve ser um " "objeto." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Se o primeiro item selecionado for uma peça, o segundo deve ser uma peça no " "mesmo objeto." @@ -2316,8 +2316,8 @@ msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" "uma célula só pode ser copiada para uma ou várias células na mesma coluna" -msgid "multiple cells copy is not supported" -msgstr "a cópia de múltiplas células não é suportada" +msgid "Copying multiple cells is not supported." +msgstr "A cópia de múltiplas células não é suportada." msgid "Outside" msgstr "Fora da Mesa" @@ -2401,10 +2401,10 @@ msgid "Custom Template:" msgstr "Gabarito Personalizado:" msgid "Custom G-code:" -msgstr "G-Code Personalizado:" +msgstr "G-code Personalizado:" msgid "Custom G-code" -msgstr "G-Code Personalizado" +msgstr "G-code Personalizado" msgid "Enter Custom G-code used on current layer:" msgstr "Insira o G-code personalizado usado na camada atual:" @@ -2422,16 +2422,16 @@ msgid "Insert a pause command at the beginning of this layer." msgstr "Inserir um comando de pausa no início desta camada." msgid "Add Custom G-code" -msgstr "Adicionar G-Code Personalizado" +msgstr "Adicionar G-code Personalizado" msgid "Insert custom G-code at the beginning of this layer." -msgstr "Inserir G-Code personalizado no início desta camada." +msgstr "Inserir G-code personalizado no início desta camada." msgid "Add Custom Template" msgstr "Adicionar Gabarito Personalizado" msgid "Insert template custom G-code at the beginning of this layer." -msgstr "Inserir gabarito de G-Code personalizado no início desta camada." +msgstr "Inserir gabarito de G-code personalizado no início desta camada." msgid "Filament " msgstr "Filamento " @@ -2446,10 +2446,10 @@ msgid "Delete Custom Template" msgstr "Excluir Gabarito Personalizado" msgid "Edit Custom G-code" -msgstr "Editar G-Code Personalizado" +msgstr "Editar G-code Personalizado" msgid "Delete Custom G-code" -msgstr "Excluir G-Code Personalizado" +msgstr "Excluir G-code Personalizado" msgid "Delete Filament Change" msgstr "Excluir Troca de Filamento" @@ -2458,7 +2458,7 @@ msgid "No printer" msgstr "Sem impressora" msgid "..." -msgstr "..." +msgstr "…" msgid "Failed to connect to the server" msgstr "Falha ao conectar ao servidor" @@ -2474,7 +2474,7 @@ msgstr "Falha ao conectar ao serviço de nuvem" msgid "Please click on the hyperlink above to view the cloud service status" msgstr "" -"Por favor, clique no link acima para visualizar o status do serviço de nuvem" +"Por favor, clique no link acima para ver o status do serviço de nuvem" msgid "Failed to connect to the printer" msgstr "Falha ao conectar à impressora" @@ -2486,7 +2486,7 @@ msgid "Please check the network connection of the printer and Orca." msgstr "Por favor, verifique a conexão de rede da impressora e do Orca." msgid "Connecting..." -msgstr "Conectando..." +msgstr "Conectando…" msgid "?" msgstr "?" @@ -2525,7 +2525,7 @@ msgid "Retry" msgstr "Tentar Novamente" msgid "Calibrating AMS..." -msgstr "Calibrando AMS..." +msgstr "Calibrando AMS…" msgid "A problem occurred during calibration. Click to view the solution." msgstr "Ocorreu um problema durante a calibração. Clique para ver a solução." @@ -2537,7 +2537,7 @@ msgid "Cancel calibration" msgstr "Cancelar calibração" msgid "Idling..." -msgstr "Em espera..." +msgstr "Em espera…" msgid "Heat the nozzle" msgstr "Aquecer o bico" @@ -2577,24 +2577,24 @@ msgid "Edit" msgstr "Editar" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" -"Todos os objetos selecionados estão na placa travada,\n" +"Todos os objetos selecionados estão na placa travada.\n" "Não é possível auto-arranjar esses objetos." msgid "No arrangeable objects are selected." msgstr "Nenhum objeto arranjável está selecionado." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" -"Essa placa está travada,\n" +"Essa placa está travada.\n" "Não é possível auto-arranjar nessa placa." msgid "Arranging..." -msgstr "Organizando..." +msgstr "Organizando…" msgid "Arranging" msgstr "Organizando" @@ -2628,21 +2628,21 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" -"Todos os objetos selecionados estão na placa travada,\n" +"Todos os objetos selecionados estão na placa travada.\n" "Não é possível auto-orientar esses objetos." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" -"Essa placa está travado,\n" +"Essa placa está travada.\n" "Não é possível auto-orientar nessa placa." msgid "Orienting..." -msgstr "Orientando..." +msgstr "Orientando…" msgid "Orienting" msgstr "Orientando" @@ -2691,7 +2691,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Falha na conexão com o serviço de nuvem. Por favor, tente novamente." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Arquivo de impressão não encontrado. Por favor, fatie novamente." msgid "" @@ -2718,7 +2718,7 @@ msgstr "" "O tamanho do arquivo de impressão é muito grande. Por favor, ajuste o " "tamanho do arquivo e tente novamente." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Arquivo de impressão não encontrado. Por favor, fatie-o novamente e envie " "para impressão." @@ -2762,11 +2762,11 @@ msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Um cartão SD precisa ser inserido antes de imprimir via LAN." -msgid "Sending gcode file over LAN" -msgstr "Enviando arquivo de G-Code via LAN" +msgid "Sending G-code file over LAN" +msgstr "Enviando arquivo de G-code via LAN" -msgid "Sending gcode file to sdcard" -msgstr "Enviando arquivo de G-Code para o cartão SD" +msgid "Sending G-code file to SD card" +msgstr "Enviando arquivo de G-code para o cartão SD" #, c-format, boost-format msgid "Successfully sent. Close current page in %s s" @@ -2813,13 +2813,13 @@ msgid "Downloading" msgstr "Baixando" msgid "Download failed" -msgstr "Falha no download" +msgstr "Falha ao baixar" -msgid "Cancelled" +msgid "Canceled" msgstr "Cancelado" -msgid "Install successfully." -msgstr "Instalação concluída com sucesso." +msgid "Installed successfully" +msgstr "Instalação concluída com sucesso" msgid "Installing" msgstr "Instalando" @@ -2888,9 +2888,6 @@ msgstr "Confirmar" msgid "Close" msgstr "Fechar" -msgid "Colour" -msgstr "Cor" - msgid "" "Nozzle\n" "Temperature" @@ -2982,13 +2979,13 @@ msgid "Max volumetric speed" msgstr "Fluxo volumétrico máximo" msgid "℃" -msgstr "°C" +msgstr "" msgid "Bed temperature" msgstr "Temperatura da mesa" msgid "mm³" -msgstr "mm3" +msgstr "" msgid "Start calibration" msgstr "Iniciar calibração" @@ -3057,20 +3054,20 @@ msgstr "Umidade AMS atual" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Por favor, mude o dessecante quando estiver muito molhado. O indicador pode " "não representar com precisão nos casos a seguir: quando a tampa está aberta " -"ou quando o dessecante é trocado. Leva horas para absorver a umidade, baixas " -"temperaturas também atrasam o processo." +"ou quando o dessecante é trocado. Leva algumas horas para absorver a " +"umidade, e baixas temperaturas também atrasam o processo." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" -"Configure qual espaço do AMS deve ser usado para um filamento usado no " -"trabalho de impressão" +"Configura qual espaço do AMS deve ser usado para um filamento usado no " +"trabalho de impressão." msgid "Filament used in this print job" msgstr "Filamento usado neste trabalho de impressão" @@ -3087,7 +3084,7 @@ msgstr "Não ativar AMS" msgid "Print using materials mounted on the back of the case" msgstr "Imprimir usando materiais montados na parte de trás da caixa" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Imprimir com filamentos no AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3114,12 +3111,12 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "Se houver dois filamentos idênticos no AMS, o backup de filamento do AMS " -"será ativado. \n" +"será ativado.\n" "(Funciona atualmente com recarga automática de filamentos da mesma marca, " "tipo de material e cor)" @@ -3143,7 +3140,7 @@ msgstr "" "filamento da Bambu Lab. Isso leva cerca de 20 segundos." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Nota: se um novo filamento for inserido durante a impressão, o AMS não irá " @@ -3161,8 +3158,8 @@ msgstr "Atualização de inicialização" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "O AMS irá ler automaticamente as informações do filamento inserido na " "inicialização. Levará cerca de 1 minuto. O processo de leitura irá girar as " @@ -3193,11 +3190,11 @@ msgid "AMS filament backup" msgstr "Backup de filamento do AMS" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" -"O AMS continuará para outra bobina com as mesmas propriedades do filamento " -"automaticamente quando o filamento atual acabar" +"O AMS continuará automaticamente para outra bobina com propriedades de " +"filamento equivalentes quando o filamento atual acabar." msgid "Air Printing Detection" msgstr "Detecção de Impressão Aérea" @@ -3259,8 +3256,8 @@ msgstr "Ocorreu um erro fatal: \"%1%\"" msgid "Please save project and restart the program." msgstr "Por favor, salve o projeto e reinicie o programa." -msgid "Processing G-Code from Previous file..." -msgstr "Processando G-Code do arquivo anterior..." +msgid "Processing G-code from Previous file..." +msgstr "Processando G-code do arquivo anterior…" msgid "Slicing complete" msgstr "Fatiamento concluído" @@ -3344,21 +3341,21 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Arquivo G-code exportado para %1%" -msgid "Unknown error when export G-code." -msgstr "Erro desconhecido ao exportar G-Code." +msgid "Unknown error when exporting G-code." +msgstr "Erro desconhecido ao exportar G-code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" -"Falha ao salvar arquivo de G-Code.\n" +"Falha ao salvar arquivo de G-code.\n" "Mensagem de erro: %1%.\n" "Arquivo de origem %2%." msgid "Copying of the temporary G-code to the output G-code failed" -msgstr "Cópia do G-Code temporário para o G-Code de saída falhou" +msgstr "Cópia do G-code temporário para o G-code de saída falhou" #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" @@ -3498,7 +3495,7 @@ msgid "No historical tasks!" msgstr "Nenhuma tarefa no histórico!" msgid "Loading..." -msgstr "Carregando..." +msgstr "Carregando…" msgid "No AMS" msgstr "Nenhum AMS" @@ -3527,7 +3524,7 @@ msgstr "Usar AMS" msgid "Select Printers" msgstr "Selecionar impressoras" -msgid "Ams Status" +msgid "AMS Status" msgstr "Status do AMS" msgid "Printing Options" @@ -3549,7 +3546,7 @@ msgid "Send to" msgstr "Enviar para" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "impressoras ao mesmo tempo. (Depende de quantos dispositivos podem ser " @@ -3559,9 +3556,9 @@ msgid "Wait" msgstr "Aguarde" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" -"minuto por cada lote.(Depende de quanto tempo leva para completar o " +"minuto por cada lote. (Depende de quanto tempo leva para completar o " "aquecimento.)" msgid "Send" @@ -3598,7 +3595,7 @@ msgid "" "Distance of the 0,0 G-code coordinate from the front left corner of the " "rectangle." msgstr "" -"Distância da coordenada do G-Code 0,0 do canto frontal esquerdo do retângulo." +"Distância da coordenada do G-code 0,0 do canto frontal esquerdo do retângulo." msgid "" "Diameter of the print bed. It is assumed that origin (0,0) is located in the " @@ -3614,7 +3611,7 @@ msgid "Circular" msgstr "Circular" msgid "Load shape from STL..." -msgstr "Carregar forma de STL..." +msgstr "Carregar forma de STL…" msgid "Settings" msgstr "Configurações" @@ -3658,11 +3655,11 @@ msgid "Bed Shape" msgstr "Forma da Mesa" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"A temperatura mínima recomendada é inferior a 190 graus ou a temperatura " -"máxima recomendada é superior a 300 graus.\n" +"A temperatura mínima recomendada é inferior a 190°C ou a temperatura máxima " +"recomendada é superior a 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " @@ -3686,11 +3683,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "A temperatura do bico recomendada para este tipo de filamento é [%d, %d] " -"graus centígrados" +"graus Celsius." msgid "" "Too small max volumetric speed.\n" @@ -3701,9 +3698,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "A temperatura da câmara atual está mais alta do que a temperatura segura do " "material, pode resultar em amolecimento e entupimento do material. A " @@ -3720,7 +3717,7 @@ msgid "" "Too small ironing spacing.\n" "Reset to 0.1" msgstr "" -"Espaçamento de alisamento muito pequeno.\n" +"Espaçamento de passar a ferro muito pequeno.\n" "Redefinir para 0,1" msgid "" @@ -3771,7 +3768,7 @@ msgstr "" "casca está definida para Todos." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3838,11 +3835,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Mas máquinas com estrutura I3 não gerarão vídeos de timelapse." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Alterar essas configurações automaticamente? \n" +"Alterar essas configurações automaticamente?\n" "Sim - Alterar essas configurações e ativar o modo espiral automaticamente\n" "Não - Desistir de usar o modo espiral desta vez" @@ -3897,7 +3894,7 @@ msgstr "A impressão foi pausada pelo usuário" msgid "Pause of front cover falling" msgstr "Pausa de queda da cobertura frontal" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Calibrando o micro lidar" msgid "Calibrating extrusion flow" @@ -3934,8 +3931,8 @@ msgstr "Pausado devido a erro no controle de temperatura da câmara" msgid "Cooling chamber" msgstr "Resfriando câmara" -msgid "Paused by the Gcode inserted by user" -msgstr "Pausado pelo Gcode inserido pelo usuário" +msgid "Paused by the G-code inserted by user" +msgstr "Pausado pelo G-code inserido pelo usuário" msgid "Motor noise showoff" msgstr "Demonstração de barulho do motor" @@ -3978,7 +3975,7 @@ msgstr "Atualização falhou." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "A temperatura atual da câmara ou a temperatura da câmara alvo excede 45℃. " @@ -3986,8 +3983,8 @@ msgstr "" "baixa temperatura (PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Filamento de baixa temperatura (PLA/PETG/TPU) está carregado na extrusora. " @@ -3996,14 +3993,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Quando você definir a temperatura da câmara abaixo de 40℃, o controle de " "temperatura da câmara não será ativado. E a temperatura alvo da câmara será " "automaticamente definida como 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Falha ao iniciar o trabalho de impressão" msgid "" @@ -4016,8 +4013,8 @@ msgstr "O parâmetro de calibração de fluxo atual é inválido" msgid "Selected diameter and machine diameter do not match" msgstr "O diâmetro selecionado e o diâmetro da máquina não correspondem" -msgid "Failed to generate cali gcode" -msgstr "Falha ao gerar o código G de calibração" +msgid "Failed to generate cali G-code" +msgstr "Falha ao gerar o G-code de calibração" msgid "Calibration error" msgstr "Erro de calibração" @@ -4029,14 +4026,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF não é suportado pelo AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "O PVA úmido se tornará flexível e ficará preso dentro do AMS, por favor " "tenha cuidado para secá-lo antes de usar." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "Os filamentos CF/GF são duros e quebradiços, é fácil quebrar ou ficar preso " @@ -4047,14 +4044,14 @@ msgstr "padrão" #, boost-format msgid "Edit Custom G-code (%1%)" -msgstr "Editar G-Code personalizado (%1%)" +msgstr "Editar G-code personalizado (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" "Marcadores de posição incorporados (Clique duas vezes no item para adicionar " "ao G-code)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Procurar marcadores de posição do G-code" msgid "Add selected placeholder to G-code" @@ -4113,8 +4110,8 @@ msgid "parameter name" msgstr "nome do parâmetro" #, c-format, boost-format -msgid "%s can't be percentage" -msgstr "%s não pode ser percentagem" +msgid "%s can't be a percentage" +msgstr "%s não pode ser uma percentagem" #, c-format, boost-format msgid "Value %s is out of range, continue?" @@ -4203,8 +4200,8 @@ msgstr "Ventilador: " msgid "Temperature: " msgstr "Temperatura: " -msgid "Loading G-codes" -msgstr "Carregando G-codes" +msgid "Loading G-code" +msgstr "Carregando G-code" msgid "Generating geometry vertex data" msgstr "Gerando dados de vértices de geometria" @@ -4317,10 +4314,7 @@ msgstr "Imprimir" msgid "Printer" msgstr "Impressora" -msgid "Custom g-code" -msgstr "G-Code Personalizado" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Mudança de Ferramenta" msgid "Time Estimation" @@ -4446,8 +4440,11 @@ msgstr "Alinhar com o eixo Y" msgid "Add plate" msgstr "Adicionar placa" -msgid "Auto orient" -msgstr "Orientação automática" +msgid "Auto orient all/selected objects" +msgstr "Orientação automática todos/selecionados objetos" + +msgid "Auto orient all objects on current plate" +msgstr "Orientação automática todos os objetos na placa atual" msgid "Arrange all objects" msgstr "Organizar todos os objetos" @@ -4462,7 +4459,7 @@ msgid "Split to parts" msgstr "Dividir em peças" msgid "Assembly View" -msgstr "Visualização de Montagem" +msgstr "Vista de Montagem" msgid "Select Plate" msgstr "Selecionar Placa" @@ -4470,8 +4467,8 @@ msgstr "Selecionar Placa" msgid "Assembly Return" msgstr "Retornar à Montagem" -msgid "return" -msgstr "retornar" +msgid "Return" +msgstr "Retornar" msgid "Paint Toolbar" msgstr "Barra de Ferramentas de Pintura" @@ -4480,7 +4477,7 @@ msgid "Explosion Ratio" msgstr "Taxa de Explosão" msgid "Section View" -msgstr "Visualização de Seção" +msgstr "Vista de Seção" msgid "Assemble Control" msgstr "Controle de Montagem" @@ -4499,26 +4496,26 @@ msgstr "Tamanho:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Foram encontrados conflitos de caminhos de G-code na camada %d, z = %.2lf " "mm. Por favor, separe mais os objetos em conflito (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Um objeto está sobre a borda da placa." msgid "A G-code path goes beyond the max print height." msgstr "Um caminho de G-code ultrapassa a altura máxima de impressão." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Um caminho de G-code ultrapassa a borda da placa." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Apenas o objeto em edição está visível." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4598,7 +4595,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Conectar Impressora (LAN)" msgid "Please input the printer access code:" @@ -4703,33 +4700,33 @@ msgid "Download Models" msgstr "Baixar Modelos" msgid "Default View" -msgstr "Visualização Padrão" +msgstr "Vista Padrão" #. TRN To be shown in the main menu View->Top msgid "Top" msgstr "Topo" msgid "Top View" -msgstr "Visualização Superior" +msgstr "Vista Superior" #. TRN To be shown in the main menu View->Bottom msgid "Bottom" msgstr "Inferior" msgid "Bottom View" -msgstr "Visualização Inferior" +msgstr "Vista Inferior" msgid "Front" msgstr "Frente" msgid "Front View" -msgstr "Visualização Frontal" +msgstr "Vista Frontal" msgid "Rear" msgstr "Traseira" msgid "Rear View" -msgstr "Visualização Traseira" +msgstr "Vista Traseira" msgid "Left" msgstr "Esquerda" @@ -4741,7 +4738,7 @@ msgid "Right" msgstr "Direita" msgid "Right View" -msgstr "Visualização Direita" +msgstr "Vista Direita" msgid "Start a new window" msgstr "Abrir nova janela" @@ -4898,22 +4895,22 @@ msgstr "Perspectiva Automática" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Alternar automaticamente entre ortográfica e perspectiva ao mudar de vista " -"superior/inferior/lateral" +"superior/inferior/lateral." msgid "Show &G-code Window" msgstr "Mostrar Janela &G-code" -msgid "Show g-code window in Preview scene" -msgstr "Mostrar janela de código G na cena anterior" +msgid "Show G-code window in Preview scene." +msgstr "Mostrar janela de G-code na cena de Pré-visualização." msgid "Show 3D Navigator" msgstr "Mostrar Navegador 3D" -msgid "Show 3D navigator in Prepare and Preview scene" -msgstr "Mostrar navegador 3D nas cenas de preparação e pré-visualização" +msgid "Show 3D navigator in Prepare and Preview scene." +msgstr "Mostrar navegador 3D nas cenas de Preparação e Pré-visualização." msgid "Reset Window Layout" msgstr "Redefinir Layout da Janela" @@ -4924,20 +4921,20 @@ msgstr "Redefinir layout padrão da janela" msgid "Show &Labels" msgstr "Mostrar & Etiquetas" -msgid "Show object labels in 3D scene" -msgstr "Mostrar etiquetas de objeto na cena 3D" +msgid "Show object labels in 3D scene." +msgstr "Mostrar etiquetas de objeto na cena 3D." msgid "Show &Overhang" msgstr "Mostrar &Saliência" -msgid "Show object overhang highlight in 3D scene" -msgstr "Mostrar destaque de saliência de objeto na cena 3D" +msgid "Show object overhang highlight in 3D scene." +msgstr "Mostrar realce de saliência de objeto na cena 3D." msgid "Show Selected Outline (beta)" msgstr "Mostrar Contorno Selecionado (beta)" -msgid "Show outline around selected object in 3D scene" -msgstr "Mostrar contorno ao redor do objeto selecionado na cena 3D" +msgid "Show outline around selected object in 3D scene." +msgstr "Mostrar contorno ao redor do objeto selecionado na cena 3D." msgid "Preferences" msgstr "Preferências" @@ -4991,7 +4988,7 @@ msgid "VFA" msgstr "VFA" msgid "More..." -msgstr "Mais..." +msgstr "Mais…" msgid "Tutorial" msgstr "Tutorial" @@ -5112,17 +5109,17 @@ msgid "Filament Settings" msgstr "Configurações do Filamento" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Você deseja sincronizar seus dados pessoais da Bambu Cloud? \n" +"Você deseja sincronizar seus dados pessoais da Bambu Cloud?\n" "Isso inclui as seguintes informações:\n" -"1. As predefinições de Processo\n" -"2. As predefinições de Filamento\n" -"3. As predefinições de Impressora" +"1. Predefinições de Processo\n" +"2. Predefinições de Filamento\n" +"3. Predefinições de Impressora" msgid "Synchronization" msgstr "Sincronização" @@ -5154,7 +5151,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "A câmera da impressora está com problemas." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Ocorreu um problema. Por favor, atualize o firmware da impressora e tente " "novamente." @@ -5162,23 +5159,23 @@ msgstr "" msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" -"Liveview via LAN está desativado. Por favor, ative a liveview na tela da " +"Liveview via LAN está desativado. Por favor, ative a liveview na tela da " "impressora." msgid "Please enter the IP of printer to connect." msgstr "Por favor, digite o IP da impressora para conectar." msgid "Initializing..." -msgstr "Inicializando..." +msgstr "Inicializando…" msgid "Connection Failed. Please check the network and try again" msgstr "Falha na conexão. Por favor, verifique a rede e tente novamente" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" -"Por favor, verifique a rede e tente novamente, você pode reiniciar ou " +"Por favor, verifique a rede e tente novamente. Você pode reiniciar ou " "atualizar a impressora se o problema persistir." msgid "The printer has been logged out and cannot connect." @@ -5220,7 +5217,7 @@ msgid "Information" msgstr "Informação" msgid "Playing..." -msgstr "Reproduzindo..." +msgstr "Reproduzindo…" msgid "Year" msgstr "Ano" @@ -5277,7 +5274,7 @@ msgid "No printers." msgstr "Nenhuma impressora." msgid "Loading file list..." -msgstr "Carregando lista de arquivos..." +msgstr "Carregando lista de arquivos…" msgid "No files" msgstr "Sem arquivos" @@ -5327,7 +5324,7 @@ msgid "Delete file" msgstr "Excluir arquivo" msgid "Fetching model information..." -msgstr "Obtendo informações do modelo ..." +msgstr "Obtendo informações do modelo…" msgid "Failed to fetch model information from printer." msgstr "Falha ao obter informação do modelo da impressora." @@ -5336,8 +5333,8 @@ msgid "Failed to parse model information." msgstr "Falha ao analisar a informação do modelo." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "O arquivo .gcode.3mf não contém dados de G-code. Por favor, fatie com Orca " "Slicer e exporte um novo arquivo .gcode.3mf." @@ -5355,7 +5352,7 @@ msgstr "" "Título: %s\n" msgid "Download waiting..." -msgstr "Aguardando download..." +msgstr "Aguardando download…" msgid "Play" msgstr "Reproduzir" @@ -5368,7 +5365,7 @@ msgstr "Download concluído" #, c-format, boost-format msgid "Downloading %d%%..." -msgstr "Baixando %d%%..." +msgstr "Baixando %d%%…" msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " @@ -5473,7 +5470,7 @@ msgid "Camera Setting" msgstr "Configuração da Câmera" msgid "Switch Camera View" -msgstr "Trocar Visualização da Câmera" +msgstr "Trocar Vista da Câmera" msgid "Control" msgstr "Controle" @@ -5515,10 +5512,10 @@ msgid "Are you sure you want to cancel this print?" msgstr "Tem certeza de que deseja cancelar esta impressão?" msgid "Downloading..." -msgstr "Baixando..." +msgstr "Baixando…" msgid "Cloud Slicing..." -msgstr "Fatiando na Nuvem..." +msgstr "Fatiando na Nuvem…" #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead." @@ -5533,11 +5530,9 @@ msgid "Layer: %d/%d" msgstr "Camada: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Aqueça o bico a mais de 170 graus antes de carregar ou descarregar o " -"filamento." +"Aqueça o bico a mais de 170°C antes de carregar ou descarregar o filamento." msgid "Still unload" msgstr "Ainda descarregando" @@ -5545,8 +5540,8 @@ msgstr "Ainda descarregando" msgid "Still load" msgstr "Ainda carregando" -msgid "Please select an AMS slot before calibration" -msgstr "Selecione um slot AMS antes da calibração" +msgid "Please select an AMS slot before calibration." +msgstr "Selecione um slot AMS antes da calibração." msgid "" "Cannot read filament info: the filament is loaded to the tool head,please " @@ -5568,7 +5563,7 @@ msgid "Sport" msgstr "Esportivo" msgid "Ludicrous" -msgstr "Ludicrous" +msgstr "Absurdo" msgid "Can't start this without SD card." msgstr "Não é possível iniciar sem um cartão SD." @@ -5594,9 +5589,6 @@ msgstr "Enviar" msgid "Please click on the star first." msgstr "Por favor, clique na estrela primeiro." -msgid "InFo" -msgstr "Info" - msgid "Get oss config failed." msgstr "Falha ao obter a configuração oss." @@ -5615,7 +5607,7 @@ msgstr " falha ao analisar a configuração\n" msgid " No corresponding storage bucket\n" msgstr " Nenhum balde de armazenamento correspondente\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " não pode ser aberto\n" msgid "" @@ -5642,12 +5634,12 @@ msgid "obtaining instance_id failed\n" msgstr "falha ao obter o instance_id\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" -"O resultado do seu comentário não pode ser enviado devido a alguns motivos. " -"Como segue:\n" +"O resultado do seu comentário não pode ser enviado devido aos seguintes " +"motivos:\n" "\n" " código de erro: " @@ -5657,7 +5649,7 @@ msgstr "mensagem de erro: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5665,7 +5657,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Algumas de suas imagens não puderam ser carregadas. Gostaria de ser " "redirecionado para a página da web para avaliar?" @@ -5675,7 +5667,7 @@ msgstr "Você pode selecionar até 16 imagens." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Pelo menos um registro de impressão bem-sucedido deste perfil de impressão é " "necessário \n" @@ -5721,7 +5713,7 @@ msgid "Newer 3mf version" msgstr "Nova versão 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "A versão 3mf do arquivo está em Beta e é mais nova do que a versão atual do " @@ -5836,9 +5828,9 @@ msgstr[1] "%1$d Objetos têm pintura colorida." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d objeto foi carregado como peça do objeto cortado." -msgstr[1] "%1$d objetos foram carregados como peças do objeto cortado" +msgstr[1] "%1$d objetos foram carregados como peças do objeto cortado." msgid "ERROR" msgstr "ERRO" @@ -5861,8 +5853,8 @@ msgstr "Erro:" msgid "Warning:" msgstr "Aviso:" -msgid "Export successfully." -msgstr "Exportação realizada com sucesso." +msgid "Exported successfully" +msgstr "Exportação realizada com sucesso" msgid "Model file downloaded." msgstr "Arquivo do modelo baixado." @@ -5879,11 +5871,11 @@ msgstr " Clique aqui para instalar." msgid "WARNING:" msgstr "AVISO:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Seu modelo precisa de suporte! Por favor, ative o material de suporte." -msgid "Gcode path overlap" -msgstr "Sobreposição de caminho do Gcode" +msgid "G-code path overlap" +msgstr "Sobreposição de caminho do G-code" msgid "Support painting" msgstr "Pintura de suporte" @@ -6057,7 +6049,7 @@ msgid "Connection" msgstr "Conexão" msgid "Bed type" -msgstr "Tipo de mesa" +msgstr "Tipo de placa" msgid "Flushing volumes" msgstr "Volumes de Purga" @@ -6127,15 +6119,15 @@ msgstr "Deseja salvar as alterações em \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" -"Desmontado com sucesso. O dispositivo %s(%s) agora pode ser removido com " +"Desmontado com sucesso. O dispositivo %s (%s) agora pode ser removido com " "segurança do computador." #, c-format, boost-format msgid "Ejecting of device %s(%s) has failed." -msgstr "A ejeção do dispositivo %s(%s) falhou." +msgstr "A ejeção do dispositivo %s (%s) falhou." msgid "Previous unsaved project detected, do you want to restore it?" msgstr "Projeto não salvo anterior detectado, deseja restaurá-lo?" @@ -6187,8 +6179,8 @@ msgstr "Carregar 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "A versão %s do 3mf é mais recente do que a versão %s do %s, encontradas as " "seguintes chaves não reconhecidas:" @@ -6210,32 +6202,33 @@ msgstr "Valores inválidos encontrados no 3mf:" msgid "Please correct them in the param tabs" msgstr "Por favor, corrija-os nas guias de parâmetros" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" -"O 3mf possui os seguintes G-codes modificados em predefinições de filamento " -"ou impressora:" +"O 3mf possui os seguintes G-code modificados em predefinições de filamento ou " +"impressora:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" -"Por favor, confirme se esses G-codes modificados são seguros para evitar " +"Por favor, confirme se esses G-code modificados são seguros para evitar " "qualquer dano à máquina!" -msgid "Modified G-codes" -msgstr "G-codes modificados" +msgid "Modified G-code" +msgstr "G-code modificado" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "O 3mf possui as seguintes predefinições de filamento ou impressora " "personalizadas:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" -"Por favor, confirme se os G-codes dentro dessas predefinições são seguros " -"para evitar qualquer dano à máquina!" +"Por favor, confirme se o G-code dentro dessas predefinições é seguro para " +"evitar qualquer dano à máquina!" msgid "Customized Preset" msgstr "Predefinição Personalizada" @@ -6296,11 +6289,11 @@ msgid "The file does not contain any geometry data." msgstr "O arquivo não contém dados de geometria." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Seu objeto parece ser muito grande. Deseja dimensioná-lo para caber na mesa " -"de aquecimento automaticamente?" +"de impressão automaticamente?" msgid "Object too large" msgstr "Objeto muito grande" @@ -6406,11 +6399,11 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" -"Modo somente de visualização:\n" -"O arquivo carregado contém apenas código G, não é possível acessar a página " -"de Preparação" +"Modo de pré-visualização apenas:\n" +"O arquivo carregado contém apenas G-code, não é possível acessar a página " +"de Preparação." msgid "You can keep the modified presets to the new project or discard them" msgstr "" @@ -6438,13 +6431,13 @@ msgid "Importing Model" msgstr "Importando Modelo" msgid "prepare 3mf file..." -msgstr "preparar o arquivo 3mf..." +msgstr "preparar o arquivo 3mf…" msgid "Download failed, unknown file format." msgstr "Baixar falhou, formato de arquivo desconhecido." -msgid "downloading project ..." -msgstr "baixando projeto..." +msgid "downloading project..." +msgstr "baixando projeto…" msgid "Download failed, File size exception." msgstr "Baixar falhou, erro no tamanho do arquivo." @@ -6485,11 +6478,11 @@ msgstr "Importar arquivo SLA" msgid "The selected file" msgstr "O arquivo selecionado" -msgid "does not contain valid gcode." -msgstr "não contém código G válido." +msgid "does not contain valid G-code." +msgstr "não contém G-code válido." msgid "Error occurs while loading G-code file" -msgstr "Erro ocorreu ao carregar o arquivo de código G" +msgstr "Erro ocorreu ao carregar o arquivo de G-code" #. TRN %1% is archive path #, boost-format @@ -6526,16 +6519,16 @@ msgstr "" "Carregamento'." msgid "Only one G-code file can be opened at the same time." -msgstr "Apenas um arquivo de código G pode ser aberto de cada vez." +msgstr "Apenas um arquivo de G-code pode ser aberto de cada vez." msgid "G-code loading" msgstr "Carregamento do G-code" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Arquivos de G-code não podem ser carregados junto com modelos!" -msgid "Can not add models when in preview mode!" -msgstr "Não é possível adicionar modelos no modo de visualização!" +msgid "Cannot add models when in preview mode!" +msgstr "Não é possível adicionar modelos no modo de pré-visualização!" msgid "All objects will be removed, continue?" msgstr "Todos os objetos serão removidos, continuar?" @@ -6550,7 +6543,7 @@ msgid "Copies of the selected object" msgstr "Cópias do objeto selecionado" msgid "Save G-code file as:" -msgstr "Salvar arquivo de código G como:" +msgstr "Salvar arquivo de G-code como:" msgid "Save SLA file as:" msgstr "Salvar arquivo SLA como:" @@ -6698,11 +6691,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" -"Placa %d: %s não é sugerida para ser usado para imprimir filamento %s(%s). " +"Placa %d: %s não é sugerida para ser usado para imprimir filamento %s (%s). " "Se você ainda quiser fazer esta impressão, por favor defina a temperatura de " "mesa deste filamento para diferente de zero." @@ -6751,7 +6744,7 @@ msgid "Current Instance" msgstr "Instância Atual" msgid "Current Instance Path: " -msgstr "" +msgstr "Caminho da Instância Atual: " msgid "General Settings" msgstr "Configurações Gerais" @@ -6852,8 +6845,8 @@ msgid "" "Zoom in towards the mouse pointer's position in the 3D view, rather than the " "2D window center." msgstr "" -"Dar zoom em direção à posição do ponteiro do mouse na visualização 3D, em " -"vez do centro da janela 2D." +"Dar zoom em direção à posição do ponteiro do mouse na vista 3D, em vez do " +"centro da janela 2D." msgid "Use free camera" msgstr "Usar câmera livre" @@ -6861,6 +6854,12 @@ msgstr "Usar câmera livre" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "Se ativado, usa câmera livre. Se não ativado, usa câmera restrita." +msgid "Swap pan and rotate mouse buttons" +msgstr "Alterar a panorâmica e girar os botões do mouse" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Se ativado, troca as funções de panorâmica e rotação dos botões esquerdo e direito do mouse." + msgid "Reverse mouse zoom" msgstr "Inverter zoom do mouse" @@ -6902,9 +6901,10 @@ msgstr "" "Se ativo, Orca vai lembrar e alternar a configuração de filamento/processo " "para cada impressora automaticamente." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" -"Gerenciamento de multi-dispositivos(Entra em vigor após reiniciar o Orca)." +"Gerenciamento de Multi-dispositivos (Entra em vigor após reiniciar o Orca " +"Slicer)." msgid "" "With this option enabled, you can send a task to multiple devices at the " @@ -6922,9 +6922,9 @@ msgstr "Organizar automaticamente a placa após a clonagem de objeto" msgid "Network" msgstr "Rede" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" -"Sincronização automática de predefinições do usuário(Impressora/Filamento/" +"Sincronização automática de predefinições do usuário (Impressora/Filamento/" "Processo)" msgid "User Sync" @@ -6999,8 +6999,8 @@ msgstr "Contagem máxima de projetos recentes" msgid "Clear my choice on the unsaved projects." msgstr "Limpar minha escolha nos projetos não salvos." -msgid "No warnings when loading 3MF with modified G-codes" -msgstr "Sem avisos ao carregar 3MF com códigos G modificados" +msgid "No warnings when loading 3MF with modified G-code" +msgstr "Sem avisos ao carregar 3MF com G-code modificado" msgid "Auto-Backup" msgstr "Backup Automático" @@ -7018,7 +7018,7 @@ msgid "The period of backup in seconds." msgstr "O período de backup em segundos." msgid "Downloads" -msgstr "Downloads" +msgstr "Transferências" msgid "Dark Mode" msgstr "Modo Escuro" @@ -7051,16 +7051,16 @@ msgid "Preferences sync" msgstr "Sincronização de preferências" msgid "View control settings" -msgstr "Configurações de controle de visualização" +msgstr "Configurações de controle de vista" msgid "Rotate of view" -msgstr "Rotação da visualização" +msgstr "Rotação da vista" msgid "Move of view" -msgstr "Movimento da visualização" +msgstr "Movimento da vista" msgid "Zoom of view" -msgstr "Zoom da visualização" +msgstr "Zoom da vista" msgid "Other" msgstr "Outro" @@ -7116,10 +7116,10 @@ msgstr "botão de salvar depuração" msgid "save debug settings" msgstr "salvar configurações de depuração" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "As configurações de depuração foram salvas com sucesso!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Mudar o ambiente de nuvem, Por favor, faça login novamente!" msgid "System presets" @@ -7134,10 +7134,10 @@ msgstr "Predefinições incompatíveis" msgid "AMS filaments" msgstr "Filamentos AMS" -msgid "Click to pick filament color" -msgstr "Clique para escolher a cor do filamento" +msgid "Click to select filament color" +msgstr "Clique para selecionar a cor do filamento" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Por favor, escolha a cor do filamento" msgid "Add/Remove presets" @@ -7155,7 +7155,7 @@ msgstr "Adicionar/Remover filamentos" msgid "Add/Remove materials" msgstr "Adicionar/Remover materiais" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Selecionar/Remover impressoras (predefinições do sistema)" msgid "Create printer" @@ -7227,14 +7227,14 @@ msgstr "Carregando 3mf" msgid "Jump to model publish web page" msgstr "Ir para a página web de publicação de modelos" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Nota: A preparação pode levar vários minutos. Por favor, seja paciente." msgid "Publish" msgstr "Publicar" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "A publicação foi cancelada" msgid "Slicing Plate 1" @@ -7259,20 +7259,21 @@ msgstr "Predefinição Dentro do Projeto" msgid "Name is unavailable." msgstr "O nome não está disponível." -msgid "Overwrite a system profile is not allowed" -msgstr "Sobrescrever um perfil de sistema não é permitido" +msgid "Overwriting a system profile is not allowed." +msgstr "Sobrescrever um perfil de sistema não é permitido." #, boost-format msgid "Preset \"%1%\" already exists." msgstr "A predefinição \"%1%\" já existe." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "A predefinição \"%1%\" já existe e é incompatível com a impressora atual." -msgid "Please note that saving action will replace this preset" -msgstr "Por favor, note que a ação de salvar substituirá esta predefinição" +msgid "Please note that saving will overwrite this preset." +msgstr "Por favor, note que a ação de salvar sobrescreverá esta predefinição." msgid "The name cannot be the same as a preset alias name." msgstr "O nome não pode ser o mesmo que um nome de alias de predefinição." @@ -7492,11 +7493,11 @@ msgid "Please check the following:" msgstr "Por favor, verifique o seguinte:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"O tipo de impressora selecionado ao gerar o G-Code não está consistente com " +"O tipo de impressora selecionado ao gerar o G-code não está consistente com " "a impressora atualmente selecionada. É recomendado que você use o mesmo tipo " "de impressora para fatiar." @@ -7528,7 +7529,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Imprimir material de temperatura alta (material %s) com %s poderá causar " @@ -7641,7 +7642,7 @@ msgid "Pin Code" msgstr "Código PIN" msgid "Binding..." -msgstr "Vinculando..." +msgstr "Vinculando…" msgid "Please confirm on the printer screen" msgstr "Confirme na tela da impressora" @@ -7652,7 +7653,7 @@ msgstr "Login falhou. Por favor, verifique o Código PIN." msgid "Log in printer" msgstr "Entrar na impressora" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Você gostaria de entrar nesta impressora com a conta atual?" msgid "Check the reason" @@ -7665,10 +7666,10 @@ msgid "Terms and Conditions" msgstr "Termos e Condições" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Obrigado por adquirir um dispositivo Bambu Lab. Antes de usar seu " @@ -7698,7 +7699,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7757,18 +7758,18 @@ msgstr "" "salva." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" -"A torre de preparação é necessária para um timelapse suave. Pode haver " +"Uma torre de preparação é necessária para um timelapse suave. Pode haver " "falhas no modelo sem a torre de preparação. Tem certeza de que deseja " "desativar a torre de preparação?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" -"A torre de preparação é necessária para um timelapse suave. Pode haver " +"Uma torre de preparação é necessária para um timelapse suave. Pode haver " "falhas no modelo sem a torre de preparação. Deseja ativar a torre de " "preparação?" @@ -7776,18 +7777,22 @@ msgid "Still print by object?" msgstr "Ainda imprimir por objeto?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" +"Ao usar material de suporte para a interface de suporte, recomendamos as " +"seguintes configurações:\n" +"distância Z superior 0, espaçamento de interface 0, padrão retilíneo " +"entrelaçado e desabilitar altura da camada de suporte independente" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Alterar essas configurações automaticamente? \n" +"Alterar essas configurações automaticamente?\n" "Sim - Alterar essas configurações automaticamente\n" "Não - Não alterar essas configurações para mim" @@ -7815,14 +7820,14 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "A altura da camada excede o limite em Configurações da Impressora -> " "Extrusora -> Limites de altura da camada, isso pode causar problemas de " "qualidade de impressão." -msgid "Adjust to the set range automatically? \n" -msgstr "Ajustar automaticamente à faixa definida? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Ajustar automaticamente à faixa definida?\n" msgid "Adjust" msgstr "Ajustar" @@ -7832,24 +7837,24 @@ msgstr "Ignorar" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" -"Recurso experimental: Retrair e cortar o filamento a uma distância maior " -"durante mudanças de filamento para minimizar a purga. Embora possa reduzir " -"notavelmente a purga, ele também pode elevar o risco de bolhas no bico ou " -"outras complicações de impressão." +"Funcionalidade experimental: Retrair e cortar o filamento a uma distância " +"maior durante mudanças de filamento para minimizar a purga. Embora possa " +"reduzir notavelmente a purga, ele também pode elevar o risco de bolhas no " +"bico ou outras complicações de impressão." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" -"Recurso experimental: Retrair e cortar o filamento a uma distância maior " -"durante as trocas de filamento para minimizar a purga. Embora isso possa " -"reduzir consideravelmente a purga, também pode aumentar o risco de " +"Funcionalidade experimental: Retrair e cortar o filamento a uma distância " +"maior durante as trocas de filamento para minimizar a purga. Embora isso " +"possa reduzir consideravelmente a purga, também pode aumentar o risco de " "obstruções no bico ou outras complicações de impressão. Por favor, use com o " "firmware mais recente da impressora." @@ -8018,7 +8023,7 @@ msgid "Prime tower" msgstr "Torre de preparação" msgid "Filament for Features" -msgstr "" +msgstr "Filamento para Recursos" msgid "Ooze prevention" msgstr "Prevenção de vazamento" @@ -8052,11 +8057,11 @@ msgid_plural "" "estimation." msgstr[0] "" "A linha %s seguinte contém palavras-chave reservadas.\n" -"Por favor, remova-a, ou afetará a visualização do código G e a estimativa de " +"Por favor, remova-a, ou afetará a visualização do G-code e a estimativa de " "tempo de impressão." msgstr[1] "" "As linhas %s seguintes contêm palavras-chave reservadas.\n" -"Por favor, remova-as, ou afetará a visualização do código G e a estimativa " +"Por favor, remova-as, ou afetará a visualização do G-code e a estimativa " "de tempo de impressão." msgid "Reserved keywords found" @@ -8098,63 +8103,63 @@ msgid "Cool Plate (SuperTack)" msgstr "Placa Fria (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" -"Temperatura da mesa quando a placa fria está instalada. Valor 0 significa " -"que o filamento não suporta imprimir na Placa Fria SuperTack" +"Temperatura da mesa quando a Placa Fria SuperTack está instalada. O valor 0 " +"significa que o filamento não suporta impressão na Placa Fria SuperTack." msgid "Cool Plate" msgstr "Placa Fria" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" -"Temperatura da mesa quando a placa fria está instalada. Valor 0 significa " -"que o filamento não suporta impressão na Placa Fria" +"Temperatura da mesa quando a Placa Fria está instalada. O valor 0 significa " +"que o filamento não suporta impressão na Placa Fria." -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "Placa Fria Texturizada" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -"Temperatura da mesa quando a placa fria está instalada. Valor 0 significa " -"que o filamento não suporta impressão na Placa Fria Texturizada" +"Temperatura da mesa quando a Placa Fria Texturizada está instalada. O valor " +"0 significa que o filamento não suporta impressão na Placa Fria Texturizada." -msgid "Engineering plate" -msgstr "Placa de engenharia" +msgid "Engineering Plate" +msgstr "Placa de Engenharia" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" -"Temperatura da mesa quando a placa de engenharia está instalada. Valor 0 " -"significa que o filamento não suporta impressão na Placa de Engenharia" +"Temperatura da mesa quando a Placa de Engenharia está instalada. O valor 0 " +"significa que o filamento não suporta impressão na Placa de Engenharia." msgid "Smooth PEI Plate / High Temp Plate" msgstr "Placa PEI Lisa / Placa de Alta Temperatura" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Temperatura da mesa quando a Placa PEI Lisa/Placa de Alta Temperatura está " "instalado. O valor 0 significa que o filamento não suporta a impressão no " -"Placa PEI Lisa/Placa de Alta Temperatura" +"Placa PEI Lisa/Placa de Alta Temperatura." msgid "Textured PEI Plate" msgstr "Placa PEI Texturizada" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura da mesa quando a Placa PEI Texturizada está instalado. O valor 0 " -"significa que o filamento não suporta impressão na Placa PEI Texturizada" +"significa que o filamento não suporta impressão na Placa PEI Texturizada." msgid "Volumetric speed limitation" msgstr "Limitação de fluxo volumétrico" @@ -8214,14 +8219,14 @@ msgstr "G-code de final do filamento" msgid "Wipe tower parameters" msgstr "Parâmetros da torre de limpeza" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "" "Parâmetros de troca de ferramentas com impressoras MM de extrusora única" msgid "Ramming settings" msgstr "Configurações de moldeamento" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" "Parâmetros de troca de ferramentas com impressoras MM de extrusoras múltiplas" @@ -8234,7 +8239,7 @@ msgstr "Dependências de perfil" msgid "Printable space" msgstr "Espaço de impressão" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Valor inválido fornecido para o parâmetro %1%: %2%" @@ -8257,38 +8262,38 @@ msgstr "Malha da mesa adaptativa" msgid "Accessory" msgstr "Acessório" -msgid "Machine gcode" -msgstr "G-Code da máquina" +msgid "Machine G-code" +msgstr "G-code da máquina" msgid "Machine start G-code" -msgstr "G-Code de início da máquina" +msgstr "G-code de início da máquina" msgid "Machine end G-code" -msgstr "G-Code final da máquina" +msgstr "G-code final da máquina" msgid "Printing by object G-code" -msgstr "G-Code de impressão por objeto" +msgstr "G-code de impressão por objeto" msgid "Before layer change G-code" -msgstr "G-Code antes da mudança de camada" +msgstr "G-code antes da mudança de camada" msgid "Layer change G-code" -msgstr "G-Code de mudança de camada" +msgstr "G-code de mudança de camada" -msgid "Time lapse G-code" -msgstr "G-Code de timelapse" +msgid "Timelapse G-code" +msgstr "G-code de timelapse" msgid "Change filament G-code" -msgstr "G-Code de mudança de filamento" +msgstr "G-code de mudança de filamento" msgid "Change extrusion role G-code" -msgstr "G-Code de mudança de tipo de extrusão" +msgstr "G-code de mudança de tipo de extrusão" msgid "Pause G-code" -msgstr "G-Code de pausa" +msgstr "G-code de pausa" msgid "Template Custom G-code" -msgstr "G-Code personalizado do gabarito" +msgstr "G-code personalizado do gabarito" msgid "Motion ability" msgstr "Movimento" @@ -8373,7 +8378,7 @@ msgstr "" "a esta impressora. Essas predefinições serão excluídos se a impressora for " "deletada." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" "As predefinições herdados por outras predefinições não podem ser excluídas!" @@ -8393,7 +8398,7 @@ msgstr[0] "A seguinte predefinição também será excluída." msgstr[1] "As seguintes predefinições também serão excluídas." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" @@ -8613,7 +8618,7 @@ msgstr "Uma nova versão está disponível" msgid "Configuration update" msgstr "Atualização de configuração" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Um novo pacote de configuração está disponível, Deseja instalá-lo?" msgid "Description:" @@ -8622,23 +8627,23 @@ msgstr "Descrição:" msgid "Configuration incompatible" msgstr "Configuração incompatível" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "o pacote de configuração é incompatível com a aplicação atual." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "O pacote de configuração é incompatível com a aplicação atual.\n" "%s atualizará o pacote de configuração, caso contrário, não será possível " -"iniciar" +"iniciar." #, c-format, boost-format msgid "Exit %s" msgstr "Sair %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "o pacote de configuração é incompatível com o APP atual." msgid "Configuration updates" @@ -8651,7 +8656,7 @@ msgid "The configuration is up to date." msgstr "A configuração está atualizada." msgid "Obj file Import color" -msgstr "" +msgstr "Importar cor de arquivo Obj" msgid "Specify number of colors:" msgstr "Especifique a quantidade de cores:" @@ -8691,15 +8696,15 @@ msgid "Map Filament" msgstr "Mapear Filamento" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Nota: a cor foi selecionada, você pode escolher OK \n" -" para continuar ou ajustá-la manualmente." +"para continuar ou ajustá-la manualmente." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Aviso: A contagem de extrusoras \n" "novas e atuais excede 16." @@ -8821,7 +8826,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Seu sistema não possui codecs H.264 para o GStreamer, que são necessários " @@ -8874,16 +8879,16 @@ msgid "Global shortcuts" msgstr "Atalhos globais" msgid "Rotate View" -msgstr "Rotacionar visualização" +msgstr "Rotacionar vista" msgid "Pan View" -msgstr "Movimentar visualização" +msgstr "Movimentar vista" msgid "Mouse wheel" msgstr "Roda do mouse" msgid "Zoom View" -msgstr "Aproximar visualização" +msgstr "Aproximar vista" msgid "Shift+A" msgstr "Shift+A" @@ -8892,13 +8897,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Orienta automaticamente os objetos selecionados ou todos os objetos. Se " "houver objetos selecionados, ele apenas orientará os selecionados. Caso " -"contrário, orientará todos os objetos no disco atual." +"contrário, ele orientará todos os objetos do projeto atual." + +msgid "Auto orients all objects on the active plate." +msgstr "Orienta automaticamente todos os objetos na placa atual." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8973,19 +8981,19 @@ msgid "keyboard 1-9: set filament for object/part" msgstr "teclado 1-9: ajustar filamento para objeto/peça" msgid "Camera view - Default" -msgstr "Visualização da câmera - Padrão" +msgstr "Vista da câmera - Padrão" msgid "Camera view - Top" -msgstr "Visualização da câmera - Superior" +msgstr "Vista da câmera - Superior" msgid "Camera view - Bottom" -msgstr "Visualização da câmera - Inferior" +msgstr "Vista da câmera - Inferior" msgid "Camera view - Front" -msgstr "Visualização da câmera - Frontal" +msgstr "Vista da câmera - Frontal" msgid "Camera view - Behind" -msgstr "Visualização da câmera - Posterior" +msgstr "Vista da câmera - Posterior" msgid "Camera Angle - Left side" msgstr "Ângulo da câmera - Lado esquerdo" @@ -9008,17 +9016,29 @@ msgstr "Rotacionar gizmo" msgid "Gizmo cut" msgstr "Cortar gizmo" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "Posicionar face do gizmo na mesa" +msgid "Gizmo mesh boolean" +msgstr "Gizmo malha booleana" + msgid "Gizmo SLA support points" msgstr "Pontos de suporte SLA do gizmo" msgid "Gizmo FDM paint-on seam" msgstr "Costura de pintura FDM do gizmo" -msgid "Gizmo Text emboss / engrave" -msgstr "Texturizar / gravar texto no gizmo" +msgid "Gizmo text emboss/engrave" +msgstr "Texturizar/gravar texto no gizmo" + +msgid "Gizmo measure" +msgstr "Gizmo medir" + +msgid "Gizmo assemble" +msgstr "Gizmo montar" + +msgid "Gizmo brim ears" +msgstr "Gizmo orelhas da borda" msgid "Zoom in" msgstr "Dar zoom" @@ -9027,7 +9047,7 @@ msgid "Zoom out" msgstr "Dar zoom" msgid "Switch between Prepare/Preview" -msgstr "Alternar entre Preparar/Visualizar" +msgstr "Alternar entre Preparar/Pré-visualizar" msgid "Plater" msgstr "Mesa" @@ -9059,8 +9079,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Definir o número da extrusora para os objetos e peças" -msgid "Delete objects, parts, modifiers " -msgstr "Excluir objetos, peças, modificadores " +msgid "Delete objects, parts, modifiers" +msgstr "Excluir objetos, peças, modificadores" msgid "Select the object/part and press space to change the name" msgstr "Selecione o objeto/peça e pressione espaço para mudar o nome" @@ -9089,8 +9109,8 @@ msgstr "Controle deslizante horizontal - Mover o polegar ativo para a direita" msgid "On/Off one layer mode of the vertical slider" msgstr "Ativar/Desativar modo de uma camada do controle deslizante vertical" -msgid "On/Off g-code window" -msgstr "Ativar/Desativar janela de G-Code" +msgid "On/Off G-code window" +msgstr "Ativar/Desativar janela de G-code" msgid "Move slider 5x faster" msgstr "Mover o controle deslizante 5 vezes mais rápido" @@ -9108,7 +9128,7 @@ msgid "Release Note" msgstr "Nota de lançamento" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "informações de atualização da versão %s:" msgid "Network plug-in update" @@ -9121,8 +9141,8 @@ msgstr "" "iniciado novamente." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" -msgstr "Um novo plug-in de rede (%s) está disponível. Deseja instalá-lo?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" +msgstr "Um novo plug-in de rede (%s) está disponível, deseja instalá-lo?" msgid "New version of Orca Slicer" msgstr "Nova versão do Orca Slicer" @@ -9139,10 +9159,10 @@ msgstr "retomar" msgid "Resume Printing" msgstr "Retomar impressão" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Retomar Impressão (defeitos aceitáveis)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Retomar Impressão (problema resolvido)" msgid "Stop Printing" @@ -9216,7 +9236,7 @@ msgid "Manual Setup" msgstr "Configuração Manual" msgid "connecting..." -msgstr "conectando..." +msgstr "conectando…" msgid "Failed to connect to printer." msgstr "Falha ao conectar à impressora." @@ -9265,10 +9285,10 @@ msgstr "Última versão" msgid "Updating" msgstr "Atualizando" -msgid "Updating failed" +msgid "Update failed" msgstr "Falha na atualização" -msgid "Updating successful" +msgid "Update successful" msgstr "Atualização bem-sucedida" msgid "" @@ -9399,10 +9419,10 @@ msgstr "" "que não haverá colisão." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" -"Falha ao gerar o código G para um G-code personalizado inválido.\n" +"Falha ao gerar o G-code para um G-code personalizado inválido.\n" "\n" msgid "Please check the custom G-code or use the default custom G-code." @@ -9410,7 +9430,7 @@ msgstr "Verifique o G-code personalizado ou use o G-code personalizado padrão." #, boost-format msgid "Generating G-code: layer %1%" -msgstr "Gerando código G: camada %1%" +msgstr "Gerando G-code: camada %1%" msgid "Inner wall" msgstr "Parede interna" @@ -9449,7 +9469,7 @@ msgid "Multiple" msgstr "Múltiplo" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de " "\"%2%\". " @@ -9587,13 +9607,13 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " está muito perto da área de exclusão, e ocorrerão colisões.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Não é possível imprimir juntos vários filamentos que têm grande diferença de " "temperatura. Caso contrário, a extrusora e bico podem ficar bloqueados ou " -"danificados durante a impressão" +"danificados durante a impressão." msgid "No extrusions under current settings." msgstr "Nenhuma extrusão com as configurações atuais." @@ -9689,29 +9709,30 @@ msgstr "" "A torre de preparação não é suportada quando a altura de camada adaptativa " "está ativa. Isso requer que todos os objetos tenham a mesma altura de camada." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" -"A torre de preparação requer que o \"lacuna de suporte\" seja múltiplo da " -"altura da camada" +"A torre de preparação requer que o \"vão de suporte\" seja múltiplo da " +"altura da camada." -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "A torre de preparação requer que todos os objetos tenham as mesmas alturas " -"de camada" +"de camada." msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "A torre de preparação requer que todos os objetos sejam impressos sobre o " -"mesmo número de camadas da jangada" +"mesmo número de camadas da jangada." msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "A torre de preparação só é suportada para vários objetos se eles forem " -"impressos com a mesma support_top_z_distance" +"impressos com a mesma support_top_z_distance." msgid "" "The prime tower requires that all objects are sliced with the same layer " @@ -9722,10 +9743,10 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "A torre de preparação só é suportada se todos os objetos tiverem a mesma " -"altura de camada variável" +"altura de camada variável." msgid "" "One or more object were assigned an extruder that the printer does not have." @@ -9782,8 +9803,8 @@ msgstr "" "Os reforços de suporte são usados, mas o suporte não está habilitado. Por " "favor, habilite o suporte." -msgid "Layer height cannot exceed nozzle diameter" -msgstr "A altura da camada não pode exceder o diâmetro do bico" +msgid "Layer height cannot exceed nozzle diameter." +msgstr "A altura da camada não pode exceder o diâmetro do bico." msgid "" "Relative extruder addressing requires resetting the extruder position at " @@ -9792,7 +9813,7 @@ msgid "" msgstr "" "O endereçamento relativo da extrusora requer a reinicialização da posição da " "extrusora em cada camada para evitar perda de precisão de ponto flutuante. " -"Adicione \"G92 E0\" ao código de camada." +"Adicione \"G92 E0\" ao layer_gcode." msgid "" "\"G92 E0\" was found in before_layer_gcode, which is incompatible with " @@ -9911,11 +9932,11 @@ msgid "Elephant foot compensation" msgstr "Compensação de pé de elefante" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" -"Encolher a primeira camada na placa de impressão para compensar o efeito de " -"pé de elefante" +"Encolhe a primeira camada na placa de impressão para compensar o efeito de " +"pé de elefante." msgid "Elephant foot compensation layers" msgstr "Camadas de compensação de pé de elefante" @@ -9936,24 +9957,24 @@ msgstr "camadas" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Altura de fatiamento para cada camada. Altura de camada menor significa mais " -"precisão e mais tempo de impressão" +"precisão e maior tempo de impressão." msgid "Printable height" msgstr "Altura de impressão" -msgid "Maximum printable height which is limited by mechanism of printer" -msgstr "Altura máxima de impressão limitada pelo mecanismo da impressora" +msgid "Maximum printable height which is limited by mechanism of printer." +msgstr "Altura máxima de impressão limitada pelo mecanismo da impressora." msgid "Preferred orientation" msgstr "Orientação preferida" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "Orientar automaticamente os arquivos STL no eixo Z durante a importação " -"inicial" +"inicial." msgid "Printer preset names" msgstr "Nomes de predefinições de impressora" @@ -9961,10 +9982,10 @@ msgstr "Nomes de predefinições de impressora" msgid "Use 3rd-party print host" msgstr "Usar host de impressão de terceiros" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "Permitir o controle da impressora BambuLab por meio de hosts de impressão de " -"terceiros" +"terceiros." msgid "Hostname, IP or URL" msgstr "Nome do host, IP ou URL" @@ -9986,10 +10007,10 @@ msgid "Device UI" msgstr "Interface do dispositivo" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Especifique a URL da interface do usuário do seu dispositivo se não for a " -"mesma do print_host" +"mesma do print_host." msgid "API Key / Password" msgstr "Chave da API / Senha" @@ -10001,8 +10022,8 @@ msgstr "" "O Orca Slicer pode enviar arquivos G-code para um host de impressora. Este " "campo deve conter a Chave da API ou a senha necessária para autenticação." -msgid "Name of the printer" -msgstr "Nome da impressora" +msgid "Name of the printer." +msgstr "Nome da impressora." msgid "HTTPS CA File" msgstr "Arquivo CA HTTPS" @@ -10034,8 +10055,8 @@ msgstr "" "distribuição ausentes ou offline. Pode-se querer habilitar esta opção para " "certificados autoassinados se a conexão falhar." -msgid "Names of presets related to the physical printer" -msgstr "Nomes das predefinições relacionados à impressora física" +msgid "Names of presets related to the physical printer." +msgstr "Nomes das predefinições relacionados à impressora física." msgid "Authorization Type" msgstr "Tipo de autorização" @@ -10046,27 +10067,28 @@ msgstr "API Key" msgid "HTTP digest" msgstr "Digest HTTP" -msgid "Avoid crossing wall" -msgstr "Evitar atravessar parede" +msgid "Avoid crossing walls" +msgstr "Evitar atravessar paredes" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" -"Desviar e evitar atravessar parede, que pode causar irregularidade na " -"superfície" +"Desviar para evitar atravessar paredes, que pode causar irregularidades na " +"superfície." -msgid "Avoid crossing wall - Max detour length" -msgstr "Evitar atravessar parede - Distância máximo do desvio" +msgid "Avoid crossing walls - Max detour length" +msgstr "Evitar atravessar paredes - Distância máximo do desvio" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" -"Distância máxima de desvio para evitar atravessar uma parede. Não desviar se " -"a distância de desvio for maior que esse valor. A distancia do desvio pode " -"ser especificada como um valor absoluto ou como porcentagem (por exemplo, " -"50%) de um caminho de deslocamento direto. Zero para desativar" +"Distância máxima de desvio para evitar atravessar paredes. Não desviar se a " +"distância de desvio for maior que esse valor. A distancia do desvio pode ser " +"especificada como um valor absoluto ou como porcentagem (por exemplo, 50%) " +"de um caminho de deslocamento direto. Zero para desativar." msgid "mm or %" msgstr "mm ou %" @@ -10075,42 +10097,42 @@ msgid "Other layers" msgstr "Outras camadas" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão na Placa Fria" +"filamento não suporta a impressão na Placa Fria." msgid "°C" -msgstr "°C" +msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão na Placa Fria Texturizada" +"filamento não suporta a impressão na Placa Fria Texturizada." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão na Placa de Engenharia" +"filamento não suporta a impressão na Placa de Engenharia." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão na Placa de Alta Temperatura" +"filamento não suporta a impressão na Placa de Alta Temperatura." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Temperatura da mesa para camadas exceto a inicial. O valor 0 significa que o " -"filamento não suporta a impressão na Placa PEI Texturizada" +"filamento não suporta a impressão na Placa PEI Texturizada." msgid "Initial layer" msgstr "Primeira camada" @@ -10119,76 +10141,70 @@ msgid "Initial layer bed temperature" msgstr "Temperatura da mesa da primeira camada" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Placa Fria SuperTack" +"não suporta a impressão na Placa Fria SuperTack." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Placa Fria" +"não suporta a impressão na Placa Fria." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Placa Fria Texturizada" +"não suporta a impressão na Placa Fria Texturizada." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Placa de Engenharia" +"não suporta a impressão na Placa de Engenharia." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Placa de Alta Temperatura" +"não suporta a impressão na Placa de Alta Temperatura." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Temperatura da mesa na primeira camada. O valor 0 significa que o filamento " -"não suporta a impressão na Placa PEI Texturizada" +"não suporta a impressão na Placa PEI Texturizada." -msgid "Bed types supported by the printer" -msgstr "Tipos de mesa suportadas pela impressora" +msgid "Bed types supported by the printer." +msgstr "Tipos de placa suportadas pela impressora." msgid "Smooth Cool Plate" msgstr "Placa Fria Lisa" -msgid "Engineering Plate" -msgstr "Placa de Engenharia" - msgid "Smooth High Temp Plate" -msgstr "Placa de Alta Temp. Liso" - -msgid "Textured Cool Plate" -msgstr "Placa Fria Texturizada" +msgstr "Placa de Alta Temp. Lisa" msgid "First layer print sequence" msgstr "Sequência de impressão da primeira camada" msgid "Other layers print sequence" -msgstr "Sequência de impressão de outras camadas" +msgstr "Sequência de impressão das outras camadas" msgid "The number of other layers print sequence" -msgstr "O número de sequência de impressão de outras camadas" +msgstr "O número de sequência de impressão das outras camadas" msgid "Other layers filament sequence" msgstr "Sequência de impressão de outros filamentos" -msgid "This G-code is inserted at every layer change before lifting z" -msgstr "Este código G é inserido em cada mudança de camada antes de levantar z" +msgid "This G-code is inserted at every layer change before the Z lift." +msgstr "Este G-code é inserido em cada mudança de camada antes da elevação Z." msgid "Bottom shell layers" msgstr "Camadas da casca de base" @@ -10196,11 +10212,11 @@ msgstr "Camadas da casca de base" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Este é o número de camadas sólidas da casca de base, incluindo a primeira " "camada. Quando a espessura calculada por este valor for mais fina do que a " -"espessura da base, o número de camadas da casca de base será aumentado" +"espessura da base, o número de camadas da casca de base será aumentado." msgid "Bottom shell thickness" msgstr "Espessura da casca de base" @@ -10210,14 +10226,14 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "O número de camadas sólidas da base é aumentado ao fatiar se a espessura " "calculada pelas camadas de casca de base for mais fina do que este valor. " "Isso pode evitar que a casca de base seja muito fina quando a altura da " "camada é pequena. 0 significa que esta configuração está desativada e a " "espessura da casca de base é absolutamente determinada pelas camadas de " -"casca de base" +"casca de base." msgid "Apply gap fill" msgstr "Aplicar preenchimento de vão" @@ -10232,22 +10248,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Ativa o preenchimento de vãos para as superfícies sólidas selecionadas. O " "comprimento mínimo do vão que será preenchido pode ser controlado na opção " @@ -10255,11 +10271,11 @@ msgstr "" "\n" "Opções:\n" "1. Sempre: aplica o preenchimento de vãos às superfícies sólidas superior, " -"inferior e interna para máxima resistência\n" +"inferior e interna para máxima resistência;\n" "2. Superfícies superior e inferior: aplica o preenchimento de vãos somente " "às superfícies superior e inferior, equilibrando a velocidade de impressão, " "reduzindo o potencial de sobreextrusão no preenchimento sólido e garantindo " -"que as superfícies superior e inferior não tenham vãos de furo de alfinete\n" +"que as superfícies superior e inferior não tenham vãos de furo de alfinete;\n" "3. Nunca: desabilita o preenchimento de vãos para todas as áreas de " "preenchimento sólido.\n" "\n" @@ -10277,7 +10293,7 @@ msgstr "" "que o preenchimento de vãos excessivo é gerado entre perímetros, uma opção " "melhor seria alternar para o gerador de parede arachne e usar esta opção " "para controlar se o preenchimento de vãos de superfície superior e inferior " -"cosmética é gerado" +"cosmética é gerado." msgid "Everywhere" msgstr "Sempre" @@ -10401,9 +10417,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10415,7 +10431,7 @@ msgstr "" "Pontes internas de menor densidade podem ajudar a reduzir as almofadas da " "superfície superior e melhorar a confiabilidade da ponte interna, pois há " "mais espaço para o ar circular ao redor da ponte extrudada, melhorando sua " -"velocidade de resfriamento. \n" +"velocidade de resfriamento.\n" "\n" "Esta opção funciona particularmente bem quando combinada com a segunda opção " "de ponte interna sobre preenchimento, melhorando ainda mais a estrutura de " @@ -10425,14 +10441,14 @@ msgid "Bridge flow ratio" msgstr "Fluxo em ponte" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" "Diminua esse valor ligeiramente (por exemplo, 0,9) para reduzir a quantidade " -"de material para a ponte, para melhorar a flacidez. \n" +"de material para a ponte, para melhorar a flacidez.\n" "\n" "O fluxo real da ponte usado é calculado multiplicando esse valor pela taxa " "de fluxo do filamento e, se definido, pela taxa de fluxo do objeto." @@ -10463,14 +10479,14 @@ msgstr "Fluxo em superfície superior" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Este fator afeta a quantidade de material para preenchimento sólido " "superior. Você pode diminuí-lo ligeiramente para ter um acabamento de " -"superfície suave. \n" +"superfície suave.\n" "\n" "O real fluxo de superfície superior usado é calculado multiplicando este " "valor pela taxa de fluxo do filamento e, se definido, pela taxa de fluxo do " @@ -10480,13 +10496,13 @@ msgid "Bottom surface flow ratio" msgstr "Fluxo em superfície inferior" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Este fator afeta a quantidade de material para preenchimento sólido do " -"fundo. \n" +"fundo.\n" "\n" "O real fluxo de preenchimento sólido do fundo usado é calculado " "multiplicando este valor pela taxa de fluxo do filamento e, se definido, " @@ -10506,11 +10522,11 @@ msgid "Only one wall on top surfaces" msgstr "Parede única em superfícies superiores" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" -"Use apenas uma parede em superfície superior, para dar mais espaço ao padrão " -"de preenchimento superior" +"Use apenas uma parede em superfícies superiores, para dar mais espaço ao " +"padrão de preenchimento superior." msgid "One wall threshold" msgstr "Limiar de parede única" @@ -10541,10 +10557,10 @@ msgstr "Parede única na primeira camada" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Use apenas uma parede na primeira camada, para dar mais espaço ao padrão de " -"preenchimento inferior" +"preenchimento inferior." msgid "Extra perimeters on overhangs" msgstr "Paredes extras em saliências" @@ -10581,7 +10597,7 @@ msgid "Reverse only internal perimeters" msgstr "Reverter apenas os perímetros internos" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10614,14 +10630,14 @@ msgstr "Pontes para furos rebaixados" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Esta opção cria pontes para furos rebaixados, permitindo que sejam impressos " "sem suporte. Os modos disponíveis incluem:\n" -"1. Nenhum: Nenhuma ponte é criada.\n" -"2. Ponte parcial: Apenas uma parte da área não suportada será ponteada.\n" +"1. Nenhum: Nenhuma ponte é criada;\n" +"2. Ponte parcial: Apenas uma parte da área não suportada será ponteada;\n" "3. Camada de sacrifício: Uma camada completa de ponte sacrificial é criada." msgid "Partially bridged" @@ -10653,16 +10669,16 @@ msgstr "" msgid "Classic mode" msgstr "Modo clássico" -msgid "Enable this option to use classic mode" -msgstr "Ative esta opção para usar o modo clássico" +msgid "Enable this option to use classic mode." +msgstr "Ative esta opção para usar o modo clássico." msgid "Slow down for overhang" msgstr "Reduzir velocidade em saliências" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Ative esta opção para diminuir a velocidade de impressão para diferentes de " -"degraus de saliência" +"degraus de saliência." msgid "Slow down for curled perimeters" msgstr "Reduzir vel. para perímetros encurvados" @@ -10670,11 +10686,11 @@ msgstr "Reduzir vel. para perímetros encurvados" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10692,7 +10708,7 @@ msgstr "" "será aplicada ao imprimir saliências em cantos afiados, como a parte frontal " "do casco Benchy, reduzindo a curvatura que se acumula por várias camadas.\n" "\n" -" Geralmente, é recomendável ter esta opção ativada, a menos que o " +"Geralmente, é recomendável ter esta opção ativada, a menos que o " "resfriamento da impressora seja potente o suficiente ou a velocidade de " "impressão lenta o suficiente para que a curvatura do perímetro não aconteça. " "Se estiver imprimindo com uma alta velocidade de perímetro externo, este " @@ -10713,14 +10729,14 @@ msgid "External" msgstr "Externo" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " "are supported by less than 13%, whether they are part of a bridge or an " "overhang." msgstr "" -"Velocidade das extrusões de pontes visíveis externamente. \n" +"Velocidade das extrusões de pontes visíveis externamente.\n" "\n" "Além disso, se Desacelerar para perímetros curvos estiver desabilitado ou o " "Modo de saliência clássico estiver habilitado, será a velocidade de " @@ -10740,8 +10756,8 @@ msgstr "" msgid "Brim width" msgstr "Largura da borda" -msgid "Distance from model to the outermost brim line" -msgstr "Distância do modelo até a linha da borda mais externa" +msgid "Distance from model to the outermost brim line." +msgstr "Distância do modelo até a linha da borda mais externa." msgid "Brim type" msgstr "Tipo de borda" @@ -10762,10 +10778,10 @@ msgstr "Espaço entre a borda e objeto" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Um espaço entre a linha mais interna da borda e o objeto pode facilitar a " -"remoção da borda" +"remoção da borda." msgid "Brim ears" msgstr "Orelhas da borda" @@ -10777,12 +10793,12 @@ msgid "Brim ear max angle" msgstr "Ângulo máximo da orelha da borda" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" -"Ângulo máximo para permitir que uma orelha da borda apareça. \n" -"Se definido como 0, nenhuma borda será criado. \n" +"Ângulo máximo para permitir que uma orelha da borda apareça.\n" +"Se definido como 0, nenhuma borda será criado.\n" "Se definido como ~180, a borda será criada em tudo, exceto em seções retas." msgid "Brim ear detection radius" @@ -10791,11 +10807,11 @@ msgstr "Raio de detecção da orelha da borda" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "A geometria será decimada antes de detectar ângulos agudos. Este parâmetro " "indica o comprimento mínimo da divergência para a decimação.\n" -"0 para desativar" +"0 para desativar." msgid "Compatible machine" msgstr "Máquina compatível" @@ -10830,8 +10846,8 @@ msgstr "" "impressão ativo. Se essa expressão for avaliada como true, esse perfil será " "considerado compatível com o perfil de impressão ativo." -msgid "Print sequence, layer by layer or object by object" -msgstr "Sequência de impressão, camada por camada ou objeto por objeto" +msgid "Print sequence, layer by layer or object by object." +msgstr "Sequência de impressão, camada por camada ou objeto por objeto." msgid "By layer" msgstr "Por camada" @@ -10842,8 +10858,8 @@ msgstr "Por objeto" msgid "Intra-layer order" msgstr "Ordem intra-camada" -msgid "Print order within a single layer" -msgstr "Ordem de impressão dentro de uma única camada" +msgid "Print order within a single layer." +msgstr "Ordem de impressão dentro de uma única camada." msgid "As object list" msgstr "Como lista de objetos" @@ -10855,35 +10871,35 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Ative esta opção para diminuir a velocidade de impressão para que o tempo da " "camada final não seja menor do que o limiar de tempo da camada em \"Limiar " "de velocidade máxima do ventilador\", para que a camada possa ser resfriada " "por mais tempo. Isso pode melhorar a qualidade de resfriamento para detalhes " -"pequenos" +"pequenos." msgid "Normal printing" msgstr "Impressão normal" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "A aceleração padrão tanto para a impressão normal quanto para o movimento, " -"exceto na primeira camada" +"exceto na primeira camada." msgid "Default filament profile" msgstr "Perfil de filamento padrão" -msgid "Default filament profile when switch to this machine profile" -msgstr "Perfil de filamento padrão ao mudar para este perfil de máquina" +msgid "Default filament profile when switching to this machine profile." +msgstr "Perfil de filamento padrão ao trocar para este perfil de máquina." msgid "Default process profile" msgstr "Perfil de processo padrão" -msgid "Default process profile when switch to this machine profile" -msgstr "Perfil de processo padrão ao mudar para este perfil de máquina" +msgid "Default process profile when switching to this machine profile." +msgstr "Perfil de processo padrão ao trocar para este perfil de máquina." msgid "Activate air filtration" msgstr "Ativar filtragem de ar" @@ -10896,36 +10912,35 @@ msgid "Fan speed" msgstr "Velocidade do ventilador" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Velocidade do ventilador de exaustão durante a impressão. Esta velocidade " -"substituirá a velocidade no gcode personalizado do filamento" +"substituirá a velocidade no G-code personalizado do filamento." -msgid "Speed of exhaust fan after printing completes" -msgstr "Velocidade do ventilador de exaustão após a conclusão da impressão" +msgid "Speed of exhaust fan after printing completes." +msgstr "Velocidade do ventilador de exaustão após a conclusão da impressão." msgid "No cooling for the first" msgstr "Sem resfriamento para as primeiras" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" -"Feche todos os ventiladores de resfriamento para as primeiras camadas. O " -"ventilador de resfriamento da primeira camada costuma ser desligado para " -"obter uma melhor adesão à placa de impressão" +"Desligar todos os ventiladores de resfriamento para as primeiras camadas. " +"Isso pode ser usado para obter uma melhor adesão à placa de impressão." msgid "Don't support bridges" msgstr "Não suportar pontes" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Não suportar toda a área da ponte que faz com que o suporte seja muito " -"grande. Ponte geralmente pode ser impressa diretamente sem suporte se não " -"for muito longa" +"grande. Pontes geralmente podem ser impressas diretamente sem suporte se não " +"forem muito longas." msgid "Thick external bridges" msgstr "Pontes externas grossas" @@ -10970,20 +10985,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11003,22 +11018,22 @@ msgstr "" "\n" "Opções:\n" "1. Desativado - não gera segundas camadas de ponte. Este é o padrão e é " -"definido para fins de compatibilidade.\n" +"definido para fins de compatibilidade;\n" "2. Apenas pontes externas - gera segundas camadas de ponte somente para " "pontes voltadas para o exterior. Observe que pontes pequenas que sejam mais " "curtas ou estreitas do que o número definido de perímetros serão ignoradas, " "pois não se beneficiariam de uma segunda camada de ponte. Se gerada, a " "segunda camada de ponte será extrudada paralelamente à primeira camada de " -"ponte para reforçar a resistência da ponte.\n" +"ponte para reforçar a resistência da ponte;\n" "3. Apenas pontes internas - gera segundas camadas de ponte somente para " "pontes internas sobre preenchimento esparso. Observe que as pontes internas " "contam para a contagem da camada de casca superior do seu modelo. A segunda " "camada de ponte interna será extrudada o mais perpendicular possível da à " "primeira. Se várias regiões na mesma ilha, com ângulos de ponte variados, " "estiverem presentes, a última região dessa ilha será selecionada como a " -"referência de ângulo.\n" +"referência de ângulo;\n" "4. Aplicar a todos - gera segundas camadas de ponte para pontes internas e " -"externas\n" +"externas.\n" msgid "Disabled" msgstr "Desativado" @@ -11038,56 +11053,44 @@ msgstr "Filtrar pontes internas pequenas" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Esta opção pode ajudar a reduzir as almofadas em superfícies superiores em " "modelos muito inclinados ou curvos.\n" -"\n" "Por padrão, pequenas pontes internas são filtradas e o preenchimento sólido " "interno é impresso diretamente sobre o preenchimento esparso. Isso funciona " "bem na maioria dos casos, acelerando a impressão sem comprometer muito a " "qualidade da superfície superior.\n" -"\n" "No entanto, em modelos muito inclinados ou curvos, especialmente onde uma " "densidade de preenchimento esparso muito baixa é usada, isso pode resultar " "em ondulação do preenchimento sólido sem suporte, causando almofadas.\n" -"\n" "Habilitar a filtragem limitada ou nenhuma filtragem imprimirá a camada de " "ponte interna sobre o preenchimento sólido interno com pouco suporte. As " "opções abaixo controlam a sensibilidade da filtragem, ou seja, controlam " -"onde as pontes internas são criadas.\n" -"\n" +"onde as pontes internas são criadas:\n" "1. Filtrar - habilita esta opção. Este é o comportamento padrão e funciona " -"bem na maioria dos casos.\n" -"\n" +"bem na maioria dos casos;\n" "2. Filtragem limitada - cria pontes em superfícies muito inclinadas, " "evitando pontes desnecessárias. Isso funciona bem para a maioria dos modelos " -"difíceis.\n" -"\n" +"difíceis;\n" "3. Sem filtragem - cria pontes internas em toda possível saliência interna. " "Esta opção é útil para modelos de superfície superior muito inclinados; no " "entanto, na maioria dos casos, cria muitas pontes desnecessárias." @@ -11116,21 +11119,21 @@ msgstr "" msgid "End G-code" msgstr "G-code de finalização" -msgid "End G-code when finish the whole printing" -msgstr "G-code de finalização ao terminar a impressão completa" +msgid "End G-code when finishing the entire print." +msgstr "G-code de finalização ao terminar a impressão completa." -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "G-code entre objetos" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Insira o G-code entre objetos. Este parâmetro só terá efeito quando você " -"imprimir seus modelos objeto por objeto" +"imprimir seus modelos objeto por objeto." -msgid "End G-code when finish the printing of this filament" -msgstr "G-code de finalização ao terminar a impressão deste filamento" +msgid "End G-code when finishing the printing of this filament." +msgstr "G-code de finalização ao terminar a impressão deste filamento." msgid "Ensure vertical shell thickness" msgstr "Garantir a espessura vertical da casca" @@ -11166,8 +11169,8 @@ msgstr "Moderado" msgid "Top surface pattern" msgstr "Padrão de superfície superior" -msgid "Line pattern of top surface infill" -msgstr "Padrão de linha do preenchimento da superfície superior" +msgid "Line pattern of top surface infill." +msgstr "Padrão de linha do preenchimento da superfície superior." msgid "Concentric" msgstr "Concêntrico" @@ -11196,10 +11199,10 @@ msgstr "Espiral de Octagrama" msgid "Bottom surface pattern" msgstr "Padrão de superfície inferior" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "" "Padrão de linha do preenchimento da superfície inferior, não do " -"preenchimento da ponte" +"preenchimento da ponte." msgid "Internal solid infill pattern" msgstr "Padrão de preenchimento sólido interno" @@ -11244,16 +11247,16 @@ msgid "Small perimeters threshold" msgstr "Limiar de pequenos perímetros" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Isso define o limiar para o comprimento do perímetro pequeno. O limiar " -"padrão é 0mm" +"padrão é 0mm." msgid "Walls printing order" msgstr "Ordem de impressão das paredes" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11267,7 +11270,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11276,7 +11279,7 @@ msgid "" "\n" " " msgstr "" -"Sequência de impressão das paredes internas e externas. \n" +"Sequência de impressão das paredes internas e externas.\n" "\n" "Use Interior/Exterior para melhores saliências. Isso ocorre porque as " "paredes salientes podem aderir a um perímetro vizinho durante a impressão. " @@ -11292,7 +11295,7 @@ msgstr "" "imprime as paredes internas a partir do terceiro perímetro para fora " "primeiro, depois o perímetro externo e finalmente o primeiro perímetro " "interno. Esta opção é recomendada em vez da opção Exterior/Interior na " -"maioria dos casos. \n" +"maioria dos casos.\n" "\n" "Use Exterior/Interior para obter os mesmos benefícios de qualidade de parede " "externa e precisão dimensional da opção Interior/Exterior/Interior. No " @@ -11465,8 +11468,8 @@ msgstr "" msgid "Extruder Color" msgstr "Cor da Extrusora" -msgid "Only used as a visual help on UI" -msgstr "Usado apenas como ajuda visual na interface do usuário" +msgid "Only used as a visual help on UI." +msgstr "Usado apenas como ajuda visual na interface do usuário." msgid "Extruder offset" msgstr "Deslocamento da extrusora" @@ -11475,34 +11478,34 @@ msgid "Flow ratio" msgstr "Taxa de fluxo" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" -"O material pode ter mudança volumétrica após a troca entre o estado fundido " -"e o estado cristalino. Esta configuração altera todo o fluxo de extrusão " -"deste filamento no gcode proporcionalmente. A faixa de valores recomendada " +"O material pode ter mudança volumétrica após a troca entre os estados " +"fundido e cristalino. Esta configuração altera todo o fluxo de extrusão " +"deste filamento no G-code proporcionalmente. A faixa de valores recomendada " "está entre 0.95 e 1.05. Talvez você possa ajustar esse valor para obter uma " -"superfície plana agradável quando houver um leve transbordamento ou subfluxo" +"superfície plana agradável quando houver um leve transbordamento ou subfluxo." msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." msgstr "" -"O material pode ter mudança volumétrica após alternar entre o estado fundido " -"e o estado cristalino. Esta configuração altera todo o fluxo de extrusão " -"deste filamento no gcode proporcionalmente. A faixa de valores recomendada " -"está entre 0,95 e 1,05. Talvez você possa ajustar este valor para obter uma " +"O material pode ter mudança volumétrica após a troca entre os estados " +"fundido e cristalino. Esta configuração altera todo o fluxo de extrusão " +"deste filamento no G-code proporcionalmente. A faixa de valores recomendada " +"está entre 0.95 e 1.05. Talvez você possa ajustar esse valor para obter uma " "superfície plana agradável quando houver um leve transbordamento ou " -"subfluxo. \n" +"subfluxo.\n" "\n" "A taxa de fluxo final do objeto é este valor multiplicado pela taxa de fluxo " "do filamento." @@ -11517,9 +11520,9 @@ msgstr "" "Habilitar avanço de pressão, o resultado da calibração automática será " "sobrescrito uma vez habilitado." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" -"Avanço de pressão(Klipper) também conhecido como Fator de avanço linear " +"Avanço de pressão (Klipper) também conhecido como Fator de avanço linear " "(Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -11585,19 +11588,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Adicione conjuntos de valores de avanço de pressão (PA), as velocidades de " "fluxo volumétrico e acelerações em que foram medidos, separados por uma " @@ -11615,7 +11617,7 @@ msgstr "" "(geralmente é o preenchimento esparso ou sólido). Em seguida, execute-os " "para as mesmas velocidades para as acelerações de impressão mais lentas e " "mais rápidas, e não mais rápido do que a aceleração máxima recomendada, " -"conforme fornecido pelo modelador de entrada do Klipper.\n" +"conforme fornecido pelo modelador de entrada do Klipper;\n" "2. Anote o valor de PA ideal para cada velocidade e aceleração de fluxo " "volumétrico. Você pode encontrar o número do fluxo selecionando fluxo no " "menu suspenso do esquema de cores e movendo o controle deslizante horizontal " @@ -11624,10 +11626,9 @@ msgstr "" "fluxo volumétrico. Se não estiver, confirme se sua extrusora está " "funcionando corretamente. Quanto mais lento e com menos aceleração você " "imprimir, maior será o intervalo de valores de PA aceitáveis. Se nenhuma " -"diferença for visível, use o valor de PA do teste mais rápido.\n" +"diferença for visível, use o valor de PA do teste mais rápido;\n" "3. Insira os tripletos de valores de PA, Fluxo e Acelerações na caixa de " -"texto aqui e salve seu perfil de filamento\n" -"\n" +"texto aqui e salve seu perfil de filamento." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Habilitar avanço de pressão adaptável para saliências (beta)" @@ -11647,14 +11648,14 @@ msgid "Pressure advance for bridges" msgstr "Avanço de pressão para pontes" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" -"Valor de avanço de pressão para pontes. Defina como 0 para desabilitar. \n" +"Valor de avanço de pressão para pontes. Defina como 0 para desabilitar.\n" "\n" "Um valor de PA mais baixo ao imprimir pontes ajuda a reduzir a aparência de " "leve subextrusão imediatamente após as pontes. Isso é causado pela queda de " @@ -11672,12 +11673,13 @@ msgid "Keep fan always on" msgstr "Manter o ventilador sempre ligado" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" -"Se habilitar esta configuração, o ventilador de resfriamento da peça nunca " -"será desligado e funcionará pelo menos na velocidade mínima para reduzir a " -"frequência de início e parada" +"Habilitar esta configuração significa que o ventilador de resfriamento da " +"peça nunca será desligado completamente e funcionará pelo menos na " +"velocidade mínima para reduzir a frequência de inícios e paradas." msgid "Don't slow down outer walls" msgstr "Não desacelerar as paredes externas" @@ -11686,24 +11688,20 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Se habilitada, esta configuração garantirá que os perímetros externos não " "sejam desacelerados para atender ao tempo mínimo de camada. Isso é " "particularmente útil nos cenários abaixo:\n" -"\n" -"1. Para evitar alterações no brilho ao imprimir filamentos brilhantes \n" +"1. Para evitar alterações no brilho ao imprimir filamentos brilhantes;\n" "2. Para evitar alterações na velocidade da parede externa que podem criar " -"leves artefatos de parede que parecem bandas z \n" +"leves artefatos de parede que parecem bandas Z;\n" "3. Para evitar a impressão em velocidades que causam VFAs (artefatos finos) " -"nas paredes externas\n" -"\n" +"nas paredes externas." msgid "Layer time" msgstr "Tempo da camada" @@ -11711,12 +11709,12 @@ msgstr "Tempo da camada" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "O ventilador de resfriamento da peça será ativado para camadas cujo tempo " "estimado seja menor que esse valor. A velocidade do ventilador é interpolada " "entre as velocidades mínima e máxima do ventilador de acordo com o tempo de " -"impressão da camada" +"impressão da camada." msgid "Default color" msgstr "Cor padrão" @@ -11743,12 +11741,12 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Essa configuração representa quanto volume de filamento pode ser derretido e " "extrudado por segundo. A velocidade de impressão é limitada pela fluxo " "volumétrico máximo, no caso de configurações de velocidade muito altas e " -"irrazoáveis. Não pode ser zero" +"irrazoáveis. Não pode ser zero." msgid "mm³/s" msgstr "mm³/s" @@ -11759,12 +11757,12 @@ msgstr "Tempo de carga do filamento" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Tempo para carregar novo filamento ao trocar o filamento. Geralmente é " "aplicável para máquinas multimateriais de extrusora única. Para trocadores " "de ferramentas ou máquinas multiferramentas, é tipicamente 0. Apenas para " -"estatísticas" +"estatística." msgid "Filament unload time" msgstr "Tempo de descarga do filamento" @@ -11772,12 +11770,12 @@ msgstr "Tempo de descarga do filamento" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Tempo para descarregar o filamento antigo ao trocar o filamento. Geralmente " "é aplicável para máquinas multimateriais de extrusora única. Para trocadores " "de ferramentas ou máquinas multiferramentas, é tipicamente 0. Apenas para " -"estatísticas" +"estatística." msgid "Tool change time" msgstr "Tempo de troca de ferramenta" @@ -11785,18 +11783,18 @@ msgstr "Tempo de troca de ferramenta" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Tempo gasto para trocar ferramentas. Geralmente é aplicável para trocadores " "de ferramentas ou máquinas multiferramentas. Para máquinas multimateriais de " -"extrusora única, é tipicamente 0. Apenas para estatísticas" +"extrusora única, é tipicamente 0. Apenas para estatística." msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" -"O diâmetro do filamento é usado para calcular a extrusão no gcode, portanto, " -"é importante e deve ser preciso" +"O diâmetro do filamento é usado para calcular a extrusão no G-code, portanto, " +"é importante e deve ser preciso." msgid "Pellet flow coefficient" msgstr "Coeficiente de fluxo de pellets" @@ -11865,7 +11863,7 @@ msgid "Unloading speed" msgstr "Velocidade de descarregamento" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Velocidade usada para descarregar o filamento na torre de limpeza (não afeta " @@ -11884,8 +11882,8 @@ msgid "Delay after unloading" msgstr "Atraso após o descarregamento" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Tempo de espera após o filamento ser descarregado. Pode ajudar a obter " @@ -11913,7 +11911,7 @@ msgstr "" "Distância de estampagem medida a partir do centro do tubo de resfriamento" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11973,7 +11971,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Realizar moldeamento usando impressora multi-ferramenta (ou seja, quando a " "opção 'Multimaterial de Extrusora Única' em Configurações de Impressora está " @@ -11984,52 +11982,52 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Volume de moldeamento multi-extrusora" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "O volume a ser esmagado antes da troca de ferramenta." msgid "Multi-tool ramming flow" msgstr "Fluxo de esmagamento multi-extrusora" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Fluxo usado para moldar o filamento antes da troca de extrusora." msgid "Density" msgstr "Densidade" -msgid "Filament density. For statistics only" -msgstr "Densidade do filamento. Apenas para estatísticas" +msgid "Filament density. For statistics only." +msgstr "Densidade do filamento. Apenas para estatística." msgid "g/cm³" -msgstr "g/cm3" +msgstr "" -msgid "The material type of filament" -msgstr "O tipo de material do filamento" +msgid "The material type of filament." +msgstr "O tipo de material do filamento." msgid "Soluble material" msgstr "Material solúvel" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" -"O material solúvel é comumente usado para imprimir suporte e interface de " -"suporte" +"O material solúvel é comumente usado para imprimir suportes e interfaces de " +"suporte." msgid "Support material" msgstr "Material de suporte" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" -"O material de suporte é comumente usado para imprimir suporte e interface de " -"suporte" +"O material de suporte é comumente usado para imprimir suportes e interfaces " +"de suporte." msgid "Softening temperature" msgstr "Temperatura de amolecimento" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "O material amolece a esta temperatura, portanto, quando a temperatura da " "mesa for igual ou maior que ela, é altamente recomendável abrir a porta da " @@ -12038,8 +12036,8 @@ msgstr "" msgid "Price" msgstr "Preço" -msgid "Filament price. For statistics only" -msgstr "Preço do filamento. Apenas para estatísticas" +msgid "Filament price. For statistics only." +msgstr "Preço do filamento. Apenas para estatística." msgid "money/kg" msgstr "dinheiro/kg" @@ -12047,8 +12045,8 @@ msgstr "dinheiro/kg" msgid "Vendor" msgstr "Fornecedor" -msgid "Vendor of filament. For show only" -msgstr "Fornecedor do filamento. Apenas para mostrar" +msgid "Vendor of filament. For show only." +msgstr "Fornecedor do filamento. Apenas para mostrar." msgid "(Undefined)" msgstr "(Indefinido)" @@ -12058,20 +12056,20 @@ msgstr "Direção do preenchimento esparso" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" -"Ângulo para o padrão de preenchimento esparso, que controla o início ou a " -"direção principal da linha" +"Ângulo para o padrão de preenchimento esparso, que controla a direção " +"inicial ou principal da linha." msgid "Solid infill direction" msgstr "Direção do preenchimento sólido" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Ângulo para padrão de preenchimento sólido, que controla a direção inicial " -"ou principal da linha" +"ou principal da linha." msgid "Rotate solid infill direction" msgstr "Rotaciona a direção do preenchimento sólido" @@ -12085,17 +12083,17 @@ msgstr "Densidade do preenchimento esparso" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Densidade do preenchimento esparso interno, 100% transforma todo o " "preenchimento esparso em preenchimento sólido e será usado o padrão de " -"preenchimento sólido interno" +"preenchimento sólido interno." msgid "Sparse infill pattern" msgstr "Padrão de preenchimento esparso" -msgid "Line pattern for internal sparse infill" -msgstr "Padrão de linha para preenchimento esparso interno" +msgid "Line pattern for internal sparse infill." +msgstr "Padrão de linha para preenchimento esparso interno." msgid "Grid" msgstr "Grade" @@ -12116,13 +12114,13 @@ msgid "Gyroid" msgstr "Giroide" msgid "Honeycomb" -msgstr "Honeycomb" +msgstr "Favo de Mel" msgid "Adaptive Cubic" msgstr "Cúbico Adaptativo" msgid "3D Honeycomb" -msgstr "Honeycomb 3D" +msgstr "Favo de Mel 3D" msgid "Support Cubic" msgstr "Cúbico de Suporte" @@ -12131,10 +12129,10 @@ msgid "Lightning" msgstr "Relâmpago" msgid "Cross Hatch" -msgstr "Padrão Cruzado" +msgstr "Hachura Cruzada" msgid "Quarter Cubic" -msgstr "" +msgstr "Quarto Cúbico" msgid "Lattice angle 1" msgstr "Ângulo de treliça 1" @@ -12167,7 +12165,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12179,7 +12177,7 @@ msgstr "" "infill_anchor_max for encontrado, a linha de preenchimento é conectada a um " "segmento de perímetro em apenas um lado e o comprimento do segmento de " "perímetro tomado é limitado a este parâmetro, mas não mais do que " -"anchor_length_max. \n" +"anchor_length_max.\n" "Defina este parâmetro como zero para desabilitar os perímetros de ancoragem " "conectados a uma única linha de preenchimento." @@ -12200,7 +12198,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12211,32 +12209,32 @@ msgstr "" "curto de perímetro. Se nenhum segmento de perímetro mais curto que este " "parâmetro for encontrado, a linha de preenchimento é conectada a um segmento " "de perímetro em apenas um lado e o comprimento do segmento de perímetro " -"tomado é limitado a infill_anchor, mas não mais do que este parâmetro. \n" +"tomado é limitado a infill_anchor, mas não mais do que este parâmetro.\n" "Se definido como 0, o antigo algoritmo de conexão de preenchimento será " "usado, ele deve criar o mesmo resultado que com 1000 e 0." msgid "0 (Simple connect)" msgstr "0 (Conexão simples)" -msgid "Acceleration of outer walls" -msgstr "Aceleração das paredes externas" +msgid "Acceleration of outer walls." +msgstr "Aceleração das paredes externas." -msgid "Acceleration of inner walls" -msgstr "Aceleração das paredes internas" +msgid "Acceleration of inner walls." +msgstr "Aceleração das paredes internas." -msgid "Acceleration of travel moves" -msgstr "Aceleração dos movimentos de deslocamento" +msgid "Acceleration of travel moves." +msgstr "Aceleração dos movimentos de deslocamento." msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Aceleração do preenchimento da superfície superior. Usar um valor menor pode " -"melhorar a qualidade da superfície superior" +"melhorar a qualidade da superfície superior." -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" -"Aceleração da parede externa. Usar um valor menor pode melhorar a qualidade" +"Aceleração da parede externa. Usar um valor menor pode melhorar a qualidade." msgid "" "Acceleration of bridges. If the value is expressed as a percentage (e.g. " @@ -12267,43 +12265,43 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Aceleração da primeira camada. Usar um valor menor pode melhorar a adesão à " -"placa de impressão" +"placa de impressão." msgid "Enable accel_to_decel" msgstr "Habilitar accel_to_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" -msgstr "O max_accel_to_decel do Klipper será ajustado automaticamente" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." +msgstr "O max_accel_to_decel do Klipper será ajustado automaticamente." msgid "accel_to_decel" msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -"O max_accel_to_decel do Klipper será ajustado para esse %% de aceleração" +"O max_accel_to_decel do Klipper será ajustado para esse %% de aceleração." -msgid "Jerk of outer walls" -msgstr "Jerk nas paredes externas" +msgid "Jerk of outer walls." +msgstr "Jerk nas paredes externas." -msgid "Jerk of inner walls" -msgstr "Jerk nas paredes internas" +msgid "Jerk of inner walls." +msgstr "Jerk nas paredes internas." -msgid "Jerk for top surface" -msgstr "Jerk para superfície superior" +msgid "Jerk for top surface." +msgstr "Jerk para superfície superior." -msgid "Jerk for infill" -msgstr "Jerk para preenchimento" +msgid "Jerk for infill." +msgstr "Jerk para preenchimento." -msgid "Jerk for initial layer" -msgstr "Jerk para primeira camada" +msgid "Jerk for initial layer." +msgstr "Jerk para primeira camada." -msgid "Jerk for travel" -msgstr "Jerk para deslocamento" +msgid "Jerk for travel." +msgstr "Jerk para deslocamento." msgid "" "Line width of initial layer. If expressed as a %, it will be computed over " @@ -12317,25 +12315,25 @@ msgstr "Altura da primeira camada" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Altura da primeira camada. Tornar a altura da primeira camada ligeiramente " -"espessa pode melhorar a adesão à placa de impressão" +"espessa pode melhorar a adesão à placa de impressão." -msgid "Speed of initial layer except the solid infill part" -msgstr "Velocidade da primeira camada, exceto a parte de preenchimento sólido" +msgid "Speed of initial layer except the solid infill part." +msgstr "Velocidade da primeira camada, exceto a parte de preenchimento sólido." msgid "Initial layer infill" msgstr "Preenchimento da primeira camada" -msgid "Speed of solid infill part of initial layer" -msgstr "Velocidade da parte de preenchimento sólido da primeira camada" +msgid "Speed of solid infill part of initial layer." +msgstr "Velocidade da parte de preenchimento sólido da primeira camada." msgid "Initial layer travel speed" msgstr "Velocidade de deslocamento da primeira camada" -msgid "Travel speed of initial layer" -msgstr "Velocidade de deslocamento da primeira camada" +msgid "Travel speed of initial layer." +msgstr "Velocidade de deslocamento da primeira camada." msgid "Number of slow layers" msgstr "Número de camadas lentas" @@ -12351,9 +12349,9 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Temperatura do bico da primeira camada" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" -"Temperatura do bico para imprimir a primeira camada ao usar este filamento" +"Temperatura do bico para imprimir a primeira camada ao usar este filamento." msgid "Full fan speed at layer" msgstr "Velocidade total do ventilador na camada" @@ -12380,14 +12378,14 @@ msgstr "Velocidade do ventilador para interface de suporte" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" "This setting is overridden by disable_fan_first_layers." msgstr "" "Esta velocidade do ventilador de resfriamento de peça é aplicada ao imprimir " -"interfaces de suporte.Definir este parâmetro para uma velocidade maior que a " +"interfaces de suporte. Definir este parâmetro para uma velocidade maior que a " "normal reduz a força de adesão de camada entre os suportes e a peça " "suportada, tornando-os mais fáceis de separar.\n" "Defina como -1 para desabilitá-lo.\n" @@ -12415,10 +12413,10 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Movimento aleatório durante a impressão da parede, de modo que a superfície " -"tenha uma aparência áspera. Essa configuração controla a posição fuzzy" +"tenha uma aparência áspera. Essa configuração controla a posição difusa." msgid "Contour" msgstr "Contorno" @@ -12434,32 +12432,32 @@ msgstr "Espessura da textura difusa" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "A largura dentro da qual tremer. É aconselhável que seja menor do que a " -"largura da linha da parede externa" +"largura da linha da parede externa." msgid "Fuzzy skin point distance" msgstr "Distância do ponto da textura difusa" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "A distância média entre os pontos aleatórios introduzidos em cada segmento " -"de linha" +"de linha." msgid "Apply fuzzy skin to first layer" msgstr "Aplicar textura difusa à primeira camada" -msgid "Whether to apply fuzzy skin on the first layer" -msgstr "Se deve aplicar textura difusa na primeira camada" +msgid "Whether to apply fuzzy skin on the first layer." +msgstr "Se deve aplicar textura difusa na primeira camada." msgid "Fuzzy skin noise type" msgstr "Tipo de ruído da textura difusa" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12468,12 +12466,12 @@ msgid "" "Voronoi: Divides the surface into voronoi cells, and displaces each one by a " "random amount. Creates a patchwork texture." msgstr "" -"Tipo de ruído a ser usado para geração de textura difusa.\n" -"Clássico: Ruído aleatório uniforme clássico.\n" -"Perlin: Ruído Perlin, que dá uma textura mais consistente.\n" -"Billow: Semelhante ao ruído Perlin, mas mais aglomerado.\n" +"Tipo de ruído a ser usado para geração de textura difusa:\n" +"Clássico: Ruído aleatório uniforme clássico;\n" +"Perlin: Ruído Perlin, que dá uma textura mais consistente;\n" +"Billow: Semelhante ao ruído Perlin, mas mais aglomerado;\n" "Multifractal estriado: Ruído estriado com características pontiagudas e " -"irregulares. Cria texturas semelhantes a mármore.\n" +"irregulares. Cria texturas semelhantes a mármore;\n" "Voronoi: Divide a superfície em células Voronoi e desloca cada uma delas por " "uma quantidade aleatória. Cria uma textura de retalhos." @@ -12540,10 +12538,10 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Velocidade de preenchimento de vão. Vazios geralmente têm largura de linha " -"irregular e devem ser impressas mais lentamente" +"irregular e devem ser impressas mais lentamente." msgid "Precise Z height" msgstr "Altura Z precisa" @@ -12562,7 +12560,7 @@ msgstr "Ajuste de arco (Arc fitting)" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12570,8 +12568,8 @@ msgid "" "quality as line segments are converted to arcs by the slicer and then back " "to line segments by the firmware." msgstr "" -"Habilite isso para obter um arquivo de código G, que tenha movimentos G2 e " -"G3. A tolerância adequada é a mesma que a resolução. \n" +"Habilite isso para obter um arquivo de G-code, que tenha movimentos G2 e " +"G3. A tolerância adequada é a mesma que a resolução.\n" "\n" "Nota: Para máquinas klipper, esta opção é recomendada estar desativada. " "Klipper não beneficia de comandos de arco pois eles são divididos novamente " @@ -12583,30 +12581,31 @@ msgstr "" msgid "Add line number" msgstr "Adicionar número da linha" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" -"Habilitar isso para adicionar o número da linha (Nx) no início de cada linha " -"do G-Code" +"Habilite isso para adicionar o número da linha (Nx) no início de cada linha " +"do G-code." msgid "Scan first layer" msgstr "Escanear primeira camada" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Habilitar isso para ativar a câmera na impressora para verificar a qualidade " -"da primeira camada" +"da primeira camada." msgid "Nozzle type" msgstr "Tipo de bico" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "O material metálico do bico. Isso determina a resistência ao desgaste do " -"bico e que tipo de filamento pode ser impresso" +"bico e que tipo de filamento pode ser impresso." msgid "Undefine" msgstr "Não definido" @@ -12636,8 +12635,8 @@ msgstr "HRC" msgid "Printer structure" msgstr "Estrutura da impressora" -msgid "The physical arrangement and components of a printing device" -msgstr "A disposição física e componentes de um dispositivo de impressão" +msgid "The physical arrangement and components of a printing device." +msgstr "A disposição física e componentes de um dispositivo de impressão." msgid "CoreXY" msgstr "CoreXY" @@ -12671,20 +12670,20 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" -"Comece o ventilador este número de segundos antes do tempo de início do alvo " -"(você pode usar segundos fracionários). Ele assume aceleração infinita para " -"esta estimativa de tempo e só levará em conta os movimentos G1 e G0 (o " -"ajuste de arco não é suportado).\n" -"Não moverá comandos do ventilador de gcodes personalizados (eles funcionam " +"Ativar o ventilador este número de segundos antes do seu tempo de início " +"alvo (você pode usar frações de segundos). Ele assume aceleração infinita " +"para esta estimativa de tempo e levará em conta apenas os movimentos G1 e G0 " +"(o ajuste de arco não é suportado).\n" +"Não moverá G-code de comandos do ventilador personalizados (eles funcionam " "como uma espécie de 'barreira').\n" -"Não moverá comandos do ventilador para o início do gcode se o 'apenas gcode " -"de início personalizado' estiver ativado.\n" +"Não moverá comandos do ventilador para o início do G-code se 'apenas G-code " +"de início personalizado' estiver ativo.\n" "Use 0 para desativar." msgid "Only overhangs" @@ -12714,8 +12713,8 @@ msgstr "" msgid "Time cost" msgstr "Custo de tempo" -msgid "The printer cost per hour" -msgstr "O custo da impressora por hora" +msgid "The printer cost per hour." +msgstr "O custo da impressora por hora." msgid "money/h" msgstr "dinheiro/h" @@ -12745,8 +12744,8 @@ msgstr "" msgid "G-code flavor" msgstr "Tipo de G-code" -msgid "What kind of gcode the printer is compatible with" -msgstr "Com que tipo de G-code a impressora é compatível" +msgid "What kind of G-code the printer is compatible with." +msgstr "Com que tipo de G-code a impressora é compatível." msgid "Klipper" msgstr "Klipper" @@ -12754,25 +12753,25 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Impressora Modificada para Pellets" -msgid "Enable this option if your printer uses pellets instead of filaments" -msgstr "Habilite esta opção se sua impressora usa pellets em vez de filamentos" +msgid "Enable this option if your printer uses pellets instead of filaments." +msgstr "Habilite esta opção se sua impressora usa pellets em vez de filamentos." msgid "Support multi bed types" msgstr "Suportar vários tipos de mesa" -msgid "Enable this option if you want to use multiple bed types" -msgstr "Ative esta opção se quiser usar vários tipos de mesa" +msgid "Enable this option if you want to use multiple bed types." +msgstr "Ative esta opção se quiser usar vários tipos de mesa." msgid "Label objects" msgstr "Etiquetar objetos" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." msgstr "" -"Ative isso para adicionar comentários no G-Code etiquetando movimentos de " +"Ative isso para adicionar comentários no G-code etiquetando movimentos de " "impressão com a qual objeto eles pertencem, o que é útil para o plugin " "CancelObject do Octoprint. Esta configuração NÃO é compatível com a " "configuração de Multimaterial de Extrusora Única e Limpeza no Objeto / " @@ -12781,8 +12780,8 @@ msgstr "" msgid "Exclude objects" msgstr "Excluir objetos" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "Ative esta opção para adicionar o comando EXCLUDE OBJECT no g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." +msgstr "Ative esta opção para adicionar o comando EXCLUIR OBJETO no G-code." msgid "Verbose G-code" msgstr "G-code detalhado" @@ -12811,7 +12810,7 @@ msgid "Infill combination - Max layer height" msgstr "Combinação de preenchimento - Altura máx da camada" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12871,22 +12870,22 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "A área de preenchimento sólido é ligeiramente alargada para se sobrepor à " "parede para melhor adesão e para minimizar a aparência de furos onde o " "preenchimento encontra as paredes. Um valor de 25-30% é um bom ponto de " "partida, minimizando a aparência dos buracos. O valor percentual é relativo " -"à largura da linha do preenchimento esparso" +"à largura da linha do preenchimento esparso." -msgid "Speed of internal sparse infill" -msgstr "Velocidade do preenchimento esparso interno" +msgid "Speed of internal sparse infill." +msgstr "Velocidade do preenchimento esparso interno." msgid "Inherits profile" msgstr "Herda o perfil" -msgid "Name of parent profile" -msgstr "" +msgid "Name of parent profile." +msgstr "Nome do perfil pai." msgid "Interface shells" msgstr "Cascas de interface" @@ -12894,11 +12893,11 @@ msgstr "Cascas de interface" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Força a geração de cascas sólidas entre materiais/volumes adjacentes. Útil " "para impressões com multiextrusoras com materiais translúcidos ou suporte " -"solúvel manual" +"solúvel manual." msgid "Maximum width of a segmented region" msgstr "Largura máxima de uma região segmentada" @@ -12913,7 +12912,7 @@ msgstr "Profundidade de intertravamento de uma região segmentada" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Profundidade de intertravamento de uma região segmentada. Será ignorado se " @@ -12976,7 +12975,7 @@ msgstr "" "serão geradas, medida em células." msgid "Ironing Type" -msgstr "Tipo do passar ferro" +msgstr "Tipo do passar a ferro" msgid "" "Ironing is using small flow to print on same height of surface again to make " @@ -12987,7 +12986,7 @@ msgstr "" "qual camada está sendo passada a ferro" msgid "No ironing" -msgstr "Desativado" +msgstr "Não passar a ferro" msgid "Top surfaces" msgstr "Superfícies superiores" @@ -12999,46 +12998,46 @@ msgid "All solid layer" msgstr "Todas as camadas sólidas" msgid "Ironing Pattern" -msgstr "Padrão do passar ferro" +msgstr "Padrão do passar a ferro" -msgid "The pattern that will be used when ironing" -msgstr "O padrão que será usado ao passar a ferro" +msgid "The pattern that will be used when ironing." +msgstr "O padrão que será usado ao passar a ferro." msgid "Ironing flow" -msgstr "Fluxo do passar ferro" +msgstr "Fluxo do passar a ferro" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "A quantidade de material a extrudar durante o passar a ferro. Relativo ao " "fluxo da altura normal da camada. Um valor muito alto resulta em " -"superextrusão na superfície" +"superextrusão na superfície." msgid "Ironing line spacing" -msgstr "Espaçamento de linha do passar ferro" +msgstr "Espaçamento de linha do passar a ferro" -msgid "The distance between the lines of ironing" -msgstr "A distância entre as linhas do passar ferro" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as linhas do passar a ferro." msgid "Ironing inset" -msgstr "Inserção do passar ferro" +msgstr "Inserção do passar a ferro" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "A distância a ser mantida das bordas. Um valor de 0 define isso como metade " -"do diâmetro do bico" +"do diâmetro do bico." msgid "Ironing speed" -msgstr "Velocidade do passar ferro" +msgstr "Velocidade do passar a ferro" -msgid "Print speed of ironing lines" -msgstr "Velocidade de impressão das linhas do passar ferro" +msgid "Print speed of ironing lines." +msgstr "Velocidade de impressão das linhas do passar a ferro." msgid "Ironing angle" -msgstr "Ângulo do passar ferro" +msgstr "Ângulo do passar a ferro" msgid "" "The angle ironing is done at. A negative number disables this function and " @@ -13047,19 +13046,18 @@ msgstr "" "O ângulo em que o passar a ferro é feito. Um número negativo desativa essa " "função e usa o método padrão." -msgid "This gcode part is inserted at every layer change after lift z" -msgstr "" -"Esta parte do gcode é inserida em cada mudança de camada após levantar z" +msgid "This G-code is inserted at every layer change after the Z lift." +msgstr "Este G-code é inserido a cada mudança de camada após a elevação Z." msgid "Supports silent mode" msgstr "Suporta modo silencioso" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Se a máquina suporta o modo silencioso, no qual a máquina usa uma aceleração " -"mais baixa para imprimir" +"mais baixa para imprimir." msgid "Emit limits to G-code" msgstr "Emitir limites para o G-code" @@ -13069,26 +13067,26 @@ msgstr "Limites da máquina" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Se ativado, os limites da máquina serão emitidos para o arquivo de G-code.\n" "Esta opção será ignorada se o tipo do G-code estiver definido para Klipper." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Este G-code será usado como um código para pausar a impressão. O usuário " -"pode inserir o G-code de pausa no visualizador de G-code" +"pode inserir o G-code de pausa no visualizador de G-code." -msgid "This G-code will be used as a custom code" -msgstr "Este G-code será usado como um código personalizado" +msgid "This G-code will be used as a custom code." +msgstr "Este G-code será usado como um código personalizado." msgid "Small area flow compensation (beta)" msgstr "Compensação de fluxo de área pequena (beta)" -msgid "Enable flow compensation for small infill areas" -msgstr "Habilitar compensação de fluxo para áreas de preenchimento pequenas" +msgid "Enable flow compensation for small infill areas." +msgstr "Habilitar compensação de fluxo para áreas de preenchimento pequenas." msgid "Flow Compensation Model" msgstr "Modelo de Compensação de Fluxo" @@ -13203,27 +13201,27 @@ msgstr "Aceleração máxima para retrair (M204 R)" msgid "Maximum acceleration for travel" msgstr "Aceleração máxima para deslocamento" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" -"Aceleração máxima para deslocamento (M204 T), aplica-se apenas ao Marlin 2" +"Aceleração máxima para deslocamento (M204 T), aplica-se apenas ao Marlin 2." msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "A velocidade do ventilador de resfriamento da peça pode ser aumentada quando " "o resfriamento automático está habilitado. Este é o limite máximo de " -"velocidade do ventilador de resfriamento da peça" +"velocidade do ventilador de resfriamento da peça." msgid "Max" msgstr "Máx" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "A maior altura de camada imprimível para a extrusora. Usado para limitar a " -"altura máxima da camada quando a altura da camada adaptativa está ativada" +"altura máxima da camada quando a altura da camada adaptativa está ativada." msgid "Extrusion rate smoothing" msgstr "Suavização da extrusão" @@ -13234,23 +13232,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13261,7 +13259,7 @@ msgstr "" "velocidade/maior largura) para uma extrusão de baixo fluxo (baixa velocidade/" "menor largura) e vice-versa.\n" "\n" -"Define a taxa máxima pela qual o fluxo volumétrico extrudado em mm3/seg pode " +"Define a taxa máxima pela qual o fluxo volumétrico extrudado em mm³/s² pode " "mudar ao longo do tempo. Valores mais altos significam que mudanças de taxa " "de extrusão mais altas são permitidas, resultando em transições de " "velocidade mais rápidas.\n" @@ -13273,31 +13271,31 @@ msgstr "" "entanto, pode fornecer alguns benefícios marginais em certos casos em que as " "velocidades das características variam muito. Por exemplo, quando há " "desacelerações agressivas devido a saliências. Nesses casos, um valor alto " -"de cerca de 300-350mm3/s2 é recomendado, pois isso permite apenas suavização " +"de cerca de 300-350 mm³/s² é recomendado, pois isso permite apenas suavização " "suficiente para ajudar o avanço de pressão a alcançar uma transição de fluxo " "mais suave.\n" "\n" "Para impressoras mais lentas sem avanço de pressão, o valor deve ser " -"definido muito mais baixo. Um valor de 10-15mm3/s2 é um bom ponto de partida " -"para extrusoras de acionamento direto e 5-10mm3/s2 para estilo Bowden.\n" +"definido muito mais baixo. Um valor de 10-15 mm³/s² é um bom ponto de partida " +"para extrusoras de acionamento direto e 5-10 mm³/s² para estilo Bowden.\n" "\n" "Este recurso é conhecido como Equalizador de Pressão no slicer Prusa.\n" "\n" "Nota: este parâmetro desativa o ajuste de arco." msgid "mm³/s²" -msgstr "mm3/s2" +msgstr "" msgid "Smoothing segment length" msgstr "Comprimento do segmento de suavização" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -13325,8 +13323,8 @@ msgstr "" "velocidade bruscas em saliências visíveis externamente sem impactar a " "velocidade de impressão de recursos que não serão visíveis ao usuário." -msgid "Minimum speed for part cooling fan" -msgstr "Velocidade mínima para o ventilador de resfriamento da peça" +msgid "Minimum speed for part cooling fan." +msgstr "Velocidade mínima para o ventilador de resfriamento da peça." msgid "" "Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed " @@ -13346,11 +13344,11 @@ msgid "Min" msgstr "Mín" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "A menor altura de camada imprimível para a extrusora. Usado para limitar a " -"altura mínima da camada ao habilitar a altura de camada adaptativa" +"altura mínima da camada ao habilitar a altura de camada adaptativa." msgid "Min print speed" msgstr "Velocidade de impressão mínima" @@ -13384,14 +13382,14 @@ msgid "" "Orca Slicer can upload G-code files to a printer host. This field must " "contain the kind of the host." msgstr "" -"O Orca Slicer pode carregar arquivos de código G para um hospedeiro de " +"O Orca Slicer pode carregar arquivos de G-code para um hospedeiro de " "impressora. Este campo deve conter o tipo de hospedeiro." msgid "Nozzle volume" msgstr "Volume do bico" -msgid "Volume of nozzle between the cutter and the end of nozzle" -msgstr "Volume do bico entre o cortador e a extremidade do bico" +msgid "Volume of nozzle between the cutter and the end of nozzle." +msgstr "Volume do bico entre o cortador e a extremidade do bico." msgid "Cooling tube position" msgstr "Posição do tubo de resfriamento" @@ -13438,7 +13436,7 @@ msgstr "Distância de carregamento extra" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Quando definido como zero, a distância que o filamento é movido da posição " @@ -13459,12 +13457,12 @@ msgstr "Reduzir retração durante o preenchimento" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Não retrair quando o movimento está na área de preenchimento completamente. " "Isso significa que o vazamento não pode ser visto. Isso pode reduzir o " "número de retratações para modelos complexos e economizar tempo de " -"impressão, mas torna a geração de fatiamento e G-code mais lenta" +"impressão, mas torna a geração de fatiamento e G-code mais lenta." msgid "" "This option will drop the temperature of the inactive extruders to prevent " @@ -13476,8 +13474,8 @@ msgstr "" msgid "Filename format" msgstr "Formato do nome do arquivo" -msgid "User can self-define the project file name when export" -msgstr "O usuário pode auto-definir o nome do arquivo do projeto ao exportar" +msgid "Users can define the project file name when exporting." +msgstr "O usuário pode definir o nome do arquivo do projeto ao exportar." msgid "Make overhangs printable" msgstr "Tornar saliências imprimíveis" @@ -13502,7 +13500,7 @@ msgstr "Tornar saliências imprimíveis - Área do furo" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Área maxima de um furo na base do modelo antes que ele seja preenchido por " "uma forma cônica. Um valor 0 irá preencher todos os furos do modelo." @@ -13532,31 +13530,31 @@ msgstr "" "Largura de linha da parede interna. Se expressado como %, será computado de " "acordo com o diâmetro do bico." -msgid "Speed of inner wall" -msgstr "Velocidade da parede interna" +msgid "Speed of inner wall." +msgstr "Velocidade da parede interna." -msgid "Number of walls of every layer" -msgstr "Número de paredes em cada camada" +msgid "Number of walls of every layer." +msgstr "Número de paredes em cada camada." msgid "Alternate extra wall" msgstr "Parede extra alternada" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" "Esta configuração adiciona uma parede extra a cada duas camadas. Dessa " "forma, o preenchimento fica encaixado verticalmente entre as paredes, " -"resultando em impressões mais resistentes. \n" +"resultando em impressões mais resistentes.\n" "\n" "Quando esta opção está ativada, a opção de garantir a espessura vertical da " -"casca precisa ser desativada. \n" +"casca precisa ser desativada.\n" "\n" "Não é recomendado usar o preenchimento rápido juntamente com esta opção, " "pois há preenchimento limitado para ancorar os perímetros extras." @@ -13592,82 +13590,82 @@ msgstr "Variante da impressora" msgid "Raft contact Z distance" msgstr "Distância Z de contato da jangada" -msgid "Z gap between object and raft. Ignored for soluble interface" -msgstr "Lacuna Z entre o objeto e a jangada. Ignorado para interface solúvel" +msgid "Z gap between object and raft. Ignored for soluble interface." +msgstr "Vão Z entre o objeto e a jangada. Ignorado para interface solúvel." msgid "Raft expansion" msgstr "Expansão da jangada" -msgid "Expand all raft layers in XY plane" -msgstr "Expandir todas as camadas da jangada no plano XY" +msgid "Expand all raft layers in XY plane." +msgstr "Expandir todas as camadas da jangada no plano XY." msgid "Initial layer density" msgstr "Densidade da primeira camada" -msgid "Density of the first raft or support layer" -msgstr "Densidade da primeira camada da jangada ou do suporte" +msgid "Density of the first raft or support layer." +msgstr "Densidade da primeira camada da jangada ou do suporte." msgid "Initial layer expansion" msgstr "Expansão da primeira camada" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Expanda a primeira camada da jangada ou do suporte para melhorar a adesão à " -"placa da mesa de impressão" +"placa da mesa de impressão." msgid "Raft layers" msgstr "Camadas da jangada" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "O objeto será elevado por este número de camadas de suporte. Use esta função " -"para evitar o enrugamento ao imprimir ABS" +"para evitar empenamento ao imprimir ABS." msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" -"O caminho do G-code é gerado após simplificar o contorno do modelo para " -"evitar muitos pontos e linhas de código G no arquivo de código G. Um valor " -"menor significa maior resolução e mais tempo para fatiar" +"O caminho do G-code é gerado após simplificar o contorno dos modelos para " +"evitar excesso de pontos e linhas de G-code. Um valor menor significa maior " +"resolução e mais tempo para fatiar." msgid "Travel distance threshold" msgstr "Limiar de distância de deslocamento" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Acionar a retração somente quando a distância da deslocamento for maior que " -"este limiar" +"este limiar." msgid "Retract amount before wipe" msgstr "Quantidade de retração antes da limpeza" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "O comprimento da retração rápida antes da limpeza, em relação ao comprimento " -"da retração" +"da retração." msgid "Retract when change layer" msgstr "Retrair ao mudar de camada" -msgid "Force a retraction when changes layer" -msgstr "Forçar uma retração ao mudar de camada" +msgid "Force a retraction when changes layer." +msgstr "Forçar uma retração ao mudar de camada." msgid "Retract on top layer" msgstr "Retração na camada superior" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Forçar uma retração na camada superior. Desabilitar pode evitar obstrução em " -"padrões muito lentos com pequenos movimentos, como a curva de Hilbert" +"padrões muito lentos com pequenos movimentos, como a curva de Hilbert." msgid "Retraction Length" msgstr "Distância de retração" @@ -13679,29 +13677,29 @@ msgstr "" "Alguma quantidade de material na extrusora é puxada para trás para evitar " "vazamento durante deslocamentos longos. Defina zero para desativar a retração" -msgid "Long retraction when cut(beta)" -msgstr "Retração longa quando cortado(beta)" +msgid "Long retraction when cut (beta)" +msgstr "Retração longa quando cortado (beta)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Recurso experimental. Retrair e cortar o filamento a uma distância mais " -"longa durante mudanças para minimizar a purga. Isto reduz significativamente " -"a purga, pode também aumentar o risco de bolhas no bico ou de outros " -"problemas de impressão." +"Funcionalidade experimental: Retrair e cortar o filamento a uma distância " +"mais longa durante mudanças para minimizar a purga. Isto reduz " +"significativamente a purga, pode também aumentar o risco de bolhas no bico " +"ou de outros problemas de impressão." msgid "Retraction distance when cut" msgstr "Distância de retração ao cortar" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Funcionalidade experimental. Comprimento de retração antes de cortar durante " -"a mudança de filamento" +"Funcionalidade experimental: Comprimento de retração antes de cortar durante " +"a mudança de filamento." msgid "Z-hop height" msgstr "Altura de Z-hop" @@ -13709,38 +13707,35 @@ msgstr "Altura de Z-hop" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Sempre que a retração é feita, o bico é levantado um pouco para criar folga " "entre o bico e a impressão. Isso evita que o bico atinja a impressão ao se " -"mover. Usar linha espiral para levantar z pode evitar stringing" +"mover. Usar linhas em espiral para levantar z pode evitar stringing." -msgid "Z hop lower boundary" -msgstr "Limite inferior do Z hop" +msgid "Z-hop lower boundary" +msgstr "Limite inferior do Z-hop" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"O Z hop só entrará em vigor quando Z estiver acima deste valor e abaixo do " -"parâmetro: \"Limite superior do Z hop\"" +"O Z-hop só entrará em vigor quando Z estiver acima deste valor e abaixo do " +"parâmetro: \"Limite superior do Z-hop\"." -msgid "Z hop upper boundary" -msgstr "Limite superior do Z hop" +msgid "Z-hop upper boundary" +msgstr "Limite superior do Z-hop" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"Se este valor for positivo, o Z hop só entrará em vigor quando Z estiver " -"acima do parâmetro: \"Limite inferior do Z hop\" e abaixo deste valor" +"Se este valor for positivo, o Z-hop só entrará em vigor quando Z estiver " +"acima do parâmetro: \"Limite inferior do Z-hop\" e abaixo deste valor." msgid "Z-hop type" msgstr "Tipo de Z-hop" -msgid "Z hop type" -msgstr "Tipo de Z hop" - msgid "Slope" msgstr "Declive" @@ -13751,11 +13746,11 @@ msgid "Traveling angle" msgstr "Ângulo de deslocamento" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" -"Ângulo de deslocamento para o tipo de salto Z em Declive e Espiral. Defini-" -"lo para 90° resulta em Elevação Normal" +"Ângulo de deslocamento para o tipo de Z-hop em Declive e Espiral. Definir " +"para 90° resulta em Elevação Normal." msgid "Only lift Z above" msgstr "Elevar Z apenas acima de" @@ -13781,10 +13776,10 @@ msgid "On surfaces" msgstr "Nas superfícies" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" -"Forçar Z Hop. Essa configuração é impactada pelas configurações acima " +"Forçar Z-Hop. Essa configuração é impactada pelas configurações acima " "(Somente elevar Z acima/abaixo)" msgid "All Surfaces" @@ -13820,18 +13815,18 @@ msgstr "" msgid "Retraction Speed" msgstr "Velocidade de retração" -msgid "Speed of retractions" -msgstr "Velocidade das retratações" +msgid "Speed of retractions." +msgstr "Velocidade das retratações." msgid "De-retraction Speed" msgstr "Velocidade de desretração" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Velocidade para recarregar o filamento na extrusora. Zero significa mesma " -"velocidade de retração" +"velocidade da retração." msgid "Use firmware retraction" msgstr "Usar retração de firmware" @@ -13851,28 +13846,28 @@ msgid "Disable set remaining print time" msgstr "Desabilitar definir tempo de impressão restante" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" -"Desativar a geração do M73: Definir tempo restante de impressão no código " -"final" +"Desativar a geração do M73: Definir tempo restante de impressão no G-code " +"final." msgid "Seam position" msgstr "Posição da costura" -msgid "The start position to print each part of outer wall" -msgstr "A posição inicial para imprimir cada parte da parede externa" +msgid "The start position to print each part of outer wall." +msgstr "A posição inicial para imprimir cada parte da parede externa." msgid "Nearest" msgstr "Mais próximo" msgid "Aligned" -msgstr "Alinhado" +msgstr "Alinhada" msgid "Back" msgstr "Atrás" msgid "Random" -msgstr "Aleatório" +msgstr "Aleatória" msgid "Staggered inner seams" msgstr "Costuras internas escalonadas" @@ -13885,7 +13880,7 @@ msgstr "" "base em sua profundidade, formando um padrão de zigue-zague." msgid "Seam gap" -msgstr "Espaço entre costuras" +msgstr "Vão entre costuras" msgid "" "In order to reduce the visibility of the seam in a closed loop extrusion, " @@ -13893,8 +13888,8 @@ msgid "" "This amount can be specified in millimeters or as a percentage of the " "current extruder diameter. The default value for this parameter is 10%." msgstr "" -"Para reduzir a visibilidade da costura em uma extrusão de loop fechado, o " -"loop é interrompido e encurtado por uma quantidade especificada.\n" +"Para reduzir a visibilidade da costura em uma extrusão de volta fechada, a " +"volta é interrompida e encurtada por uma quantidade especificada.\n" "Esta quantidade pode ser especificada em milímetros ou como uma porcentagem " "do diâmetro atual da extrusora. O valor padrão para este parâmetro é 10%." @@ -13928,7 +13923,7 @@ msgid "" msgstr "" "Esta opção define o ângulo limiar para aplicar uma costura junta cachecol " "condicional.\n" -"Se o ângulo máximo dentro do loop do perímetro exceder esse valor (indicando " +"Se o ângulo máximo dentro da volta do perímetro exceder esse valor (indicando " "a ausência de cantos afiados), será usada uma costura junta cachecol. O " "valor padrão é 155°." @@ -13954,7 +13949,7 @@ msgstr "Velocidade da junta cachecol" 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 " +"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 " @@ -14022,7 +14017,7 @@ msgid "Role base wipe speed" msgstr "Velocidade de limpeza baseada na função" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14032,25 +14027,25 @@ msgstr "" "utilizada para a ação de limpeza." msgid "Wipe on loops" -msgstr "Limpeza em loops" +msgstr "Limpeza em voltas" msgid "" "To minimize the visibility of the seam in a closed loop extrusion, a small " "inward movement is executed before the extruder leaves the loop." msgstr "" -"Para minimizar a visibilidade da costura em uma extrusão de loop fechado, é " -"executado um pequeno movimento para dentro antes que a extrusora saia do " -"loop." +"Para minimizar a visibilidade da costura em uma extrusão de volta fechada, é " +"executado um pequeno movimento para dentro antes que a extrusora saia da " +"volta." msgid "Wipe before external loop" -msgstr "Limpeza antes do loop externo" +msgstr "Limpeza antes da volta externa" msgid "" "To minimize visibility of potential overextrusion at the start of an " "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14060,7 +14055,7 @@ msgstr "" "perímetro externo ao imprimir com a ordem de impressão de parede Externa/" "Interna ou Interna/Externa/Interna, a desretração é executada ligeiramente " "no interior a partir do início do perímetro externo. Dessa forma, qualquer " -"sobreextrusão potencial é ocultada da superfície externa. \n" +"sobreextrusão potencial é ocultada da superfície externa.\n" "\n" "Isso é útil ao imprimir com a ordem de impressão de parede Externa/Interna " "ou Interna/Externa/Interna, pois nesses modos é mais provável que um " @@ -14072,14 +14067,14 @@ msgstr "Velocidade de limpeza" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "A velocidade de limpeza é determinada pela velocidade especificada nesta " "configuração. Se o valor for expresso como uma porcentagem (por exemplo, " "80%), será calculado com base na configuração de velocidade de deslocamento " -"acima. O valor padrão para este parâmetro é 80%" +"acima. O valor padrão para este parâmetro é 80%." msgid "Skirt distance" msgstr "Distância da saia" @@ -14100,8 +14095,8 @@ msgstr "" msgid "Skirt height" msgstr "Altura da saia" -msgid "How many layers of skirt. Usually only one layer" -msgstr "Quantas camadas de saia. Geralmente apenas uma camada" +msgid "How many layers of skirt. Usually only one layer." +msgstr "Quantas camadas de saia. Geralmente apenas uma camada." msgid "Single loop draft shield" msgstr "Escudo de ar de uma volta" @@ -14121,7 +14116,7 @@ msgstr "Escudo de ar" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14132,7 +14127,7 @@ msgstr "" "Um escudo de ar é útil para proteger uma impressão ABS ou ASA de deformações " "e desprendimento da mesa de impressão devido à corrente de ar. Geralmente, " "ele é necessário apenas com impressoras de estrutura aberta, ou seja, sem um " -"gabinete. \n" +"gabinete.\n" "\n" "Habilitado = a saia é tão alta quanto o objeto impresso mais alto. Caso " "contrário, 'Altura da saia' é usada.\n" @@ -14162,8 +14157,8 @@ msgstr "Por objeto" msgid "Skirt loops" msgstr "Voltas da saia" -msgid "Number of loops for the skirt. Zero means disabling skirt" -msgstr "Número de voltas da saia. Zero significa desativar a saia" +msgid "Number of loops for the skirt. Zero means disabling skirt." +msgstr "Número de voltas da saia. Zero significa desativar a saia." msgid "Skirt speed" msgstr "Velocidade da saia" @@ -14180,9 +14175,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Comprimento mínimo de extrusão do filamento em mm ao imprimir a saia. Zero " @@ -14194,22 +14189,23 @@ msgstr "" "ou validar a distância dos objetos. Aumente o número de voltas nesse caso." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" -"A velocidade de impressão no gcode exportado será reduzida quando o tempo " -"estimado da camada for menor que esse valor, para obter uma melhor " -"resfriamento para essas camadas" +"A velocidade de impressão no G-code exportado será reduzida quando o tempo " +"estimado da camada for menor que esse valor, para obter melhor resfriamento " +"para essas camadas." msgid "Minimum sparse infill threshold" msgstr "Limiar mínimo de preenchimento esparso" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "A área de preenchimento esparso que é menor que o valor limiar é substituída " -"por preenchimento sólido interno" +"por preenchimento sólido interno." msgid "Solid infill" msgstr "Preenchimento sólido" @@ -14224,29 +14220,29 @@ msgstr "" "Largura da linha de preenchimento sólido interno. Se expresso como uma %, " "será calculado sobre o diâmetro do bico." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Velocidade de preenchimento sólido interno, não a superfície superior e " -"inferior" +"inferior." msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "A espiralização suaviza os movimentos z do contorno externo. E transforma um " "modelo sólido em uma impressão de parede única com camadas inferiores " -"sólidas. O modelo final gerado não tem costura" +"sólidas. O modelo final gerado não tem costura." msgid "Smooth Spiral" msgstr "Espiral Suave" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "A Espiral Suave suaviza os movimentos X e Y, resultando em nenhuma costura " -"visível, mesmo nas direções XY em paredes que não são verticais" +"visível, mesmo nas direções XY em paredes que não são verticais." msgid "Max XY Smoothing" msgstr "Suavização Máxima XY" @@ -14254,10 +14250,10 @@ msgstr "Suavização Máxima XY" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Distância máxima para mover pontos em XY para tentar obter uma espiral " -"suave. Se expresso como %, será computado sobre o diâmetro do bico" +"suave. Se expresso como %, será computado sobre o diâmetro do bico." msgid "Spiral starting flow ratio" msgstr "Taxa de fluxo inicial de espiral" @@ -14298,10 +14294,10 @@ msgid "" "process of taking a snapshot, prime tower is required for smooth mode to " "wipe nozzle." msgstr "" -"Se o modo suave ou tradicional for selecionado, um vídeo em time-lapse será " +"Se o modo suave ou tradicional for selecionado, um vídeo em timelapse será " "gerado para cada impressão. Após cada camada ser impressa, uma captura de " "tela é feita com a câmera da câmara. Todas essas capturas de tela são " -"compostas em um vídeo em time-lapse quando a impressão é concluída. Se o " +"compostas em um vídeo em timelapse quando a impressão é concluída. Se o " "modo suave for selecionado, a extrusora se moverá para fora após cada camada " "ser impressa e então tirará uma captura de tela. Como o filamento derretido " "pode vazar do bico durante o processo de tirar uma captura de tela, é " @@ -14316,8 +14312,8 @@ msgstr "Variação de temperatura" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Diferença de temperatura a ser aplicada quando uma extrusora não estiver " "ativa. O valor não é usado quando 'idle_temperature' nas configurações de " @@ -14342,26 +14338,26 @@ msgid "Preheat steps" msgstr "Passos de pré-aquecimento" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Insire múltiplos comandos de pré-aquecimento (por exemplo, M104.1). Útil " "apenas para Prusa XL. Para outras impressoras, defina como 1." msgid "Start G-code" -msgstr "Código de Início" +msgstr "G-code Inicial" -msgid "Start G-code when start the whole printing" -msgstr "Código de início ao iniciar a impressão completa" +msgid "Start G-code when starting the entire print." +msgstr "G-code inicial ao iniciar a impressão completa." -msgid "Start G-code when start the printing of this filament" -msgstr "Código de início ao iniciar a impressão deste filamento" +msgid "Start G-code when starting the printing of this filament." +msgstr "G-code inicial ao iniciar a impressão deste filamento." msgid "Single Extruder Multi Material" msgstr "Multimaterial com Extrusora Única" -msgid "Use single nozzle to print multi filament" -msgstr "Use um único bico para imprimir múltiplos filamentos" +msgid "Use single nozzle to print multi filament." +msgstr "Use um único bico para imprimir múltiplos filamentos." msgid "Manual Filament Change" msgstr "Troca Manual de Filamento" @@ -14373,7 +14369,7 @@ msgid "" "printing, where we use M600/PAUSE to trigger the manual filament change " "action." msgstr "" -"Ative esta opção para omitir o código G de troca de filamento personalizado " +"Ative esta opção para omitir o G-code de troca de filamento personalizado " "apenas no início da impressão. O comando de troca de ferramenta (por " "exemplo, T0) será ignorado durante toda a impressão. Isso é útil para " "impressão manual de vários materiais, onde usamos M600/PAUSE para acionar a " @@ -14382,18 +14378,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Purgar na torre de preparação" -msgid "Purge remaining filament into prime tower" -msgstr "Purgar o filamento restante na torre de preparação" +msgid "Purge remaining filament into prime tower." +msgstr "Purgar o filamento restante na torre de preparação." -msgid "Enable filament ramming" -msgstr "Ativar moldeamento de ponta de filamento" +msgid "Enable filament ramming." +msgstr "Ativar moldeamento de ponta de filamento." msgid "No sparse layers (beta)" msgstr "Sem camadas esparsas (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14413,17 +14409,17 @@ msgstr "" "frontal da mesa de impressão no início da impressão." msgid "Slice gap closing radius" -msgstr "Tolerância do fatiamento" +msgstr "Raio de fechamento de vãos de fatiamento" msgid "" "Cracks smaller than 2x gap closing radius are being filled during the " "triangle mesh slicing. The gap closing operation may reduce the final print " "resolution, therefore it is advisable to keep the value reasonably low." msgstr "" -"Espaços menores que 2x a tolerância de fatiamentoo serão preenchidas durante " -"o fatiamento da malha. Aumentar a tolerância de fatiamento pode reduzir a " -"resolução final da impressão, portanto, é aconselhável manter o valor " -"razoavelmente baixo." +"Frestas menores que 2x o vão de fatiamento serão preenchidas durante o " +"fatiamento da malha de triângulos. O fechamento de vãos de fatiamento pode " +"reduzir a resolução final da impressão, portanto é aconselhável manter o " +"valor razoavelmente baixo." msgid "Slicing Mode" msgstr "Modo de Fatiamento" @@ -14465,13 +14461,13 @@ msgid "Enable support generation." msgstr "Ativar a geração de suporte." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" -"Normal (automático) e Árvore (automático) são usados ​​para gerar suporte " +"Normal (automático) e Árvore (automático) são usados para gerar suporte " "automaticamente. Se Normal (manual) ou Árvore (manual) for selecionado, " -"apenas os reforçadores de suporte serão gerados" +"apenas os reforçadores de suporte serão gerados." msgid "Normal (auto)" msgstr "Normal (automático)" @@ -14488,14 +14484,14 @@ msgstr "Árvore (manual)" msgid "Support/object xy distance" msgstr "Distância xy entre suporte e objeto" -msgid "XY separation between an object and its support" -msgstr "Separação XY entre um objeto e seu suporte" +msgid "XY separation between an object and its support." +msgstr "Separação XY entre um objeto e seu suporte." msgid "Support/object first layer gap" -msgstr "" +msgstr "Vão na primeira camada entre suporte e objeto" msgid "XY separation between an object and its support at the first layer." -msgstr "" +msgstr "Separação XY entre um objeto e seu suporte na primeira camada." msgid "Pattern angle" msgstr "Ângulo de padrão" @@ -14508,9 +14504,9 @@ msgstr "" msgid "On build plate only" msgstr "Apenas na placa de impressão" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "" -"Não criar suporte na superfície do modelo, apenas na placa de impressão" +"Não criar suporte na superfície do modelo, apenas na placa de impressão." msgid "Support critical regions only" msgstr "Suportar apenas regiões críticas" @@ -14531,24 +14527,24 @@ msgstr "Remova pequenas saliências que possivelmente não precisam de suporte." msgid "Top Z distance" msgstr "Distância Z superior" -msgid "The z gap between the top support interface and object" -msgstr "A diferença z entre a interface superior de suporte e o objeto" +msgid "The Z gap between the top support interface and object." +msgstr "O vão Z entre a interface superior de suporte e o objeto." msgid "Bottom Z distance" msgstr "Distância Z inferior" -msgid "The z gap between the bottom support interface and object" -msgstr "A diferença z entre a interface inferior de suporte e o objeto" +msgid "The Z gap between the bottom support interface and object." +msgstr "O vão Z entre a interface inferior de suporte e o objeto." msgid "Support/raft base" msgstr "Base de suporte/jangada" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filamento para imprimir base de suporte e jangada. \"Padrão\" significa " -"nenhum filamento específico para suporte e o filamento atual será usado" +"nenhum filamento específico para suporte e o filamento atual será usado." msgid "Avoid interface filament for base" msgstr "Evitar o filamento da interface para a base" @@ -14567,12 +14563,12 @@ msgstr "" "diâmetro do bico." msgid "Interface use loop pattern" -msgstr "Interface usa padrão de loop" +msgstr "Interface usa padrão de volta" msgid "" "Cover the top contact layer of the supports with loops. Disabled by default." msgstr "" -"Cubra a camada de contato superior dos suportes com loops. Desativado por " +"Cobrir a camada de contato superior dos suportes com voltas. Desativado por " "padrão." msgid "Support/raft interface" @@ -14580,22 +14576,22 @@ msgstr "Interface de suporte/jangada" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filamento para imprimir a interface de suporte. \"Padrão\" significa nenhum " -"filamento específico para a interface de suporte e o filamento atual é usado" +"filamento específico para a interface de suporte e o filamento atual é usado." msgid "Top interface layers" msgstr "Camadas de interface superior" -msgid "Number of top interface layers" -msgstr "Número de camadas de interface superior" +msgid "Number of top interface layers." +msgstr "Número de camadas de interface superior." msgid "Bottom interface layers" msgstr "Camadas de interface inferior" -msgid "Number of bottom interface layers" -msgstr "Número de camadas de interface inferior" +msgid "Number of bottom interface layers." +msgstr "Número de camadas de interface inferior." msgid "Same as top" msgstr "Mesmo que superior" @@ -14603,24 +14599,24 @@ msgstr "Mesmo que superior" msgid "Top interface spacing" msgstr "Espaçamento da interface superior" -msgid "Spacing of interface lines. Zero means solid interface" -msgstr "Espaçamento das linhas de interface. Zero significa interface sólida" +msgid "Spacing of interface lines. Zero means solid interface." +msgstr "Espaçamento das linhas de interface. Zero significa interface sólida." msgid "Bottom interface spacing" msgstr "Espaçamento da interface inferior" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" -"Espaçamento das linhas de interface inferior. Zero significa interface sólida" +"Espaçamento das linhas de interface inferior. Zero significa interface sólida." -msgid "Speed of support interface" -msgstr "Velocidade da interface de suporte" +msgid "Speed of support interface." +msgstr "Velocidade da interface de suporte." msgid "Base pattern" msgstr "Padrão da base" -msgid "Line pattern of support" -msgstr "Padrão de linha de suporte" +msgid "Line pattern of support." +msgstr "Padrão de linha de suporte." msgid "Rectilinear grid" msgstr "Grade reticulada" @@ -14634,11 +14630,11 @@ msgstr "Padrão de interface" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Padrão de linha de interface de suporte. O padrão padrão para interface de " -"suporte não solúvel é reticulado, enquanto o padrão padrão para interface de " -"suporte solúvel é concêntrico" +"suporte não solúvel é Reticulado, enquanto o padrão padrão para interface de " +"suporte solúvel é Concêntrico." msgid "Rectilinear Interlaced" msgstr "Reticulado Interligado" @@ -14646,17 +14642,17 @@ msgstr "Reticulado Interligado" msgid "Base pattern spacing" msgstr "Espaçamento do padrão de base" -msgid "Spacing between support lines" -msgstr "Espaçamento entre as linhas de suporte" +msgid "Spacing between support lines." +msgstr "Espaçamento entre as linhas de suporte." msgid "Normal Support expansion" msgstr "Expansão normal de suporte" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" -msgstr "Expanda (+) ou contraia (-) a extensão horizontal do suporte normal" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." +msgstr "Expanda (+) ou contraia (-) a extensão horizontal do suporte normal." -msgid "Speed of support" -msgstr "Velocidade do suporte" +msgid "Speed of support." +msgstr "Velocidade do suporte." msgid "" "Style and shape of the support. For normal support, projecting the supports " @@ -14677,7 +14673,7 @@ msgstr "" "saliências planas." msgid "Default (Grid/Organic)" -msgstr "" +msgstr "Padrão (Grade/Orgânico)" msgid "Snug" msgstr "Ajustado" @@ -14699,11 +14695,11 @@ msgstr "Altura independente da camada de suporte" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "A camada de suporte usa uma altura de camada independente da camada do " -"objeto. Isso é para suportar a personalização do z-gap e economizar tempo de " +"objeto. Isso é para suportar a personalização do vão-Z e economizar tempo de " "impressão. Esta opção será inválida quando a torre de preparação estiver " "ativa." @@ -14733,8 +14729,8 @@ msgid "Tree support branch angle" msgstr "Ângulo da ramificação da árvore de suporte" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Esta configuração determina o ângulo máximo de saliência que as ramificações " @@ -14786,27 +14782,27 @@ msgid "Adaptive layer height" msgstr "Altura de camada adaptativa" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" -"Ao ativar essa opção, a altura da camada de suporte de árvore, exceto a " -"primeira, será calculada automaticamente " +"Ativar essa opção significa que a altura da camada de suporte de árvore, " +"exceto a primeira, será calculada automaticamente." msgid "Auto brim width" msgstr "Largura de borda automática" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" -"Ao ativar essa opção, a largura da borda para suporte de árvore será " -"calculada automaticamente" +"Ativar essa opção significa que a largura da borda para suporte de árvore " +"será calculada automaticamente." msgid "Tree support brim width" msgstr "Largura da borda de suporte de árvore" -msgid "Distance from tree branch to the outermost brim line" -msgstr "Distância do ramo da árvore até a linha de borda mais externa" +msgid "Distance from tree branch to the outermost brim line." +msgstr "Distância do ramo da árvore até a linha de borda mais externa." msgid "Tip Diameter" msgstr "Diâmetro da ponta" @@ -14852,10 +14848,10 @@ msgstr "Suporte de árvore com preenchimento" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Essa configuração especifica se deve adicionar preenchimento dentro de " -"grandes cavidades do suporte de árvore" +"grandes cavidades do suporte de árvore." msgid "Activate temperature control" msgstr "Ativar controle de temperatura" @@ -14866,7 +14862,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14891,13 +14887,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -14909,14 +14905,14 @@ msgstr "" "de câmara mais alta pode ajudar a suprimir ou reduzir a deformação e " "potencialmente levar a uma maior resistência de ligação entre camadas. No " "entanto, ao mesmo tempo, uma temperatura de câmara mais alta reduzirá a " -"eficiência da filtragem de ar para ABS e ASA. \n" +"eficiência da filtragem de ar para ABS e ASA.\n" "\n" "Para PLA, PETG, TPU, PVA e outros materiais de baixa temperatura, esta opção " "deve ser desabilitada (definida como 0), pois a temperatura da câmara deve " "ser baixa para evitar o entupimento da extrusora causado pelo amolecimento " "do material na quebra de calor.\n" "\n" -"Se habilitado, este parâmetro também define uma variável gcode chamada " +"Se habilitado, este parâmetro também define uma variável G-code chamada " "chamber_temperature, que pode ser usada para passar a temperatura desejada " "da câmara para sua macro de início de impressão ou uma macro de absorção de " "calor como esta: PRINT_START (outras variáveis) " @@ -14925,29 +14921,29 @@ msgstr "" "na macro de início de impressão se nenhum aquecedor de câmara ativo estiver " "instalado." -msgid "Nozzle temperature for layers after the initial one" -msgstr "Temperatura do bico para camadas após a inicial" +msgid "Nozzle temperature for layers after the initial one." +msgstr "Temperatura do bico para camadas após a inicial." msgid "Detect thin wall" msgstr "Detectar parede fina" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Detecta paredes finas que não podem conter duas larguras de linha. E usa uma " "linha única para imprimir. Talvez seja impresso não muito bem, porque não é " -"um loop fechado" +"uma volta fechada." msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" -"Este gcode é inserido ao trocar o filamento, incluindo o comando T para " -"acionar a troca de ferramenta" +"Este G-code é inserido ao trocar o filamento, incluindo o comando T para " +"acionar a troca de ferramenta." -msgid "This gcode is inserted when the extrusion role is changed" -msgstr "Esse gcode é inserido quando o tipo de extrusão muda" +msgid "This G-code is inserted when the extrusion role is changed." +msgstr "Esse G-code é inserido quando o tipo de extrusão é alterado." msgid "" "Line width for top surfaces. If expressed as a %, it will be computed over " @@ -14956,8 +14952,8 @@ msgstr "" "Largura da linha para superfícies superiores. Se expressa em %, será " "calculada sobre o diâmetro do bico." -msgid "Speed of top surface infill which is solid" -msgstr "Velocidade de preenchimento da superfície superior, que é sólida" +msgid "Speed of top surface infill which is solid." +msgstr "Velocidade de preenchimento da superfície superior, que é sólida." msgid "Top shell layers" msgstr "Camadas de topo da casca" @@ -14965,12 +14961,12 @@ msgstr "Camadas de topo da casca" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Este é o número de camadas sólidas da casca do topo, incluindo a camada da " "superfície superior. Quando a espessura calculada por este valor for menor " "do que a espessura da casca do topo, as camadas da casca do topo serão " -"aumentadas" +"aumentadas." msgid "Top solid layers" msgstr "Camadas sólidas superiores" @@ -14983,48 +14979,49 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura " "calculada pelas camadas da casca do topo for menor do que este valor. Isso " "pode evitar que a casca seja muito fina quando a altura da camada é pequena. " "0 significa que esta configuração está desativada e a espessura da casca do " -"topo é determinada exclusivamente pelas camadas da casca do topo" +"topo é determinada exclusivamente pelas camadas da casca do topo." -msgid "Speed of travel which is faster and without extrusion" -msgstr "Velocidade de deslocamento mais rápida e sem extrusão" +msgid "Speed of travel which is faster and without extrusion." +msgstr "Velocidade de deslocamento mais rápida e sem extrusão." msgid "Wipe while retracting" msgstr "Limpar enquanto retrai" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Movimentar o bico ao longo do último caminho de extrusão ao retrair para " -"limpar o material vazado no bico. Isso pode minimizar a formação de blob " -"quando imprimir uma nova peça após o deslocamento" +"limpar o material vazado no bico. Isso pode minimizar a formação de blobs " +"quando imprimir uma nova peça após o deslocamento." msgid "Wipe Distance" msgstr "Distância de Limpeza" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Descreva por quanto tempo o bico se moverá ao longo do último caminho ao " -"retrair. \n" +"retrair.\n" "\n" "Dependendo de quanto tempo dura a operação de limpeza, quão rápidas e longas " "são as configurações de retração da extrusora/filamento, pode ser necessário " -"um movimento de retração para recolher o filamento restante. \n" +"um movimento de retração para recolher o filamento restante.\n" "\n" "Definir um valor na configuração de quantidade de retração antes da limpeza " "abaixo executará qualquer retração em excesso antes da limpeza, caso " @@ -15058,8 +15055,8 @@ msgstr "Volume de preparação" msgid "The volume of material to prime extruder on tower." msgstr "O volume de material para preparar a extrusora na torre." -msgid "Width of prime tower" -msgstr "Largura da torre de preparação" +msgid "Width of the prime tower." +msgstr "Largura da torre de preparação." msgid "Wipe tower rotation angle" msgstr "Ângulo de rotação da torre de limpeza" @@ -15094,7 +15091,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15114,7 +15111,7 @@ msgstr "" "aumentar a força com que o bico colide com quaisquer bolhas que possam ter " "se formado na torre de limpeza.\n" "\n" -"Antes de aumentar esse parâmetro além do padrão de 90mm/s, certifique-se de " +"Antes de aumentar esse parâmetro além do padrão de 90 mm/s, certifique-se de " "que sua impressora pode realizar pontes de forma confiável nas velocidades " "aumentadas e que o vazamento ao trocar a ferramenta está bem controlado.\n" "\n" @@ -15163,13 +15160,13 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Este objeto será usado para purgar o bico após uma troca de filamento para " "economizar filamento e diminuir o tempo de impressão. As cores dos objetos " -"serão misturadas como resultado. Isso não terá efeito, a menos que a torre " -"de preparação esteja ativa." +"serão misturadas como resultado. Isso não terá efeito a menos que a torre de " +"preparação esteja ativa." msgid "Maximal bridging distance" msgstr "Distância máxima de ponte" @@ -15184,7 +15181,7 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Espaçamento das linhas de purga na torre de limpeza." msgid "Extra flow for purging" -msgstr "" +msgstr "Fluxo extra para purga" msgid "" "Extra flow used for the purging lines on the wipe tower. This makes the " @@ -15199,9 +15196,9 @@ msgid "Idle temperature" msgstr "Temperatura ociosa" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Temperatura do bico quando a ferramenta não está sendo usada em " "configurações de multiferramentas. Isso é usado apenas quando 'Prevenção de " @@ -15209,31 +15206,32 @@ msgstr "" "desabilitar." msgid "X-Y hole compensation" -msgstr "Compensação XY de furos" +msgstr "Compensação de furos XY" msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" -"Os furos do objeto serão aumentados ou reduzidos no plano XY pelo valor " -"configurado. Valor positivo aumenta os furos. Valor negativo reduz os furos. " -"Essa função é usada para ajustar ligeiramente o tamanho quando o objeto tem " -"problema de montagem" +"Os furos nos objetos irão expandir ou contrair no plano XY pelo valor " +"definido. Valores positivos aumentam os furos, valores negativos reduzem os " +"furos. Essa função é usada para ajustar ligeiramente os tamanhos quando os " +"objetos têm problemas de montagem." msgid "X-Y contour compensation" -msgstr "Compensação XY de contornos" +msgstr "Compensação de contornos XY" msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" -"O contorno do objeto será expandido ou reduzido no plano XY pelo valor " -"configurado. Valor positivo aumenta o contorno. Valor negativo diminui o " -"contorno. Essa função é usada para ajustar ligeiramente o tamanho quando o " -"objeto tem problemas de montagem" +"Os contornos dos objetos irão expandir ou contrair no plano XY pelo valor " +"definido. Valores positivos aumentam os contornos, valores negativos reduzem " +"os contornos. Essa função é usada para ajustar ligeiramente os tamanhos " +"quando os objetos têm problemas de montagem." msgid "Convert holes to polyholes" msgstr "Converter furos em polifuros" @@ -15287,33 +15285,33 @@ msgstr "Formato das miniaturas de G-code" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" -"Formato das miniaturas de G-code: PNG para melhor qualidade, JPG para menor " -"tamanho, QOI para firmware de baixa memória" +"Formato das miniaturas de G-code: PNG para a melhor qualidade, JPG para o " +"menor tamanho, QOI para firmwares de pouca memória." msgid "Use relative E distances" msgstr "Usar distâncias E relativas" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "A extrusão relativa é recomendada ao usar a opção \"label_objects\". Algumas " "extrusoras funcionam melhor com esta opção desmarcada (modo de extrusão " "absoluta). A torre de limpeza é compatível apenas com o modo relativo. É " -"recomendado na maioria das impressoras. O padrão é ativado" +"recomendado na maioria das impressoras. O padrão é ativado." msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "O gerador de parede clássico produz paredes com largura de extrusão " "constante e para áreas muito finas é usado preenchimento de vão. O motor " -"Arachne produz paredes com largura de extrusão variável" +"Arachne produz paredes com largura de extrusão variável." msgid "Arachne" msgstr "Arachne" @@ -15324,12 +15322,12 @@ msgstr "Comprimento da transição de parede" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Ao fazer a transição entre diferentes números de paredes à medida que a peça " "fica mais fina, uma certa quantidade de espaço é designada para dividir ou " "unir os segmentos da parede. É expresso como uma porcentagem sobre o " -"diâmetro do bico" +"diâmetro do bico." msgid "Wall transitioning filter margin" msgstr "Margem de filtro de transição de parede" @@ -15341,7 +15339,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Evita a transição de ida e volta entre uma parede extra e uma a menos. Esta " "margem amplia o intervalo de larguras de extrusão que seguem para [Largura " @@ -15349,7 +15347,7 @@ msgstr "" "esta margem reduz o número de transições, o que reduz o número de inícios / " "paradas de extrusão e o tempo de deslocamento. No entanto, uma grande " "variação na largura de extrusão pode levar a problemas de subextrusão ou " -"superextrusão. É expresso como uma porcentagem sobre o diâmetro do bico" +"superextrusão. É expresso como uma porcentagem sobre o diâmetro do bico." msgid "Wall transitioning threshold angle" msgstr "Ângulo limiar de transição de parede" @@ -15359,38 +15357,38 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Quando criar transições entre números pares e ímpares de paredes. Uma forma " "de cunha com um ângulo maior do que esta configuração não terá transições e " "nenhuma parede será impressa no centro para preencher o espaço restante. " "Reduzir esta configuração reduz o número e o comprimento dessas paredes " -"centrais, mas pode deixar vazios ou extrusão excessiva" +"centrais, mas pode deixar vazios ou extrusão excessiva." msgid "Wall distribution count" msgstr "Contagem de distribuição de paredes" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "O número de paredes, contadas a partir do centro, sobre as quais a variação " "precisa ser espalhada. Valores menores significam que as paredes externas " -"não mudam de largura" +"não mudam de largura." msgid "Minimum feature size" msgstr "Tamanho mínimo do elemento" msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Espessura mínima de elementos finos. Elementos do modelo que são mais finos " "do que este valor não serão impressos, enquanto elementos mais espessos que " -"o tamanho mínimo do elemento serão alargados até a largura mínima da parede. " -"É expresso como uma porcentagem sobre o diâmetro do bico" +"esse valor serão alargados até a largura mínima da parede. É expresso como " +"uma porcentagem sobre o diâmetro do bico." msgid "Minimum wall length" msgstr "Comprimento mínimo da parede" @@ -15435,20 +15433,20 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Largura da parede que substituirá elementos finos (de acordo com o tamanho " "mínimo do elemento) do modelo. Se a Largura mínima da parede for mais fina " "do que a espessura do elemento, a parede será tão espesso quanto o próprio " -"elemento. É expresso como uma porcentagem sobre o diâmetro do bico" +"elemento. É expresso como uma porcentagem sobre o diâmetro do bico." msgid "Detect narrow internal solid infill" msgstr "Detectar preenchimento sólido interno estreito" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Esta opção irá detectar automaticamente áreas de preenchimento sólido " "interno estreito. Se ativada, o padrão concêntrico será usado para a área " @@ -15482,8 +15480,8 @@ msgstr "Exportar dados de fatiamento para uma pasta." msgid "Load slicing data" msgstr "Carregar dados de fatiamento" -msgid "Load cached slicing data from directory" -msgstr "Carregar dados de fatiamento em cache do diretório" +msgid "Load cached slicing data from directory." +msgstr "Carregar dados de fatiamento em cache do diretório." msgid "Export STL" msgstr "Exportar STL" @@ -15494,8 +15492,8 @@ msgstr "Exporte os objetos como STL único." msgid "Export multiple STLs" msgstr "Exportar vários STLs" -msgid "Export the objects as multiple STLs to directory" -msgstr "Exportar os objetos como vários STLs para o diretório" +msgid "Export the objects as multiple STLs to directory." +msgstr "Exportar os objetos como vários STLs para o diretório." msgid "Slice" msgstr "Fatiar" @@ -15504,28 +15502,28 @@ msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Fatiar as placas: 0-todas as placas, i-placa i, outros-inválido" msgid "Show command help." -msgstr "" +msgstr "Mostra ajuda do comando." msgid "UpToDate" -msgstr "" +msgstr "Atualizar" msgid "Update the configs values of 3mf to latest." msgstr "Atualize os valores de configuração do 3mf para os mais recentes." msgid "downward machines check" -msgstr "" +msgstr "verificação de máquinas abaixo" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" -"verifica se a máquina atual é retrocompatível com as máquinas na lista" +"verifica se a máquina atual é retrocompatível com as máquinas na lista." msgid "Load default filaments" msgstr "Carregar filamento padrão" -msgid "Load first filament as default for those not loaded" -msgstr "Carregar o primeiro filamento como padrão para aqueles não carregados" +msgid "Load first filament as default for those not loaded." +msgstr "Carregar o primeiro filamento como padrão para aqueles não carregados." msgid "Minimum save" msgstr "Salvar mínimo" @@ -15548,10 +15546,10 @@ msgstr "tempo máximo de fatiamento por placa em segundos." msgid "No check" msgstr "Sem verificação" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Não execute nenhuma verificação de validade, como a verificação de conflitos " -"de caminho do gcode." +"de caminho do G-code." msgid "Normative check" msgstr "Verificação normativa" @@ -15583,20 +15581,20 @@ msgstr "Opções de Arranjo" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Opções de arranjo: 0-desativar, 1-ativar, outros-automático" -msgid "Repetions count" +msgid "Repetition count" msgstr "Contagem de repetições" -msgid "Repetions count of the whole model" -msgstr "Contagem de repetições do modelo inteiro" +msgid "Repetition count of the whole model." +msgstr "Contagem de repetições do modelo inteiro." msgid "Ensure on bed" msgstr "Garantir na mesa" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Eleve o objeto acima da mesa quando estiver parcialmente abaixo. Desativado " -"por padrão" +"por padrão." msgid "" "Arrange the supplied models in a plate and merge them in a single model in " @@ -15608,8 +15606,8 @@ msgstr "" msgid "Convert Unit" msgstr "Converter Unidades" -msgid "Convert the units of model" -msgstr "Converter unidades do modelo" +msgid "Convert the units of model." +msgstr "Converter unidades do modelo." msgid "Orient Options" msgstr "Opções de Orientação" @@ -15626,66 +15624,73 @@ msgstr "Rotacionar ao redor de Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Ângulo de rotação ao redor do eixo Y em graus." -msgid "Scale the model by a float factor" -msgstr "Escalar o modelo por um fator decimal" +msgid "Scale the model by a float factor." +msgstr "Escalar o modelo por um fator decimal." msgid "Load General Settings" msgstr "Carregar Configurações Gerais" -msgid "Load process/machine settings from the specified file" -msgstr "Carregar configurações de processo/máquina do arquivo especificado" +msgid "Load process/machine settings from the specified file." +msgstr "Carregar configurações de processo/máquina do arquivo especificado." msgid "Load Filament Settings" msgstr "Carregar Configurações de Filamento" -msgid "Load filament settings from the specified file list" -msgstr "Carregar configurações de filamento da lista de arquivos especificada" +msgid "Load filament settings from the specified file list." +msgstr "Carregar configurações de filamento da lista de arquivos especificada." msgid "Skip Objects" msgstr "Pular objetos" -msgid "Skip some objects in this print" -msgstr "Pule alguns objetos nesta impressão" +msgid "Skip some objects in this print." +msgstr "Pule alguns objetos nesta impressão." msgid "Clone Objects" msgstr "Clonar Objetos" -msgid "Clone objects in the load list" -msgstr "Clonar objetos na lista de carregamento" +msgid "Clone objects in the load list." +msgstr "Clonar objetos na lista de carregamento." -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" +"Carregar configurações de processo/máquina atualizadas ao usar Atualizar." msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" +"Carregar configurações de processo/máquina atualizadas do arquivo " +"especificado ao usar Atualizar." -msgid "load uptodate filament settings when using uptodate" -msgstr "" +msgid "Load uptodate filament settings when using uptodate." +msgstr "Carregar configurações de filamento atualizadas ao usar Atualizar." msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" +"Carregar configurações de filamento atualizadas do arquivo especificado ao " +"usar Atualizar." msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -"se habilitado, verifica se a máquina atual é retrocompatível com as máquinas " -"na lista" +"Se habilitado, verifica se a máquina atual é retrocompatível com as máquinas " +"na lista." -msgid "downward machines settings" -msgstr "" +msgid "Downward machines settings" +msgstr "Configurações de máquinas abaixo" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" +"A lista de configurações de máquina precisa fazer uma verificação " +"descendente." msgid "Load assemble list" msgstr "Carregar lista de montagem" -msgid "Load assemble object list from config file" -msgstr "Carregar lista de objetos de montagem do arquivo de configuração" +msgid "Load assemble object list from config file." +msgstr "Carregar lista de objetos de montagem do arquivo de configuração." msgid "Data directory" msgstr "Diretório de dados" @@ -15718,14 +15723,14 @@ msgstr "" msgid "Enable timelapse for print" msgstr "Habilitar timelapse para impressão" -msgid "If enabled, this slicing will be considered using timelapse" -msgstr "Se habilitado, esse fatiamento será considerado usando timelapse" +msgid "If enabled, this slicing will be considered using timelapse." +msgstr "Se habilitado, esse fatiamento será considerado usando timelapse." -msgid "Load custom gcode" -msgstr "Carregar gcode personalizado" +msgid "Load custom G-code" +msgstr "Carregar G-code personalizado" -msgid "Load custom gcode from json" -msgstr "Carregar gcode personalizado do json" +msgid "Load custom G-code from json." +msgstr "Carregar G-code personalizado do json." msgid "Load filament ids" msgstr "Carregar IDs de filamentos" @@ -15733,35 +15738,35 @@ msgstr "Carregar IDs de filamentos" msgid "Load filament ids for each object" msgstr "Carregar IDs de filamentos para cada objeto" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Permitir várias cores em uma placa" -msgid "If enabled, the arrange will allow multiple color on one plate" -msgstr "Se habilitado, o arranjo permitirá várias cores em uma placa" +msgid "If enabled, Arrange will allow multiple colors on one plate." +msgstr "Se habilitado, o arranjo permitirá várias cores em uma placa." -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Permitir rotações ao arranjar" -msgid "If enabled, the arrange will allow rotations when place object" -msgstr "Se habilitado, o arranjo permitirá rotações ao posicionar os objetos" +msgid "If enabled, Arrange will allow rotation when placing objects." +msgstr "Se habilitado, o arranjo permitirá rotações ao posicionar objetos." -msgid "Avoid extrusion calibrate region when doing arrange" -msgstr "Evitar a região de calibração de extrusão ao fazer arranjos" +msgid "Avoid extrusion calibrate region when arranging" +msgstr "Evitar a região de calibração de extrusão ao arranjar" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Se habilitado, o arranjo evitará a calibração da região de extrusão ao " -"posicionar os objetos" +"posicionar objetos." -msgid "Skip modified gcodes in 3mf" -msgstr "Pular G-codes modificados em 3mf" +msgid "Skip modified G-code in 3mf" +msgstr "Pular G-code modificado em 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" -"Pular os G-codes modificados em 3mf das predefinições de impressora ou de " -"filamento" +"Pular o G-code modificado em 3mf das predefinições de impressora ou de " +"filamento." msgid "MakerLab name" msgstr "Nome do MakerLab" @@ -15787,14 +15792,14 @@ msgstr "lista de valores de metadados" msgid "metadata value list added into 3mf" msgstr "lista de valores de metadados adicionada ao 3mf" -msgid "Allow 3mf with newer version to be sliced" -msgstr "Permitir que 3mf com versão mais recente seja fatiado" +msgid "Allow 3mf with newer version to be sliced." +msgstr "Permitir que 3mf com versão mais recente seja fatiado." -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Z-hop atual" -msgid "Contains z-hop present at the beginning of the custom G-code block." -msgstr "Contém o z-hop presente no início do bloco de G-code personalizado." +msgid "Contains Z-hop present at the beginning of the custom G-code block." +msgstr "Contém o Z-hop presente no início do bloco de G-code personalizado." msgid "" "Position of the extruder at the beginning of the custom G-code block. If the " @@ -15894,10 +15899,10 @@ msgid "Total filament volume extruded per extruder during the entire print." msgstr "" "Volume total de filamento extrudado por extrusora durante toda a impressão." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Total de trocas de ferramenta" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Número de trocas de ferramenta durante a impressão." msgid "Total volume" @@ -16143,7 +16148,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "A compensação de tamanho XY de um objeto não será usada porque ele também " "está pintado com cor.\n" @@ -16169,9 +16174,6 @@ msgstr "" "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .3mf " "ou .zip.amf." -msgid "Canceled" -msgstr "Cancelado" - msgid "load_obj: failed to parse" msgstr "load_obj: falha ao analisar" @@ -16275,7 +16277,7 @@ msgid "The name cannot be empty." msgstr "O nome não pode estar vazio." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "A predefinição selecionada: %s não foi encontrada." msgid "The name cannot be the same as the system preset name." @@ -16309,22 +16311,22 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Esse tipo de máquina só pode manter 16 resultados por bico no histórico. " "Você pode deletar resultados existentes e então começar a calibração. Ou " -"você pode continuar, mas não poderá criar novos resultados. \n" +"você pode continuar, mas não poderá criar novos resultados.\n" "Você ainda quer continuar com a calibração?" msgid "Connecting to printer..." -msgstr "Conectando à impressora..." +msgstr "Conectando à impressora…" msgid "The failed test result has been dropped." msgstr "O resultado do teste falhado foi descartado." -msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "O resultado da Calibração de Dinâmica de Fluxo foi salvo na impressora" +msgid "Flow Dynamics Calibration result has been saved to the printer." +msgstr "O resultado da Calibração de Dinâmica de Fluxo foi salvo na impressora." #, c-format, boost-format msgid "" @@ -16350,13 +16352,13 @@ msgstr "Erro Interno" msgid "Please select at least one filament for calibration" msgstr "Por favor, selecione pelo menos um filamento para calibrar" -msgid "Flow rate calibration result has been saved to preset" -msgstr "O resultado da calibração de fluxo foi salva na predefinição" +msgid "Flow rate calibration result has been saved to preset." +msgstr "O resultado da calibração de fluxo foi salva na predefinição." -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "O resultado da calibração de fluxo volumétrico máximo foi salvo na " -"predefinição" +"predefinição." msgid "When do you need Flow Dynamics Calibration" msgstr "Quando você precisa da Calibração de Dinâmica de Fluxo" @@ -16366,10 +16368,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Adicionamos agora a auto-calibração para diferentes filamentos, que é " "totalmente automatizada e o resultado será salvo na impressora para uso " @@ -16429,22 +16431,22 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Depois de usar a Calibração de Dinâmica de Fluxo, ainda pode haver alguns " "problemas de extrusão, como:\n" "1. Superextrusão: excesso de material no objeto impresso, formando grumos ou " "espinhas, ou as camadas parecem mais espessas do que o esperado e não " -"uniformes.\n" +"uniformes;\n" "2. Subextrusão: camadas muito finas, resistência fraca do preenchimento ou " -"vazios na camada superior do modelo, mesmo ao imprimir lentamente.\n" +"vazios na camada superior do modelo, mesmo ao imprimir lentamente;\n" "3. Baixa Qualidade de Superfície: a superfície de suas impressões parece " -"áspera ou irregular.\n" +"áspera ou irregular;\n" "4. Integridade Estrutural Fraca: as impressões quebram facilmente ou não " "parecem tão robustas quanto deveriam." @@ -16520,7 +16522,7 @@ msgstr "" "imprime com:" msgid "material with significant thermal shrinkage/expansion, such as..." -msgstr "material com significativa contração/expansão térmica, como..." +msgstr "material com significativa contração/expansão térmica, como…" msgid "materials with inaccurate filament diameter" msgstr "materiais com diâmetro de filamento impreciso" @@ -16553,10 +16555,10 @@ msgstr "O nome não pode ter mais de 40 caracteres." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Apenas um dos resultados com o mesmo nome será salvo. Tem certeza de que " -"deseja substituir os outros resultados?" +"deseja sobrescrever os outros resultados?" msgid "Please find the best line on your plate" msgstr "Por favor, encontre a melhor linha em sua placa" @@ -16607,9 +16609,6 @@ msgstr "Pular Calibração2" msgid "flow ratio : %s " msgstr "fluxo: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Por favor, escolha um bloco com a superfície superior mais lisa" - msgid "Please choose a block with smoothest top surface." msgstr "Por favor, escolha um bloco com a superfície superior mais lisa." @@ -16654,7 +16653,7 @@ msgstr "Filamento Para Calibração" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Dicas para material de calibração:\n" "- Materiais que podem compartilhar a mesma temperatura de mesa aquecida\n" @@ -16916,8 +16915,8 @@ msgstr "Distância de Retração Final: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" -msgstr "Enviar G-Code para o host da impressora" +msgid "Send G-code to printer host" +msgstr "Enviar G-code para o host da impressora" msgid "Upload to Printer Host with the following filename:" msgstr "Enviar para o Host da Impressora com o seguinte nome de arquivo:" @@ -16964,7 +16963,7 @@ msgstr "Cancelar selecionados" msgid "Show error message" msgstr "Mostrar mensagem de erro" -msgid "Enqueued" +msgid "Queued" msgstr "Enfileirado" msgid "Uploading" @@ -16984,7 +16983,7 @@ msgstr "" "antes de iniciar a impressão." msgid "Time-lapse" -msgstr "" +msgstr "Timelapse" msgid "Heated Bed Leveling" msgstr "Nivelamento de Mesa Aquecida" @@ -17055,14 +17054,14 @@ msgstr "Versão do Sistema:" msgid "DNS Server:" msgstr "Servidor DNS:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "Testar OrcaSlicer (GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "Testar OrcaSlicer (GitHub):" -msgid "Test Bing.com" -msgstr "Testar Bing.com" +msgid "Test bing.com" +msgstr "Testar bing.com" msgid "Test bing.com:" msgstr "Testar bing.com:" @@ -17127,7 +17126,7 @@ msgstr "" "personalizado." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" ou \"Genérico\" não podem ser usados como fornecedor para " "filamentos personalizados." @@ -17151,7 +17150,7 @@ msgstr "" "Todas as entradas no fornecedor personalizado ou serial são espaços. Por " "favor, insira novamente." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "O fornecedor não pode ser um número. Por favor, insira novamente." msgid "" @@ -17162,11 +17161,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"O nome do Filamento %s que você criou já existe. \n" +"O nome do Filamento %s que você criou já existe.\n" "Se você continuar a criação, a predefinição criada será exibida com o seu " "nome completo. Você quer continuar?" @@ -17183,11 +17182,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Renomearíamos as predefinições como \"Fornecedor Tipo Serial @ impressora " -"que você selecionou\". \n" +"que você selecionou\".\n" "Para adicionar predefinição para mais impressoras, por favor vá para a " "seleção de impressoras" @@ -17212,7 +17211,7 @@ msgstr "Importar Predefinição" msgid "Create Type" msgstr "Tipo de Criação" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "O modelo não foi encontrado, por favor reselecione o fornecedor." msgid "Select Model" @@ -17255,18 +17254,17 @@ msgstr "O arquivo excede %d MB, por favor importe novamente." msgid "Exception in obtaining file size, please import again." msgstr "Exceção ao obter o tamanho do arquivo, por favor importe novamente." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "" -"O caminho da predefinição não é encontrado, por favor reselecione o " -"fornecedor." +"Caminho da predefinição não encontrado, por favor reselecione o fornecedor." msgid "The printer model was not found, please reselect." msgstr "O modelo da impressora não foi encontrado, por favor reselecione." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "O diâmetro do bico não foi encontrado, por favor reselecione." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "" "A predefinição de impressora não foi encontrada, por favor reselecione." @@ -17332,7 +17330,7 @@ msgstr "Falha ao criar predefinições de filamento. Como segue:\n" msgid "Create process presets failed. As follows:\n" msgstr "Falha ao criar predefinições de processo. Como segue:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Fornecedor não encontrado, por favor selecione novamente." msgid "Current vendor has no models, please reselect." @@ -17368,10 +17366,10 @@ msgstr "" "Você ainda não selecionou a impressora para substituir o bico, por favor " "escolha." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Impressora criada com sucesso" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Filamento criado com sucesso" msgid "Printer Created" @@ -17392,7 +17390,7 @@ msgid "" "them carefully." msgstr "" "Por favor, vá para as configurações do filamento para editar suas " -"predefinições, se necessário. \n" +"predefinições, se necessário.\n" "Por favor, note que a temperatura do bico, temperatura da mesa aquecida e " "velocidade volumétrica máxima têm um impacto significativo na qualidade de " "impressão. Por favor, ajuste-os com cuidado." @@ -17402,14 +17400,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" "Orca detectou que a função de sincronização das suas predefinições de " "usuário não está habilitada, o que pode resultar em falhas nas configurações " -"de Filamento na página do Dispositivo. \n" +"de Filamento na página do Dispositivo.\n" "Clique em \"Sincronizar predefinições do usuário\" para habilitar a função " "de sincronização." @@ -17461,18 +17459,18 @@ msgstr "" "após a criação." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Predefinições de impressora e todos os filamentos e processos que pertencem " -"à impressora. \n" +"à impressora.\n" "Pode ser compartilhado com outros." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Conjunto de predefinições de filamento do usuário. \n" +"Conjunto de predefinições de filamento do usuário.\n" "Pode ser compartilhado com outros." msgid "" @@ -17539,7 +17537,7 @@ msgstr "" "Nota: Se a única predefinição sob este filamento for excluída, o filamento " "será excluído após sair da janela." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" "Predefinições herdadas por outras predefinições não podem ser excluídos" @@ -17564,12 +17562,12 @@ msgid "Delete Filament" msgstr "Excluir Filamento" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Todos as predefinições de filamento pertencentes a este filamento seriam " -"excluídas. \n" +"excluídas.\n" "Se você estiver usando este filamento em sua impressora, redefina as " "informações do filamento para esse slot." @@ -17700,16 +17698,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Tipo de Host de Impressão incompatível: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "A conexão com o AstroBox funciona corretamente." msgid "Could not connect to AstroBox" msgstr "Não foi possível conectar-se ao AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "Nota: Versão do AstroBox de pelo menos 1.1.0 é necessária." +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "Nota: AstroBox versão 1.1.0 ou maior é necessário." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "A conexão com o Duet funciona corretamente." msgid "Could not connect to Duet" @@ -17727,7 +17725,7 @@ msgstr "Não foi possível obter recursos para criar uma nova conexão" msgid "Upload not enabled on FlashAir card." msgstr "Upload não ativado no cartão FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" "A conexão com o FlashAir funciona corretamente e o upload está ativado." @@ -17741,28 +17739,28 @@ msgstr "" "Nota: FlashAir com firmware 2.00.02 ou mais recente e função de upload " "ativada são necessárias." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "A conexão com o MKS funciona corretamente." msgid "Could not connect to MKS" msgstr "Não foi possível conectar-se ao MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "A conexão com o OctoPrint funciona corretamente." msgid "Could not connect to OctoPrint" msgstr "Não foi possível conectar-se ao OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Nota: Versão do OctoPrint de pelo menos 1.1.0 é necessária." +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "Nota: OctoPrint versão 1.1.0 ou maior é necessário." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "A Conexão com Prusa SL1 / SL1S funciona corretamente." msgid "Could not connect to Prusa SLA" msgstr "Não foi possível conectar-se ao Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "A conexão com PrusaLink funciona corretamente." msgid "Could not connect to PrusaLink" @@ -17786,20 +17784,20 @@ msgstr "%1% : sem espaço livre" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Falha no ‘upload’. Não há armazenamento suficiente em %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "A conexão com o Prusa Connect funciona corretamente." msgid "Could not connect to Prusa Connect" msgstr "Não foi possível conectar-se ao Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "A conexão com o Repetier funciona corretamente." msgid "Could not connect to Repetier" msgstr "Não foi possível conectar-se ao Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "Nota: A versão do Repetier deve ser igual ou maior que 0.90.0." +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "Nota: Repetier versão 0.90.0 ou maior é necessário." #, boost-format msgid "" @@ -17830,8 +17828,8 @@ msgstr "" "Error: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Possui uma pequena altura de camada, resultando em linhas de camada quase " "imperceptíveis e alta qualidade de impressão. É adequado para a maioria dos " @@ -17839,8 +17837,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, ele tem velocidades e " "aceleração mais baixas, e o padrão de preenchimento esparso é Giroide. Isso " @@ -17849,8 +17847,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada " "um pouco maior, resultando em linhas de camada quase insignificantes e um " @@ -17858,8 +17856,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada " "maior, o que resulta em linhas de camada ligeiramente visíveis, mas um tempo " @@ -17867,8 +17864,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada " "menor, resultando em linhas de camada quase invisíveis e maior qualidade de " @@ -17877,8 +17874,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, tem linhas de camada " "menores, velocidades e aceleração mais baixas, e o padrão de preenchimento " @@ -17886,9 +17883,9 @@ msgstr "" "qualidade de impressão muito superior, mas um tempo de impressão muito maior." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, tem uma altura de camada " "menor, resultando em linhas de camada mínimas e maior qualidade de " @@ -17897,8 +17894,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,2 mm, tem linhas de camada " "menores, velocidades e aceleração mais baixas, e o padrão de preenchimento " @@ -17906,16 +17903,16 @@ msgstr "" "de impressão muito superior, mas um tempo de impressão muito maior." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Tem uma altura de camada padrão e resulta em linhas de camada e qualidade de " "impressão padrão. É adequado para a maioria dos casos de impressão." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Comparado com o perfil padrão de uma bico de 0,4 mm, tem mais voltas de " "parede e uma densidade de preenchimento esparso mais alta. Portanto, resulta " @@ -17924,8 +17921,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "Comparado com o perfil padrão de uma bico de 0,4 mm, tem uma altura de " "camada maior, resultando em linhas de camada mais aparentes e qualidade mais " @@ -17933,8 +17930,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "Comparado com o perfil padrão de uma bico de 0,4 mm, tem uma altura de " "camada maior, resultando em linhas de camada mais aparentes e qualidade mais " @@ -17942,8 +17939,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada " "menor, resultando em linhas de camada menos aparentes e maior qualidade de " @@ -17952,8 +17949,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada " "menor, velocidades e aceleração mais baixas, e o padrão de preenchimento " @@ -17962,8 +17959,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada " "menor, resultando em linhas de camada quase insignificantes e maior " @@ -17972,8 +17969,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada " "menor, velocidades e aceleração mais baixas, e o padrão de preenchimento " @@ -17983,24 +17980,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,4 mm, tem uma altura de camada " "menor, resultando em linhas de camada quase insignificantes, mas com um " "tempo de impressão maior." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Tem uma altura de camada grande, resultando em linhas de camada aparentes " "com qualidade e tempo de impressão normais." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,6 mm, tem mais voltas de " "parede e uma densidade de preenchimento esparso mais alta. Portanto, resulta " @@ -18009,26 +18005,26 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada " "maior, resultando em linhas de camada mais aparentes e qualidade mais baixa, " -"mas com um tempo de impressão menor em alguns casos de impressão." +"mas com um tempo de impressão menor em alguns casos." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada " "maior, resultando em linhas de camada muito mais aparentes e qualidade muito " -"mais baixa, mas com um tempo de impressão menor em alguns casos de impressão." +"mais baixa, mas com um tempo de impressão menor em alguns casos." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada " "menor, resultando em linhas de camada menos aparentes e qualidade " @@ -18036,59 +18032,58 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Comparado com o perfil padrão de um bico de 0,6 mm, tem uma altura de camada " "menor, resultando em linhas de camada menos aparentes e maior qualidade de " "impressão, mas com um tempo de impressão maior." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Tem uma altura de camada muito grande, resultando em linhas de camada muito " "aparentes, com qualidade e tempo de impressão baixo." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada " "maior, resultando em linhas de camada muito aparentes e qualidade muito mais " -"baixa, mas com um tempo de impressão menor em alguns casos de impressão." +"baixa, mas com um tempo de impressão menor em alguns casos." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada " "muito maior, resultando em linhas de camada extremamente aparentes e " "qualidade muito mais baixa, mas com um tempo de impressão muito menor em " -"alguns casos de impressão." +"alguns casos." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada " "ligeiramente menor, resultando em linhas de camada menos aparentes, mas " "ainda visíveis, e qualidade ligeiramente maior, mas com um tempo de " -"impressão maior em alguns casos de impressão." +"impressão maior em alguns casos." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "Comparado com o perfil padrão de um bico de 0,8 mm, tem uma altura de camada " "menor, resultando em linhas de camada menos aparentes, mas ainda visíveis, e " "qualidade ligeiramente maior, mas com um tempo de impressão maior em alguns " -"casos de impressão." +"casos." msgid "Connected to Obico successfully!" msgstr "Conectado ao Obico com sucesso!" @@ -18113,7 +18108,7 @@ msgstr "" "Conta SimplyPrint não vinculada. Vá para as opções de conexão para configurá-" "la." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "A conexão com a Flashforge está funcionando corretamente." msgid "Could not connect to Flashforge" @@ -18130,7 +18125,7 @@ msgid "Something unexpected happened when trying to log in, please try again." msgstr "" "Algo inesperado aconteceu ao tentar conectar, por favor tente novamente." -msgid "User cancelled." +msgid "User canceled." msgstr "O usuário cancelou." msgid "Head diameter" @@ -18161,8 +18156,8 @@ msgid "Adjust section view" msgstr "Ajustar vista de seção" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Aviso: O tipo de borda não estiver definido como \"pintado\", as orelhas da " "borda não terão efeito!" @@ -18252,13 +18247,13 @@ msgid "" msgstr "" "Alternar espaços de trabalho\n" "Você pode alternar entre os espaços de trabalho Preparar e " -"Visualizar pressionando a tecla Tab." +"Pré-visualizar pressionando a tecla Tab." #: resources/data/hints.ini: [hint:How to use keyboard shortcuts] msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Como usar atalhos de teclado\n" "Você sabia que o Orca Slicer oferece uma ampla gama de atalhos de teclado e " @@ -18305,7 +18300,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Auto-arranjo\n" "Você sabia que pode arranjar automaticamente todos os objetos em seu projeto?" @@ -18314,7 +18309,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Auto-orientar\n" "Você sabia que pode rotacionar objetos para uma orientação ideal para " @@ -18495,7 +18490,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Borda para melhor adesão\n" @@ -18506,7 +18501,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Definir parâmetros para vários objetos\n" "Você sabia que pode definir parâmetros de fatiamento para todos os objetos " @@ -18523,7 +18518,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Purga no suporte/objetos/preenchimento\n" @@ -18540,15 +18535,15 @@ msgstr "" "Você sabia que pode usar mais voltas de parede e maior densidade de " "preenchimento esparso mais alta para melhorar a resistência do modelo?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" -"Quando é necessário imprimir com a porta da impressora aberta\n" +"Quando é necessário imprimir com a porta da impressora aberta?\n" "Você sabia que abrir a porta da impressora pode reduzir a probabilidade de " "entupimento da extrusora/bico aquecido ao imprimir filamento de temperatura " "mais baixa com uma temperatura de invólucro mais alta? Mais informações " @@ -18559,7 +18554,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Evitar empenamento\n" "Você sabia que ao imprimir materiais propensos ao empenamento, como ABS, " @@ -18586,17 +18581,6 @@ msgstr "" #~ "0.1mm de distância superior em z ou uso de materiais de suporte na " #~ "interface." -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "Ao usar material de suporte para a interface de suporte, recomendamos as " -#~ "seguintes configurações:\n" -#~ "distância z superior 0, espaçamento de interface 0, padrão concêntrico e " -#~ "desabilitar altura de camada de suporte independente" - #~ msgid "Branch Diameter with double walls" #~ msgstr "Diâmetro da Ramificação com parede dupla" @@ -18707,7 +18691,7 @@ msgstr "" #~ "Forçar o ventilador de resfriamento a ser uma velocidade específica " #~ "quando o grau de saliência da peça impressa excede este valor. Expresso " #~ "como porcentagem, que indica quanto da largura da linha sem suporte da " -#~ "camada inferior.Zero significa forçar o resfriamento para toda a parede " +#~ "camada inferior. Zero significa forçar o resfriamento para toda a parede " #~ "externa, não importa quanto seja o grau de saliência" #~ msgid "" @@ -18727,26 +18711,6 @@ msgstr "" #~ "Nota: Esta configuração só terá efeito se a sequência da parede estiver " #~ "configurada para Interior-Exterior" -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "Um valor menor resulta em transições de extrusão mais suaves. No entanto, " -#~ "isso resulta em um arquivo Gcode significativamente maior e mais " -#~ "instruções para a impressora processar.\n" -#~ "\n" -#~ "O valor padrão de 3 funciona bem para a maioria dos casos. Se sua " -#~ "impressora estiver engasgando, aumente este valor para reduzir o número " -#~ "de ajustes feitos.\n" -#~ "\n" -#~ "Valores permitidos: 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -18756,15 +18720,6 @@ msgstr "" #~ "velocidade para tentar manter o tempo mínimo de camada acima, quando a " #~ "desaceleração para um melhor resfriamento da camada estiver habilitada." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "normal(auto) e tree(auto) são usados para gerar suporte automaticamente. " -#~ "Se normal(manual) ou tree(manual) for selecionado, apenas os suportes são " -#~ "gerados" - #~ msgid "Reverse on odd" #~ msgstr "Reverter em ímpares" @@ -18784,7 +18739,7 @@ msgstr "" #~ "redução das tensões nas paredes da peça." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -18822,26 +18777,6 @@ msgstr "" #~ "O valor 0 permite a reversão em todas as camadas ímpares " #~ "independentemente." -#~ msgid "" -#~ "The direction which the wall loops are extruded when looking down from " -#~ "the top.\n" -#~ "\n" -#~ "By default all walls are extruded in counter-clockwise, unless Reverse on " -#~ "odd is enabled. Set this to any option other than Auto will force the " -#~ "wall direction regardless of the Reverse on odd.\n" -#~ "\n" -#~ "This option will be disabled if spiral vase mode is enabled." -#~ msgstr "" -#~ "A direção na qual as voltas de parede são extrudados quando vistos de " -#~ "cima.\n" -#~ "\n" -#~ "Por padrão, todas as paredes são extrudadas no sentido anti-horário, a " -#~ "menos que o Reverso em ímpar esteja ativado. Definir isso como qualquer " -#~ "opção que não seja Automático forçará a direção da parede, " -#~ "independentemente do Reverso em ímpar.\n" -#~ "\n" -#~ "Esta opção será desativada se o modo de vaso espiral estiver ativado." - #~ msgid "" #~ "While printing by Object, the extruder may collide skirt.\n" #~ "Thus, reset the skirt layer to 1 to avoid that." @@ -18849,37 +18784,6 @@ msgstr "" #~ "Ao imprimir por Objeto, a extrusora pode colidir com a saia.\n" #~ "Portanto, redefina a camada da saia para 1 para evitar isso." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "A geometria será decimada antes de detectar ângulos agudos. Este " -#~ "parâmetro indica o comprimento mínimo da divergência para a decimação.\n" -#~ "0 para desativar" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Comece o ventilador este número de segundos antes do tempo de início do " -#~ "alvo (você pode usar segundos fracionários). Ele assume aceleração " -#~ "infinita para esta estimativa de tempo e só levará em conta os movimentos " -#~ "G1 e G0 (o ajuste de arco não é suportado).\n" -#~ "Não moverá comandos do ventilador de gcodes personalizados (eles " -#~ "funcionam como uma espécie de 'barreira').\n" -#~ "Não moverá comandos do ventilador para o início do gcode se o 'apenas " -#~ "gcode de início personalizado' estiver ativado.\n" -#~ "Use 0 para desativar." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -18908,30 +18812,7 @@ msgstr "" #~ msgstr "Retração" #~ msgid "" -#~ "Enables gap fill for the selected surfaces. The minimum gap length that " -#~ "will be filled can be controlled from the filter out tiny gaps option " -#~ "below.\n" -#~ "\n" -#~ "Options:\n" -#~ "1. Everywhere: Applies gap fill to top, bottom and internal solid " -#~ "surfaces\n" -#~ "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " -#~ "only\n" -#~ "3. Nowhere: Disables gap fill\n" -#~ msgstr "" -#~ "Ativa o preenchimento de vão para as superfícies selecionadas. O " -#~ "comprimento mínimo do vão que será preenchida pode ser controlado a " -#~ "partir da opção de filtrar pequenas s abaixo.\n" -#~ "\n" -#~ "Opções:\n" -#~ "1. Em todos os lugares: Aplica preenchimento de s às superfícies sólidas " -#~ "superior, inferior e interna\n" -#~ "2. Superfícies superior e inferior: Aplica preenchimento de s apenas às " -#~ "superfícies superior e inferior\n" -#~ "3. Em nenhum lugar: Desativa o preenchimento de s\n" - -#~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Diminua ligeiramente este valor (por exemplo, 0.9) para reduzir a " @@ -18977,16 +18858,16 @@ msgstr "" #~ "Velocidade da ponte interna. Se o valor for expresso como porcentagem, " #~ "será calculado com base na velocidade da ponte. O valor padrão é 150%." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Tempo para carregar novo filamento ao trocar de filamento. Apenas para " -#~ "estatísticas" +#~ "estatística." #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Tempo para descarregar o filamento antigo ao trocar de filamento. Apenas " -#~ "para estatísticas" +#~ "para estatística." #~ msgid "" #~ "Time for the printer firmware (or the Multi Material Unit 2.0) to load a " @@ -19023,8 +18904,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19137,9 +19018,3 @@ msgstr "" #~ "Já existe um resultado de calibração histórico com o mesmo nome: %s. " #~ "Apenas um dos resultados com o mesmo nome é salvo. Você tem certeza de " #~ "que deseja substituir o resultado histórico?" - -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index 8ee3a89a93..a8178983d2 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OrcaSlicer v2.3.0-beta\n" +"Project-Id-Version: OrcaSlicer V2.3.0 Official Release\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-16 22:32+0800\n" -"PO-Revision-Date: 2025-03-02 17:17+0700\n" +"PO-Revision-Date: 2025-03-21 20:41+0700\n" "Last-Translator: \n" "Language-Team: Andylg \n" "Language: ru_RU\n" @@ -19,7 +19,7 @@ msgstr "" "n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Рисование поддержек" msgid "Alt + Mouse wheel" @@ -116,7 +116,7 @@ msgstr "Поверхностью на стол" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Количество пластиковых нитей превышает максимальное количество " @@ -484,6 +484,7 @@ msgstr "Верхняя часть" msgid "Lower part" msgstr "Нижняя часть" +# ?????8 к чему относится? msgid "Keep" msgstr "Сохранять" @@ -606,10 +607,10 @@ msgstr "Показать каркас" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Невозможно применить при предпросмотре нарезки." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Операция уже отменена. Пожалуйста, подождите несколько секунд." msgid "Face recognition" @@ -805,7 +806,7 @@ msgid "Change Text Type" msgstr "Изменить тип текста" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Переименование стиля (%1%) для рельефного текста" msgid "Name can't be empty." @@ -1021,12 +1022,12 @@ msgstr "Сориентировать текст по направлению к #, boost-format msgid "Font \"%1%\" can't be used. Please select another." -msgstr "" +msgstr "Шрифт \"%1%\" не может быть использован. Пожалуйста, выберите другой." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Т.к. не удалось загрузить тот же шрифт (\"%1%\"), приложение выбрало похожий " "шрифт (\"%2%\"). Выберите шрифт для включения редактирования текста." @@ -1157,7 +1158,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "Фигура помечена как невидимая (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Заливка фигуры (%1%) не поддерживается: %2%." @@ -1283,8 +1284,9 @@ msgstr "Парсер NanoSVG не может прочитать файл (%1%)." msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "Файл SVG не содержит ни одного контура для рельефного текста (%1%)." +# ????? msgid "No feature" -msgstr "" +msgstr "Элементы отсутствуют" msgid "Vertex" msgstr "Вершина" @@ -1332,7 +1334,7 @@ msgid "Measure" msgstr "Измерения" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Убедитесь, что коэффициент разброса равен 1 и выбрана хотя бы одна модель." @@ -1391,14 +1393,14 @@ msgstr "" "Выбор элемента 1 отменён,\n" "элемент 2 стал элементом 1." -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Внимание: выберите плоскость." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Внимание: выберите точку или окружность." # ????? выберите две разные сетки, выберите две различные 3D-сетки (объекты), -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Внимание: выберите требуемый элемент на втором объекте." msgid "Copy to clipboard" @@ -1422,7 +1424,7 @@ msgstr "Параллельно" msgid "Center coincidence" msgstr "Совместить центры" -msgid "Featue 1" +msgid "Feature 1" msgstr "Элемент 1" msgid "Reverse rotation" @@ -1479,7 +1481,7 @@ msgstr "" "Файл профиля \"%1%\" был загружен, но некоторые значения не были распознаны." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer завершает работу из-за нехватки памяти. Возможно, это баг " @@ -1601,8 +1603,8 @@ msgid "" "You can keep the modified presets to the new project, discard or save " "changes as new presets." msgstr "" -"Вы можете сохранить изменённые профили в новом проекте, отменить или " -"сохранить изменения в новые профили." +"Вы можете перенести сделанные изменения в новый проект, отказаться от их " +"сохранения или сохранить их." msgid "User logged out" msgstr "Пользователь вышел из системы" @@ -1615,7 +1617,7 @@ msgstr "Открыть проект" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Слишком старая версия Orca Slicer. Для корректной работы обновите программу " "до последней версии." @@ -1827,7 +1829,7 @@ msgstr "«Струнный ад» Orca" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1924,17 +1926,17 @@ msgstr "Очистка в поддержку" msgid "Edit in Parameter Table" msgstr "Редактирование таблицы параметров" -msgid "Convert from inch" -msgstr "Преобразовать размеры из дюймов" +msgid "Convert from inches" +msgstr "Преобразовать дюймы в миллиметры" -msgid "Restore to inch" -msgstr "Восстановить размеры в дюймы" +msgid "Restore to inches" +msgstr "Восстановить в дюймы" -msgid "Convert from meter" -msgstr "Преобразовать размеры из метров" +msgid "Convert from meters" +msgstr "Преобразовать миллиметры в дюймы" -msgid "Restore to meter" -msgstr "Восстановить размеры в метры" +msgid "Restore to meters" +msgstr "Восстановить в миллиметры" # при выборе на столе msgid "Assemble" @@ -2197,7 +2199,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2214,7 +2216,7 @@ msgstr "Удалить все соединения" msgid "Deleting the last solid part is not allowed." msgstr "Удаление последней твердотельной части не допускается." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "Целевая модель едина и не может быть разделена на части." msgid "Assembly" @@ -2257,14 +2259,14 @@ msgid "Selection conflicts" msgstr "Конфликты при выборе" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Если первый выбранный элемент является моделью, то второй тоже должен быть " "моделью." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Если первый выбранный элемент является частью модели, то второй должен быть " "частью той же модели." @@ -2331,7 +2333,7 @@ msgstr "" "Одна ячейка может быть скопирована только в одну или несколько ячеек одного " "и того же столбца." -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "копирование нескольких ячеек не поддерживается" msgid "Outside" @@ -2597,8 +2599,8 @@ msgid "Edit" msgstr "Правка" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Авторасстановка недоступна,\n" "т.к. все выбранные модели находятся на заблокированном столе." @@ -2607,8 +2609,8 @@ msgid "No arrangeable objects are selected." msgstr "Не выбрано моделей для расстановки." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Этот стол заблокирован.\n" "Авторасстановка на этом столе невозможна." @@ -2648,15 +2650,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Автоориентация недоступна,\n" "т.к. все выбранные модели находятся на заблокированном столе." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Этот стол заблокирован.\n" "Автоориентация на этом столе невозможна." @@ -2713,7 +2715,7 @@ msgstr "" "Не удалось подключиться к облачному сервису. Пожалуйста, попробуйте ещё раз." # Print file - речь про g-код -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Файл печати не найден, нарежьте ещё раз." msgid "" @@ -2743,7 +2745,7 @@ msgstr "" "Размер файла для печати слишком велик. Пожалуйста, уменьшите размер файла и " "повторите попытку." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Файл печати не найден. Пожалуйста, нарежьте его ещё раз и отправьте на " "печать." @@ -2786,10 +2788,10 @@ msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Перед печатью через локальную сеть необходимо вставить SD-карту." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Отправка файла G-кода по локальной сети" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Отправка файла G-кода на SD-карту" #, c-format, boost-format @@ -2837,10 +2839,10 @@ msgstr "Загрузка" msgid "Download failed" msgstr "Ошибка загрузки" -msgid "Cancelled" +msgid "Canceled" msgstr "Отменено" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Установка успешно завершена." msgid "Installing" @@ -2910,9 +2912,6 @@ msgstr "Подтвердить" msgid "Close" msgstr "Закрыть" -msgid "Colour" -msgstr "Цвет" - msgid "" "Nozzle\n" "Temperature" @@ -3002,6 +3001,9 @@ msgstr "Температура стола" msgid "Max volumetric speed" msgstr "Макс. объёмный расход" +msgid "Volumetric speed" +msgstr "Объёмный расход" + msgid "℃" msgstr "℃" @@ -3078,8 +3080,8 @@ msgstr "Текущая влажность внутри АСПП" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Пожалуйста, замените влагопоглотитель, если он слишком влажный. Индикатор " @@ -3088,7 +3090,7 @@ msgstr "" "температура окружающей среды также замедляют этот процесс." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Задайте слот АСПП, который должен использоваться для прутка, используемого в " "текущем задании." @@ -3111,7 +3113,7 @@ msgid "Print using materials mounted on the back of the case" msgstr "" "Печать с использованием материала, установленного на задней части корпуса" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "" "Печать пластиковыми\n" "нитями из АСПП" @@ -3140,12 +3142,12 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "При наличии в АСПП двух одинаковых материалов включается функция " -"резервирования материала (автодозаправка). \n" +"резервирования материала (автодозаправка).\n" "(В настоящее время поддерживается автоматическая дозаправка материала только " "одного производителя, типа и цвета)" @@ -3169,7 +3171,7 @@ msgstr "" "катушки Bambu. Это занимает около 20 секунд." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Примечание: если во время печати вставляется новая пластиковая нить, АСПП " @@ -3188,8 +3190,8 @@ msgstr "Обновлять данные при включении принтер msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "При каждом включении принтера АСПП будет автоматически считывать информацию " "о вставленных материалах. Это занимает приблизительно одну минуту. В " @@ -3220,8 +3222,8 @@ msgid "AMS filament backup" msgstr "Резервирование материала АСПП" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "АСПП автоматически переключится на другую катушку с тем же типом материала, " "когда текущий закончится." @@ -3281,12 +3283,12 @@ msgstr "" #, boost-format msgid "A fatal error occurred: \"%1%\"" -msgstr "" +msgstr "Произошла критическая ошибка: \"%1%\"" msgid "Please save project and restart the program." msgstr "Пожалуйста, сохраните проект и перезапустите программу." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Обработка G-кода из предыдущего файла..." msgid "Slicing complete" @@ -3372,12 +3374,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Файл G-кода экспортирован в %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Неизвестная ошибка при экспорте G-кода." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3559,7 +3561,7 @@ msgstr "Исп. АСПП" msgid "Select Printers" msgstr "Выбор принтеров" -msgid "Ams Status" +msgid "AMS Status" msgstr "Статус АСПП" msgid "Printing Options" @@ -3583,7 +3585,7 @@ msgid "Send to" msgstr "Отправить на" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "принтера(-ов) одновременно (зависит от того, сколько устройств может " @@ -3593,7 +3595,7 @@ msgid "Wait" msgstr "Ждать" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "минут для отправки каждого пакета заданий (зависит от того, сколько времени " "требуется для завершения нагрева перед началом печати)." @@ -3693,9 +3695,10 @@ msgstr "Выберите STL файл для импорта формы стол msgid "Bed Shape" msgstr "Форма стола" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" "Минимально рекомендуемая температура меньше 190 градусов или максимально " "рекомендуемая температура выше 300 градусов.\n" @@ -3721,8 +3724,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Рекомендуемая температура сопла для данного типа пластиковой нити составляет " "[%d, %d] градусов Цельсия." @@ -3736,9 +3739,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Текущая температура внутри термокамеры превышает безопасную температуру для " "этого материала, что может привести к размягчению материала или засорению " @@ -3806,7 +3809,7 @@ msgstr "" "вертикальной оболочки» установлено значение «Везде»." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3877,11 +3880,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Но принтеры с кинематикой I3 не будут писать таймлапс." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Изменить эти настройки автоматически? \n" +"Изменить эти настройки автоматически?\n" "Да - Изменить эти настройки и включить режим «Спиральная ваза»\n" "Нет - Отказаться от использования режима «Спиральная ваза»" @@ -3937,7 +3940,7 @@ msgstr "Печать приостановлена пользователем" msgid "Pause of front cover falling" msgstr "Пауза при падения передней крышки с головы" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Калибровка микролидаром" msgid "Calibrating extrusion flow" @@ -3977,7 +3980,7 @@ msgstr "" msgid "Cooling chamber" msgstr "Охлаждение термокамеры" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Печать приостановлена G-кодом, вставленным пользователем" # ??? Демонстрация шума двигателя @@ -4022,7 +4025,7 @@ msgstr "Сбой обновления." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "Текущая температура или целевая температура внутри термокамеры превышает " @@ -4030,8 +4033,8 @@ msgstr "" "низкотемпературной печатной нити (PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "В экструдер загружается низкотемпературная пластиковая нить (PLA/PETG/TPU). " @@ -4040,14 +4043,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Если вы установили температура внутри термокамеры ниже 40℃, то контроль " "температуры не запустится, а целевая температура в ней будет автоматически " "установлена на 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Не удалось запустить задание на печать." msgid "" @@ -4060,7 +4063,7 @@ msgstr "Текущая величина калибровки скорости п msgid "Selected diameter and machine diameter do not match" msgstr "Выбранный диаметр и диаметр профиля принтера не совпадают" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Не удалось сгенерировать калибровочный G-код" msgid "Calibration error" @@ -4073,14 +4076,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Печать Bambu PET-CF/PA6-CF с помощью АСПП не поддерживается." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Влажный PVA становится гибким и застревает внутри АСПП, поэтому перед " "использованием его необходимо просушить." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "CF/GF пластиковые нити твердые и хрупкие, легко ломаются или застревают в " @@ -4098,7 +4101,7 @@ msgstr "" "Встроенные заполнители. Для добавить его в G-код, дважды щелкните на " "выбранное." -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Поиск G-кода в заполнителях" msgid "Add selected placeholder to G-code" @@ -4157,7 +4160,7 @@ msgid "parameter name" msgstr "Имя параметра" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s не может быть в процентах" #, c-format, boost-format @@ -4249,7 +4252,7 @@ msgstr "Скорость вентилятора: " msgid "Temperature: " msgstr "Температура: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Загрузка G-кода" msgid "Generating geometry vertex data" @@ -4365,10 +4368,7 @@ msgstr "Печать" msgid "Printer" msgstr "Профиль принтера" -msgid "Custom g-code" -msgstr "Пользовательский G-код" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Смена инструмента" msgid "Time Estimation" @@ -4494,8 +4494,11 @@ msgstr "Выравнивать по оси Y" msgid "Add plate" msgstr "Добавить стол" -msgid "Auto orient" -msgstr "Автоориентация" +msgid "Auto orient all/selected objects" +msgstr "Автоориентация все/выбранные модели" + +msgid "Auto orient all objects on current plate" +msgstr "Автоориентация всех моделей на текущем столе" msgid "Arrange all objects" msgstr "Расставить все модели" @@ -4518,7 +4521,7 @@ msgstr "Выбор печатной пластины" msgid "Assembly Return" msgstr "Выйти из сборки" -msgid "return" +msgid "Return" msgstr "Назад" msgid "Paint Toolbar" @@ -4547,26 +4550,26 @@ msgstr "Размер:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "В G-коде на %d слое (z = %.2lf мм) обнаружен конфликт путей. Пожалуйста, " "разместите конфликтующие модели дальше друг от друга (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Модель выходить за границы печатного стола." msgid "A G-code path goes beyond the max print height." msgstr "Траектория перемещения в G-коде превышает высоту области печати." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Траектория перемещения в G-коде выходит за границы печатного стола." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "При редактировании, те модели с которыми вы не работаете скрываются." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4651,7 +4654,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Подключение принтера (локальная сеть)" msgid "Please input the printer access code:" @@ -4949,23 +4952,26 @@ msgid "Use Orthogonal View" msgstr "Ортогональный вид" msgid "Auto Perspective" -msgstr "" +msgstr "Автоперспектива" +# ??? Автоматическое переключение между ортогональным видом и перспективной проекцией при смене вида сверху/снизу/сбоку msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" +"Автоматическое переключение между ортогональной и перспективной проекцией " +"при смене вида сверху/снизу/сбоку." msgid "Show &G-code Window" msgstr "&Показать окно G-кода" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "Показать окно G-кода в окне предпросмотра" msgid "Show 3D Navigator" msgstr "Показать навигационный куб" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" "Показать навигационный куб в режиме подготовки и предварительного просмотра" @@ -4978,19 +4984,19 @@ msgstr "Восстановить расположение окон по умол msgid "Show &Labels" msgstr "Показать &имена файлов" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Показать имена моделей в 3D-сцене" msgid "Show &Overhang" msgstr "Показать &нависания" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "Подсвечивать нависания у модели в окне подготовки" msgid "Show Selected Outline (beta)" msgstr "Показать контур выбранной модели" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "Отображение контура вокруг выбранных моделей в окне подготовки." msgid "Preferences" @@ -5096,19 +5102,20 @@ msgstr "&Вид" msgid "&Help" msgstr "&Помощь" -#, fuzzy, c-format, boost-format +#, c-format, boost-format msgid "A file exists with the same name: %s, do you want to overwrite it?" msgstr "Файл с именем %s уже существует. Перезаписать его?" -#, fuzzy, c-format, boost-format +#, c-format, boost-format msgid "A config exists with the same name: %s, do you want to overwrite it?" msgstr "Профиль с именем %s уже существует. Перезаписать его?" msgid "Overwrite file" msgstr "Перезаписать файл" +# ???? Перезаписать профиль msgid "Overwrite config" -msgstr "" +msgstr "Перезаписать конфигурацию" msgid "Yes to All" msgstr "Да для всех" @@ -5162,13 +5169,13 @@ msgid "Filament Settings" msgstr "Настройки прутка" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Вы хотите синхронизировать свои данные с Bambu Cloud? \n" +"Вы хотите синхронизировать свои данные с Bambu Cloud?\n" "В облаке храниться следующая информация:\n" "1. Профили процессов печати\n" "2. Профили пластиковых нитей\n" @@ -5202,7 +5209,7 @@ msgstr "Сейчас идёт загрузка. Пожалуйста, повто msgid "Printer camera is malfunctioning." msgstr "Камера принтера неисправна." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Возникла проблема. Пожалуйста, обновите прошивку принтера и повторите " "попытку." @@ -5228,7 +5235,7 @@ msgstr "" # ??? Проверить влезает ли теперь. Или ещё короче - Проверьте сеть и повторите попытку. Если не помогло, перезагрузите или обновите принтер. msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Проверьте сеть и повторите попытку. Если не помогло, попробуйте " @@ -5395,8 +5402,8 @@ msgid "Failed to parse model information." msgstr "Не удалось обработать информацию о модели." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Файл .gcode.3mf не содержит данных G-кода. Используя Orca Slicer нарежьте " "его и экспортируйте в новый файл .gcode.3mf." @@ -5592,8 +5599,7 @@ msgid "Layer: %d/%d" msgstr "Слой: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" "Пожалуйста, перед загрузкой или выгрузкой прутка, нагрейте сопло до " "температуры выше 170°C." @@ -5604,7 +5610,7 @@ msgstr "Ещё выгружается" msgid "Still load" msgstr "Ещё загружается" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Пожалуйста, выберите слот АСПП перед калибровкой" msgid "" @@ -5653,9 +5659,6 @@ msgstr "Отправить" msgid "Please click on the star first." msgstr "Пожалуйста, сначала нажмите на звездочку." -msgid "InFo" -msgstr "Информация" - msgid "Get oss config failed." msgstr "" "Не удалось получить конфигурацию OSS.\n" @@ -5678,7 +5681,7 @@ msgstr " ошибка обработки конфигурации при отп msgid " No corresponding storage bucket\n" msgstr " Отсутствует хранилище данных\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " не удаётся открыть\n" msgid "" @@ -5704,7 +5707,7 @@ msgid "obtaining instance_id failed\n" msgstr "не удалось получить instance_id\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5718,7 +5721,7 @@ msgstr "сообщение об ошибке: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5726,7 +5729,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Некоторые из ваших изображений не удалось загрузить. Хотите перейти на " "страницу для выставления оценки?" @@ -5736,7 +5739,7 @@ msgstr "Допускается выбор до 16 изображений." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Для выставления положительной оценки (4 или 5 звезд) требуется хотя бы одна " "успешная запись о печати данным профилем печати." @@ -5781,7 +5784,7 @@ msgid "Newer 3mf version" msgstr "Новая версия 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "Версия этого 3mf файла сохранена в бета-версии приложения и она новее вашей " @@ -5897,7 +5900,7 @@ msgstr[2] "%1$d моделей окрашено." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "Загружена %1$d деталь, являющаяся частью разрезанной модели." msgstr[1] "Загружена %1$d детали, являющиеся частью разрезанной модели." msgstr[2] "Загружена %1$d деталей, являющиеся частью разрезанной модели." @@ -5923,7 +5926,7 @@ msgstr "Ошибка:" msgid "Warning:" msgstr "Предупреждение:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Успешно экспортировано." msgid "Model file downloaded." @@ -5941,10 +5944,10 @@ msgstr " Нажмите здесь, чтобы установить." msgid "WARNING:" msgstr "ПРЕДУПРЕЖДЕНИЕ:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Вашей модели необходима поддержка, включите её генерацию!" -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "Перекрытие пути G-кода" msgid "Support painting" @@ -6191,7 +6194,7 @@ msgstr "Вы хотите сохранить изменения в \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Размонтирование прошло успешно. Теперь устройство %s(%s) может быть " @@ -6251,8 +6254,8 @@ msgstr "Загрузка 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "Версия этого формата 3mf (%s) новее текущей версии %s (%s).\n" "Обнаружены следующие нераспознанные ключи:" @@ -6274,28 +6277,29 @@ msgstr "В файле 3mf найдены недопустимые значени msgid "Please correct them in the param tabs" msgstr "Пожалуйста, исправьте их на вкладках параметров" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "В профиле прутка или принтера этого 3mf файла содержится следующий " "модифицированный G-код:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Пожалуйста, подтвердите, что этот модифицированный G-код безопасен во " "избежание повреждения принтера!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "Модифицированный G-код" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "В этом 3mf файле содержаться следующие пользовательские профили прутка или " "принтера:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Во избежание повреждения принтера убедитесь, что G-код в этих профилях " @@ -6359,10 +6363,10 @@ msgid "The file does not contain any geometry data." msgstr "Файл не содержит никаких геометрических данных." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" -"Похоже, ваша модель слишком большая. \n" +"Похоже, ваша модель слишком большая.\n" "Хотите автоматически уменьшить её масштаб, \n" "чтобы она уместилась на столе?" @@ -6400,8 +6404,8 @@ msgid "" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed." msgstr "" -"Вы пытаетесь удалить деталь, являющейся частью разрезанной модели. \n" -"Это действие приведёт к удалению информации о разрезе. \n" +"Вы пытаетесь удалить деталь, являющейся частью разрезанной модели.\n" +"Это действие приведёт к удалению информации о разрезе.\n" "После этого согласованность модели не может быть гарантирована." msgid "The selected object couldn't be split." @@ -6468,14 +6472,16 @@ msgstr "Сетевой плагин не обнаружен. Функции, с msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Режим только предпросмотра:\n" "Загруженный файл содержит только G-код, поэтому переход на страницу " "«Подготовка» невозможен." msgid "You can keep the modified presets to the new project or discard them" -msgstr "Изменённые профили можно сохранить в новом проекте или отказаться." +msgstr "" +"Вы можете перенести сделанные изменения в новый проект или отказаться от их " +"сохранения." msgid "Creating a new project" msgstr "Создание нового проекта" @@ -6504,7 +6510,7 @@ msgstr "подготовка 3mf файла..." msgid "Download failed, unknown file format." msgstr "Не удалось загрузить, неизвестный формат файла." -msgid "downloading project ..." +msgid "downloading project..." msgstr "скачивание проекта..." msgid "Download failed, File size exception." @@ -6522,17 +6528,21 @@ msgstr "" "вручную." msgid "INFO:" -msgstr "" +msgstr "Информация:" msgid "" "No accelerations provided for calibration. Use default acceleration value " msgstr "" +"Не заданы ускорения для калибровки. Использовать значение ускорения по " +"умолчанию " msgid "mm/s²" msgstr "мм/с²" msgid "No speeds provided for calibration. Use default optimal speed " msgstr "" +"Не заданы скорости для калибровки. Использовать оптимальную скорость по " +"умолчанию " msgid "mm/s" msgstr "мм/с" @@ -6543,7 +6553,7 @@ msgstr "Импорт SLA архива" msgid "The selected file" msgstr "В выбранном файле" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "не содержится правильного G-кода." msgid "Error occurs while loading G-code file" @@ -6585,10 +6595,10 @@ msgstr "Одновременно можно открыть только один msgid "G-code loading" msgstr "Загрузка G-кода" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Одновременная загрузка файла G-кода и модели невозможна!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "В режиме предпросмотра добавление моделей недоступно!" msgid "All objects will be removed, continue?" @@ -6596,7 +6606,7 @@ msgstr "Все модели будут удалены, продолжить?" msgid "The current project has unsaved changes, save it before continue?" msgstr "" -"В текущем проекте имеются несохранённые изменения. \n" +"В текущем проекте имеются несохранённые изменения.\n" "Сохранить их перед продолжением?" msgid "Number of copies:" @@ -6754,8 +6764,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Не рекомендуется использовать печатную пластину %d (%s) для печати прутком " @@ -6921,17 +6931,20 @@ msgid "Use free camera" msgstr "Использовать свободную камеру" msgid "If enabled, use free camera. If not enabled, use constrained camera." -msgstr "" -"Если включено, используется свободное вращение камеры. Если выключено, " +msgstr "Если включено, используется свободное вращение камеры. Если выключено, " "используется вращение камера с ограничениями." +msgid "Swap pan and rotate mouse buttons" +msgstr "Поменять местами кнопки панорамирования и вращения мыши" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Если включено, меняет местами функции панорамирования и поворота левой и правой кнопок мыши." + msgid "Reverse mouse zoom" msgstr "Инвертировать управление масштабом" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" -"Если включено, направление масштабирования с помощью колесика мыши будет " -"инвертировано." +msgstr "Если включено, направление масштабирования с помощью колесика мыши будет инвертировано." msgid "Show splash screen" msgstr "Показывать заставку при запуске программы" @@ -6943,46 +6956,37 @@ msgid "Show \"Tip of the day\" notification after start" msgstr "Показывать уведомление с полезным советом при запуске приложения" msgid "If enabled, useful hints are displayed at startup." -msgstr "" -"Если включено, будут показываться уведомления с полезном советом при запуске " -"приложения." +msgstr "Если включено, будут показываться уведомления с полезном советом при запуске приложения." msgid "Flushing volumes: Auto-calculate every time the color changed." msgstr "Объём очистки: автопересчёт при каждом изменении цвета" msgid "If enabled, auto-calculate every time the color changed." -msgstr "" -"Если включено, выполняется автоматический перерасчёт объёма очистки при " +msgstr "Если включено, выполняется автоматический перерасчёт объёма очистки при " "каждом изменении цвета." -msgid "" -"Flushing volumes: Auto-calculate every time when the filament is changed." +msgid "Flushing volumes: Auto-calculate every time when the filament is changed." msgstr "Объём очистки: автопересчёт при каждой смене прутка" msgid "If enabled, auto-calculate every time when filament is changed" -msgstr "" -"Если включено, выполняется автоматический перерасчёт объёма очистки при " +msgstr "Если включено, выполняется автоматический перерасчёт объёма очистки при " "каждой смене прутка." msgid "Remember printer configuration" msgstr "Запоминать конфигурацию принтера" -msgid "" -"If enabled, Orca will remember and switch filament/process configuration for " +msgid "If enabled, Orca will remember and switch filament/process configuration for " "each printer automatically." -msgstr "" -"Если включено, программа будет запоминать связь выбранного профиля принтера " +msgstr "Если включено, программа будет запоминать связь выбранного профиля принтера " "с профилем пластиковой нити и процессом печати, выставленными вами в " "последний раз." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "Управление несколькими принтерами (требуется перезапуск программы)" -msgid "" -"With this option enabled, you can send a task to multiple devices at the " +msgid "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." -msgstr "" -"Если включено, вы сможете управлять несколькими устройствами и отправлять " +msgstr "Если включено, вы сможете управлять несколькими устройствами и отправлять " "задания на печать на несколько устройств одновременно." msgid "Auto arrange plate after cloning" @@ -6994,7 +6998,7 @@ msgstr "Авторасстановка моделей на печатной пл msgid "Network" msgstr "Сеть" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Автосинхронизация пользовательских профилей (принтера/прутка/процесса)" msgid "User Sync" @@ -7083,7 +7087,7 @@ msgstr "" "при запросе о несохранённых \n" "изменениях в проекте." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Отключить предупреждения при загрузке 3MF с модифицированным G-кодом" msgid "Auto-Backup" @@ -7200,10 +7204,10 @@ msgstr "кнопка сохранения отладки" msgid "save debug settings" msgstr "Сохранить настройки отладки" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Настройки отладки успешно сохранены!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Смена облачной среды, пройдите повторную аутентификацию!" msgid "System presets" @@ -7218,10 +7222,10 @@ msgstr "Несовместимые профили" msgid "AMS filaments" msgstr "Прутки АСПП" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Нажмите, чтобы выбрать цвет нити" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Пожалуйста, выберите цвет прутка" msgid "Add/Remove presets" @@ -7239,7 +7243,7 @@ msgstr "Добавить/удалить пруток" msgid "Add/Remove materials" msgstr "Добавить/удалить материал" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Выбор/удаление принтеров (системные профили)" msgid "Create printer" @@ -7314,7 +7318,7 @@ msgstr "Отправка 3mf" msgid "Jump to model publish web page" msgstr "Перейти на веб-страницу публикации модели" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Примечание: подготовка может занять несколько минут. Пожалуйста, наберитесь " "терпения." @@ -7322,7 +7326,7 @@ msgstr "" msgid "Publish" msgstr "Опубликовать" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Публикация была отменена" msgid "Slicing Plate 1" @@ -7347,7 +7351,7 @@ msgstr "Внутрипроектный профиль" msgid "Name is unavailable." msgstr "Имя недоступно." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Перезапись системного профиля запрещена" #, boost-format @@ -7355,10 +7359,12 @@ msgid "Preset \"%1%\" already exists." msgstr "Профиль \"%1%\" уже существует." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "Профиль \"%1%\" уже существует и несовместим с текущим принтером." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "" "Обратите внимание, что при сохранении произойдёт замена текущего профиля." @@ -7583,7 +7589,7 @@ msgid "Please check the following:" msgstr "Пожалуйста, проверьте следующую информацию:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7618,7 +7624,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Печать высокотемпературным материалом (%s) с %s может привести к повреждению " @@ -7734,7 +7740,7 @@ msgstr "Не удалось выполнить вход в систему. По msgid "Log in printer" msgstr "Войти в принтер" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Войти в этот принтер с текущей учётной записью?" msgid "Check the reason" @@ -7747,10 +7753,10 @@ msgid "Terms and Conditions" msgstr "Условия использования" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Благодарим вас за покупку устройства Bambu Lab. Перед использованием " @@ -7780,7 +7786,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7837,7 +7843,7 @@ msgstr "" "Нажмите, чтобы сбросить все настройки до последнего сохраненного профиля." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Для плавного таймлапса требуется черновая башня. На модели без использования " @@ -7845,7 +7851,7 @@ msgstr "" "башню?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "Для плавного таймлапса требуется черновая башня. На модели без использования " @@ -7855,7 +7861,7 @@ msgid "Still print by object?" msgstr "Продолжить печать по очереди?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7868,11 +7874,11 @@ msgstr "" "отключение независимой высоты слоя поддержки." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Изменить эти настройки автоматически? \n" +"Изменить эти настройки автоматически?\n" "Да - Изменить эти настройки автоматически\n" "Нет - Не изменять эти настройки" @@ -7897,13 +7903,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "Высота слоя не может превышать ограничения установленные в настройках " "принтера -> Экструдер -> Ограничение высоты слоя. Это может вызвать проблемы " "с качеством печати." -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "Автоматически подстроиться под заданный в настройках диапазон?\n" msgid "Adjust" @@ -7914,8 +7920,8 @@ msgstr "Игнорировать" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Экспериментальная функция. Втягивание и обрезка пластиковой нити на большем " @@ -7925,9 +7931,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Экспериментальная функция. Втягивание и обрезка пластиковой нити на большем " "расстоянии во время её замены для минимизации очистки. Хотя это значительно " @@ -7942,7 +7948,7 @@ msgid "" "Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" "При записи таймлапса без видимости головы рекомендуется добавить «Черновая " -"башня таймлапса». \n" +"башня таймлапса».\n" "Щёлкните правой кнопкой мыши на пустом месте стола и выберите «Добавить " "примитив» -> «Черновая башня таймлапса»." @@ -8185,8 +8191,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Не нагрев. пластина (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Температура стола при установленной не нагреваемой пластине. 0 означает, что " "пластиковая нить не поддерживает печать на этой печатной пластине." @@ -8195,29 +8201,29 @@ msgid "Cool Plate" msgstr "Не нагреваемая пластина" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Температура стола при установленной не нагреваемой пластине. 0 означает, что " "пластиковая нить не поддерживает печать на этой печатной пластине." -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "Не нагреваемая текстур. пластина Bambu" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Температура стола при установленной не нагреваемой текстурированной пластине " "Bambu. 0 означает, что пластиковая нить не поддерживает печать на этой " "печатной пластине." -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "Инженерная пластина" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Температура стола при установленной инженерной печатной пластине. 0 " "означает, что пластиковая нить не поддерживает печать на этой печатной " @@ -8227,9 +8233,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Гладкая PEI/высокотемп. пластина" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Температура стола при установленной гладкой PEI/высокотемпературный печатной " "пластине. 0 означает, что пластиковая нить не поддерживает печать на этой " @@ -8239,8 +8245,8 @@ msgid "Textured PEI Plate" msgstr "Текстурированная PEI пластина" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Температура стола при установленной текстурированной пластите с PEI " "покрытием. 0 означает, что пластиковая нить не поддерживает печать на этой " @@ -8304,14 +8310,14 @@ msgstr "Завершающий G-код прутка" msgid "Wipe tower parameters" msgstr "Параметры черновой башни" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "" "Параметры смены инструмента в одноэкструдерных мультиматериальных принтерах" msgid "Ramming settings" msgstr "Настройки рэмминга" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" "Параметры смены инструмента в многоэкструдерных мультиматериальных принтерах" @@ -8324,7 +8330,7 @@ msgstr "Зависимости профиля" msgid "Printable space" msgstr "Область печати" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Указано недопустимое значение параметра %1%: %2%" @@ -8347,7 +8353,7 @@ msgstr "Адаптивная сетка стола" msgid "Accessory" msgstr "Аксессуары" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-код принтера" msgid "Machine start G-code" @@ -8365,7 +8371,7 @@ msgstr "G-код перед сменой слоя" msgid "Layer change G-code" msgstr "G-код после смены слоя" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "G-код таймлапса" msgid "Change filament G-code" @@ -8463,7 +8469,7 @@ msgstr "" "профилей прутка -%d шт. и профилей процесса печати - %d шт.\n" "При удалении принтера эти профили так же будут удалены." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "Профили на которых основаны другие профили не могут быть удалены!" msgid "The following presets inherit this preset." @@ -8484,11 +8490,11 @@ msgstr[1] "Следующие профили также будут удален msgstr[2] "Следующие профили также будут удалены." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Вы уверены, что хотите удалить выбранный профиль? \n" +"Вы уверены, что хотите удалить выбранный профиль?\n" "Если этот профиль используется в данный момент в вашем принтере, пожалуйста, " "сбросьте информацию о прутке для этого слота." @@ -8608,7 +8614,7 @@ msgid "" msgstr "" "\n" "Вы можете сохранить сделанные изменения или отказаться от их сохранения. Или " -"же перенести их в новый выбранный профиль." +"же перенести их в новый созданный профиль." msgid "You have previously modified your settings." msgstr "Ранее вы изменили свои настройки." @@ -8620,7 +8626,7 @@ msgid "" msgstr "" "\n" "Вы можете отказаться от сохранения изменений сделанных в профиле или же " -"перенести их в новый выбранный профиль." +"перенести их в новый созданный профиль." msgid "Extruders count" msgstr "Количество экструдеров" @@ -8702,7 +8708,7 @@ msgstr "Доступна новая версия" msgid "Configuration update" msgstr "Обновление профиля" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Доступен новый пакет профилей. Установить его?" msgid "Description:" @@ -8711,13 +8717,13 @@ msgstr "Описание:" msgid "Configuration incompatible" msgstr "Несовместимый профиль" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "пакет профилей несовместим с текущим приложением." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Пакет профилей несовместим с текущим приложением.\n" "%s обновит пакет профилей, иначе он не сможет запуститься." @@ -8726,7 +8732,7 @@ msgstr "" msgid "Exit %s" msgstr "Выйти из %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "пакет профилей несовместим с текущим приложением." msgid "Configuration updates" @@ -8785,18 +8791,18 @@ msgid "Map Filament" msgstr "Выбранные цвета" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Примечание: цвета уже выбраны, вы можете нажать «OK» \n" -" для продолжения или подобрать его вручную." +"для продолжения или подобрать его вручную." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Предупреждение: количество новых \n" -" и текущих экструдеров превышает 16." +"и текущих экструдеров превышает 16." msgid "Ramming customization" msgstr "Настройки рэмминга" @@ -8919,7 +8925,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "В вашей системе отсутствуют кодеки H.264 для GStreamer, которые необходимы " @@ -8992,13 +8998,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Автоориентация выбранных или всех моделей. Если выбраны отдельные модели, " "ориентация будет применена только к ним; в противном случае ко всем моделям " -"на текущем столе." +"в текущем проекте." + +msgid "Auto orients all objects on the active plate." +msgstr "Автоориентация ко всем моделям на текущем столе." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -9108,18 +9117,30 @@ msgstr "Гизмо вращения" msgid "Gizmo cut" msgstr "Гизмо разреза" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "Гизмо поверхностью на стол" +msgid "Gizmo mesh boolean" +msgstr "Гизмо Булевы операции" + msgid "Gizmo SLA support points" msgstr "Гизмо точки SLA поддержки" msgid "Gizmo FDM paint-on seam" msgstr "Гизмо рисования шва (FDM)" -msgid "Gizmo Text emboss / engrave" +msgid "Gizmo text emboss/engrave" msgstr "Гизмо рельефного/выгравированного текста" +msgid "Gizmo measure" +msgstr "Гизмо измерения" + +msgid "Gizmo assemble" +msgstr "Гизмо собрать" + +msgid "Gizmo brim ears" +msgstr "Гизмо уши границы" + msgid "Zoom in" msgstr "Приблизить" @@ -9159,8 +9180,8 @@ msgstr "Гизмо" msgid "Set extruder number for the objects and parts" msgstr "Задать номер экструдера для моделей/частей" -msgid "Delete objects, parts, modifiers " -msgstr "Удаление моделей, частей, модификаторов " +msgid "Delete objects, parts, modifiers" +msgstr "Удаление моделей, частей, модификаторов" msgid "Select the object/part and press space to change the name" msgstr "Выберите модель/часть и нажмите пробел, чтобы изменить имя" @@ -9190,7 +9211,7 @@ msgid "On/Off one layer mode of the vertical slider" msgstr "" "Включение/Отключение функции «Режим одного слоя» у вертикального ползунка" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "Показать/скрыть окно отображения G-кода" msgid "Move slider 5x faster" @@ -9209,7 +9230,7 @@ msgid "Release Note" msgstr "Информация о версии" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "Информация об обновлении версии %s:" msgid "Network plug-in update" @@ -9221,7 +9242,7 @@ msgstr "" "Нажмите OK, чтобы обновить сетевой плагин при следующем запуске Orca Slicer." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Доступен новый сетевой плагин (%s). Хотите установить?" msgid "New version of Orca Slicer" @@ -9239,10 +9260,10 @@ msgstr "Продолжить" msgid "Resume Printing" msgstr "Возобновить печать" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Возобновить печать (допустимы дефекты)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Возобновить печать (проблема решена)" msgid "Stop Printing" @@ -9374,10 +9395,10 @@ msgstr "Последняя версия" msgid "Updating" msgstr "Обновление" -msgid "Updating failed" +msgid "Update failed" msgstr "Сбой при обновлении" -msgid "Updating successful" +msgid "Update successful" msgstr "Обновление успешно выполнено" msgid "" @@ -9506,7 +9527,7 @@ msgstr "" "экструдера). Убедитесь, что не произойдёт столкновения." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Не удалось сгенерировать G-код из-за недопустимого пользовательского G-" @@ -9558,7 +9579,7 @@ msgid "Multiple" msgstr "Множитель" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Не удалось вычислить ширину линии %1%. Не удается получить значение \"%2%\". " @@ -9702,9 +9723,9 @@ msgstr "" "столкновению.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Не допускается совместная печать несколькими материалами, имеющими большую " "разницу в температуре печати. Это может привести к засорению и повреждению " @@ -9805,26 +9826,29 @@ msgstr "" "Черновой башни не поддерживается, когда включена функция переменной высоты " "слоя. Требуется, чтобы все модели имели одинаковую высоту слоя." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Для черновой башни требуется, чтобы зазор поддержки был кратен высоте слоя." -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "Для использования черновой башни требуется, чтобы у всех моделей была " "одинаковая высота слоя." msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Для черновой башни требуется, чтобы все модели были напечатаны на одинаковом " "количестве слоёв подложки." msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" +"Режим черновой башни применим для нескольких моделей только в том случае, " +"если они печатаются с одинаковым зазором поддержки сверху." msgid "" "The prime tower requires that all objects are sliced with the same layer " @@ -9835,7 +9859,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "Для черновой башни требуется, чтобы все модели имели одинаковую переменную " "высоту слоя." @@ -9843,6 +9867,8 @@ msgstr "" msgid "" "One or more object were assigned an extruder that the printer does not have." msgstr "" +"Для одного или нескольких моделей был назначен экструдер, который у принтера " +"отсутствует." msgid "Too small line width" msgstr "Слишком маленькая ширина экструзии" @@ -9850,12 +9876,17 @@ msgstr "Слишком маленькая ширина экструзии" msgid "Too large line width" msgstr "Слишком большая ширина экструзии" +# ??? (support_filament == 0 или support_interface_filament == 0) msgid "" "Printing with multiple extruders of differing nozzle diameters. If support " "is to be printed with the current filament (support_filament == 0 or " "support_interface_filament == 0), all nozzles have to be of the same " "diameter." msgstr "" +"Печать несколькими экструдерами с разными диаметрами сопел. Если поддержка " +"должна быть напечатана текущим прутком («Пруток базовой поддержки/подложки» " +"= 0 или «Пруток связующего слоя поддержки/подложки» = 0), все сопла должны " +"быть одинакового диаметра." msgid "" "The prime tower requires that support has the same layer height with object." @@ -9890,7 +9921,7 @@ msgstr "" "Используется принудительная поддержка, но её генерация не включена. " "Пожалуйста, включите генерацию поддержки в настройках слайсера." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Высота слоя не может быть больше диаметра сопла" msgid "" @@ -9969,7 +10000,7 @@ msgstr "" "Значение ускорения перемещения превышает значение заданное в настройках " "принтера (machine_max_acceleration_travel).\n" "Программа автоматически ограничит это ускорение, чтобы оно не превышало " -"возможности принтера. \n" +"возможности принтера.\n" "Если хотите получить более высокие скорости, вы можете изменить это значение " "в настройках принтера (вкладка «Ограничение принтера»)." @@ -10021,8 +10052,8 @@ msgid "Elephant foot compensation" msgstr "Компенсация «слоновьей ноги»" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Уменьшение первого слоя в плоскости XY на заданное значение, чтобы " "компенсировать эффект слоновьей ноги." @@ -10045,7 +10076,7 @@ msgstr "слой(-я)" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Высота каждого слоя. Чем меньше значение, тем лучше качество, но требуется " "больше времени для печати, и наоборот." @@ -10053,14 +10084,14 @@ msgstr "" msgid "Printable height" msgstr "Высота печати" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "Максимальная высота печати, которая ограничена механикой принтера." msgid "Preferred orientation" msgstr "Предпочтительная ориентация" # Автоориентация stl файлов по оси Z при первоначальном импорте. -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "Автоориентация моделей относительно оси Z при первоначальном импорте." msgid "Printer preset names" @@ -10069,7 +10100,7 @@ msgstr "Имена профиля принтера" msgid "Use 3rd-party print host" msgstr "Использовать сторонний хост печати" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "Позволяет управлять принтером BambuLab через сторонние хосты печати." msgid "Hostname, IP or URL" @@ -10092,7 +10123,7 @@ msgid "Device UI" msgstr "URL-адрес хоста" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Укажите URL-адрес пользовательского интерфейса вашего устройства, если он не " "совпадает с print_host" @@ -10107,7 +10138,7 @@ msgstr "" "Orca Slicer может загружать файл G-кода на хост принтера. Это поле должно " "содержать API ключ или пароль, необходимые для проверки подлинности." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Название принтера" msgid "HTTPS CA File" @@ -10140,7 +10171,7 @@ msgstr "" "автономности точек распространения. Можно включить эту опцию для " "самоподписанных сертификатов в случае сбоя подключения." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Имена профилей, связанных с физическим принтером" msgid "Authorization Type" @@ -10152,22 +10183,23 @@ msgstr "API-ключ" msgid "HTTP digest" msgstr "HTTP digest-авторизация" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Избегать пересечения периметров" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" -"Объезжать и избегать пересечения периметров, для предотвращения образования " +"Объезжать и избегать пересечения периметров для предотвращения образования " "дефектов на поверхности модели." -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Максимальная длина обхода" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Максимальное расстояние обхода сопла от модели во избежание пересечения " "периметров при движении. Если расстояние обхода превышает это значение, то " @@ -10182,8 +10214,8 @@ msgid "Other layers" msgstr "Последующие слои" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Температура стола для всех слоёв, кроме первого. 0 означает, что пластиковая " "нить не поддерживает печать на этой печатной пластине." @@ -10192,29 +10224,29 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Температура стола для всех слоёв, кроме первого. 0 означает, что пластиковая " "нить не поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Температура стола для всех слоёв, кроме первого. 0 означает, что пластиковая " "нить не поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Температура стола для всех слоёв, кроме первого. 0 означает, что пластиковая " "нить не поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Температура стола для всех слоёв, кроме первого. 0 означает, что пластиковая " "нить не поддерживает печать на этой печатной пластине." @@ -10226,62 +10258,56 @@ msgid "Initial layer bed temperature" msgstr "Температура стола для первого слоя" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Температура стола для первого слоя. 0 означает, что пластиковая нить не " "поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Температура стола для первого слоя. 0 означает, что пластиковая нить не " "поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Температура стола для первого слоя. 0 означает, что пластиковая нить не " "поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Температура стола для первого слоя. 0 означает, что пластиковая нить не " "поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Температура стола для первого слоя. 0 означает, что пластиковая нить не " "поддерживает печать на этой печатной пластине." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Температура стола для первого слоя. 0 означает, что пластиковая нить не " "поддерживает печать на этой печатной пластине." -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Типы столов, поддерживаемые принтером" msgid "Smooth Cool Plate" msgstr "Не нагреваемая гладкая пластина Bambu" -msgid "Engineering Plate" -msgstr "Инженерная пластина" - msgid "Smooth High Temp Plate" msgstr "Высокотемп. гладкая пластина" -msgid "Textured Cool Plate" -msgstr "Не нагреваемая текстур. пластина Bambu" - msgid "First layer print sequence" msgstr "Последовательность печати первого слоя" @@ -10295,7 +10321,7 @@ msgstr "Количество других слоёв при последоват msgid "Other layers filament sequence" msgstr "Последовательность прутков на других слоях" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "" "Команды в G-коде, которые выполняются каждый раз перед сменой слоя, то есть " "перед поднятием оси Z." @@ -10306,7 +10332,7 @@ msgstr "Сплошных слоёв снизу" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Количество сплошных слоёв при печати нижней поверхности модели, включая " "нижний поверхностный слой. Если толщина, рассчитанная с помощью этого " @@ -10321,7 +10347,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Минимальная толщина оболочки снизу в мм. Если толщина оболочки, рассчитанная " "по количеству сплошных слоёв снизу, меньше этого значения, количество " @@ -10345,22 +10371,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Включает заполнение щелей (пробелов) для выбранных сплошных поверхностей. " "Минимальной длиной пробела, который будет заполнен, можно управлять с " @@ -10376,7 +10402,7 @@ msgstr "" "Если хотите чтобы все заполнения щелей, в том числе сгенерированные " "классическим генератором периметров, были удалены (т.е. не печатались), " "установите высокое значение параметра «Игнорировать небольшие щели», " -"например, 999999. \n" +"например, 999999.\n" "\n" "Однако это не рекомендуется, так как заполнение щелей между периметрами " "делает модель прочнее. Если слишком много заполнений появляется между " @@ -10507,9 +10533,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10533,8 +10559,8 @@ msgstr "Коэффициент потока мостов" # ???1 msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10576,7 +10602,7 @@ msgstr "Коэффициент потока на верхней поверхно # ???1 msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10594,7 +10620,7 @@ msgstr "Коэффициент потока на нижней поверхнос # ???1 msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10620,8 +10646,8 @@ msgid "Only one wall on top surfaces" msgstr "Только один периметр на верхней поверхности" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Печатать только один периметр на верхней поверхности, чтобы оставить больше " "пространства для верхнего шаблона заполнения." @@ -10655,7 +10681,7 @@ msgstr "Только один периметр на первом слое" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Печатать только один периметр на первом слое, чтобы оставить больше " "пространства для нижнего шаблона заполнения." @@ -10668,8 +10694,7 @@ msgid "" "bridges cannot be anchored." msgstr "" "Создание дополнительных дорожек по периметру над крутыми нависаниями и " -"участками, где мосты не могут быть закреплены. Это повышает вероятность " -"успешной печати сложных участков без поддержки." +"участками, где мосты не могут быть закреплены." # ??? Реверс на чётных слоях нависаний msgid "Reverse on even" @@ -10696,7 +10721,7 @@ msgid "Reverse only internal perimeters" msgstr "Реверс только для внутренних периметров" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10730,12 +10755,12 @@ msgstr "Мост для зенкованных отверстий" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Эта опция создаёт мосты для отверстий с зенковкой, позволяя печатать их без " -"поддержки. \n" +"поддержки.\n" "\n" "Опции:\n" "1. Нет (т.е. отключено)\n" @@ -10775,13 +10800,13 @@ msgstr "" msgid "Classic mode" msgstr "Классический режим" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Включите эту опцию для использования классического режима." msgid "Slow down for overhang" msgstr "Замедляться на нависаниях" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "Включение динамического управления скоростью печати нависаний." msgid "Slow down for curled perimeters" @@ -10791,11 +10816,11 @@ msgstr "Замедляться на изогнутых периметрах" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10834,7 +10859,7 @@ msgstr "Внешние" # ??? msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10862,7 +10887,7 @@ msgstr "" msgid "Brim width" msgstr "Ширина каймы" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Расстояние от модели до внешней линии каймы." msgid "Brim type" @@ -10884,7 +10909,7 @@ msgstr "Смещение каймы" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "Смещение каймы от печатаемой модели, может облегчить её удаление." msgid "Brim ears" @@ -10897,8 +10922,8 @@ msgid "Brim ear max angle" msgstr "Максимальный угол ушек каймы" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Максимальный угол, при котором печатается ушко каймы.\n" @@ -10911,7 +10936,7 @@ msgstr "Радиус обнаружения ушек каймы" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "Геометрия модели будет упрощена перед обнаружением острых углов. Этот " "параметр задаёт минимальную длину отклонения для её упрощения.\n" @@ -10960,7 +10985,7 @@ msgstr "" "только с профилями печати, у которых указана высота слоя более 0.2 мм, то " "напишите: 'layer_height>0.2'." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Выбор последовательности печати моделей - одновременно или по очереди." msgid "By layer" @@ -10973,7 +10998,7 @@ msgstr "По очереди" msgid "Intra-layer order" msgstr "Порядок печати слоёв" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Последовательность печати слоёв в пределах одного слоя." msgid "As object list" @@ -10986,7 +11011,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Включите эту опцию для разрешения замедления скорости печати в зависимости " "от времени печати слоя, чтобы слой мог охлаждаться дольше. Это позволяет " @@ -10997,14 +11022,14 @@ msgstr "Ускорение по умолчанию" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Ускорение по умолчанию для обычной печати и перемещения, кроме первого слоя." msgid "Default filament profile" msgstr "Профиль прутка по умолчанию" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "" "Профиль пластиковой нити по умолчанию при переключении на этот профиль " "принтера." @@ -11012,7 +11037,7 @@ msgstr "" msgid "Default process profile" msgstr "Профиль процесса по умолчанию" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "" "Профиль процесса по умолчанию при переключении на этот профиль принтера." @@ -11028,21 +11053,21 @@ msgid "Fan speed" msgstr "Скорость вентилятора" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Скорость вытяжного вентилятора во время печати. Эта скорость переопределяет " "скорость в пользовательском G-коде прутка." -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Скорость вытяжного вентилятора после завершения печати" msgid "No cooling for the first" msgstr "Не включать вентилятор на первых" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Количество слоёв, начиная с первого, на которых всем вентиляторам запрещено " "включаться, чтобы не ухудшить адгезию к столу." @@ -11051,8 +11076,8 @@ msgid "Don't support bridges" msgstr "Не печатать поддержки под мостами" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Опция, препятствующая печати поддержки под мостами. Мост обычно можно " "печатать без поддержки, если он не очень длинный." @@ -11101,20 +11126,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11164,39 +11189,32 @@ msgstr "Для всех мостов" msgid "Filter out small internal bridges" msgstr "Отфильтровать небольшие внутренние мосты (beta)" -# ???? +#, fuzzy msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Эта опция может помочь уменьшить образование эффекта «дырявой подушки» на " "верхних сильно наклонных поверхностях или изогнутых моделях.\n" -"\n" "По умолчанию, маленькие внутренние мосты отфильтровываются, а внутреннее " "сплошное заполнение печатается непосредственно поверх разреженного " "заполнения. В большинстве случаев это хорошо работает, ускоряя печать без " @@ -11204,17 +11222,13 @@ msgstr "" "поверхностях или изогнутых моделях, особенно при низкой плотности " "заполнения, это может привести к скручиванию неподдерживаемого сплошного " "заполнения и образованию эффекта «дырявой подушки».\n" -"\n" "Отключение позволит печатать слой внутреннего моста над слабо поддерживаемым " "внутренним сплошным заполнением. Приведённые ниже параметры управляют " "степенью фильтрации, т.е. количеством создаваемых внутренних мостов.\n" -"\n" "Фильтрация включена по умолчанию и хорошо работает в большинстве случаев.\n" -"\n" "Ограниченная фильтрация - создаёт внутренние мосты на сильно наклонных " "поверхностях, при этом избегая создания ненужных внутренних мостов. Это " "хорошо работает на большинстве сложных моделях.\n" -"\n" "Без фильтрации - мосты создаются над каждым потенциально внутреннем " "нависании. Этот вариант полезен для моделей с сильно наклонной верхней " "поверхностью. Однако в большинстве случаев этот вариант создаёт слишком " @@ -11244,20 +11258,20 @@ msgstr "" msgid "End G-code" msgstr "Завершающий G-код" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Команды в G-коде, которые выполняются в самом конце печати." -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "G-код между моделями" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Команды в G-коде, которые выполняются каждый раз перед сменой модели. " "Действует только при печати моделей «По очереди»." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "" "Команды в G-коде, которые выполняются при окончании печатью этой пластиковой " "нитью." @@ -11297,7 +11311,7 @@ msgstr "Умеренное" msgid "Top surface pattern" msgstr "Шаблон заполнения верхней поверхности" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Шаблон заполнения верхней поверхности." msgid "Concentric" @@ -11327,7 +11341,7 @@ msgstr "Спиральная октаграмма" msgid "Bottom surface pattern" msgstr "Шаблон заполнения нижней поверхности" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Шаблон заполнения нижней поверхности, кроме мостов." msgid "Internal solid infill pattern" @@ -11373,7 +11387,7 @@ msgid "Small perimeters threshold" msgstr "Порог маленьких периметров" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Пороговое значение длины маленьких периметров. Значение по умолчанию - 0 мм." @@ -11381,7 +11395,7 @@ msgid "Walls printing order" msgstr "Порядок печати периметров" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11395,7 +11409,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11418,7 +11432,7 @@ msgstr "" "требуется минимум 3 периметра, так как сначала печатаются внутренние " "периметры, начиная с 3-го периметра, затем внешний периметр и, наконец, " "первый внутренний периметр. В большинстве случаев этот вариант рекомендуется " -"использовать вместо варианта «Внешний/Внутренний». \n" +"использовать вместо варианта «Внешний/Внутренний».\n" "\n" "Используйте порядок печати периметров «Внешний/Внутренний», чтобы получить " "то же качество внешних периметров и точность размеров, что и при " @@ -11588,7 +11602,7 @@ msgstr "" msgid "Extruder Color" msgstr "Цвет экструдера" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "" "Используется только в качестве визуальной помощи в пользовательском " "интерфейсе" @@ -11600,11 +11614,11 @@ msgid "Flow ratio" msgstr "Коэффициент потока модели" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Коэффициент пропорционального изменения величины потока подаваемого " "пластика. Рекомендуемый диапазон значений от 0,95 до 1,05.\n" @@ -11613,11 +11627,11 @@ msgstr "" # ???1 Конечная величина потока модели - это введённое здесь значение, умноженное на коэффициент потока прутка. msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11640,7 +11654,7 @@ msgstr "" "Включить Pressure advance (прогнозирование давления). Результат " "автокалибровки будет перезаписан после включения." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" "Pressure advance (прогнозирование давления) в прошивки Klipper, это одно и " "тоже что Linear advance в прошивке Marlin." @@ -11709,19 +11723,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Впишите через запятую наборы значений Pressure advance, объёмных скоростей " "потока (далее просто поток) и ускорений, при которых они были измерены. По " @@ -11736,7 +11749,7 @@ msgstr "" "каждого значения ускорения. Рекомендуется выполнить тест как минимум для " "скорости внешних периметров, скорости внутренних периметров и самой высокой " "скорости печати элементов в вашем профиле (обычно это разреженное или " -"сплошное заполнение). \n" +"сплошное заполнение).\n" "Затем выполните тесты для тех же скоростей при самых медленных и самых " "быстрых ускорениях печати, но не быстрее рекомендуемого максимального " "ускорения, указанного в конфиге Klipper-а.\n" @@ -11750,8 +11763,7 @@ msgstr "" "PA из более быстрого теста.\n" "3. Введите в текстовое поле здесь через запятую три значения - коэффициент " "Pressure advance, значения потока и ускорения. Впишите столько наборов " -"значений сколько считаете нужным и сохраните профиль прутка. \n" -"\n" +"значений сколько считаете нужным и сохраните профиль прутка." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Включить адаптивное Pressure advance на нависаниях (beta)" @@ -11771,9 +11783,9 @@ msgid "Pressure advance for bridges" msgstr "Коэф. Pressure advance для мостов" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -11797,8 +11809,9 @@ msgid "Keep fan always on" msgstr "Вентилятор включён всегда" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Если включено, вентилятор охлаждения модели никогда не будет останавливаться " "и будет работать на минимальной скорости, чтобы сократить частоту его " @@ -11811,24 +11824,20 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Если включено, то скорость печати внешних периметров не будет снижаться, " "чтобы уложиться в минимальное время печати слоя. Это особенно полезно при " "следующих сценариях:\n" -"\n" -"1. Чтобы при печати глянцевыми материалами избежать изменения блеска \n" +"1. Чтобы при печати глянцевыми материалами избежать изменения блеска\n" "2. Чтобы избежать появления небольших дефектов, которые возникают при " -"изменении скорости и выглядят как горизонтальные полосы \n" +"изменении скорости и выглядят как горизонтальные полосы\n" "3. Чтобы избежать печати на скоростях, при которых на внешних периметрах " -"возникают вертикальные артефакты (VFA)\n" -"\n" +"возникают вертикальные артефакты (VFA)" msgid "Layer time" msgstr "Время слоя" @@ -11836,7 +11845,7 @@ msgstr "Время слоя" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Вентилятор охлаждения моделей будет включён для слоёв, расчётное время " "которых меньше этого значения. Скорость вентилятора интерполируется между " @@ -11868,7 +11877,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Этот параметр определяет, какой объём материала может быть расплавлен и " "выдавлен в секунду. Скорость печати ограничена максимальным объёмным " @@ -11884,7 +11893,7 @@ msgstr "Время загрузки прутка" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Время загрузки новой пластиковой нити при её смене. Применяется для " "одноэкструдерных мультиматериальных принтеров. Для принтеров со сменой " @@ -11897,7 +11906,7 @@ msgstr "Время выгрузки прутка" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Время выгрузки старой пластиковой нити при её смене. Применяется для " "одноэкструдерных мультиматериальных принтеров. Для принтеров со сменой " @@ -11910,7 +11919,7 @@ msgstr "Время смены инструмента" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Время, необходимое для переключения инструмента. Обычно применяется для " "принтеров со сменой инструментов или многоинструментальных принтеров. Для " @@ -11918,8 +11927,8 @@ msgstr "" "необходимо только для отображения статистической информации." msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Диаметр пластиковой нити используется для расчёта экструзии, поэтому он " "важен и должен быть точным" @@ -11992,7 +12001,7 @@ msgid "Unloading speed" msgstr "Скорость выгрузки" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Скорость выгрузки прутка на черновую башню. (не влияет на начальную фазу " @@ -12009,8 +12018,8 @@ msgid "Delay after unloading" msgstr "Задержка после выгрузки" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Время ожидания после выгрузки прутка. Это может помочь вам легко сменить " @@ -12038,7 +12047,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Расстояние утрамбовки" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -12092,7 +12101,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Выполнять рэмминг при использовании многоинструментального принтера (т. е. " "когда в настройках принтера снят флажок «Одноэкструдерный ММ принтер»). При " @@ -12103,19 +12112,19 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Объём рэмминга многоинструментального принтера" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Объём рэмминга перед сменой инструмента." msgid "Multi-tool ramming flow" msgstr "Поток рэмминга многоинструментального принтера" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Поток рэмминга пластиковой нити перед сменой инструмента." msgid "Density" msgstr "Плотность" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "" "Плотность пластиковой нити. Это необходимо только для отображения " "статистической информации." @@ -12123,14 +12132,14 @@ msgstr "" msgid "g/cm³" msgstr "г/см³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Тип материала пластиковой нити." msgid "Soluble material" msgstr "Растворимый материал" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Растворимый материал обычно используется для печати поддержки и связующего " "слоя поддержки." @@ -12139,7 +12148,7 @@ msgid "Support material" msgstr "Поддержка" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "«Материал для поддержки» обычно используется для печати поддержки и " "связующего слоя поддержки." @@ -12149,8 +12158,8 @@ msgstr "Температура размягчения" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "При этой температуре материал размягчается, поэтому, когда температура стола " "равна или превышает её, настоятельно рекомендуется открыть переднюю дверцу и/" @@ -12159,7 +12168,7 @@ msgstr "" msgid "Price" msgstr "Стоимость" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "" "Стоимость пластиковой нити. Это необходимо только для отображения " "статистической информации." @@ -12170,7 +12179,7 @@ msgstr "цена/кг" msgid "Vendor" msgstr "Производитель" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "" "Производитель пластиковой нити. Это необходимо только для отображения " "статистической информации." @@ -12183,7 +12192,7 @@ msgstr "Угол разреженного заполнения" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Угол ориентации шаблона разреженного заполнения, который определяет начало " "или основное направление линий." @@ -12193,7 +12202,7 @@ msgstr "Угол сплошного заполнения" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Угол ориентации шаблона сплошного заполнения, который определяет начало или " "основное направление линий." @@ -12210,7 +12219,7 @@ msgstr "Плотность заполнения" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Плотность внутреннего заполнения, выраженная в процентах. 100% означает " "сплошное заполнение." @@ -12218,7 +12227,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Шаблон заполнения" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Шаблон разреженного заполнения." msgid "Grid" @@ -12291,7 +12300,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12319,7 +12328,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12327,30 +12336,30 @@ msgstr "" "ними больше, чем указано в этом параметре, то соединение не произойдет. " "Чтобы они всегда соединялись, выберите «Не ограничено». Параметр может задан " "в процентах от ширины линий заполнения. Установите значение равным 0, чтобы " -"полностью отключить привязки. \n" +"полностью отключить привязки.\n" "Если установить 0, то будет использоваться старый алгоритм для соединения " "заполнения, который даёт такой же результат, как и при значениях 1000 и 0." msgid "0 (Simple connect)" msgstr "0 (без привязок)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Ускорение на наружных периметрах." -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Ускорение на внутренних периметрах." -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Ускорение холостого перемещения." msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Ускорение на верхней поверхности. Использование меньшего значения может " "улучшить качество верхней поверхности." -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Ускорение на внешнем периметре. Использование более низкого значения может " "улучшить качество." @@ -12366,8 +12375,8 @@ msgid "mm/s² or %" msgstr "мм/с² или %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage " -"(e.g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." msgstr "" "Ускорение на разреженном заполнении. Если задано в процентах, то значение " "вычисляться относительно ускорения по умолчанию." @@ -12382,7 +12391,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Ускорение на первом слое. Использование более низкого значения может " "улучшить адгезию к столу." @@ -12390,7 +12399,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Вкл. ограничение ускорения зигзагов" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "" "Значение Klipper-а ограничение ускорения зигзагов (max_accel_to_decel) будет " "скорректировано автоматически.\n" @@ -12404,27 +12413,27 @@ msgstr "Ограничение ускорение зигзагов" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" "Значение Klipper-а ограничение ускорения зигзагов (max_accel_to_decel) будет " "скорректировано на данный процент ускорения." -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Рывок для внешних периметров." -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Рывок для внутренних периметров." -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Рывок для верхней поверхности." -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Рывок для заполнения." -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Рывок для первого слоя." -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Рывок при перемещении." msgid "" @@ -12439,24 +12448,24 @@ msgstr "Высота первого слоя" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Высота первого слоя. Незначительное увеличение толщины первого слоя может " "улучшить сцепление со столом." -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Скорость печати первого слоя, кроме сплошного заполнения." msgid "Initial layer infill" msgstr "Заполнение первого слоя" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Скорость печати сплошного заполнения на первом слое." msgid "Initial layer travel speed" msgstr "Скорость перемещения на первом слое" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Скорость перемещения на первом слое." msgid "Number of slow layers" @@ -12472,7 +12481,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Температура сопла на первом слое" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Температура сопла для печати первого слоя при использовании данной " "пластиковой нити." @@ -12511,7 +12520,7 @@ msgstr "Скорость вентилятора на связующем слое # ????? Установите значение -1, чтобы запретить переопределять этот параметр.???? msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12546,7 +12555,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Случайное дрожание сопла при печати внешнего периметра для создания эффекта " "шероховатой поверхности. Эта настройка определяет положение нечёткой " @@ -12566,7 +12575,7 @@ msgstr "Толщина нечёткой оболочки" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Величина амплитуды дрожания (т.е. в обои направления) измеряемая " "перпендикулярно печатаемому периметру. Желательно, чтобы она была меньше " @@ -12577,7 +12586,7 @@ msgstr "Расстояние между точками нечёткой обол msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Среднее расстояние между случайными точками, которые вносятся в каждый " "сегмент линии периметра. Уменьшение расстояния между точками нечёткой " @@ -12587,7 +12596,7 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "Нечёткая оболочки на первом слое" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Применять ли нечёткую оболочку к первому слою." msgid "Fuzzy skin noise type" @@ -12598,7 +12607,7 @@ msgstr "Тип нечёткой оболочки" # Гребни # Ячейки msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12675,14 +12684,12 @@ msgstr "" "Скорость затухания для более высоких октав когерентного шума. Более низкие " "значения приведут к сглаживанию шума." -# Или пробелы оставить??? msgid "Filter out tiny gaps" msgstr "Игнорировать небольшие щели" msgid "Layers and Perimeters" msgstr "Слои и периметры" -# ??? msgid "" "Don't print gap fill with a length is smaller than the threshold specified " "(in mm). This setting applies to top, bottom and solid infill and, if using " @@ -12695,7 +12702,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Скорость заполнения пробелов. Пробелы обычно имеют неравномерную ширину " "линии и должны печататься медленнее." @@ -12717,7 +12724,7 @@ msgstr "Аппроксимация дугами" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12728,7 +12735,7 @@ msgstr "" "Включите, если хотите чтобы программа пыталась заменить последовательности " "из коротких прямолинейных участков дугами (используя команды G2 и G3). " "Функция должна поддерживаться прошивкой принтера. Значение допуска " -"траектории такое же как разрешение G-кода. \n" +"траектории такое же как разрешение G-кода.\n" "\n" "Примечание: для устройств с прошивкой Klipper рекомендуется отключить эту " "опцию. Klipper не получает преимуществ от этой опции, поскольку прошивка " @@ -12739,7 +12746,8 @@ msgstr "" msgid "Add line number" msgstr "Добавить номер строки" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "При включении, в начало каждой строки G-кода, будет добавляться номер строки " "(Nx)." @@ -12749,7 +12757,7 @@ msgstr "Проверка первого слоя" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "При включении, камера принтера будет проверять качество печати первого слоя." @@ -12758,7 +12766,7 @@ msgstr "Тип сопла" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Материал сопла. Определяет абразивную стойкость сопла, а также то, каким " "материалом можно печатать." @@ -12790,7 +12798,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Кинематика принтера" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Конструкция физического принтера" msgid "CoreXY" @@ -12818,7 +12826,7 @@ msgid "" "command: M106 P2 S(0-255)." msgstr "" "Если в принтере имеет вспомогательный вентилятор для охлаждения моделей " -"(обычно это боковой вентилятор), можете включить эту опцию. \n" +"(обычно это боковой вентилятор), можете включить эту опцию.\n" "G-код команда: M106 P2 S(0-255)." msgid "" @@ -12826,10 +12834,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Запуск вентилятора на указанное количество секунд раньше целевого времени " @@ -12868,7 +12876,7 @@ msgstr "" msgid "Time cost" msgstr "Стоимость часа печати" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Стоимость часа работы принтера." msgid "money/h" @@ -12899,7 +12907,7 @@ msgstr "" msgid "G-code flavor" msgstr "Тип G-кода" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "Выбор типа G-кода совместимым с вашим принтером." msgid "Klipper" @@ -12908,7 +12916,7 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Гранульная модификация принтера" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Включите, если для печати вместо пластиковых нитей используются пластиковые " "гранулы." @@ -12916,14 +12924,14 @@ msgstr "" msgid "Support multi bed types" msgstr "Поддержка нескольких типов столов" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "Включите, если хотите использовать несколько типов столов." msgid "Label objects" msgstr "Помечать модели" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12939,7 +12947,7 @@ msgstr "" msgid "Exclude objects" msgstr "Исключение моделей" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" "Включите эту опцию, чтобы добавить команду EXCLUDE OBJECT (исключение " "моделей) в G-код для принтера с прошивкой Klipper." @@ -12964,14 +12972,14 @@ msgid "" "reduce time. Wall is still printed with original layer height." msgstr "" "Для сокращения времени печати есть возможность печатать заполнение не на " -"каждом слое, а на нескольких слоях сразу. \n" +"каждом слое, а на нескольких слоях сразу.\n" "Периметры по-прежнему печатаются с исходной высотой слоя." msgid "Infill combination - Max layer height" msgstr "Максимальная высота слоя (КЗ)" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12982,11 +12990,11 @@ msgid "" "Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " "(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Максимальная высота слоя для комбинированного разреженного заполнения. \n" +"Максимальная высота слоя для комбинированного разреженного заполнения.\n" "\n" "Установите 0 или 100%, чтобы использовать значение диаметра сопла (для " "максимального сокращения времени печати), или значение ~80% для увеличения " -"прочности разреженного заполнения. \n" +"прочности разреженного заполнения.\n" "\n" "Количество слоёв, для которых объединяется заполнение, получается путем " "деления этого значения на высоту слоя и округления до ближайшего десятичного " @@ -13031,21 +13039,21 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "Площадь верхнего сплошного заполнения немного увеличивается, чтобы перекрыть " "периметр для лучшего сцепления и минимизировать появление мелких отверстий в " "местах соединения верхнего заполнения с периметрами. Значение 25-30% " "является хорошей отправной точкой, минимизирующей появление таких отверстий." -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Скорость заполнения" msgid "Inherits profile" msgstr "Наследует профиль" -msgid "Name of parent profile" -msgstr "" +msgid "Name of parent profile." +msgstr "Имя родительского профиля" msgid "Interface shells" msgstr "Связующие оболочки" @@ -13053,7 +13061,7 @@ msgstr "Связующие оболочки" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Принудительное создание сплошных оболочек между смежными материалами/" "объёмами. Полезно для многоэкструдерной печати полупрозрачными материалами " @@ -13074,7 +13082,7 @@ msgstr "Глубина переплетения окрашенной облас msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Глубина взаимного переплетения окрашенной области с основной моделью. Это " @@ -13166,7 +13174,7 @@ msgstr "Все сплошные поверхности" msgid "Ironing Pattern" msgstr "Шаблон разглаживания" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Шаблон по которому будет производиться разглаживание." msgid "Ironing flow" @@ -13174,7 +13182,7 @@ msgstr "Поток" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Количество материала, которое необходимо выдавить во время разглаживания " "относительно потока при нормальной высоте слоя." @@ -13182,7 +13190,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Расстояние между линиями разглаживания" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Расстояние между линиями разглаживания." # ??? Граница без разглаживания @@ -13191,7 +13199,7 @@ msgstr "Границы разглаживания" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "Расстояние в мм между областью разглаживания и краем модели. При значении 0 " "это значение равно половине диаметра сопла." @@ -13199,7 +13207,7 @@ msgstr "" msgid "Ironing speed" msgstr "Скорость разглаживания" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Скорость разглаживания" msgid "Ironing angle" @@ -13212,7 +13220,7 @@ msgstr "" "Выбор угла разглаживания. Отрицательное число отключает эту функцию и " "использует метод по умолчанию." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Команды в G-коде, которые выполняются каждый раз после смены слоя, то есть " "после поднятия оси Z." @@ -13222,7 +13230,7 @@ msgstr "Поддержка тихого режима" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Поддержка тихого режима, в котором принтер использует более низкие ускорения " "печати для уменьшения уровня шума. Прошивка принтера должна поддерживать " @@ -13236,21 +13244,21 @@ msgstr "Ограничения принтера" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Если включено, ограничения принтера будут передаваться в файл G-кода.\n" "Если в качестве типа G-кода выбран Klipper опция будет игнорироваться." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Команды в G-коде, которые выполняются при ручной постановке печати на паузу. " "Пользователь может вставить его в окне предпросмотра нарезки, нажав правой " "кнопкой мыши на ползунок выбора слоя." # используется для пользовательского шаблона -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "" "Пользовательский шаблон команд, которые выполняются при ручной вставке этого " "G-кода в окне предпросмотра нарезки, нажав правой кнопкой мыши на ползунок " @@ -13259,7 +13267,7 @@ msgstr "" msgid "Small area flow compensation (beta)" msgstr "Компенсация потока небольших областей (beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Включение компенсации потока для небольших областей заполнения." msgid "Flow Compensation Model" @@ -13374,14 +13382,14 @@ msgstr "Максимальное ускорение отката (M204 R)" msgid "Maximum acceleration for travel" msgstr "Максимальное ускорение холостых перемещений" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" "Максимальное ускорение при перемещении без печати (M204 T), применяемое " "только для Marlin 2." msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Скорость вентилятора охлаждения моделей может быть увеличена, если включено " "автоматическое охлаждение. Это максимальное ограничение скорости вентилятора " @@ -13391,8 +13399,8 @@ msgid "Max" msgstr "Максимальная" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Это наибольшая высота печатаемого слоя для этого экструдера, которая " "используется для ограничения функции «Переменная высота слоёв»." @@ -13406,23 +13414,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13438,7 +13446,7 @@ msgstr "" "значения означают, что допускаются более высокие изменения скорости " "экструзии, что приводит к более быстрому переключению скоростей.\n" "\n" -"Значение 0 отключает эту функцию. \n" +"Значение 0 отключает эту функцию.\n" "\n" "Для высокоскоростных принтеров с высокопроизводительным директ-экструдером " "(например, Bambu lab или Voron) обычно не требуется использование данного " @@ -13467,17 +13475,17 @@ msgstr "Длина сглаживающего сегмента" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" "Меньшее значение приводит к более плавному изменению скорости экструзии. " "Однако это приводит к значительному увеличению размера G-код файла и " -"увеличению количества инструкций для обработки принтером. \n" +"увеличению количества инструкций для обработки принтером.\n" "\n" "Значение по умолчанию, равное 3, хорошо подходит для большинства случаев. " "Если принтер печатает с мини-фризами, увеличьте это значение, чтобы " @@ -13495,12 +13503,12 @@ msgid "" "not be visible to the user." msgstr "" "Сглаживание скорости экструзии будет применяться только к внешним периметрам " -"и нависаниям. \n" +"и нависаниям.\n" "Это помогает уменьшить количество артефактов, вызванные резкими перепадами " "скорости на видимых внешних участках, без влияния на скорость печати " "внутренних элементов, которые не видны пользователю." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Минимальная скорость вентилятора обдува модели." msgid "" @@ -13515,15 +13523,15 @@ msgstr "" "исключением первых нескольких слоёв, которые обычно настроены на работу без " "охлаждения.\n" "Пожалуйста, включите вспомогательный вентилятор для охлаждения моделей " -"(auxiliary_fan) в настройках принтера, чтобы использовать эту функцию. \n" +"(auxiliary_fan) в настройках принтера, чтобы использовать эту функцию.\n" "G-код команда: M106 P2 S(0-255)." msgid "Min" msgstr "Минимальная" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Это наименьшая высота печатаемого слоя для данного экструдера и в то же " "время нижний предел для функции «Переменная высота слоёв»." @@ -13566,7 +13574,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Объём сопла" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Объём сопла между резцом прутка и кончиком сопла." msgid "Cooling tube position" @@ -13613,7 +13621,7 @@ msgstr "Дополнительная длина загрузки" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Если установлено 0, то расстояние, которое проходит пруток при перемещении " @@ -13633,7 +13641,7 @@ msgstr "Уменьшать откат при заполнении" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Отключает откат, когда перемещения полностью совершаются в области " "заполнения (и, таким образом, любые подтёки скорее всего будут не заметны). " @@ -13650,7 +13658,7 @@ msgstr "" msgid "Filename format" msgstr "Формат имени файла" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "Пользователь может сам задать имя файла проекта при экспорте." msgid "Make overhangs printable" @@ -13676,7 +13684,7 @@ msgstr "Делать нависания отверстий пригодными msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Максимальная площадь отверстия в основании модели до его заполнения " "материалом конической геометрии. При 0 все отверстия в основании модели " @@ -13706,10 +13714,10 @@ msgstr "" "Ширина экструзии внутренних периметров. Если задано в процентах, то значение " "вычисляться относительно диаметра сопла." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Скорость печати внутренних периметров." -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Количество периметров на каждом слое модели." msgid "Alternate extra wall" @@ -13717,10 +13725,10 @@ msgstr "Чередующаяся дополнительная стенка" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -13767,7 +13775,7 @@ msgstr "Модификация принтера" msgid "Raft contact Z distance" msgstr "Зазор между подложкой и моделью" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Вертикальное расстояние между подложкой и моделью. Значение игнорируется при " "выборе растворимого материала." @@ -13775,13 +13783,13 @@ msgstr "" msgid "Raft expansion" msgstr "Расширение подложки" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Расширение всех слоёв подложки в плоскости XY." msgid "Initial layer density" msgstr "Плотность первого слоя" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "" "Плотность первого слоя поддержки или первого слоя подложки, если она " "включена." @@ -13789,7 +13797,7 @@ msgstr "" msgid "Initial layer expansion" msgstr "Расширение первого слоя" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Расширение первого слоя подложки или поддержки в плоскости XY для улучшения " "адгезии при печати материалами склонными к отлипанию и закручиванию." @@ -13799,16 +13807,16 @@ msgstr "Слоёв в подложке" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Параметр устанавливает высоту подложки в слоях, тем самым поднимая модель на " "заданное количество слоёв от стола. Используйте эту функцию, чтобы избежать " "деформации при печати ABS пластиком." msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Разрешение G-кода. Максимальное отклонение экспортируемых в G-код путей до и " "после упрощения. Для нарезки и предпросмотра G-кода с очень высоким " @@ -13823,7 +13831,7 @@ msgstr "Порог перемещения для отката" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Откат будет срабатывать только в том случае, если расстояние перемещения " "превысит этот порог." @@ -13832,7 +13840,7 @@ msgid "Retract amount before wipe" msgstr "Величина отката перед очисткой" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Длина быстрого отката перед очисткой, выраженная в процентах от общей длины " "отката." @@ -13840,7 +13848,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Откат при смене слоя" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Эта опция включает принудительный откат при переходе со слоя на слой." # ??? поверхности @@ -13849,9 +13857,9 @@ msgstr "Откат на верхнем слое" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" -"Эта опция включает принудительный откат на верхнем слое. \n" +"Эта опция включает принудительный откат на верхнем слое.\n" "Отключение может предотвратить засорение сопла при печати очень медленных " "шаблонов заполнения, например, при шаблоне «кривая Гильберта»." @@ -13865,12 +13873,12 @@ msgstr "" "Некоторое количество материала в экструдере откатывается назад, чтобы " "избежать его течи при длительном перемещении. 0 - отключение отката." -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Длинное втягивания перед отрезанием прутка (beta)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -13883,8 +13891,8 @@ msgid "Retraction distance when cut" msgstr "Длина втягивания перед отрезанием прутка" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" "Экспериментальная функция. Длина втягивания перед отрезанием пластиковой " "нити при её смене." @@ -13895,30 +13903,30 @@ msgstr "Высота поднятия оси Z" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Здесь задаётся на сколько миллиметров будет каждый раз приподниматься ось Z, " "когда срабатывает откат. Это предотвращает задевание соплом печатаемой " "модели при перемещении. Использование спирального типа подъёма оси Z может " "предотвратить образование паутины." -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Приподнимать ось Z только ниже" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Если указать положительное значение, ось Z будет подниматься только ниже " "(до) заданной здесь высоты (высота считается от стола). Таким образом вы " "можете запретить подъём оси Z выше установленной высоты." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Приподнимать ось Z только выше" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Если указать положительное значение, ось Z будет подниматься только выше " "(после) заданной здесь высоты (высота считается от стола). Таким образом вы " @@ -13927,9 +13935,6 @@ msgstr "" msgid "Z-hop type" msgstr "Тип подъёма оси Z" -msgid "Z hop type" -msgstr "Тип подъёма оси Z" - msgid "Slope" msgstr "Наклонный" @@ -13940,8 +13945,8 @@ msgid "Traveling angle" msgstr "Угол подъёма" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Угол для наклонного и спирального подъёма оси Z. При 90° получаем «обычный» " "подъём." @@ -13972,7 +13977,7 @@ msgid "On surfaces" msgstr "На поверхностях" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Принудительное поднятие оси Z. На этот параметр влияют указанные выше " @@ -14013,15 +14018,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Скорость извлечения при откате" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Скорость извлечения материала при откате." msgid "De-retraction Speed" msgstr "Скорость заправки при откате" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Скорость возврата материала при откате. Если оставить 0, будет " "использоваться та же скорость что и при извлечении." @@ -14045,7 +14050,7 @@ msgid "Disable set remaining print time" msgstr "Откл. генерацию оставшегося времени печати" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Отключение генерации команды M73 - вывода оставшегося времени печати в " "конечный G-код." @@ -14053,7 +14058,7 @@ msgstr "" msgid "Seam position" msgstr "Позиция шва" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Начальная позиция для печати каждой части внешнего периметра." msgid "Nearest" @@ -14150,7 +14155,7 @@ 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 " +"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 " @@ -14218,7 +14223,7 @@ msgid "Role base wipe speed" msgstr "Скорость очистки по типу экструзии" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14244,7 +14249,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14265,9 +14270,9 @@ msgstr "Скорость очистки" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Скорость очистки определяется текущей настройкой. Если задано в процентах, " "то она вычисляться относительно скорости перемещения. 80% - значение по " @@ -14293,17 +14298,20 @@ msgstr "" msgid "Skirt height" msgstr "Слоёв юбки" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Количество слоёв юбки. Обычно только один слой." msgid "Single loop draft shield" -msgstr "" +msgstr "Одностеночный защитный кожух" msgid "" "Limits the draft shield loops to one wall after the first layer. This is " "useful, on occasion, to conserve filament but may cause the draft shield to " "warp / crack." msgstr "" +"После первого слоя защитный кожух будет имеет только одну стенку. Это может " +"помочь сэкономить материал, но есть риск, что кожух деформируется или " +"треснет." msgid "Draft shield" msgstr "Защитный кожух" @@ -14311,7 +14319,7 @@ msgstr "Защитный кожух" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14352,7 +14360,7 @@ msgstr "Для каждой модели" msgid "Skirt loops" msgstr "Петель юбки" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Количество линий юбки вокруг модели. 0 - отключение юбки." msgid "Skirt speed" @@ -14368,9 +14376,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Минимальное количество пластика, которое должно быть выдавлено при печати " @@ -14382,8 +14390,9 @@ msgstr "" "число петель юбки, поэтому если их недостаточно, то увеличьте их количество." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Скорость печати в экспортированном G-коде будет замедлена, если расчётное " "время печати слоя меньше заданного здесь значения, для обеспечения лучшего " @@ -14394,7 +14403,7 @@ msgstr "Мин. порог разреженного заполнения" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Область с разреженным заполнением, размер которого меньше этого порогового " "значения, заменяется сплошным заполнением." @@ -14412,7 +14421,7 @@ msgstr "" "Ширина экструзии для внутреннего сплошного заполнения. Если задано в " "процентах, то значение вычисляться относительно диаметра сопла." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Скорость печати внутреннего сплошного заполнения, за исключением верхней и " "нижней поверхностей." @@ -14420,7 +14429,7 @@ msgstr "" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Печать пустотелых и тонкостенных моделей по спирали. Модель печатается в " "одну стенку без верхней поверхности, заполнения и поддержки. При этом сопло " @@ -14432,7 +14441,7 @@ msgstr "Сглаживать спиральные контуры" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Опция сглаживает перемещение по осям X и Y, в результате чего шов " "отсутствует даже в направлении XY на невертикальных периметрах." @@ -14443,7 +14452,7 @@ msgstr "Макс. сглаживание по XY" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Максимальное расстояние перемещения точек по XY для достижения плавной " "спирали. Если задано в процентах, то значение вычисляться относительно " @@ -14453,7 +14462,7 @@ msgstr "" msgid "Spiral starting flow ratio" msgstr "Коэфф. потока в начале спиральной вазы" -#, fuzzy, no-c-format, no-boost-format +#, no-c-format, no-boost-format msgid "" "Sets the starting flow ratio while transitioning from the last bottom layer " "to the spiral. Normally the spiral transition scales the flow ratio from 0% " @@ -14462,7 +14471,7 @@ msgid "" msgstr "" "Обычно при печати спиральной вазы поток первого витка увеличивается от 0% до " "100%, что в некоторых случаях может привести к недоэкструзии в начале " -"спирали. \n" +"спирали.\n" "Этот коэффициент позволяет изменить поток в начале спиральной вазы, чтобы " "избежать подобных проблем." @@ -14471,7 +14480,7 @@ msgstr "" msgid "Spiral finishing flow ratio" msgstr "Коэфф. потока в конце спиральной вазы" -#, fuzzy, no-c-format, no-boost-format +#, no-c-format, no-boost-format msgid "" "Sets the finishing flow ratio while ending the spiral. Normally the spiral " "transition scales the flow ratio from 100% to 0% during the last loop which " @@ -14479,7 +14488,7 @@ msgid "" msgstr "" "Обычно при печати спиральной вазы поток последнего витка уменьшается от 100% " "до 0%, что в некоторых случаях может привести к недоэкструзии в конце " -"спирали. \n" +"спирали.\n" "Этот коэффициент позволяет изменить поток в конце спиральной вазы, чтобы " "избежать подобных проблем." @@ -14510,8 +14519,8 @@ msgstr "Разница температур" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Задаёт, на сколько следует понижать температуру хотэнда, когда экструдер не " "активен. Значение не используется, если в настройках прутка задана " @@ -14535,7 +14544,7 @@ msgid "Preheat steps" msgstr "Шагов преднагрева" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Задание нескольких команд преднагрева (например, M104.1). Полезно только для " @@ -14544,10 +14553,10 @@ msgstr "" msgid "Start G-code" msgstr "Стартовый G-код" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Команды в G-коде, которые выполняются в самом начале печати." -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "" "Команды в G-коде, которые выполняются при запуске печати с этой пластиковой " "нитью." @@ -14556,7 +14565,7 @@ msgstr "" msgid "Single Extruder Multi Material" msgstr "Одиночный ММ экструдер" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" "Принтер способный печатать несколькими пластиковыми нитями через один хотэнд " "с применением автоматической система подачи пластика (АСПП)." @@ -14580,18 +14589,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Очистка в черновую башню" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Очистка сопла от остатков материала в черновую башню." -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Включить рэмминг прутка" msgid "No sparse layers (beta)" msgstr "Без разреженных слоёв (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14677,9 +14686,9 @@ msgid "Enable support generation." msgstr "Включить генерацию поддержки." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Тип поддержки «Обычная (авто)» и «Древовидная (авто)» используются для " "автоматического создания поддержки. Если выбран тип поддержки «Обычная " @@ -14701,7 +14710,7 @@ msgstr "Древовидная (вручную)" msgid "Support/object xy distance" msgstr "Зазор между моделью и поддержкой по XY" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Зазор между моделью и поддержкой по осям XY." msgid "Support/object first layer gap" @@ -14721,7 +14730,7 @@ msgstr "" msgid "On build plate only" msgstr "Поддержка только от стола" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Создавать поддержку только от стола." msgid "Support critical regions only" @@ -14745,14 +14754,14 @@ msgstr "" msgid "Top Z distance" msgstr "Зазор поддержки сверху" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "" "Вертикальное расстояние между связующим слоем поддержки сверху и моделью." msgid "Bottom Z distance" msgstr "Зазор поддержки снизу" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "" "Вертикальное расстояние между связующим слоем поддержки снизу и моделью." @@ -14761,7 +14770,7 @@ msgstr "Базовая поддержка/подложка" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Пластиковая нить для печати базовой поддержки и подложки. Значение «По " "умолчанию» означает, что для поддержки используется текущая пластиковая нить." @@ -14797,7 +14806,7 @@ msgstr "Связующий слой поддержки/подложки" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Пластиковая нить для печати связующего слоя поддержки. Значение «По " "умолчанию» означает, что для связующего слоя поддержки используется текущая " @@ -14806,13 +14815,13 @@ msgstr "" msgid "Top interface layers" msgstr "Связующих слоёв сверху" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Количество связующих слоёв сверху." msgid "Bottom interface layers" msgstr "Связующих слоёв снизу" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Количество связующих слоёв снизу." msgid "Same as top" @@ -14821,7 +14830,7 @@ msgstr "Как и сверху" msgid "Top interface spacing" msgstr "Расстояние между линиями связующего слоя сверху" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "" "Расстояние между линиями связующего слоя сверху. Установите 0, чтобы " "получить сплошной слой." @@ -14829,18 +14838,18 @@ msgstr "" msgid "Bottom interface spacing" msgstr "Расстояние между линиями связующего слоя снизу" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Расстояние между линиями связующего слоя снизу. Установите 0, чтобы получить " "сплошной слой." -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Скорость печати связующего слоя поддержки." msgid "Base pattern" msgstr "Шаблон поддержки" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Шаблон печати поддержки." msgid "Rectilinear grid" @@ -14855,7 +14864,7 @@ msgstr "Шаблон связующего слоя" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Шаблон, по которому будет происходить печать связующего слоя поддержки. При " "выборе по умолчанию, шаблон для нерастворимой связующей поддержки - " @@ -14867,18 +14876,18 @@ msgstr "Прямолинейный (чередование направлени msgid "Base pattern spacing" msgstr "Плотность поддержки" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Расстояние между линиями поддержки." msgid "Normal Support expansion" msgstr "Горизонтальное расширение поддержки" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" "Горизонтальное расширение (+) или сужение (-) базовой поддержки в плоскости " "XY." -msgid "Speed of support" +msgid "Speed of support." msgstr "Скорость печати поддержки." msgid "" @@ -14923,7 +14932,7 @@ msgstr "Независимая высота слоя поддержки" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Слои поддержки будут иметь высоту слоя, отличную от высоты слоя модели. Это " @@ -14964,8 +14973,8 @@ msgid "Tree support branch angle" msgstr "Угол нависания ветвей древовидной поддержки" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Этот параметр определяет максимальный угол нависания ветвей древовидной " @@ -15015,8 +15024,8 @@ msgid "Adaptive layer height" msgstr "Переменная высота слоёв" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Включение автоматического расчёта высоты слоя древовидной поддержки, кроме " "первого слоя. " @@ -15026,14 +15035,14 @@ msgstr "Автоширина каймы" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Включение автоматического расчёта ширины каймы для древовидной поддержки." msgid "Tree support brim width" msgstr "Ширина каймы древовидной поддержки" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "Расстояние от древовидной поддержки до внешней линии каймы." msgid "Tip Diameter" @@ -15082,7 +15091,7 @@ msgstr "Древовидная поддержка с заполнением" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Этот параметр определяет, следует ли заполнять большие полости внутри " "древовидной поддержки." @@ -15096,7 +15105,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -15121,13 +15130,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -15140,7 +15149,7 @@ msgstr "" "исключить коробление материала, и потенциально привести к повышению " "прочности межслойного соединения. Однако в то же время более высокая " "температура камеры снижает эффективность фильтрации воздуха при печати ABS и " -"ASA. \n" +"ASA.\n" "\n" "Для PLA, PETG, TPU, PVA и других низкотемпературных материалов этот параметр " "следует отключить, поскольку температура внутри термокамеры должна быть " @@ -15155,7 +15164,7 @@ msgstr "" "если управление температурой термокамеры реализовано через макросы " "(например, при отсутствии активного нагревателя камеры)." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Температура сопла при печати для слоёв после первого." msgid "Detect thin wall" @@ -15163,22 +15172,22 @@ msgstr "Обнаружение тонких стенок" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Обнаружение тонких стенок (стенки одинарной ширины), которые можно " "напечатать только в один проход экструдера. Возможно, будет напечатано не " "очень хорошо, так как это не замкнутый контур." msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Команды в G-коде, которые выполняются при ручной смене пластиковой нити " "(цвета\\типа), включая команду T для запуска смены инструмента. Пользователь " "может вставить его в окне предпросмотра нарезки, нажав правой кнопкой мыши " "на ползунок выбора слоя." -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" "Команды в G-коде, которые выполняются при смене роли экструзии (т.е. " "например, от печати периметра к заполнению)." @@ -15190,7 +15199,7 @@ msgstr "" "Ширина экструзии для верхней поверхности. Если задано в процентах, то " "значение вычисляться относительно диаметра сопла." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Скорость печати верхних сплошных поверхностей." msgid "Top shell layers" @@ -15199,7 +15208,7 @@ msgstr "Сплошных слоёв сверху" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Количество сплошных слоёв при печати верхней поверхности модели. Если " "толщина, рассчитанная с помощью этого значения, меньше толщины оболочки " @@ -15216,7 +15225,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Минимальная толщина оболочки сверху в мм. Если толщина оболочки, " "рассчитанная по количеству сплошных слоёв сверху, меньше этого значения, " @@ -15226,15 +15235,16 @@ msgstr "" "параметр отключён, а толщина оболочки сверху полностью задаётся количеством " "сплошных слоёв снизу." -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Скорость перемещения экструдера при позиционировании без печати." msgid "Wipe while retracting" msgstr "Очистка сопла при откате" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Если включено, то во время отката сопло продолжит движение вдоль периметра " "модели, чтобы очистить его от вытекшего материала. Это может снизить " @@ -15247,11 +15257,11 @@ msgstr "Расстояние очистки" # ??? Установка значения в приведенном ниже параметре «Величина отката перед очисткой», приведёт к дополнительному втягиванию на заданную тут величину, в противном случае оно будет выполнено после. msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -15297,7 +15307,7 @@ msgid "The volume of material to prime extruder on tower." msgstr "" "Объём выдавленного материала для заправки экструдера на черновой башне." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "" "Размер черновой башни по оси X. Размер по оси Y будет автоматически вычислен " "исходя из необходимого объёма очистки и ширины башни. Таким образом, " @@ -15337,7 +15347,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15404,8 +15414,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Эта модель будет использоваться для очистки сопла после смены материала для " "его экономии и сокращения времени печати. В результате цвета будут " @@ -15442,9 +15452,9 @@ msgid "Idle temperature" msgstr "Температура ожидания" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Температура сопла в момент, когда для печати используется другое сопло. Этот " "параметр используется только в том случае, если в настройках печати активна " @@ -15453,10 +15463,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Компенсация размера отверстий по XY" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Отверстия модели будут увеличены или уменьшены в плоскости XY на заданное " "значение. Положительное значение увеличивает отверстия, отрицательное - " @@ -15466,11 +15478,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Компенсация размера модели по XY" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Параметр отвечает за смещение всех полигонов модели в плоскости XY на " "заданное значение. Положительное значение увеличивает модель, отрицательное " @@ -15529,7 +15542,7 @@ msgstr "Формат эскизов G-кода" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Формат эскизов G-кода: PNG для наилучшего качества, JPG для наименьшего " "размера, QOI для прошивки с малым объемом памяти." @@ -15538,10 +15551,10 @@ msgid "Use relative E distances" msgstr "Относительные координаты экструдера" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Относительная экструзия рекомендуется при использовании опции «Помечать " "объекты». Некоторые экструдеры работают лучше при отключении этой опции " @@ -15552,7 +15565,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Движок классического генератора периметров создаёт их с постоянной шириной " "экструзии, а для очень тонких участков используется параметр «Заполнять " @@ -15572,7 +15585,7 @@ msgstr "Длина перехода между периметрами" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Этот параметр задаёт длину перехода между периметрами при изменении их " "количества (с чётного на нечётное, и обратно). Чем больше значение, тем " @@ -15589,7 +15602,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Параметр расширяет допустимый диапазон значений ширины периметров, чтобы " "уменьшить частые изменения их количества на тонких стенках, что улучшает " @@ -15606,7 +15619,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Этот параметр задаёт минимальный угол между периметрами, при котором " "требуется создавать переход между чётным и нечётным их количеством. Если " @@ -15622,7 +15635,7 @@ msgstr "Количество изменяемых периметров" # Т.е. если значение этого параметра задано как 1, а на участке модели 3 периметра, то только самый внутренний периметр будет печататься с переменной толщиной, а 2 оставшихся — с постоянной. msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Количество периметров, отсчитываемое от заполнения, на которые будут " "распространяться изменения, вносимые генератором периметров Arachne. Если " @@ -15634,11 +15647,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Минимальный размер элемента" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Если элементы модели тоньше заданного здесь значения, они не будут " "напечатаны. Если же их толщина превышает этот порог, но не достигает " @@ -15695,7 +15709,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Ширина периметра, которая заменит тонкие элементы (в соответствии с " "минимальным размера элемента) модели. Если минимальная ширина периметра " @@ -15707,9 +15721,9 @@ msgid "Detect narrow internal solid infill" msgstr "Обнаруживать узкую область сплошного заполнения" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Этот параметр автоматически определяет узкую внутреннюю область сплошного " "заполнения. Если включено, для ускорения печати будет использоваться " @@ -15732,40 +15746,41 @@ msgid "Export 3MF" msgstr "Экспорт в 3MF" msgid "Export project as 3MF." -msgstr "" +msgstr "Экспорт проекта в 3MF." msgid "Export slicing data" -msgstr "" +msgstr "Экспорт данных о нарезке" msgid "Export slicing data to a folder." -msgstr "" +msgstr "Экспорт данных о нарезке в папку." +# ???? Загрузка нарезанных данных msgid "Load slicing data" -msgstr "" +msgstr "Загрузка данных о нарезке" -msgid "Load cached slicing data from directory" -msgstr "" +msgid "Load cached slicing data from directory." +msgstr "Загрузка кэшированных данных о нарезке из папки" msgid "Export STL" msgstr "Экспорт в STL" msgid "Export the objects as single STL." -msgstr "" +msgstr "Экспорт моделей в единый STL-файл." msgid "Export multiple STLs" -msgstr "" +msgstr "Экспорт в отдельные STL" -msgid "Export the objects as multiple STLs to directory" -msgstr "" +msgid "Export the objects as multiple STLs to directory." +msgstr "Экспорт моделей в папку в отдельные STL-файлы" msgid "Slice" msgstr "Нарезать" msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" -msgstr "" +msgstr "Нарезать столы: 0 - все, i - стол i, другие - недопустимо" msgid "Show command help." -msgstr "" +msgstr "Показать справку по команде." msgid "UpToDate" msgstr "Актуальная версия" @@ -15774,18 +15789,19 @@ msgid "Update the configs values of 3mf to latest." msgstr "" msgid "downward machines check" -msgstr "" +msgstr "Проверка совместимости принтера" msgid "" "check whether current machine downward compatible with the machines in the " -"list" -msgstr "" +"list." +msgstr "Проверка совместимости текущего принтера с принтерами из списка" +# ??? msgid "Load default filaments" -msgstr "" +msgstr "Загрузить материал по умолчанию" -msgid "Load first filament as default for those not loaded" -msgstr "" +msgid "Load first filament as default for those not loaded." +msgstr "Загрузить первый материал по умолчанию для тех, которые не загружены." msgid "Minimum save" msgstr "Минимальное сохранение" @@ -15793,43 +15809,48 @@ msgstr "Минимальное сохранение" msgid "export 3mf with minimum size." msgstr "экспорт 3mf файла с минимальным размером." +# мктс, Макс. кол. треугольников на столе msgid "mtcpp" -msgstr "" +msgstr "mtcpp" msgid "max triangle count per plate for slicing." -msgstr "" +msgstr "Максимальное количество треугольников на столе для нарезки." +# мвнс , Макс. время нарезки стола msgid "mstpp" -msgstr "" +msgstr "mstpp" msgid "max slicing time per plate in seconds." -msgstr "" +msgstr "Максимальное время нарезки одного стола в секундах." msgid "No check" msgstr "Без проверки" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Не запускать никакие проверки валидности, такие как проверка на конфликт " "путей в G-коде." msgid "Normative check" -msgstr "" +msgstr "Нормативная проверка" +# ??? msgid "Check the normative items." -msgstr "" +msgstr "Проверка нормативных пунктов." +# ????? Выходная информация о модели msgid "Output Model Info" -msgstr "Выходная информация о модели" +msgstr "Вывод информации о модели" msgid "Output the model's information." -msgstr "" +msgstr "Вывод информации о модели." +# ??? msgid "Export Settings" -msgstr "Настройки экспорта" +msgstr "Экспорт настроек" msgid "Export settings to a file." -msgstr "" +msgstr "Экспорт настроек в файл." msgid "Send progress to pipe" msgstr "" @@ -15842,18 +15863,19 @@ msgstr "Параметры расстановки" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "" +"Параметры расстановки: 0 - отключено, 1 - включено, другие - автоматически" -msgid "Repetions count" +msgid "Repetition count" msgstr "" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "" msgid "Ensure on bed" msgstr "Обеспечивать размещение на столе" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Поднимает модель над столом, когда она частично находится ниже его уровня. " "По умолчанию отключено." @@ -15866,10 +15888,10 @@ msgstr "" "чтобы выполнить действия один раз." msgid "Convert Unit" -msgstr "" +msgstr "Преобразовать ед. изменения" -msgid "Convert the units of model" -msgstr "" +msgid "Convert the units of model." +msgstr "Преобразовать размеры модели в другую СИ." msgid "Orient Options" msgstr "Параметры ориентации" @@ -15887,63 +15909,67 @@ msgstr "Поворот вокруг оси Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Угол поворота вокруг оси Y в градусах." -msgid "Scale the model by a float factor" -msgstr "" +msgid "Scale the model by a float factor." +msgstr "Масштабировать модель с помощью коэффициента" msgid "Load General Settings" -msgstr "" +msgstr "Загрузка общих настроек" -msgid "Load process/machine settings from the specified file" -msgstr "" +msgid "Load process/machine settings from the specified file." +msgstr "Загрузка настроек процесса/принтера из указанного файла" msgid "Load Filament Settings" -msgstr "" +msgstr "Загрузка настроек материала" -msgid "Load filament settings from the specified file list" -msgstr "" +msgid "Load filament settings from the specified file list." +msgstr "Загрузка настроек материала из указанного списка файлов" msgid "Skip Objects" msgstr "" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +# ??? +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" +# ??? msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" +"Если включено, будет проверяться совместимость текущего принтера с " +"принтерами из списка." -msgid "downward machines settings" -msgstr "" +msgid "Downward machines settings" +msgstr "Настройки совместимости принтера" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -15962,91 +15988,106 @@ msgid "Output directory" msgstr "Папку сохранения" msgid "Output directory for the exported files." -msgstr "" +msgstr "Выходной каталог для экспортированных файлов." msgid "Debug level" -msgstr "" +msgstr "Уровень отладки журнала" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " -"5:trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" +"trace\n" msgstr "" +"Задаёт параметр чувствительности записи событий в журнал.\n" +"0: Критическая ошибка, 1: Ошибка, 2: Предупреждение, 3: Информация, 4: " +"Отладка, 5: Трассировка\n" msgid "Enable timelapse for print" -msgstr "" +msgstr "Вкл. таймлапс для печати" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" +"Если включено, текущая нарезка будет выполнена с учётом функции таймлапса." -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "Загрузить пользовательский G-код" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "Загрузить пользовательской G-код из json" +# ??? назначить идентификаторы msgid "Load filament ids" -msgstr "" +msgstr "Загрузить идентификаторы прутков" msgid "Load filament ids for each object" -msgstr "" +msgstr "Загрузить идентификаторы прутков для каждого объекта" -msgid "Allow multiple color on one plate" -msgstr "" +# ??? +msgid "Allow multiple colors on one plate" +msgstr "Разрешить многоцветную печать на одном столе" -msgid "If enabled, the arrange will allow multiple color on one plate" +# ????? +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" +"Если включено, то функция расстановки позволяет использовать несколько " +"цветов на одной пластине." -msgid "Allow rotatations when arrange" -msgstr "" +msgid "Allow rotation when arranging" +msgstr "Разрешить вращение при расстановке" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" +"Если включено, то при расстановке моделей на столе разрешено поворачивать их." -msgid "Avoid extrusion calibrate region when doing arrange" -msgstr "" +msgid "Avoid extrusion calibrate region when arranging" +msgstr "Избегать зону калибровки экструзии при выполнении расстановки." msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" +"Если включено, то при расстановки моделей будет избегаться зона калибровки " +"экструзии." -msgid "Skip modified gcodes in 3mf" -msgstr "" +msgid "Skip modified G-code in 3mf" +msgstr "Пропуск модифицированного G-кода в 3mf-файле" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" +"Пропуск модифицированного G-кода в 3mf-файле в профиле принтера или " +"материала." msgid "MakerLab name" -msgstr "" +msgstr "Имя MakerLab" msgid "MakerLab name to generate this 3mf" -msgstr "" +msgstr "Имя MakerLab, использованное для создания этого 3mf-файла." msgid "MakerLab version" -msgstr "" +msgstr "Версия MakerLab" msgid "MakerLab version to generate this 3mf" -msgstr "" +msgstr "Версия MakerLab, использованная для создания этого 3mf-файла." msgid "metadata name list" -msgstr "" +msgstr "Список имён метаданных" msgid "metadata name list added into 3mf" -msgstr "" +msgstr "Список имён метаданных добавляемых в 3mf" msgid "metadata value list" -msgstr "" +msgstr "Список значений метаданных" msgid "metadata value list added into 3mf" -msgstr "" +msgstr "Список значений метаданных добавляемых в 3mf" -msgid "Allow 3mf with newer version to be sliced" -msgstr "" +# ??? +msgid "Allow 3mf with newer version to be sliced." +msgstr "Разрешить нарезку новых версий 3MF-файлов" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Подъём оси Z" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" "Содержит текущее значение вертикального подъём оси Z, заданное в начале " "пользовательского G-кода." @@ -16154,10 +16195,10 @@ msgstr "" "Общий объём материала, выдавленного одним экструдером в процесса всей печати." # ??? Всего смен инструментов -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Число смен инструментов" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Число смен инструментов в процессе всей печати." msgid "Total volume" @@ -16381,7 +16422,7 @@ msgid "" "It seems object %s has %s. Please re-orient the object or enable support " "generation." msgstr "" -"Похоже, что у модели %s имеются замечания - %s. \n" +"Похоже, что у модели %s имеются замечания - %s.\n" "Переориентируйте её или включите генерацию поддержки." msgid "Generating support" @@ -16403,7 +16444,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Коррекция горизонтальных размеров модели не будет действовать, поскольку для " "этой модели была выполнена операция окрашивания.\n" @@ -16427,11 +16468,8 @@ msgstr "Предоставленный файл не может быть про msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" -"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или " -"*.zip.amf." - -msgid "Canceled" -msgstr "Отменено" +"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *." +"zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: ошибка обработки" @@ -16536,7 +16574,7 @@ msgid "The name cannot be empty." msgstr "Имя не может быть пустым." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Выбранный профиль %s не найден." msgid "The name cannot be the same as the system preset name." @@ -16570,13 +16608,13 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Этот тип принтера может хранить для каждого сопла только 16 последних " "результатов. Вы можете удалить существующие результаты, а затем запустить " "калибровку. Или вы можете продолжить калибровку, но результаты калибровки не " -"будут сохранены. \n" +"будут сохранены.\n" "Хотите продолжить калибровку?" msgid "Connecting to printer..." @@ -16585,7 +16623,7 @@ msgstr "Подключение к принтеру..." msgid "The failed test result has been dropped." msgstr "Результат неудачного теста был удалён." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Результат калибровки динамики потока был сохранён на принтере" #, c-format, boost-format @@ -16611,11 +16649,11 @@ msgstr "Внутренняя ошибка" msgid "Please select at least one filament for calibration" msgstr "Выберите хотя бы один пруток для калибровки" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "Результат калибровки динамики потока был сохранён в профиль" # не длинно??? Результат калибровки макс. объёмного расхода был сохранён в профиль -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Результат калибровки максимального объёмного расхода был сохранён в профиль" @@ -16627,10 +16665,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Мы добавили функцию автоматической калибровки для различных материалов, " "которая полностью автоматизирована, а результат калибровки сохраняется в " @@ -16667,10 +16705,10 @@ msgstr "" "Подробную информацию про калибровку динамики потока можно найти на нашем " "вики-сайте.\n" "\n" -"При обычных обстоятельствах калибровка не требуется. \n" +"При обычных обстоятельствах калибровка не требуется.\n" "Если при запуске печати одним цветом/материалом в меню запуска печати " "отмечена опция «Калибровка динамики потока», то калибровка пластиковой нити " -"будет производится старым способом. \n" +"будет производится старым способом.\n" "При запуске печати несколькими цветами/материалами, принтер будет " "использовать параметр компенсации по умолчанию для материала при каждой его " "смене, что в большинстве случаев позволяет получить хороший результат.\n" @@ -16692,12 +16730,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "После проведения калибровки динамики потока всё ещё могут возникать " "некоторые проблемы с экструзией, такие как:\n" @@ -16821,7 +16859,7 @@ msgstr "Максимальная длина имени 40 символов." # ??? было Можно сохранить только один результат с одинаковым именем. Вы уверены, что хотите перезаписать другие результаты? msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Результаты с одинаковыми именами будут перезаписаны. Подтвердить действие?" @@ -16874,9 +16912,6 @@ msgstr "Пропустить калибровку 2" msgid "flow ratio : %s " msgstr "коэффициент потока: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Выберите блок с самой гладкой верхней поверхностью" - msgid "Please choose a block with smoothest top surface." msgstr "Выберите блок с самой гладкой верхней поверхностью." @@ -16921,7 +16956,7 @@ msgstr "Пруток для калибровки" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Советы по выбору материала для калибровки: \n" "- Материалы, которые имеют близкие значения температуры нагреваемого стола\n" @@ -17061,19 +17096,19 @@ msgid "PA step: " msgstr "Шаг коэффициента PA: " msgid "Accelerations: " -msgstr "" +msgstr "Ускорения:" msgid "Speeds: " -msgstr "" +msgstr "Скорости:" msgid "Print numbers" msgstr "Печатать значения коэффициентов" msgid "Comma-separated list of printing accelerations" -msgstr "" +msgstr "Значения ускорений печати, вводимые через запятую." msgid "Comma-separated list of printing speeds" -msgstr "" +msgstr "Значения скоростей печати, вводимые через запятую." msgid "" "Please input valid values:\n" @@ -17185,7 +17220,7 @@ msgstr "Конечная длина отката: " msgid "mm/mm" msgstr "мм/мм" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Отправить G-кода на хост принтера" msgid "Upload to Printer Host with the following filename:" @@ -17232,7 +17267,7 @@ msgstr "Отменить выбранное" msgid "Show error message" msgstr "Показать сообщение об ошибке" -msgid "Enqueued" +msgid "Queued" msgstr "Поставлено в очередь" msgid "Uploading" @@ -17325,13 +17360,13 @@ msgstr "Версия ОС:" msgid "DNS Server:" msgstr "DNS-сервер:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "Тест доступности OrcaSlicer(GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "Тест доступности OrcaSlicer(GitHub):" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "Тест доступности Bing.com" msgid "Test bing.com:" @@ -17395,7 +17430,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "Не задан производитель, пожалуйста, введите производителя." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" или \"Generic\" не могут быть заданы в качестве производителей для " "пользовательский пластиковых нитей." @@ -17415,10 +17450,10 @@ msgstr "" msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "" -"В поле ввода производителя/серии пластиковой нити введены пробелы. \n" +"В поле ввода производителя/серии пластиковой нити введены пробелы.\n" "Пожалуйста, введите нормальное имя." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "" "Имя производителя не может начинаться с числа. Пожалуйста, введите " "нормальное имя." @@ -17429,11 +17464,11 @@ msgstr "Выберите хотя бы один принтер или профи #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Пластиковая нить с таким именем %s уже существует. \n" +"Пластиковая нить с таким именем %s уже существует.\n" "Если продолжить создание, то созданный профиль будет отображаться с полным " "именем. Хотите продолжить?" @@ -17451,8 +17486,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n" "Чтобы добавить профиль для других принтеров, перейдите к выбору принтера." @@ -17478,7 +17513,7 @@ msgstr "Импорт профиля" msgid "Create Type" msgstr "Создать тип" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "Модель не найдена, выберите производителя." msgid "Select Model" @@ -17525,16 +17560,16 @@ msgstr "" "Ошибка при получении размера файла, пожалуйста, попробуйте импортировать его " "ещё раз." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Путь к профилю не найден, пожалуйста, выберите другого производителя." msgid "The printer model was not found, please reselect." msgstr "Модель принтера не найдена, пожалуйста, выберите заново." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Диаметр сопла не задан, пожалуйста, выберите заново." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "Профиль принтера не найдена, выберите заново." msgid "Printer Preset" @@ -17557,7 +17592,7 @@ msgid "" "choose the vendor and model of the printer" msgstr "" "Вы не выбрали на базе какого профиля принтера хотите создать новый профиль " -"принтера. \n" +"принтера.\n" "Пожалуйста, выберите производителя и модель принтера." msgid "" @@ -17596,7 +17631,7 @@ msgstr "Не удалось создать профиль прутка. Прич msgid "Create process presets failed. As follows:\n" msgstr "Не удалось создать профиль процесса. Причины: \n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Производитель не найден, пожалуйста, выберите другого." msgid "Current vendor has no models, please reselect." @@ -17619,7 +17654,7 @@ msgstr "" msgid "" "All inputs in the custom printer vendor or model are spaces. Please re-enter." msgstr "" -"В поле ввода производителя/модели принтера введены пробелы. \n" +"В поле ввода производителя/модели принтера введены пробелы.\n" "Пожалуйста, введите нормальное имя." msgid "Please check bed printable shape and origin input." @@ -17629,10 +17664,10 @@ msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "Для замены сопла сначала выберите принтер." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Профиль принтера успешно создан" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Профиль прутка успешно создан" msgid "Printer Created" @@ -17662,14 +17697,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" "Программа обнаружила, что функция синхронизации пользовательских профилей " "отключена, \n" -"что может привести к неудачной настройке прутка на вкладке «Принтер». \n" +"что может привести к неудачной настройке прутка на вкладке «Принтер».\n" "Нажмите «Синхронизировать пользовательские профили», чтобы включить функцию " "синхронизации." @@ -17720,7 +17755,7 @@ msgstr "" "Если нет, то к имени будет добавлен временной суффикс." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Экспортируется профиль принтера, а также профили пластиковых нитей и " @@ -17729,10 +17764,10 @@ msgstr "" "Вы сможете делиться этими файлами с другими пользователями." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Экспортируется набор пользовательских профилей пластиковых нитей. \n" +"Экспортируется набор пользовательских профилей пластиковых нитей.\n" "Вы сможете делиться этими файлами с другими пользователями." msgid "" @@ -17749,7 +17784,7 @@ msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"Будут отображаться только пользовательские профили принтеров. \n" +"Будут отображаться только пользовательские профили принтеров.\n" "Все они будут экспортированы в единый zip-файл." msgid "" @@ -17766,7 +17801,7 @@ msgid "" "exported as a zip." msgstr "" "Будут отображаться только профили принтеров с изменёнными профилями " -"процесса. \n" +"процесса.\n" "Все пользовательские профили процессов будут экспортированы в единый zip-" "файл." @@ -17795,7 +17830,7 @@ msgstr "" "то сам материал также будет удалён после закрытия окна." # ??? Профили, наследуемые от других профилей, не могут быть удалены. -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "Профили на которых основаны другие профили не могут быть удалены." msgid "The following presets inherits this preset." @@ -17820,7 +17855,7 @@ msgid "Delete Filament" msgstr "Удалить пруток" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" @@ -17954,16 +17989,16 @@ msgstr "Не удалось подключиться к принтерам, по msgid "Mismatched type of print host: %s" msgstr "Несоответствующий тип хоста печати: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "Подключение к AstroBox успешно установлено." msgid "Could not connect to AstroBox" msgstr "Не удалось подключиться к AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Примечание: требуется версия AstroBox не ниже 1.1.0." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "Подключение к Duet успешно установлено." msgid "Could not connect to Duet" @@ -17982,7 +18017,7 @@ msgid "Upload not enabled on FlashAir card." msgstr "Загрузка данных на карту FlashAir не включена." # ??? в смысле выгрузка -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "" "Подключение к FlashAir успешно установлено. Загрузка на карту включена." @@ -17996,28 +18031,28 @@ msgstr "" "Примечание: для активации функцией загрузки, требуется FlashAir с прошивкой " "2.00.02 и выше." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "Подключение к MKS успешно установлено." msgid "Could not connect to MKS" msgstr "Не удалось подключиться к MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "Подключение к OctoPrint успешно установлено." msgid "Could not connect to OctoPrint" msgstr "Не удалось подключиться к OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Примечание: требуется версия OctoPrint не ниже 1.1.0." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Подключение к Prusa SL1 / SL1S успешно установлено." msgid "Could not connect to Prusa SLA" msgstr "Не удалось подключиться к Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "Подключение к PrusaLink успешно установлено." msgid "Could not connect to PrusaLink" @@ -18041,19 +18076,19 @@ msgstr "%1% : нет свободного места" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Ошибка при отправке. Не найдено подходящего хранилища в %1%." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Подключение к Prusa Connect успешно установлено." msgid "Could not connect to Prusa Connect" msgstr "Не удалось подключиться к Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Подключение к Repetier успешно установлено." msgid "Could not connect to Repetier" msgstr "Не удалось подключиться к Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Примечание: требуется версия Repetier не ниже 0.90.0." #, boost-format @@ -18085,8 +18120,8 @@ msgstr "" "Ошибка: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Стандартная высота слоя для сопла 0.2 мм. Маленькая высота слоя обеспечивает " "практически незаметные слои и высокое качество печати. Подходит для " @@ -18094,8 +18129,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет более низкие " "скорости и ускорения, а также задан гироидный шаблон заполнения. Это " @@ -18104,8 +18139,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет немного большую " "высоту слоя, что обеспечивает практически незаметные слои и немного " @@ -18113,8 +18148,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет наибольшую " "высоту слоя, слои становятся немного более заметными, но при этом " @@ -18122,8 +18156,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет меньшую высоту " "слоя, что обеспечивает практически незаметные слои и более высокое качество " @@ -18132,8 +18166,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет меньшую высоту " "слоя, более низкие скорости и ускорения, а также задан гироидный шаблон " @@ -18141,9 +18175,9 @@ msgstr "" "качество печати, но при этом значительно увеличивается время печати." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет наименьшую " "высоту слоя, что обеспечивает незаметные слои и гораздо более высокое " @@ -18152,8 +18186,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.2 мм, имеет наименьшую " "высоту слоя, более низкие скорости и ускорения, а также задан гироидный " @@ -18161,16 +18195,16 @@ msgstr "" "печати, но при этом значительно увеличивается время печати." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Стандартная высота слоя для сопла 0.4 мм, обеспечивающая нормальное качество " "печати, подходящее для большинства обычных сценариев печати." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.4 мм, имеет больше " "периметров и более высокую плотность заполнения. Это приводит к повышению " @@ -18179,8 +18213,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.4 мм, имеет большую высоту " "слоя. Как результат - более заметные слои и снижение качества печати, но при " @@ -18188,8 +18222,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "По сравнению со стандартным профилем для сопла 0.4 мм, имеет большую высоту " "слоя. Как результат - более заметные слои, снижение качества печати, но при " @@ -18197,8 +18231,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет меньшую высоту " "слоя. Как результат - менее заметные слои, более высокое качество печати, но " @@ -18207,8 +18241,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет меньшую высоту " "слоя, более низкие скорости и ускорения, а также задан гироидный шаблон " @@ -18217,8 +18251,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет меньшую высоту " "слоя. Как результат - почти незначительные слои и более высокое качество " @@ -18227,8 +18261,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет наименьшую " "высоту слоя, более низкие скорость и ускорение, а также задан гироидный " @@ -18237,24 +18271,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.4 мм, имеет наименьшую " "высоту слоя. Как результат - почти незначительные слои, но при этом " "увеличивается время печати." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Стандартная высота слоя для сопла 0.6 мм. Большая высота слоя, как результат " "- видимые слои при нормальном качестве и времени печати." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет больше " "периметров и более высокую плотность заполнения. Это приводит к повышению " @@ -18262,8 +18295,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет большую высоту " "слоя. Как результат - более заметные слои и снижение качества печати, но при " @@ -18271,8 +18304,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет большую высоту " "слоя. Как результат - более заметные слои и значительное снижение качества " @@ -18280,8 +18313,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет меньшую высоту " "слоя. Как результат - менее заметные слои и незначительное повышению " @@ -18289,16 +18322,16 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "По сравнению с профилем по умолчанию для соплом 0.6 мм, имеет меньшую высоту " "слоя. Как результат - менее заметные слои и более высокое качество печати, " "но при этом увеличивается время печати." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Стандартная высота слоя для сопла 0.8 мм. Очень большая высота слоя, как " "результат - чётко видимые слои, низкое качество печати и обычное время " @@ -18306,8 +18339,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "По сравнению со стандартным профилем для сопла 0.8 мм, имеет немного большую " "высоту слоя. Как результат - чётко видимые слои и гораздо более низкое " @@ -18315,8 +18348,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "По сравнению со стандартным профилем для сопла 0.8 мм, имеет гораздо большую " "высоту слоя. Как результат - очень заметные слои и значительно более низкое " @@ -18325,9 +18358,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "По сравнению со стандартным профилем для сопла 0.8 мм, имеет немного меньшую " "высоту слоя. Как результат - немного менее заметные слоя и немного более " @@ -18336,8 +18368,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "По сравнению с профилем по умолчанию для сопла 0,8 мм, он имеет меньшую " "высоту слоя, что приводит к меньшим, но все же заметным слоям и более " @@ -18366,7 +18398,7 @@ msgstr "" "Учётная запись SimplyPrint не привязана. Перейдите в раздел подключения для " "настройки." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "Подключение к Flashforge успешно установлено." msgid "Could not connect to Flashforge" @@ -18383,7 +18415,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "При попытке войти произошла какая-то ошибка, попробуйте ещё раз." -msgid "User cancelled." +msgid "User canceled." msgstr "Отменено пользователем." msgid "Head diameter" @@ -18414,8 +18446,8 @@ msgid "Adjust section view" msgstr "Настройка вида сечения" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Предупреждение: если тип каймы не установлен на «Нарисовано», то мышиные уши " "не будут работать!" @@ -18450,9 +18482,9 @@ msgid "" "overhangs?" msgstr "" "Порядок печати периметров «Сэндвич»\n" -"Знаете ли вы, что можно использовать порядок печати периметров «Сэндвич» " -"(т.е. внутренний-внешний-внутренний) для повышения точности и " -"согласованности слоёв, если у вашей модели не очень крутые нависания?" +"Знаете ли вы, что можно использовать порядок печати периметров «Сэндвич» (т." +"е. внутренний-внешний-внутренний) для повышения точности и согласованности " +"слоёв, если у вашей модели не очень крутые нависания?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -18512,7 +18544,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Использование горячих клавиш\n" "Знаете ли вы, что в Orca Slicer имеется большой список горячих клавиш для " @@ -18559,7 +18591,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Авторасстановка\n" "Знаете ли вы, что можно автоматически расставить все модели на вашем столе?" @@ -18568,7 +18600,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Автоориентация\n" "Знаете ли вы, что можно повернуть модели в оптимальную для печати ориентацию " @@ -18749,7 +18781,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Кайма для лучшей адгезии\n" @@ -18760,7 +18792,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Задание параметров для нескольких моделей\n" "Знаете ли вы, что можно задать параметры нарезки сразу для всех выбранных " @@ -18778,7 +18810,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Очистка в поддержку/модель/заполнение\n" @@ -18796,13 +18828,13 @@ msgstr "" "Знаете ли вы, что для повышения прочности модели можно увеличить количество " "периметров и плотность заполнения?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Когда необходимо печатать с открытой дверцей принтера?\n" "Знаете ли вы, что при печати низкотемпературным материалом при более высокой " @@ -18815,123 +18847,35 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Предотвращение коробления материала\n" "Знаете ли вы, что при печати материалами, склонными к короблению, таких как " "ABS, повышение температуры подогреваемого стола может снизить эту " "вероятность?" -#~ msgid "" -#~ "We have added an experimental style \"Tree Slim\" that features smaller " -#~ "support volume but weaker strength.\n" -#~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." -#~ msgstr "" -#~ "Мы добавили экспериментальный стиль «Стройный (древ. поддержка)», который " -#~ "отличается меньшим объёмом поддержки, а следовательно, и меньшей " -#~ "прочностью. Мы рекомендуем использовать его со следующими параметрами: " -#~ "количество связующих слоёв - 0, зазор поддержки сверху - 0, периметров - " -#~ "2." - -#~ msgid "" -#~ "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the " -#~ "following settings: at least 2 interface layers, at least 0.1mm top z " -#~ "distance or using support materials on interface." -#~ msgstr "" -#~ "Для стилей «Крепкий (древ. поддержка)» и «Гибридный (древ. поддержка)» \n" -#~ "мы рекомендуем следующие параметры: \n" -#~ "не менее 2-х связующих слоёв, \n" -#~ "зазор поддержки сверху не менее 0,1 мм \n" -#~ "или использование «материалов для поддержек» в качестве связующего слоя." - -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "При использовании «материалов для поддержек» в качестве связующего \n" -#~ "слоя поддержки, мы рекомендуем следующие параметры:\n" -#~ "зазор поддержки сверху - 0, \n" -#~ "расстояние между связующими линиями - 0, \n" -#~ "шаблон связующего слоя - концентрический, \n" -#~ "отключение независимой высоты слоя поддержки." - -#~ msgid "Branch Diameter with double walls" -#~ msgstr "Диаметр ветвей с двойными стенками" - -#~ msgid "" -#~ "Branches with area larger than the area of a circle of this diameter will " -#~ "be printed with double walls for stability. Set this value to zero for no " -#~ "double walls." -#~ msgstr "" -#~ "Ветви, толщина которых больше указанного диаметра, будут напечатаны с " -#~ "двойными стенками для прочности. Установите 0, если двойные стенки у " -#~ "ветвей не нужны." - -#~ msgid "This setting specify the count of walls around support" -#~ msgstr "" -#~ "Этот параметр определяет количество периметров у печатаемой поддержки." - -#, c-format, boost-format -#~ msgid "Support: generate toolpath at layer %d" -#~ msgstr "Поддержка: генерация траектории инструмента на слое %d" - -#~ msgid "Support: detect overhangs" -#~ msgstr "Поддержка: обнаружение нависаний" - -#~ msgid "Support: propagate branches" -#~ msgstr "Поддержка: построение ветвей" - -#~ msgid "Support: draw polygons" -#~ msgstr "Поддержка: рисование полигонов" - -#~ msgid "Support: generate toolpath" -#~ msgstr "Поддержка: генерация траектории инструмента" - -#, c-format, boost-format -#~ msgid "Support: generate polygons at layer %d" -#~ msgstr "Поддержка: генерация полигонов на слое %d" - -#, c-format, boost-format -#~ msgid "Support: fix holes at layer %d" -#~ msgstr "Поддержка: ремонт отверстий на слое %d" - -#, c-format, boost-format -#~ msgid "Support: propagate branches at layer %d" -#~ msgstr "Поддержка: построение ветвей на слое %d" - -#~ msgid "Cooling overhang threshold" -#~ msgstr "Порог включения обдува на нависаниях" - -#~ msgid "Overhangs cooling threshold" -#~ msgstr "Порог включения обдува на нависаниях" - -#~ msgid "Connect failed [%d]!" -#~ msgstr "Ошибка подключения [%d]!" - -#~ msgid "Initialize failed (Device connection not ready)!" -#~ msgstr "Ошибка инициализации (подключённое устройство не готово)!" - -#~ msgid "Initialize failed (Storage unavailable, insert SD card.)!" -#~ msgstr "Ошибка инициализации (хранилище недоступно, вставьте SD-карту)!" - -#~ msgid "Initialize failed (%s)!" -#~ msgstr "Ошибка инициализации (%s)!" - -#~ msgid "IP and Access Code Verified! You may close the window" -#~ msgstr "IP-адрес и код доступа подтверждены! Вы можете закрыть окно." - # ??? Грань-грань -#~ msgid "Face and face assembly" -#~ msgstr "Сборка по граням" +msgid "Face and face assembly" +msgstr "Сборка по граням" # ??? Точка-точка -#~ msgid "Point and point assembly" -#~ msgstr "Сборка по точкам" +msgid "Point and point assembly" +msgstr "Сборка по точкам" -#~ msgid "Unselect" -#~ msgstr "Отменить выбор" +msgid "Unselect" +msgstr "Отменить выбор" -#~ msgid "Please select at least two volumes." -#~ msgstr "Выберите хотя бы две модели." +msgid "Please select at least two volumes." +msgstr "Выберите хотя бы две модели." + +msgid "Initialize failed (Device connection not ready)!" +msgstr "Ошибка инициализации (подключённое устройство не готово)!" + +msgid "Initialize failed (Storage unavailable, insert SD card.)!" +msgstr "Ошибка инициализации (хранилище недоступно, вставьте SD-карту)!" + +msgid "Initialize failed (%s)!" +msgstr "Ошибка инициализации (%s)!" + +msgid "IP and Access Code Verified! You may close the window" +msgstr "IP-адрес и код доступа подтверждены! Вы можете закрыть окно." diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index 24db2da22a..7d252ca6fc 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -11,7 +11,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" "X-Generator: Localazy (https://localazy.com)\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Färgläggning av Support" msgid "Alt + Mouse wheel" @@ -107,7 +107,7 @@ msgstr "Lägg på yta" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Filamentåtgången överstiger det maximala antalet som målningsverktyget " @@ -300,7 +300,7 @@ msgid "Square" msgstr "Kvadrat" msgid "Hexagon" -msgstr "Hexagon" +msgstr "" msgid "Keep orientation" msgstr "Behåll orienteringen" @@ -586,10 +586,10 @@ msgstr "Visa trådram" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Kan inte tillämpas när processen förhandsgranskas." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Åtgärden avbryts redan. Vänligen vänta." msgid "Face recognition" @@ -777,7 +777,7 @@ msgid "Change Text Type" msgstr "" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "" msgid "Name can't be empty." @@ -908,7 +908,7 @@ msgstr "Vänster" msgctxt "Alignment" msgid "Center" -msgstr "Center" +msgstr "" msgctxt "Alignment" msgid "Right" @@ -990,8 +990,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" msgid "No symbol" @@ -1116,7 +1116,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "" @@ -1243,64 +1243,63 @@ msgid "No feature" msgstr "" msgid "Vertex" -msgstr "Vertex" +msgstr "" msgid "Edge" -msgstr "Edge" +msgstr "" msgid "Plane" -msgstr "Plane" +msgstr "" msgid "Point on edge" -msgstr "Point on edge" +msgstr "" msgid "Point on circle" -msgstr "Point on circle" +msgstr "" msgid "Point on plane" -msgstr "Point on plane" +msgstr "" msgid "Center of edge" -msgstr "Center of edge" +msgstr "" msgid "Center of circle" -msgstr "Center of circle" +msgstr "" msgid "Select feature" -msgstr "Select feature" +msgstr "" msgid "Select point" -msgstr "Select point" +msgstr "" msgid "Delete" msgstr "Radera" msgid "Restart selection" -msgstr "Restart selection" +msgstr "" msgid "Esc" msgstr "Esc" msgid "Cancel a feature until exit" -msgstr "Cancel a feature until exit" +msgstr "" msgid "Measure" msgstr "Measure" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" -"Please confirm explosion ratio = 1, and please select at least one object" msgid "Please select at least one object." -msgstr "Please select at least one object." +msgstr "" msgid "Edit to scale" -msgstr "Edit to scale" +msgstr "" msgctxt "Verb" msgid "Scale all" -msgstr "Scale all" +msgstr "" msgid "None" msgstr "Ingen" @@ -1312,24 +1311,20 @@ msgid "Length" msgstr "Längd" msgid "Selection" -msgstr "Selection" +msgstr "" msgid " (Moving)" -msgstr " (Moving)" +msgstr "" msgid "" "Select 2 faces on objects and \n" " make objects assemble together." msgstr "" -"Select 2 faces on objects and \n" -" make objects assemble together." msgid "" "Select 2 points or circles on objects and \n" " specify distance between them." msgstr "" -"Select 2 points or circles on objects and \n" -" specify distance between them." msgid "Face" msgstr "Face" @@ -1344,53 +1339,51 @@ msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"Feature 1 has been reset, \n" -"feature 2 has been feature 1" -msgid "Warning:please select Plane's feature." -msgstr "Warning: please select Plane's feature." +msgid "Warning: please select Plane's feature." +msgstr "" -msgid "Warning:please select Point's or Circle's feature." -msgstr "Warning: please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." +msgstr "" -msgid "Warning:please select two different mesh." -msgstr "Warning: please select two different meshes." +msgid "Warning: please select two different meshes." +msgstr "" msgid "Copy to clipboard" msgstr "Kopiera till urklipp" msgid "Perpendicular distance" -msgstr "Perpendicular distance" +msgstr "" msgid "Distance" -msgstr "Distance" +msgstr "" msgid "Direct distance" -msgstr "Direct distance" +msgstr "" msgid "Distance XYZ" -msgstr "Distance XYZ" +msgstr "" msgid "Parallel" -msgstr "Parallel" +msgstr "" msgid "Center coincidence" -msgstr "Center coincidence" +msgstr "" -msgid "Featue 1" +msgid "Feature 1" msgstr "Feature 1" msgid "Reverse rotation" -msgstr "Reverse rotation" +msgstr "" msgid "Rotate around center:" -msgstr "Rotate around center:" +msgstr "" msgid "Parallel distance:" msgstr "" msgid "Flip by Face 2" -msgstr "Flip by Face 2" +msgstr "" msgid "Ctrl+" msgstr "Ctrl +" @@ -1430,7 +1423,7 @@ msgstr "" "Konfigurations fil “%1%” har laddats, men vissa värden känns inte igen." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" @@ -1554,7 +1547,7 @@ msgstr "Öppna Projekt" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste " "versionen innan den kan användas normalt" @@ -1732,7 +1725,7 @@ msgid "Cube" msgstr "Kub" msgid "Cylinder" -msgstr "Cylinder" +msgstr "" msgid "Cone" msgstr "Kon" @@ -1763,7 +1756,7 @@ msgstr "" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1855,16 +1848,16 @@ msgstr "Rensa in i objektets support" msgid "Edit in Parameter Table" msgstr "Redigera i Parameter Tabell" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Konvertera ifrån inch" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Återställ till inch" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Konvertera ifrån meter" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Återställ till meter" msgid "Assemble" @@ -1997,7 +1990,7 @@ msgid "Simplify Model" msgstr "Förenkla modellen" msgid "Center" -msgstr "Center" +msgstr "" msgid "Drop" msgstr "" @@ -2117,7 +2110,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2134,7 +2127,7 @@ msgstr "Ta bort alla kopplingar" msgid "Deleting the last solid part is not allowed." msgstr "Ej tillåtet att radera den senaste fasta delen." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "Det valda objektet innehåller endast en del och kan inte delas." msgid "Assembly" @@ -2177,14 +2170,14 @@ msgid "Selection conflicts" msgstr "Urvalskonflikt" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Om den första valda delen är ett objekt, så bör även den andra vara ett " "objekt." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Om den första valda delen är en del, så bör den andra delen tillhöra samma " "objekt." @@ -2254,7 +2247,7 @@ msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" "En cell kan endast kopieras till en eller flertalet celler i samma kolumn" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "Kopiering av flertalet celler stöds ej" msgid "Outside" @@ -2438,13 +2431,13 @@ msgid "AMS" msgstr "AMS" msgid "Auto Refill" -msgstr "Auto Refill" +msgstr "" msgid "AMS not connected" msgstr "AMS ej ansluten" msgid "Load" -msgstr "Load" +msgstr "" msgid "Unload" msgstr "Mata ut" @@ -2514,8 +2507,8 @@ msgid "Edit" msgstr "Redigera" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Alla valda objekt är på den låsta plattan,\n" "det går inte att auto-placera dessa objekten." @@ -2524,8 +2517,8 @@ msgid "No arrangeable objects are selected." msgstr "Inga placerbara objekt är valda." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Denna plattan är låst,\n" "det går inte att auto-placera på denna plattan." @@ -2564,15 +2557,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Alla valda objekt är på den låsta plattan,\n" "det går inte att auto-placera dessa objekten." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Denna plattan är låst,\n" "det går inte att auto-placera på denna plattan." @@ -2626,7 +2619,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Anslutningen till molntjänsten misslyckades. Försök igen." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Det gick inte att hitta utskrifts filen; bered den igen" msgid "" @@ -2655,7 +2648,7 @@ msgstr "" "Storleken på utskrifts filen är för stor. Vänligen justera filstorleken och " "försök igen." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Utskrifts filen hittades inte; bered den igen och skicka till utskrift." @@ -2696,10 +2689,10 @@ msgstr "Skickat. Hoppar automatiskt till nästa sida in%s s" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Ett Micro SD-kort måste sättas i innan utskrift via LAN." -msgid "Sending gcode file over LAN" +msgid "Sending G-code file over LAN" msgstr "Skickar G-kod fil över LAN" -msgid "Sending gcode file to sdcard" +msgid "Sending G-code file to SD card" msgstr "Skickar G-kod fil till MicroSD-kort" #, c-format, boost-format @@ -2748,10 +2741,10 @@ msgstr "Laddar ner" msgid "Download failed" msgstr "Nedladdningen misslyckades" -msgid "Cancelled" +msgid "Canceled" msgstr "Avbruten" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Installationen lyckades" msgid "Installing" @@ -2773,7 +2766,7 @@ msgid "Orca Slicer is licensed under " msgstr "Orca Slicer är licensierad under " msgid "GNU Affero General Public License, version 3" -msgstr "GNU Affero General Public License, version 3" +msgstr "" msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "" @@ -2821,9 +2814,6 @@ msgstr "Acceptera" msgid "Close" msgstr "Stäng" -msgid "Colour" -msgstr "Färg" - msgid "" "Nozzle\n" "Temperature" @@ -2985,17 +2975,13 @@ msgstr "" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" -"Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases: when the lid is open or the " -"desiccant pack is changed. It takes a few hours to absorb the moisture, and " -"low temperatures also slow down the process." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Konfigurera vilket AMS-fack som ska användas för filamentet som används i " "utskriftsjobbet." @@ -3015,7 +3001,7 @@ msgstr "Aktivera inte AMS" msgid "Print using materials mounted on the back of the case" msgstr "Skriv ut med filament på en extern spole." -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Skriv ut med filament i AMS" msgid "Print with filaments mounted on the back of the chassis" @@ -3037,18 +3023,13 @@ msgstr "Printern stöder för närvarande inte automatisk påfyllning." msgid "" "AMS filament backup is not enabled, please enable it in the AMS settings." msgstr "" -"AMS filament backup is not enabled; please enable it in the AMS settings." msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" -"If there are two identical filaments in an AMS, AMS filament backup will be " -"enabled. \n" -"(This currently supports automatic supply of consumables with the same " -"brand, material type, and color)" msgid "DRY" msgstr "DRY" @@ -3070,7 +3051,7 @@ msgstr "" "Lab-filament. Det tar ungefär 20 sekunder." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Obs: Om ett nytt filament sätts in under utskriften kommer AMS inte att " @@ -3088,8 +3069,8 @@ msgstr "Slå på uppdatering" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "AMS läser automatiskt informationen om insatt Bambu Lab filament vid " "uppstart. Det tar cirka 1 minut. Läsprocessen kommer att rulla " @@ -3116,24 +3097,22 @@ msgstr "" "återstående kapaciteten automatiskt." msgid "AMS filament backup" -msgstr "AMS filament backup" +msgstr "" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS fortsätter automatiskt till en annan spole med samma filament egenskaper " "när det aktuella filamentet tar slut." msgid "Air Printing Detection" -msgstr "Air Printing Detection" +msgstr "" msgid "" "Detects clogging and filament grinding, halting printing immediately to " "conserve time and filament." msgstr "" -"Detects clogging and filament grinding, halting printing immediately to " -"conserve time and filament." msgid "File" msgstr "Fil" @@ -3183,7 +3162,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Spara projekt och starta om programmet." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Processera G-Code från Föregående fil…" msgid "Slicing complete" @@ -3214,7 +3193,7 @@ msgid "Running post-processing scripts" msgstr "Kör efterbearbetnings skript" msgid "Successfully executed post-processing script" -msgstr "Successfully executed post-processing script" +msgstr "" msgid "Unknown error occurred during exporting G-code." msgstr "" @@ -3255,12 +3234,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Okänt fel vid exportering av G-code." #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3281,10 +3260,10 @@ msgid "Device" msgstr "Enhet" msgid "Task Sending" -msgstr "Task Sending" +msgstr "" msgid "Task Sent" -msgstr "Task Sent" +msgstr "" msgid "Edit multiple printers" msgstr "" @@ -3316,16 +3295,16 @@ msgid "Edit Printers" msgstr "" msgid "Device Name" -msgstr "Device Name" +msgstr "" msgid "Task Name" -msgstr "Task Name" +msgstr "" msgid "Device Status" -msgstr "Device Status" +msgstr "" msgid "Actions" -msgstr "Actions" +msgstr "" msgid "" "Please select the devices you would like to manage here (up to 6 devices)" @@ -3395,25 +3374,25 @@ msgid "Stop" msgstr "Stopp" msgid "Task Status" -msgstr "Task Status" +msgstr "" msgid "Sent Time" -msgstr "Sent Time" +msgstr "" msgid "There are no tasks to be sent!" -msgstr "There are no tasks to be sent!" +msgstr "" msgid "No historical tasks!" -msgstr "No historical tasks!" +msgstr "" msgid "Loading..." msgstr "Laddar..." msgid "No AMS" -msgstr "No AMS" +msgstr "" msgid "Send to Multi-device" -msgstr "Send to Multi-device" +msgstr "" msgid "Preparing print job" msgstr "Förbereder utskriftsjobb" @@ -3428,19 +3407,19 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "" msgid "Use External Spool" -msgstr "Use External Spool" +msgstr "" msgid "Use AMS" -msgstr "Use AMS" +msgstr "" msgid "Select Printers" -msgstr "Select Printers" +msgstr "" -msgid "Ams Status" -msgstr "AMS Status" +msgid "AMS Status" +msgstr "" msgid "Printing Options" -msgstr "Printing Options" +msgstr "" msgid "Bed Leveling" msgstr "Justering av Byggplattan" @@ -3452,25 +3431,22 @@ msgid "Flow Dynamic Calibration" msgstr "" msgid "Send Options" -msgstr "Send Options" +msgstr "" msgid "Send to" msgstr "" msgid "" -"printers at the same time.(It depends on how many devices can undergo " -"heating at the same time.)" -msgstr "" "printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" +msgstr "" msgid "Wait" -msgstr "Wait" +msgstr "" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" -"minute each batch. (It depends on how long it takes to complete heating.)" msgid "Send" msgstr "Skicka" @@ -3567,18 +3543,16 @@ msgid "Bed Shape" msgstr "Byggplattans Form" msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" -"Den rekommenderade lägsta temperaturen är lägre än 190 grader eller den " -"rekommenderade max temperaturen är högre än 300 grader.\n" +"Den rekommenderade lägsta temperaturen är lägre än 190°C eller den " +"rekommenderade max temperaturen är högre än 300°C.\n" msgid "" "The recommended minimum temperature cannot be higher than the recommended " "maximum temperature.\n" msgstr "" -"The recommended minimum temperature cannot be higher than the recommended " -"maximum temperature.\n" msgid "Please check.\n" msgstr "Kontrollera.\n" @@ -3594,8 +3568,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Rekommenderad nozzel temperatur med denna filament typ är [%d, %d] grader " "celius" @@ -3609,13 +3583,10 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" -msgstr "" -"Current chamber temperature is higher than the material's safe temperature; " -"this may result in material softening and nozzle clogs.The maximum safe " +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " "temperature for the material is %d" +msgstr "" msgid "" "Too small layer height.\n" @@ -3674,7 +3645,7 @@ msgid "" msgstr "" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3731,11 +3702,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Maskiner med I3-struktur kan dock inte generera timelapse videor." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Ändra dessa inställningar automatiskt? \n" +"Ändra dessa inställningar automatiskt?\n" "JA -Ändra dessa inställningar och möjliggör Spiral läge automatiskt\n" "NEJ -Avbryt Spiral läge denna gång" @@ -3790,7 +3761,7 @@ msgstr "Utskriften pausades av användaren" msgid "Pause of front cover falling" msgstr "Paus av front luckan faller" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Kalibrerar Micro Lidar" msgid "Calibrating extrusion flow" @@ -3826,7 +3797,7 @@ msgstr "Pausad på grund av fel i styrningen av kammar temperaturen" msgid "Cooling chamber" msgstr "Kyler kammare" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Pausad av G-koden som infogats av användaren" msgid "Motor noise showoff" @@ -3870,30 +3841,21 @@ msgstr "Uppdatering misslyckades." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" -"TPU) is not allowed to be loaded." -msgstr "" -"The current chamber temperature or the target chamber temperature exceeds " "45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." +msgstr "" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " -"above 45℃." -msgstr "" "Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " "to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." +msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " -"automatically be set to 0℃." -msgstr "" -"When you set the chamber temperature below 40℃, the chamber temperature " "control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." +msgstr "" msgid "Failed to start printing job" msgstr "Det gick inte att starta utskriftsjobbet" @@ -3909,7 +3871,7 @@ msgstr "Aktuell flödeshastighets kalibrerings parameter är ogiltig" msgid "Selected diameter and machine diameter do not match" msgstr "Vald diameter och maskinens diameter stämmer inte överens" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Misslyckades med att generera cali G kod" msgid "Calibration error" @@ -3922,14 +3884,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF stöds inte av AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Fuktig PVA blir flexibel och fastnar i AMS, var noga med att torka den väl " "före användning." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "CF/GF-trådar är hårda och spröda, så de kan lätt gå sönder eller fastna i en " @@ -3945,7 +3907,7 @@ msgstr "" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -4004,7 +3966,7 @@ msgid "parameter name" msgstr "Parameter namn" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s kan inte vara procent" #, c-format, boost-format @@ -4016,7 +3978,7 @@ msgstr "Parameter validering" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Value %s is out of range. The valid range is from %d to %d." +msgstr "" msgid "Value is out of range." msgstr "Värdet är utanför intervallet." @@ -4092,7 +4054,7 @@ msgstr "Fläkthastighet: " msgid "Temperature: " msgstr "Temperatur: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Laddar G-koder" msgid "Generating geometry vertex data" @@ -4111,7 +4073,7 @@ msgid "Flushed" msgstr "Rensad" msgid "Tower" -msgstr "Tower" +msgstr "Torn" msgid "Total" msgstr "Totalt" @@ -4123,7 +4085,7 @@ msgid "Total time" msgstr "Total tid" msgid "Total cost" -msgstr "Total cost" +msgstr "" msgid "up to" msgstr "upp till" @@ -4206,10 +4168,7 @@ msgstr "Skriv ut" msgid "Printer" msgstr "Skrivare" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4219,10 +4178,10 @@ msgid "Normal mode" msgstr "Normalt läge" msgid "Total Filament" -msgstr "Total Filament" +msgstr "" msgid "Model Filament" -msgstr "Model Filament" +msgstr "" msgid "Prepare time" msgstr "Förbered tid" @@ -4318,7 +4277,7 @@ msgid "Spacing" msgstr "Mellanrum" msgid "0 means auto spacing." -msgstr "0 means auto spacing." +msgstr "" msgid "Auto rotate for arrangement" msgstr "Auto rotera för arrangemang" @@ -4335,8 +4294,11 @@ msgstr "Justera mot Y-axeln" msgid "Add plate" msgstr "Lägg till byggplata" -msgid "Auto orient" -msgstr "Auto placera" +msgid "Auto orient all/selected objects" +msgstr "Autoorientering alla/valda objekt" + +msgid "Auto orient all objects on current plate" +msgstr "Autoorientering alla objekt på plattan" msgid "Arrange all objects" msgstr "Ordna alla objekt" @@ -4359,8 +4321,8 @@ msgstr "Välj Byggplatta" msgid "Assembly Return" msgstr "Monterings retur" -msgid "return" -msgstr "tillbaka" +msgid "Return" +msgstr "Tillbaka" msgid "Paint Toolbar" msgstr "Färgläggningsverktyg" @@ -4388,24 +4350,24 @@ msgstr "Storlek:" #, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Ett objekt är placerad över byggplattans begränsningar." msgid "A G-code path goes beyond the max print height." msgstr "En G-kod bana går utöver den maximala utskriftshöjden." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "En G-kod väg passerar över byggplattans begränsningar." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Bara objektet som editeras är synligt." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4437,7 +4399,7 @@ msgid "" "It keeps the device performing optimally." msgstr "" "Kalibreringsprogrammet avläser status på enheten för att automatiskt " -"minimera avvikelser. \n" +"minimera avvikelser.\n" "Detta gör att enheten kan fungera optimalt." msgid "Calibration Flow" @@ -4485,7 +4447,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Anslut skrivare (LAN)" msgid "Please input the printer access code:" @@ -4785,19 +4747,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "" msgid "Show 3D Navigator" msgstr "" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "" msgid "Reset Window Layout" @@ -4809,19 +4771,19 @@ msgstr "" msgid "Show &Labels" msgstr "Visa & Etiketter" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Visa objekt etiketter i 3D-scenen" msgid "Show &Overhang" msgstr "Visa & Överhäng" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "Visa objektets överhäng i 3D-scen" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" @@ -4861,13 +4823,13 @@ msgid "Flow rate" msgstr "Flödeshastighet" msgid "Pressure advance" -msgstr "Pressure advance" +msgstr "" msgid "Retraction test" -msgstr "Retraction test" +msgstr "" msgid "Orca Tolerance Test" -msgstr "Orca Tolerance Test" +msgstr "" msgid "Max flowrate" msgstr "Max flödes hastighet" @@ -4957,7 +4919,7 @@ msgstr[0] "" msgstr[1] "" msgid "Export result" -msgstr "Export resultat" +msgstr "Exportera resultat" msgid "Select profile to load:" msgstr "Välj den profil som ska laddas:" @@ -4988,13 +4950,13 @@ msgid "Filament Settings" msgstr "Filament Inställningar" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Vill du synkronisera dina personuppgifter från Bambu Cloud? \n" +"Vill du synkronisera dina personuppgifter från Bambu Cloud?\n" "Den innehåller följande information:\n" "1. Process inställningar\n" "2. Inställningar av filament\n" @@ -5026,14 +4988,13 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "Printerns kamera fungerar inte som den ska." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Ett problem har uppstått. Uppdatera printerns programvara och försök igen." msgid "" "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "" -"LAN Only Liveview is off. Please turn on the liveview on printer screen." msgid "Please enter the IP of printer to connect." msgstr "Ange printerns IP för att ansluta." @@ -5045,7 +5006,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Anslutningen misslyckades. Kontrollera nätverket och försök igen" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Kontrollera nätverket och försök igen. Du kan starta om eller uppdatera " @@ -5141,7 +5102,7 @@ msgid "Refresh" msgstr "Uppdatera" msgid "Reload file list from printer." -msgstr "Reload file list from printer." +msgstr "" msgid "No printers." msgstr "Ingen printer." @@ -5153,27 +5114,25 @@ msgid "No files" msgstr "Inga filer" msgid "Load failed" -msgstr "Load failed" +msgstr "" msgid "" "Browsing file in SD card is not supported in current firmware. Please update " "the printer firmware." msgstr "" -"Browsing file in SD card is not supported in current firmware. Please update " -"the printer firmware." msgid "" "Please check if the SD card is inserted into the printer.\n" "If it still cannot be read, you can try formatting the SD card." msgstr "" -"Kontrollera om SD-kortet är sitter i printern. \n" +"Kontrollera om SD-kortet är sitter i printern.\n" "Om det fortfarande inte går att läsa kan du försöka formatera SD kortet." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN Connection Failed (Failed to view sdcard)" +msgstr "" msgid "Browsing file in SD card is not supported in LAN Only Mode." -msgstr "Browsing file in SD card is not supported in LAN Only Mode." +msgstr "" #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" @@ -5202,8 +5161,8 @@ msgid "Failed to parse model information." msgstr "Det gick inte att analysera modellinformation" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" #, c-format, boost-format @@ -5215,8 +5174,6 @@ msgid "" "File: %s\n" "Title: %s\n" msgstr "" -"File: %s\n" -"Title: %s\n" msgid "Download waiting..." msgstr "Nedladdning väntar..." @@ -5238,8 +5195,6 @@ msgid "" "Reconnecting the printer, the operation cannot be completed immediately, " "please try again later." msgstr "" -"Reconnecting the printer, the operation cannot be completed immediately, " -"please try again later." msgid "File does not exist." msgstr "Filen finns inte." @@ -5312,8 +5267,6 @@ msgid "" "You have completed printing the mall model, \n" "but the synchronization of rating information has failed." msgstr "" -"You have completed printing the mall model, \n" -"but synchronizing rating information has failed." msgid "How do you like this printing file?" msgstr "Vad tycker du om den här utskriftsfilen?" @@ -5344,7 +5297,7 @@ msgid "Control" msgstr "Kontroll" msgid "Printer Parts" -msgstr "Printer Parts" +msgstr "" msgid "Print Options" msgstr "Utskriftsalternativ" @@ -5398,10 +5351,9 @@ msgid "Layer: %d/%d" msgstr "Lager: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" -"Värm nozzeln till över 170 grader innan du laddar eller matar ut filament." +"Värm nozzeln till över 170°C innan du laddar eller matar ut filament." msgid "Still unload" msgstr "Matar ut fortfarande" @@ -5409,7 +5361,7 @@ msgstr "Matar ut fortfarande" msgid "Still load" msgstr "Laddar fortfarande" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Välj ett AMS-fack innan kalibrering." msgid "" @@ -5458,14 +5410,11 @@ msgstr "Skicka in" msgid "Please click on the star first." msgstr "Klicka på stjärnan först." -msgid "InFo" -msgstr "Info" - msgid "Get oss config failed." msgstr "Hämta konfigurationen för oss misslyckades." msgid "Upload Pictures" -msgstr "Upload Pictures" +msgstr "" msgid "Number of images successfully uploaded" msgstr "Antal bilder som laddats upp framgångsrikt" @@ -5479,8 +5428,8 @@ msgstr " uppladdning av konfiguration misslyckades\n" msgid " No corresponding storage bucket\n" msgstr " Ingen motsvarande lagrings plats\n" -msgid " can not be opened\n" -msgstr " cannot be opened\n" +msgid " cannot be opened\n" +msgstr "" msgid "" "The following issues occurred during the process of uploading images. Do you " @@ -5504,13 +5453,10 @@ msgid "obtaining instance_id failed\n" msgstr "det gick inte att få instance_id\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" -"\n" -" error code: " -msgstr "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " +msgstr "" msgid "error message: " msgstr "felmeddelande: " @@ -5518,15 +5464,12 @@ msgstr "felmeddelande: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" -msgstr "" -"\n" -"\n" "Would you like to redirect to the webpage to give a rating?" +msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Några av dina bilder kunde inte laddas upp. Vill du bli omdirigerad till " "webbsidan för betygsättning?" @@ -5536,7 +5479,7 @@ msgstr "Du kan välja upp till 16 bilder." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "At least one successful print record of this print profile is required \n" "to give a positive rating (4 or 5 stars)." @@ -5581,7 +5524,7 @@ msgid "Newer 3mf version" msgstr "Nyare 3mf version" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" @@ -5604,7 +5547,7 @@ msgid "Latest Version: " msgstr "Senaste versionen: " msgid "Not for now" -msgstr "Not for now" +msgstr "" msgid "Server Exception" msgstr "" @@ -5687,7 +5630,7 @@ msgstr[1] "%1$d Objektet har färgläggning.@%1$d Objekten har färgläggning." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "" msgstr[1] "" @@ -5712,7 +5655,7 @@ msgstr "Fel:" msgid "Warning:" msgstr "Varning:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Exportering lyckades" msgid "Model file downloaded." @@ -5730,10 +5673,10 @@ msgstr " Klicka här för att installera den." msgid "WARNING:" msgstr "VARNING:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Modellen behöver support ! Aktivera support inställningarna." -msgid "Gcode path overlap" +msgid "G-code path overlap" msgstr "G-kodens rutt överlappar" msgid "Support painting" @@ -5808,16 +5751,16 @@ msgid "Allow Prompt Sound" msgstr "Tillåt Prompt Ljud" msgid "Filament Tangle Detect" -msgstr "Filament Tangle Detection" +msgstr "" msgid "Nozzle Clumping Detection" -msgstr "Nozzle Clumping Detection" +msgstr "" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Check if the nozzle is clumping by filament or other foreign objects." +msgstr "" msgid "Nozzle Type" -msgstr "Nozzle Type" +msgstr "Nozzel Typ" msgid "Stainless Steel" msgstr "Rostfritt stål" @@ -5973,7 +5916,7 @@ msgstr "Spara ändringarna till \"%1%\"?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Avinstallationen lyckades. Enheten %s(%s) kan nu tas bort från datorn på ett " @@ -6032,8 +5975,8 @@ msgstr "Ladda 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "3mf:s version %s är nyare än %s version %s, Följande nycklar har hittats som " "inte känns igen:" @@ -6055,24 +5998,25 @@ msgstr "Ogiltiga värden hittades i 3mf:" msgid "Please correct them in the param tabs" msgstr "Vänligen korrigera dem i Parameter flikarna" -msgid "The 3mf has following modified G-codes in filament or printer presets:" -msgstr "The 3mf has following modified G-code in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" +msgstr "" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Bekräfta att dessa modifierade G-koder är säkra för att förhindra skador på " "maskinen!" -msgid "Modified G-codes" -msgstr "Modified G-code" +msgid "Modified G-code" +msgstr "" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "3mf har följande anpassade filament eller inställningar för printern:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Bekräfta att G-koderna i dessa inställningar är säkra för att förhindra " @@ -6134,8 +6078,8 @@ msgid "The file does not contain any geometry data." msgstr "Filen innehåller ingen geometrisk data." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Objektet verkar vara för stort, vill du skala ner det så att det passar " "byggplattan automatiskt?" @@ -6244,7 +6188,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Endast förhandsgranskningsläge:\n" "Den inlästa filen innehåller endast G-kod, kan inte komma in på sidan " @@ -6279,13 +6223,13 @@ msgid "prepare 3mf file..." msgstr "förbereder 3mf-filen..." msgid "Download failed, unknown file format." -msgstr "Download failed; unknown file format." +msgstr "" -msgid "downloading project ..." +msgid "downloading project..." msgstr "laddar ner projekt ..." msgid "Download failed, File size exception." -msgstr "Download failed; File size exception." +msgstr "" #, c-format, boost-format msgid "Project downloaded %d%%" @@ -6318,7 +6262,7 @@ msgstr "" msgid "The selected file" msgstr "Den valda filen" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "Innehåller ingen giltlig G-kod." msgid "Error occurs while loading G-code file" @@ -6360,10 +6304,10 @@ msgstr "Endast en G-kod kan öppnas åt gången." msgid "G-code loading" msgstr "Laddar G-kod" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-kod filer och modeller kan inte laddas tillsammans!!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Det gick inte att lägga till modeller i förhandsvisningsläge" msgid "All objects will be removed, continue?" @@ -6405,24 +6349,22 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try again." msgstr "" -"Unable to perform boolean operation on model meshes. Only positive parts " -"will be kept. You may fix the meshes and try again." #, boost-format msgid "Reason: part \"%1%\" is empty." -msgstr "Reason: part \"%1%\" is empty." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" does not bound a volume." -msgstr "Reason: part \"%1%\" does not bound a volume." +msgstr "" #, boost-format msgid "Reason: part \"%1%\" has self intersection." -msgstr "Reason: part \"%1%\" has self intersection." +msgstr "" #, boost-format msgid "Reason: \"%1%\" and another part have no intersection." -msgstr "Reason: \"%1%\" and another part have no intersection." +msgstr "" msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " @@ -6517,11 +6459,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" -"Platta %d: %s rekommenderas inte för användning av filament %s(%s). Om du " +"Platta %d: %s rekommenderas inte för användning av filament %s (%s). Om du " "fortfarande vill göra detta utskriftsjobb, vänligen ställ in detta filaments " "byggplattas temperatur till ett tal som inte är noll." @@ -6656,30 +6598,34 @@ msgstr "" msgid "Zoom to mouse position" msgstr "Zooma till musens position" -msgid "" -"Zoom in towards the mouse pointer's position in the 3D view, rather than the " +msgid "Zoom in towards the mouse pointer's position in the 3D view, rather than the " "2D window center." -msgstr "" -"Zooma in mot muspekarens position i 3D-vyn, istället för mot 2D-fönstrets " +msgstr "Zooma in mot muspekarens position i 3D-vyn, istället för mot 2D-fönstrets " "mitt." msgid "Use free camera" -msgstr "" +msgstr "Använd fri kamera" msgid "If enabled, use free camera. If not enabled, use constrained camera." -msgstr "" +msgstr "Om aktiverat, använd fri kamera. Om inte aktiverat, använd begränsad kamera." + +msgid "Swap pan and rotate mouse buttons" +msgstr "Växla panorerings- och rotationsknapparna på musen" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Om aktiverat växlar vänster och höger musknapps panorerings- och rotationsfunktioner." msgid "Reverse mouse zoom" -msgstr "" +msgstr "Omvänd muszoomning" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" +msgstr "Om aktiverad, vänder zoomriktningen med mushjulet." msgid "Show splash screen" -msgstr "" +msgstr "Visa välkomstskärm" msgid "Show the splash screen during startup." -msgstr "" +msgstr "Visa välkomstskärmen under uppstart." msgid "Show \"Tip of the day\" notification after start" msgstr "Visa \"Dagens tips\" efter start" @@ -6708,15 +6654,13 @@ msgid "" "each printer automatically." msgstr "" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" msgid "" "With this option enabled, you can send a task to multiple devices at the " "same time and manage multiple devices." msgstr "" -"With this option enabled, you can send a task to multiple devices at the " -"same time and manage multiple devices." msgid "Auto arrange plate after cloning" msgstr "" @@ -6727,7 +6671,7 @@ msgstr "" msgid "Network" msgstr "" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Automatisk synkronisering av användarens förinställningar (skrivare/filament/" "process)" @@ -6798,8 +6742,8 @@ msgstr "Maximalt antal nyligen genomförda projekt" msgid "Clear my choice on the unsaved projects." msgstr "Rensa mitt val för de osparade projekten." -msgid "No warnings when loading 3MF with modified G-codes" -msgstr "No warnings when loading 3MF with modified G-code" +msgid "No warnings when loading 3MF with modified G-code" +msgstr "" msgid "Auto-Backup" msgstr "Auto Säkerhetskopiera" @@ -6915,10 +6859,10 @@ msgstr "Spar knappen för felsökning" msgid "save debug settings" msgstr "spara felsöknings knappen" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "FELSÖKNINGS inställningarna har sparats!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Moln miljön har bytts ut; vänligen logga in igen!" msgid "System presets" @@ -6933,10 +6877,10 @@ msgstr "Ej giltliga förinställningar" msgid "AMS filaments" msgstr "AMS-filament" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Tryck för att välja filament färg" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Välj filament färg" msgid "Add/Remove presets" @@ -6954,7 +6898,7 @@ msgstr "Lägg till/Ta bort filament" msgid "Add/Remove materials" msgstr "Lägg till/Ta bort material" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Välj/ta bort printer(systemet inställningar)" msgid "Create printer" @@ -6964,16 +6908,16 @@ msgid "The selected preset is null!" msgstr "Den valda förinställningen är noll!" msgid "End" -msgstr "End" +msgstr "" msgid "Customize" msgstr "Anpassa" msgid "Other layer filament sequence" -msgstr "Other layer filament sequence" +msgstr "" msgid "Please input layer value (>= 2)." -msgstr "Please input layer value (>= 2)." +msgstr "" msgid "Plate name" msgstr "Plattans namn" @@ -6985,10 +6929,10 @@ msgid "Print sequence" msgstr "Utskrifts sekvens" msgid "Same as Global" -msgstr "Same as Global" +msgstr "" msgid "Disable" -msgstr "Disable" +msgstr "" msgid "Spiral vase" msgstr "Spiral vas" @@ -7026,13 +6970,13 @@ msgstr "Laddar upp 3mf" msgid "Jump to model publish web page" msgstr "Växla till modell publicerings hemsidan" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "Notera: Förberedelserna kan ta flera minuter. Vänligen vänta." msgid "Publish" msgstr "Publicera" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Publiceringen avbröts" msgid "Slicing Plate 1" @@ -7057,7 +7001,7 @@ msgstr "Projekt förinställning" msgid "Name is unavailable." msgstr "Namnet ej tillgängligt." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Ej tillåtet att skriva över system profilen" #, boost-format @@ -7065,11 +7009,13 @@ msgid "Preset \"%1%\" already exists." msgstr "Förinställning \"%1%\" finns redan." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "" "Förinställning \"%1%\" finns redan och fungerar inte med nuvarande skrivare." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "" "Observera att om du sparar kommer den aktuella förinställningen att skrivas " "över" @@ -7135,13 +7081,13 @@ msgid "Busy" msgstr "Upptagen" msgid "Bambu Cool Plate" -msgstr "Bambu Cool Plate" +msgstr "" msgid "PLA Plate" msgstr "PLA platta" msgid "Bambu Engineering Plate" -msgstr "Bambu Engineering Plate" +msgstr "" msgid "Bambu Smooth PEI Plate" msgstr "" @@ -7251,8 +7197,6 @@ msgid "" "The selected printer (%s) is incompatible with the chosen printer profile in " "the slicer (%s)." msgstr "" -"The selected printer (%s) is incompatible with the chosen printer profile in " -"the slicer (%s)." msgid "An SD card needs to be inserted to record timelapse." msgstr "Ett Micro SD-kort måste sättas i för att spela in en timelapse." @@ -7274,8 +7218,6 @@ msgid "" "When enable spiral vase mode, machines with I3 structure will not generate " "timelapse videos." msgstr "" -"When spiral vase mode is enabled, machines with I3 structure will not " -"generate timelapse videos." msgid "" "Timelapse is not supported because Print sequence is set to \"By object\"." @@ -7290,7 +7232,7 @@ msgid "Please check the following:" msgstr "Kontrollera följande:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7320,20 +7262,15 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" -"Your nozzle diameter in sliced file is not consistent with the saved nozzle. " -"If you changed your nozzle lately, please go to Device > Printer Parts to " -"change settings." #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" -"Printing high temperature material(%s material) with %s may cause nozzle " -"damage" msgid "Please fix the error above, otherwise printing cannot continue." -msgstr "Please fix the error above, otherwise printing cannot continue." +msgstr "" msgid "" "Please click the confirm button if you still want to proceed with printing." @@ -7354,13 +7291,13 @@ msgstr "" "grund av ytan." msgid "Automatic flow calibration using Micro Lidar" -msgstr "Automatic flow calibration using the Micro Lidar" +msgstr "" msgid "Modifying the device name" msgstr "Ändra enhetens namn" msgid "Bind with Pin Code" -msgstr "Bind with Pin Code" +msgstr "" msgid "Bind with Access Code" msgstr "" @@ -7421,28 +7358,26 @@ msgid "" "Please Find the Pin Code in Account page on printer screen,\n" " and type in the Pin Code below." msgstr "" -"Please Find the Pin Code in Account page on printer screen,\n" -" and type in the Pin Code below." msgid "Can't find Pin Code?" -msgstr "Can't find Pin Code?" +msgstr "" msgid "Pin Code" -msgstr "Pin Code" +msgstr "" msgid "Binding..." -msgstr "Binding..." +msgstr "" msgid "Please confirm on the printer screen" -msgstr "Please confirm on the printer screen" +msgstr "" msgid "Log in failed. Please check the Pin Code." -msgstr "Log in failed. Please check the Pin Code." +msgstr "" msgid "Log in printer" msgstr "Logga in skrivare" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Logga in skrivaren till nuvarande konto?" msgid "Check the reason" @@ -7455,10 +7390,10 @@ msgid "Terms and Conditions" msgstr "Villkor och bestämmelser" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Tack för att du har köpt en Bambu Lab enhet. Innan du använder din Bambu Lab " @@ -7488,7 +7423,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7546,14 +7481,14 @@ msgstr "" "förinställningen." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Prime tower krävs för smooth timelapse-läge. Det kan bli fel på modellen " "utan ett prime tower. Är du säker på att du vill inaktivera prime tower?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "Prime tower krävs för Smooth timelapse-läge. Det kan bli fel på modellen " @@ -7563,22 +7498,18 @@ msgid "Still print by object?" msgstr "Fortfarande utskrift per objekt?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" msgstr "" -"When using support material for the support interface, We recommend the " -"following settings:\n" -"0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " -"disable independent support layer height" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Ändra dessa inställningar automatiskt? \n" +"Ändra dessa inställningar automatiskt?\n" "Ja - Ändra dessa inställningar automatiskt.\n" "Nej - Ändra inte dessa inställningar för mig." @@ -7598,13 +7529,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "Lagerhöjden överskrider gränsen i Skrivarinställningar -> Extruder -> " "Lagerhöjds gränser, detta kan orsaka problem med utskriftskvaliteten." -msgid "Adjust to the set range automatically? \n" -msgstr "Justera automatiskt till det inställda området? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Justera automatiskt till det inställda området?\n" msgid "Adjust" msgstr "Justera" @@ -7614,25 +7545,17 @@ msgstr "Ignorera" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush. Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " -"printing complications." msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." -msgstr "" -"Experimental feature: Retracting and cutting off the filament at a greater " "distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " "complications. Please use with the latest printer firmware." +msgstr "" msgid "" "When recording timelapse without toolhead, it is recommended to add a " @@ -7808,7 +7731,7 @@ msgid "Post-processing Scripts" msgstr "Skript för efterbehandling" msgid "Notes" -msgstr "Notes" +msgstr "" msgid "Frequent" msgstr "Återkommande" @@ -7870,34 +7793,34 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" -msgstr "Cool Plate" +msgstr "Kall platta" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Detta är byggplattans temperatur när Cool Plate är installerad. Värdet 0 " "betyder att filamentet inte stöder utskrift på Cool Plate." -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" -msgid "Engineering plate" -msgstr "Engineering plate" +msgid "Engineering Plate" +msgstr "" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Detta är byggplattans temperatur när Engineering Plate är installerad. Ett " "värde på 0 betyder att filamentet inte stöder utskrift på Engineering Plate." @@ -7906,9 +7829,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Slät PEI platta / Högtemperaturs platta" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Bäddtemperatur när slät PEI-platta/Högtemperatur platta är installerad. " "Värde 0 betyder att filamentet inte stöder utskrift på den släta PEI-plattan/" @@ -7918,8 +7841,8 @@ msgid "Textured PEI Plate" msgstr "Texturerad PEI-platta" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Byggplattans temperatur när texturerad PEI-platta är installerad. 0 betyder " "att filamentet inte stöds på den texturerade PEI-plattan" @@ -7947,7 +7870,7 @@ msgid "" msgstr "" "Del kylfläktens hastigheten kommer att börja gå med min hastighet när den " "beräknade lagringstiden inte är längre än lagringstiden i " -"inställningarna.När lager tiden är kortare än gräns värdet, ställer " +"inställningarna. När lager tiden är kortare än gräns värdet, ställer " "fläkthastigheten sig mellan lägsta och högsta fläkthastighet enligt lagrets " "utskriftstid" @@ -7982,13 +7905,13 @@ msgstr "Filament stop G-kod" msgid "Wipe tower parameters" msgstr "" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "" msgid "Ramming settings" msgstr "" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "" msgid "Dependencies" @@ -8000,7 +7923,7 @@ msgstr "" msgid "Printable space" msgstr "Utskriftsbar yta" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "" @@ -8023,7 +7946,7 @@ msgstr "" msgid "Accessory" msgstr "Tillbehör" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "Maskin G-kod" msgid "Machine start G-code" @@ -8041,8 +7964,8 @@ msgstr "Före lagerskifte G-kod" msgid "Layer change G-code" msgstr "Lagerskifte G-kod" -msgid "Time lapse G-code" -msgstr "Time lapse G-kod" +msgid "Timelapse G-code" +msgstr "Timelapse G-kod" msgid "Change filament G-code" msgstr "Byta filament G-kod" @@ -8130,7 +8053,7 @@ msgstr "" "%d Filament inställning och %d Process inställning är kopplade till denna " "printer. Dessa inställningar raderas om printern raderas." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "Inställningar som ärvts av andra inställningar kan inte raderas!" msgid "The following presets inherit this preset." @@ -8153,11 +8076,11 @@ msgstr[1] "" "också." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Är du säker på att du vill radera den valda inställningen? \n" +"Är du säker på att du vill radera den valda inställningen?\n" "Om inställningen motsvarar ett filament som för närvarande används på din " "skrivare, vänligen återställ filament informationen för den platsen." @@ -8263,14 +8186,12 @@ msgstr "" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "You have changed some settings of preset \"%1%\"." +msgstr "" msgid "" "\n" "You can save or discard the preset values you have modified." msgstr "" -"\n" -"You can save or discard the preset values you have modified." msgid "" "\n" @@ -8279,7 +8200,7 @@ msgid "" msgstr "" msgid "You have previously modified your settings." -msgstr "You have previously modified your settings." +msgstr "" msgid "" "\n" @@ -8361,7 +8282,7 @@ msgstr "En ny version är tillgänglig" msgid "Configuration update" msgstr "Konfigurerings uppdatering" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Ett nytt konfigurations paket finns tillgängligt, Installera?" msgid "Description:" @@ -8370,13 +8291,13 @@ msgstr "Förklaring:" msgid "Configuration incompatible" msgstr "Ej kompatibel konfiguration" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "konfigurations paketet är ej kompatibel med nuvarande applicering." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Konfigurations paketet är ej kompatibel med nuvarande applicering.\n" "%s uppdaterar konfigurations paketet för att möjliggöra start" @@ -8385,7 +8306,7 @@ msgstr "" msgid "Exit %s" msgstr "Avsluta %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "" "konfigurations paketet är ej kompatibel med nuvarande version av Bambu " "Studio." @@ -8400,58 +8321,54 @@ msgid "The configuration is up to date." msgstr "Konfigurationen är aktuell." msgid "Obj file Import color" -msgstr "Obj file Import color" +msgstr "" msgid "Specify number of colors:" -msgstr "Specify number of colors:" +msgstr "" #, c-format, boost-format msgid "The color count should be in range [%d, %d]." -msgstr "The color count should be in range [%d, %d]." +msgstr "" msgid "Recommended " -msgstr "Recommended " +msgstr "" msgid "Current filament colors:" -msgstr "Current filament colors:" +msgstr "" msgid "Quick set:" -msgstr "Quick set:" +msgstr "" msgid "Color match" -msgstr "Color match" +msgstr "" msgid "Approximate color matching." -msgstr "Approximate color matching." +msgstr "" msgid "Append" -msgstr "Append" +msgstr "" msgid "Add consumable extruder after existing extruders." -msgstr "Add consumable extruder after existing extruders." +msgstr "" msgid "Reset mapped extruders." -msgstr "Reset mapped extruders." +msgstr "" msgid "Cluster colors" -msgstr "Cluster colors" +msgstr "" msgid "Map Filament" -msgstr "Map Filament" +msgstr "" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "" "Warning: The count of newly added and \n" -" current extruders exceeds 16." +"current extruders exceeds 16." +msgstr "" msgid "Ramming customization" msgstr "" @@ -8548,7 +8465,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" @@ -8616,12 +8533,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Auto placera valda objekt eller alla objekt. Om det finns valda objekt så " -"placeras endast dem. Alternativt så placeras alla objekt på nuvarande disk." +"placeras endast dem. Annars kommer den att orientera alla objekt i det " +"aktuella projektet." + +msgid "Auto orients all objects on the active plate." +msgstr "Placera alla föremål automatiskt på aktuell tallrik." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8731,8 +8652,11 @@ msgstr "Gizmo rotera" msgid "Gizmo cut" msgstr "Gizmo skär" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Placera ansiktet på byggytan" +msgid "Gizmo place face on bed" +msgstr "Gizmo placera ansiktet på byggytan" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo mesh boolean" msgid "Gizmo SLA support points" msgstr "Gizmo SLA support punkter" @@ -8740,17 +8664,26 @@ msgstr "Gizmo SLA support punkter" msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM målad söm" -msgid "Gizmo Text emboss / engrave" -msgstr "" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo textprägling/gravering" + +msgid "Gizmo measure" +msgstr "Gizmo mäta" + +msgid "Gizmo assemble" +msgstr "Gizmo montera" + +msgid "Gizmo brim ears" +msgstr "Gizmo brätte öron" msgid "Zoom in" -msgstr "" +msgstr "Zooma in" msgid "Zoom out" -msgstr "" +msgstr "Zooma ut" msgid "Switch between Prepare/Preview" -msgstr "" +msgstr "Växla mellan Förbered/Förhandsgranska" msgid "Plater" msgstr "Plätering/Förgyllning" @@ -8782,8 +8715,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Välj extruder nummer för objekten och delarna" -msgid "Delete objects, parts, modifiers " -msgstr "Radera objekten, delarna och anpassningar " +msgid "Delete objects, parts, modifiers" +msgstr "Radera objekten, delarna och anpassningar" msgid "Select the object/part and press space to change the name" msgstr "Välj objektet/delen och tryck space för att ändra namnet" @@ -8812,7 +8745,7 @@ msgstr "Horisontell reglage - Flytta aktivt tryck Höger" msgid "On/Off one layer mode of the vertical slider" msgstr "På/Av 1 lager läge för det vertikala reglaget" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "" msgid "Move slider 5x faster" @@ -8831,7 +8764,7 @@ msgid "Release Note" msgstr "Meddelande om utgåvan" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "version %s uppdaterings information:" msgid "Network plug-in update" @@ -8844,7 +8777,7 @@ msgstr "" "Studio startar." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "En ny nätverksplugin (%s) är tillgänglig. Vill du installera den?" msgid "New version of Orca Slicer" @@ -8857,40 +8790,40 @@ msgid "Done" msgstr "Klar" msgid "resume" -msgstr "resume" +msgstr "" msgid "Resume Printing" -msgstr "Resume Printing" +msgstr "" -msgid "Resume Printing(defects acceptable)" -msgstr "Resume Printing (defects acceptable)" +msgid "Resume Printing (defects acceptable)" +msgstr "" -msgid "Resume Printing(problem solved)" -msgstr "Resume Printing (problem solved)" +msgid "Resume Printing (problem solved)" +msgstr "" msgid "Stop Printing" -msgstr "Stop Printing" +msgstr "" msgid "Check Assistant" -msgstr "Check Assistant" +msgstr "" msgid "Filament Extruded, Continue" -msgstr "Filament Extruded, Continue" +msgstr "" msgid "Not Extruded Yet, Retry" -msgstr "Not Extruded Yet, Retry" +msgstr "" msgid "Finished, Continue" -msgstr "Finished, Continue" +msgstr "" msgid "Load Filament" msgstr "Ladda Filament" msgid "Filament Loaded, Resume" -msgstr "Filament Loaded, Resume" +msgstr "" msgid "View Liveview" -msgstr "View Liveview" +msgstr "" msgid "Confirm and Update Nozzle" msgstr "Bekräfta och uppdatera nozzeln" @@ -8982,10 +8915,10 @@ msgstr "Senaste version" msgid "Updating" msgstr "Uppdaterar" -msgid "Updating failed" +msgid "Update failed" msgstr "Uppdateringen misslyckades" -msgid "Updating successful" +msgid "Update successful" msgstr "Uppdateringen lyckades" msgid "" @@ -9041,7 +8974,7 @@ msgid "Loading repaired objects" msgstr "Laddar de reparerade objekten" msgid "Exporting 3mf file failed" -msgstr "Export av 3mf filen misslyckades" +msgstr "Exporterar av 3mf filen misslyckades" msgid "Import 3mf file failed" msgstr "Importen av 3mf filen misslyckades" @@ -9084,7 +9017,7 @@ msgid "" "One object has empty initial layer and can't be printed. Please Cut the " "bottom or enable supports." msgstr "" -"Ett objekt har ett tomt första lager och kan inte skrivas ut.Skär ut botten " +"Ett objekt har ett tomt första lager och kan inte skrivas ut. Skär ut botten " "eller aktivera support." #, boost-format @@ -9111,7 +9044,7 @@ msgid "" msgstr "" msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Misslyckades att skapa G-kod för ogiltlig custom G-kod.\n" @@ -9161,7 +9094,7 @@ msgid "Multiple" msgstr "Flertalet" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Misslyckades att kalkylera linjebredden av %1%. Kan inte få värdet av “%2%” " @@ -9295,9 +9228,9 @@ msgstr "" " är för nära uteslutningsområdet, och kollisioner kommer att orsakas.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Multipla filament som har större temperatur skillnader kan inte skrivas ut " "tillsammans. Extruder och nozzel kan blockeras eller skadas under utskrift" @@ -9383,23 +9316,24 @@ msgstr "" "Ett Prime Torn stöds inte med adaptiv lagerhöjd är aktiverad. Det kräver att " "samtliga objekt har samma lagerhöjd." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Ett Prime Torn kräver att \"mellanrums ifyllnaden\" är av multipla lager " "höjder" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "Ett Prime Torn kräver att alla objekt har samma lagerhöjd" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Ett Prime Torn kräver att alla objekt skrivs ut med samma antal Raft lager" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9409,7 +9343,7 @@ msgstr "Ett Prime Torn kräver att alla object är beredda med samma lagerhöjd. msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "Prime Tower stöds endast om alla objekt har samma variabla lagerhöjd." msgid "" @@ -9453,7 +9387,7 @@ msgid "" msgstr "" "Tvingande support används men support är inte aktiverad. Aktivera support." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Lagerhöjden kan inte överstiga nozzel diametern" msgid "" @@ -9553,8 +9487,8 @@ msgid "Elephant foot compensation" msgstr "Elefant fots kompensation" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Minska första lager på byggplattan för att kompensera elefant fots effekten" @@ -9573,7 +9507,7 @@ msgstr "lager" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Lagerhöjd för varje lager. Mindre lagerhöjd ger mer exakt tolerans men ökar " "även utskriftstiden" @@ -9581,13 +9515,13 @@ msgstr "" msgid "Printable height" msgstr "Utskriftsbar höjd" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "Maximala utskriftshöjd begränsas av skrivarens mekanism" msgid "Preferred orientation" msgstr "" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" msgid "Printer preset names" @@ -9596,7 +9530,7 @@ msgstr "Namn på förinställda skrivare" msgid "Use 3rd-party print host" msgstr "" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" msgid "Hostname, IP or URL" @@ -9619,7 +9553,7 @@ msgid "Device UI" msgstr "Enhetens gränssnitt" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Ange webbadressen till enhetens användar gränssnitt om den inte är densamma " "som printer värd" @@ -9634,7 +9568,7 @@ msgstr "" "Orca Slicer kan ladda upp G-kod filer till en printer värd. Det här fältet " "ska innehålla API nyckeln eller lösenordet som krävs för autentisering." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Skrivarens namn" msgid "HTTPS CA File" @@ -9666,7 +9600,7 @@ msgstr "" "distributionspunkter saknas eller är offline. Man kanske vill aktivera det " "här alternativet för självsignerade certifikat om anslutningen misslyckas." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Namn på förinställningar relaterade till den fysiska skrivaren" msgid "Authorization Type" @@ -9678,21 +9612,22 @@ msgstr "API nyckel" msgid "HTTP digest" msgstr "HTTP sammandrag" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Undvik att korsa väggar" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Undvik väggar vid förflyttning, för att undvika att filament droppar på ytan" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Undvik att korsa väggar - Max omvägslängd" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Maximalt omvägsavstånd för att undvika att korsa vägg: Skrivaren kommer inte " "att omväga om omvägsavståndet är större än detta värde. Omvägs längd kan " @@ -9706,8 +9641,8 @@ msgid "Other layers" msgstr "Andra lager" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Detta är byggplattans temperatur för lager förutom det första. Värdet 0 " "betyder att filamentet inte stöder utskrift på Cool Plate." @@ -9716,27 +9651,27 @@ msgid "°C" msgstr "° C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Detta är byggplattans temperatur för lager förutom det första. Ett värde på " "0 betyder att filamentet inte stöder utskrift på Engineering Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Detta är byggplattans temperatur för lager förutom det första. Värdet 0 " "betyder att filamentet inte stöder utskrift på High Temp Plate." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Byggplattans temperatur efter det första lagret. 0 betyder att filamentet " "inte stöds på den texturerade PEI-plattan." @@ -9748,71 +9683,65 @@ msgid "Initial layer bed temperature" msgstr "Byggplattans första lager temperatur" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Detta är byggplattans temperatur för första lager. Värdet 0 betyder att " "filamentet inte stöder utskrift på Cool Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Detta är byggplattans temperatur för första lager. Värdet 0 betyder att " "filamentet inte stöder utskrift på Engineering Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Detta är byggplattans temperatur för första lager. Värdet 0 betyder att " "filamentet inte stöder utskrift på High Temp Plate." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Byggplattans temperatur för första lager 0 betyder att filamentet inte stöds " "på den texturerade PEI-plattan." -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Byggplattans typ stöds av skrivaren" msgid "Smooth Cool Plate" msgstr "" -msgid "Engineering Plate" -msgstr "Engineering Plate" - msgid "Smooth High Temp Plate" msgstr "" -msgid "Textured Cool Plate" -msgstr "" - msgid "First layer print sequence" msgstr "Första lagrets utskrifts ordning" msgid "Other layers print sequence" -msgstr "Other layers print sequence" +msgstr "" msgid "The number of other layers print sequence" -msgstr "The number of other layers print sequence" +msgstr "" msgid "Other layers filament sequence" -msgstr "Other layers filament sequence" +msgstr "" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Denna G-kod används för varje lager innan Z axis lyfts" msgid "Bottom shell layers" @@ -9821,7 +9750,7 @@ msgstr "Botten skal lager" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Antal solida lager av bottenskalet, detta inkluderar botten lager. När " "tjockleken beräknas av detta värde som är tunnare än bottenskalets tjocklek, " @@ -9835,7 +9764,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Antal solida botten lager ökar om tjockleken beräknas om bottenskals lager " "är tunnare än detta värde. Detta kan undvikas genom att ha tunnare väggar " @@ -9855,22 +9784,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -9963,9 +9892,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -9976,8 +9905,8 @@ msgid "Bridge flow ratio" msgstr "Bridge/Brygg flöde" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10001,7 +9930,7 @@ msgstr "Flödesförhållande för övre ytan" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10011,7 +9940,7 @@ msgid "Bottom surface flow ratio" msgstr "" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10029,8 +9958,8 @@ msgid "Only one wall on top surfaces" msgstr "Endast en vägg på topp ytan" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Använd endast en vägg på topp ytan, för att ge mer utrymme till det övre " "ifyllningsmönstret" @@ -10055,7 +9984,7 @@ msgstr "Endast en vägg på första lagret" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" msgid "Extra perimeters on overhangs" @@ -10085,7 +10014,7 @@ msgid "Reverse only internal perimeters" msgstr "" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10105,9 +10034,9 @@ msgstr "" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" msgid "Partially bridged" @@ -10134,13 +10063,13 @@ msgstr "" msgid "Classic mode" msgstr "" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "" msgid "Slow down for overhang" msgstr "Sakta ner vid överhäng" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Aktivera detta val för att sänka hastigheten för olika överhängs grader" @@ -10150,11 +10079,11 @@ msgstr "" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10175,7 +10104,7 @@ msgid "External" msgstr "" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10194,7 +10123,7 @@ msgstr "" msgid "Brim width" msgstr "Brim bredd" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Avståndet från modellen till yttersta brim linjen" msgid "Brim type" @@ -10215,13 +10144,13 @@ msgstr "Avstånd mellan brim och modell" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Mellanrum mellan innersta brim linjen och objektet kan underlätta vid " "borttagande av brim" msgid "Brim ears" -msgstr "" +msgstr "Brätte öron" msgid "Only draw brim over the sharp edges of the model." msgstr "" @@ -10230,8 +10159,8 @@ msgid "Brim ear max angle" msgstr "" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" @@ -10241,7 +10170,7 @@ msgstr "" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" msgid "Compatible machine" @@ -10271,7 +10200,7 @@ msgid "" "compatible with the active print profile." msgstr "" -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Utskrifts sekvens, lager för lager eller objekt för objekt" msgid "By layer" @@ -10283,7 +10212,7 @@ msgstr "Per objekt" msgid "Intra-layer order" msgstr "" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "" msgid "As object list" @@ -10296,7 +10225,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Aktivera detta val för att sänka utskifts hastigheten för att göra den sista " "lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets " @@ -10308,7 +10237,7 @@ msgstr "Normal utskrift" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Standard acceleration för både normal utskrift och förflyttning förrutom " "första lager" @@ -10316,17 +10245,17 @@ msgstr "" msgid "Default filament profile" msgstr "Standard filament profil" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Standard filament profil vid byte till denna maskinens profil" msgid "Default process profile" msgstr "Standard process profil" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Standard process profil vid byte till denna maskinens profil" msgid "Activate air filtration" -msgstr "Activate air filtration" +msgstr "" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" msgstr "" @@ -10335,21 +10264,21 @@ msgid "Fan speed" msgstr "Fläkt hastighet" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Hastighet för frånlufts fläkt under utskrift. Denna hastighet kommer att " "åsidosätta hastigheten i filament anpassad g-kod" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "" msgid "No cooling for the first" msgstr "Ingen kylning vid första" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Stoppa alla kylfläktar vid det första valda lager. Kylfläkten ska vara " "stängd vid första lager för att förbättra fästet på byggplattan" @@ -10358,8 +10287,8 @@ msgid "Don't support bridges" msgstr "Ingen support vid bridges/bryggor" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Detta inaktiverar support vid bridges/bryggor för att minska mängden av " "support. Bridges/Bryggor kan vanligtvis skrivas ut utan support om de inte " @@ -10405,20 +10334,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10441,31 +10370,25 @@ msgstr "" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10492,20 +10415,20 @@ msgstr "" msgid "End G-code" msgstr "Slut G-kod" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Lägg till slut G-kod när utskriften har avslutas" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "Mellan objekt G kod" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Infoga G-kod mellan objekt. Denna parameter träder i kraft först när du " "skriver ut dina modeller objekt för objekt." -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Lägg till slut G-kod när utskriften har avslutas med detta filament" msgid "Ensure vertical shell thickness" @@ -10531,7 +10454,7 @@ msgstr "" msgid "Top surface pattern" msgstr "Topp ytans mönster" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Linjemönster för topp ytans ifyllnad" msgid "Concentric" @@ -10561,7 +10484,7 @@ msgstr "Octagram Spiral" msgid "Bottom surface pattern" msgstr "Botten ytans mönster" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Botten ytans ifyllnads linjemönster, inte bridge/brygg ifyllnad" msgid "Internal solid infill pattern" @@ -10598,7 +10521,7 @@ msgid "Small perimeters threshold" msgstr "" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är " "0mm" @@ -10607,7 +10530,7 @@ msgid "Walls printing order" msgstr "" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10621,7 +10544,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10754,7 +10677,7 @@ msgstr "" msgid "Extruder Color" msgstr "Extruder Färg" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Används endast som visuell hjälp på UI" msgid "Extruder offset" @@ -10764,24 +10687,24 @@ msgid "Flow ratio" msgstr "Flödesförhållande" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Materialets volym kan ha ändrats efter byte mellan smält och kristalliserat " -"tillstånd.Denna inställning ändrar alla inställningar för extruderings " +"tillstånd. Denna inställning ändrar alla inställningar för extruderings " "flödet för detta filament proportionellt i G-koden. Det rekommenderade " "värdet är mellan 0.95 och 1.05. Du kan finjustera detta värde för att få en " "fin flat yta när visst överflöde eller underflöde finns" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -10795,7 +10718,7 @@ msgid "" "enabled." msgstr "" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" msgid "Enable adaptive pressure advance (beta)" @@ -10842,19 +10765,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10871,9 +10793,9 @@ msgid "Pressure advance for bridges" msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10888,8 +10810,9 @@ msgid "Keep fan always on" msgstr "Behåll alltid fläkten på" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Om den här inställningen aktiveras, kommer en del kylfläkten aldrig stoppas " "och den kommer att åtminstone gå på lägsta hastighet för att minska " @@ -10902,13 +10825,11 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" msgid "Layer time" @@ -10917,7 +10838,7 @@ msgstr "Lager tid" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Del kylfläkten kommer att aktiveras för lager vars beräknade tid är kortare " "än detta värde. Fläkthastigheten interpoleras mellan den lägsta och högsta " @@ -10930,10 +10851,10 @@ msgid "Default filament color" msgstr "Standard filament färg" msgid "Filament notes" -msgstr "Filament notes" +msgstr "" msgid "You can put your notes regarding the filament here." -msgstr "You can put your notes regarding the filament here." +msgstr "" msgid "Required nozzle HRC" msgstr "HRC nozzle krävs" @@ -10948,7 +10869,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Den här inställningen är volymen filament som kan smältas och extruderas per " "sekund. Utskriftshastigheten begränsas av den maximala volymhastigheten om " @@ -10963,7 +10884,7 @@ msgstr "Inmatningstid för filament" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -10972,7 +10893,7 @@ msgstr "Utmatningstid för filament" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -10981,12 +10902,12 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Filament diametern används för att beräkna extruderingen i G-kod, viktigt " "att detta är rätt" @@ -11042,7 +10963,7 @@ msgid "Unloading speed" msgstr "" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" @@ -11057,8 +10978,8 @@ msgid "Delay after unloading" msgstr "" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" @@ -11080,7 +11001,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11123,38 +11044,38 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" msgid "Multi-tool ramming volume" msgstr "" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "" msgid "Multi-tool ramming flow" msgstr "" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "" msgid "Density" msgstr "Densitet" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Filament densitet, endast för statistiska ändamål" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Filament material" msgid "Soluble material" msgstr "Lösligt material" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Lösligt material används vanligtvis som utskrifts support och supportets " "gränsyta" @@ -11163,7 +11084,7 @@ msgid "Support material" msgstr "Support material" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Support material används ofta för att skriva ut support och stödja " "gränssnittet" @@ -11173,17 +11094,14 @@ msgstr "Mjuknings temperatur" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." -msgstr "" -"The material softens at this temperature, so when the bed temperature is " "equal to or greater than this, it's highly recommended to open the front " -"door and/or remove the upper glass to avoid clogs." +"door and/or remove the upper glass to avoid clogging." +msgstr "" msgid "Price" msgstr "Pris" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Filament pris, endast för statistiska ändamål" msgid "money/kg" @@ -11192,7 +11110,7 @@ msgstr "pris/kg" msgid "Vendor" msgstr "Leverantör" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Försäljare av filament. Endast för visning" msgid "(Undefined)" @@ -11203,7 +11121,7 @@ msgstr "" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Vinkeln för sparsam ifyllnads mönster, som styr start- eller huvudriktningen " "för linjer" @@ -11213,7 +11131,7 @@ msgstr "" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" msgid "Rotate solid infill direction" @@ -11228,13 +11146,13 @@ msgstr "Sparsam ifyllnads densitet" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "Sparsam ifyllnads mönster" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Linjemönster för sparsam ifyllnad" msgid "Grid" @@ -11303,7 +11221,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -11325,7 +11243,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11333,23 +11251,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Acceleration av fyllning av toppytan. Att använda ett lägre värde kan " "förbättra ytkvaliteten" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "Acceleration av yttervägg: ett lägre värde kan förbättra kvaliteten." msgid "" @@ -11358,7 +11276,7 @@ msgid "" msgstr "" msgid "mm/s² or %" -msgstr "mm/s² or %" +msgstr "mm/s² eller %" msgid "" "Acceleration of sparse infill. If the value is expressed as a percentage " @@ -11375,7 +11293,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Utskrifts acceleration för första lager. Ett lägre värde kan förbättra " "objektets fäste på byggplattan" @@ -11383,7 +11301,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Aktivera accel_to_decel" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Klippers max_accel_to_decel kommer att justeras automatiskt" msgid "accel_to_decel" @@ -11391,25 +11309,25 @@ msgstr "accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Jerk ytterväggar" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Jerk innerväggar" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "" msgid "" @@ -11422,25 +11340,25 @@ msgstr "Första lagerhöjd" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Första lagerhöjd. Högre första lager kan förbättra objektets fäste på " "byggplattan" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "" "Hastigheten för det första lagret förutom för solida ifyllnads sektioner" msgid "Initial layer infill" msgstr "Första lager ifyllnad" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Hastigheten för fasta ifyllnadsdelar av det första lagret" msgid "Initial layer travel speed" msgstr "" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "" msgid "Number of slow layers" @@ -11454,7 +11372,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Nozzel temperatur för första lager" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "Nozzel temperatur för första lager med detta filament" msgid "Full fan speed at layer" @@ -11476,7 +11394,7 @@ msgstr "" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11497,7 +11415,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Inställningen gör att verktygshuvudet skakar slumpmässigt vid utskrift av " "väggar så att ytan får ett strävt utseende. Denna inställning styr fuzzy " @@ -11517,7 +11435,7 @@ msgstr "Fuzzy skin tjocklek" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Bredd på skakning: Det rekommenderas att hålla denna lägre än den yttre " "vägglinjens bredd" @@ -11527,7 +11445,7 @@ msgstr "Fuzzy skin punktavstånd" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Den genomsnittliga distansen mellan de slumpmässiga punkter som införts på " "varje linjesegment" @@ -11535,14 +11453,14 @@ msgstr "" msgid "Apply fuzzy skin to first layer" msgstr "" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "" msgid "Fuzzy skin noise type" msgstr "" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11605,29 +11523,26 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Hastigheten för fyllning av mellanrum. Mellanrum har vanligtvis oregelbunden " "linjebredd och bör skrivas ut långsammare" msgid "Precise Z height" -msgstr "Precise Z height" +msgstr "" msgid "" "Enable this to get precise z height of object after slicing. It will get the " "precise object height by fine-tuning the layer heights of the last few " "layers. Note that this is an experimental parameter." msgstr "" -"Enable this to get precise z height of object after slicing. It will get the " -"precise object height by fine-tuning the layer heights of the last few " -"layers. Note that this is an experimental parameter." msgid "Arc fitting" msgstr "Arc passning" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11639,7 +11554,8 @@ msgstr "" msgid "Add line number" msgstr "Lägg till rad nummer" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Aktivera detta för att lägga till rad nummer(Nx) i början av varje G-kod rad" @@ -11648,7 +11564,7 @@ msgstr "Skanna första lager" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Aktivera detta för att låta kameran i skrivaren kontrollera kvaliteten på " "det första lager" @@ -11658,7 +11574,7 @@ msgstr "Nozzel typ" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Nozzelns metalliska material avgör munstyckets nötningsbeständighet och " "vilken typ av filament som kan skrivas ut" @@ -11691,7 +11607,7 @@ msgstr "HRC" msgid "Printer structure" msgstr "Printerns struktur" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Den fysiska utformningen och komponenterna i en utskriftsenhet" msgid "CoreXY" @@ -11724,11 +11640,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" -"Use 0 to deactivate." +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" msgstr "" msgid "Only overhangs" @@ -11751,7 +11666,7 @@ msgstr "" msgid "Time cost" msgstr "" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "" msgid "money/h" @@ -11776,7 +11691,7 @@ msgstr "" msgid "G-code flavor" msgstr "G-kod smak" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "Vilken typ av G-kod är skrivaren kompatibel med" msgid "Klipper" @@ -11785,20 +11700,20 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" msgid "Label objects" msgstr "" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11807,7 +11722,7 @@ msgstr "" msgid "Exclude objects" msgstr "Exkludera objekt" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" msgid "Verbose G-code" @@ -11834,7 +11749,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11874,36 +11789,32 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Hastighet för sparsam ifyllnad" msgid "Inherits profile" msgstr "" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "" msgid "Interface shells" -msgstr "Interface shells" +msgstr "" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" -"Force the generation of solid shells between adjacent materials/volumes. " -"Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" msgid "Maximum width of a segmented region" msgstr "Maximal bredd för en segmenterad region" msgid "Maximum width of a segmented region. Zero disables this feature." msgstr "" -"Maximum width of a segmented region. A value of 0 disables this feature." msgid "Interlocking depth of a segmented region" msgstr "Sammanhängande djup i en segmenterad region" @@ -11911,7 +11822,7 @@ msgstr "Sammanhängande djup i en segmenterad region" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" @@ -11986,7 +11897,7 @@ msgstr "Alla solida lager" msgid "Ironing Pattern" msgstr "Mönster för strykning" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "" msgid "Ironing flow" @@ -11994,7 +11905,7 @@ msgstr "Strykningsflöde" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Denna mängd av material kommer att extruderas under strykningen. Den är " "relativ till flödet av normal lagerhöjd. För högt värde resulterar i över " @@ -12003,7 +11914,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Strykning linjens mellanrum" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Avståndet mellan linjerna när strykning utförs" msgid "Ironing inset" @@ -12011,13 +11922,13 @@ msgstr "" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "Stryknings hastighet" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Utskrifts hastighet för strykning" msgid "Ironing angle" @@ -12028,7 +11939,7 @@ msgid "" "uses the default method." msgstr "" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "Denna G-kod infogas vid varje lagerbyte efter lyft av Z axis" msgid "Supports silent mode" @@ -12036,7 +11947,7 @@ msgstr "Tyst läge" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Om maskinen stöder tyst läge där maskinen använder lägre acceleration för " "att skriva ut" @@ -12049,23 +11960,23 @@ msgstr "Maskin begränsningar" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Denna G-kod kommer att användas som kod för att pausa utskriften. Användare " "kan infoga paus G-kod i G-kod visaren." -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Denna G-kod kommer att användas som en anpassad kod." msgid "Small area flow compensation (beta)" msgstr "" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "" msgid "Flow Compensation Model" @@ -12177,12 +12088,12 @@ msgstr "Max acceleration för retraktion (M204 R)" msgid "Maximum acceleration for travel" msgstr "Max acceleration för förflyttning" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Del kylfläktens hastighet kan ökas när automatisk kylning är aktiverad. " "Detta är max hastighets begränsning för en del kylfläkt" @@ -12191,8 +12102,8 @@ msgid "Max" msgstr "Max" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Högsta utskrivbara lagerhöjd för extrudern: detta används för att begränsa " "den maximala lagerhöjden när adaptiv lagerhöjd är aktiverad" @@ -12206,23 +12117,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12237,11 +12148,11 @@ msgstr "" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12256,7 +12167,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Min hastighet för del kylfläkten" msgid "" @@ -12271,8 +12182,8 @@ msgid "Min" msgstr "Min" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Den lägsta utskrivbara lagerhöjden för extrudering. Används tp begränsas den " "lägsta lagerhöjden när adaptiv lagerhöjd aktiveras" @@ -12310,7 +12221,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Nozzle volym" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Volymen av nozzlen mellan skäraren och nozzlens ände" msgid "Cooling tube position" @@ -12348,7 +12259,7 @@ msgstr "" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" @@ -12364,7 +12275,7 @@ msgstr "Minska ifyllnads retraktionen" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Dra inte tillbaka när förflyttningen är helt i ett utfyllnadsområde. Det " "betyder att läckage av filament inte kan ses. Detta kan minska tiderna för " @@ -12379,7 +12290,7 @@ msgstr "" msgid "Filename format" msgstr "Filnamns format" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "Användaren kan bestämma projekt namn när den ska exporteras" msgid "Make overhangs printable" @@ -12402,7 +12313,7 @@ msgstr "" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" msgid "mm²" @@ -12428,10 +12339,10 @@ msgid "" "nozzle diameter." msgstr "" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Hastighet för inre vägg" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Antal väggar för varje lager" msgid "Alternate extra wall" @@ -12439,10 +12350,10 @@ msgstr "" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12463,10 +12374,10 @@ msgid "Type of the printer" msgstr "" msgid "Printer notes" -msgstr "Printer notes" +msgstr "" msgid "You can put your notes regarding the printer here." -msgstr "You can put your notes regarding the printer here." +msgstr "" msgid "Printer variant" msgstr "" @@ -12474,27 +12385,27 @@ msgstr "" msgid "Raft contact Z distance" msgstr "Raft kontakt Z avstånd" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Där finns Z mellanrum mellan ett objekt och en raft. Detta ignoreras för " "lösliga gränssnitt" msgid "Raft expansion" -msgstr "Raft expansion" +msgstr "" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Öka alla raft lager i XY planet" msgid "Initial layer density" msgstr "Första lager densitet" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Densiteten av första raft eller support lager" msgid "Initial layer expansion" msgstr "Första lager expansion" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Öka första raft eller support lager för att förbättra fäste emot byggplattan" @@ -12503,15 +12414,15 @@ msgstr "Raft lager" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Objekt kommer att höjas med detta antal support lager. Använd denna funktion " "för att undvika warping vid utskrift av ABS" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "G-kods vägen genereras efter förenkling av modellens konturer för att " "undvika för många punkter och G-kod linjer. Mindre värden betyder högre " @@ -12522,7 +12433,7 @@ msgstr "Förflyttningsavståndets gräns" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Aktivera endast retraktion när förflyttnings sträckan är längre än denna " "gräns" @@ -12531,7 +12442,7 @@ msgid "Retract amount before wipe" msgstr "Retraktions mängd innan wipe" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Detta är längden av snabb retraktion före en wipe, i förhållande till " "retraktions längden" @@ -12539,7 +12450,7 @@ msgstr "" msgid "Retract when change layer" msgstr "Retraktera vid lager byte" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Tvinga retraktion vid lager byte" msgid "Retract on top layer" @@ -12547,7 +12458,7 @@ msgstr "" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -12560,29 +12471,23 @@ msgstr "" "En del av materialet i extrudern dras tillbaka för att undvika dropp under " "långa förflyttningar. Sätt på 0 för att inaktivera retraktion" -msgid "Long retraction when cut(beta)" -msgstr "Long retraction when cut (beta)" +msgid "Long retraction when cut (beta)" +msgstr "" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Experimental feature: Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " -"significantly, it may also raise the risk of nozzle clogs or other printing " -"problems." msgid "Retraction distance when cut" -msgstr "Retraction distance when cut" +msgstr "" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Experimental feature. Retraction length before cutting off during filament " -"change" msgid "Z-hop height" msgstr "" @@ -12590,39 +12495,36 @@ msgstr "" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "När det är en retraktion lyfts nozzel en aning för att skapa ett spel mellan " "nozzel och utskriften. Detta förhindrar att nozzel träffar utskriften när " "den förflyttas. Att använda spirallinjer för att lyfta z kan förhindra " "strängning" -msgid "Z hop lower boundary" -msgstr "Z hopp nedre gräns" +msgid "Z-hop lower boundary" +msgstr "Z-hopp nedre gräns" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" -"Z hop kommer endast att träda i kraft när Z är över detta värde och är under " +"Z-hop kommer endast att träda i kraft när Z är över detta värde och är under " "parametern: \"Övre gräns för Z-hopp\"" -msgid "Z hop upper boundary" -msgstr "Z hopp övre gräns" +msgid "Z-hop upper boundary" +msgstr "Z-hopp övre gräns" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" -"Om detta värde är positivt kommer Z hop endast att träda i kraft när Z är " -"över parametern: \"Z hop nedre gräns\" och är under detta värde" +"Om detta värde är positivt kommer Z-hop endast att träda i kraft när Z är " +"över parametern: \"Z-hop nedre gräns\" och är under detta värde" msgid "Z-hop type" msgstr "" -msgid "Z hop type" -msgstr "" - msgid "Slope" msgstr "Lutning" @@ -12633,8 +12535,8 @@ msgid "Traveling angle" msgstr "" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12657,7 +12559,7 @@ msgid "On surfaces" msgstr "" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" @@ -12689,15 +12591,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Retraktions hastighet" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Hastighet för retraktion" msgid "De-retraction Speed" msgstr "Åter retraktions hastighet" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Laddnings hastighet för filamentet in i extrudern efter en retraktion; om du " "ställer in detta till 0 betyder det att det blir samma hastighet som " @@ -12718,13 +12620,13 @@ msgid "Disable set remaining print time" msgstr "" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" msgid "Seam position" msgstr "Söm position" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Utskriftens start position för varje del av yttre väggen" msgid "Nearest" @@ -12762,20 +12664,17 @@ msgstr "" msgid "Use scarf joint to minimize seam visibility and increase seam strength." msgstr "" -"Use scarf joint to minimize seam visibility and increase seam strength." msgid "Conditional scarf joint" -msgstr "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 "" -"Apply scarf joints only to smooth perimeters where traditional seams do not " -"conceal the seams at sharp corners effectively." msgid "Conditional angle threshold" -msgstr "Conditional angle threshold" +msgstr "" msgid "" "This option sets the threshold angle for applying a conditional scarf joint " @@ -12802,7 +12701,7 @@ 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 " +"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 " @@ -12818,50 +12717,45 @@ msgid "This factor affects the amount of material for scarf joints." msgstr "" msgid "Scarf start height" -msgstr "Scarf start height" +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 "" -"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." msgid "Scarf around entire wall" -msgstr "Scarf around entire wall" +msgstr "" msgid "The scarf extends to the entire length of the wall." -msgstr "The scarf extends to the entire length of the wall." +msgstr "" msgid "Scarf length" -msgstr "Scarf length" +msgstr "" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." msgstr "" -"Length of the scarf. Setting this parameter to zero effectively disables the " -"scarf." msgid "Scarf steps" -msgstr "Scarf steps" +msgstr "" msgid "Minimum number of segments of each scarf." -msgstr "Minimum number of segments of each scarf." +msgstr "" msgid "Scarf joint for inner walls" -msgstr "Scarf joint for inner walls" +msgstr "" msgid "Use scarf joint for inner walls as well." -msgstr "Use scarf joint for inner walls as well." +msgstr "" msgid "Role base wipe speed" msgstr "" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -12882,7 +12776,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -12894,9 +12788,9 @@ msgstr "Hastighet för avtorkning" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Torkhastigheten bestäms av den hastighetsinställning som anges i denna " "konfiguration. Om värdet uttrycks i procent (t.ex. 80%), kommer det att " @@ -12920,7 +12814,7 @@ msgstr "" msgid "Skirt height" msgstr "Skirt höjd" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Antal skirt lager: vanligtvis bara en" msgid "Single loop draft shield" @@ -12938,7 +12832,7 @@ msgstr "" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -12967,7 +12861,7 @@ msgstr "" msgid "Skirt loops" msgstr "Skirt varv" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Antal skirt varv. 0 betyder att skirt är inaktiverad" msgid "Skirt speed" @@ -12983,15 +12877,16 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Utskriftshastigheten i exporterad G-kod kommer att saktas ner när den " "beräknade lager tiden är kortare än detta värde för att få bättre kylning " @@ -13002,7 +12897,7 @@ msgstr "Min sparsam ifyllnads gräns" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Sparsam ifyllnads ytor som är mindre än detta gränsvärde ersätts med inre " "solid ifyllnad" @@ -13018,35 +12913,33 @@ msgid "" "computed over the nozzle diameter." msgstr "" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "Hastighet för inre solid ifyllnad, förrutom topp och botten ytorna" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Möjliggör spiral bildning, vilket jämnar ut Z-rörelserna på den yttre " "konturen och förvandlar en solid modell till en enkelväggig utskrift med " "solida bottenlager. Den slutgiltligt genererade modellen har ingen söm" msgid "Smooth Spiral" -msgstr "Smooth Spiral" +msgstr "" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" -"Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" msgid "Max XY Smoothing" -msgstr "Max XY Smoothing" +msgstr "" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" msgid "Spiral starting flow ratio" @@ -13098,8 +12991,8 @@ msgstr "Temperatur variation" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -13116,23 +13009,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "Starta G-kod" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Starta G-kod när utskrift startar" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Starta G-kod när utskrift startar med detta filament" msgid "Single Extruder Multi Material" msgstr "" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "" msgid "Manual Filament Change" @@ -13149,18 +13042,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "" msgid "No sparse layers (beta)" msgstr "" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -13221,10 +13114,13 @@ msgid "Enable support generation." msgstr "Aktivera support generering." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" +"normal (auto) och tree (auto) används för att generera support automatiskt. " +"Om normal (manual) eller tree (manual) väljs, genereras endast support " +"förstärkare." msgid "Normal (auto)" msgstr "normal (auto)" @@ -13241,14 +13137,14 @@ msgstr "tree (manuell)" msgid "Support/object xy distance" msgstr "Support/objekt xy distans" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "XY avstånd mellan objektet och support" msgid "Support/object first layer gap" -msgstr "Support/object first layer gap" +msgstr "" msgid "XY separation between an object and its support at the first layer." -msgstr "XY separation between an object and its support at the first layer." +msgstr "" msgid "Pattern angle" msgstr "Mönster vinkel" @@ -13261,7 +13157,7 @@ msgstr "" msgid "On build plate only" msgstr "Endast på byggplattan" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Inställningen skapar bara support som utgår ifrån byggplattan" msgid "Support critical regions only" @@ -13283,14 +13179,14 @@ msgstr "Ta bort små överhäng som eventuellt inte behöver stöd." msgid "Top Z distance" msgstr "Topp Z-distans" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "" "Detta bestämmer Z-avståndet mellan det övre support gränssnittet och objektet" msgid "Bottom Z distance" msgstr "Nedre Z-avstånd" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "Z-gapet mellan botten support och objektets anläggningsyta" msgid "Support/raft base" @@ -13298,7 +13194,7 @@ msgstr "Support/raft bas" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Filament för att skriva ut support och rafts. ”Standard” betyder ingen " "specifik filament för support, och nuvarande filament används" @@ -13331,7 +13227,7 @@ msgstr "Gränssnitt för support/raft" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament för att skriva ut supportens anläggningsyta. ” Standard” betyder " "ingen specifik filament för supportens anläggningsyta, och nuvarande " @@ -13340,13 +13236,13 @@ msgstr "" msgid "Top interface layers" msgstr "Översta gränssnitts lager" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Antal topp gränssnitts lager" msgid "Bottom interface layers" msgstr "Botten gränssnitts lager" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Antal nedre gränsyte skikt" msgid "Same as top" @@ -13355,23 +13251,23 @@ msgstr "Samma som toppen" msgid "Top interface spacing" msgstr "Topp gränssnitts avstånd" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "Avstånd mellan gränssnitts linjer. 0 betyder solid gränssnitt" msgid "Bottom interface spacing" msgstr "Botten gränssnitts mellanrum" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Mellanrummet på botten gränssnittets linjer. 0 betyder solid gränssnitt" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Support gränssnittets hastighet" msgid "Base pattern" msgstr "Botten mönster" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Supportens linje mönster" msgid "Rectilinear grid" @@ -13386,7 +13282,7 @@ msgstr "Gränssnitts mönster" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Linje mönster för support gränssnittsytan .Standardmönstret för olösligt " "(material) support gränssnittet är Räta medan standardmönstret för " @@ -13398,17 +13294,17 @@ msgstr "Rätlinjig sammanflätning" msgid "Base pattern spacing" msgstr "Basens mönster mellanrum" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Mellanrum mellan support linjer" msgid "Normal Support expansion" msgstr "Normal support expansion" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "" "Expandera (+) eller krymp (-) det horisontella spännvidden för normalt stöd" -msgid "Speed of support" +msgid "Speed of support." msgstr "Support hastighet" msgid "" @@ -13444,7 +13340,7 @@ msgstr "Oberoende support lagerhöjd" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Support lager använder lagerhöjd oberoende av objekt lager. Detta för att " @@ -13472,8 +13368,8 @@ msgid "Tree support branch angle" msgstr "Tree support grenarnas vinkel" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Inställningen bestämmer max överhängs vinkel som grenarna i tree support " @@ -13514,8 +13410,8 @@ msgid "Adaptive layer height" msgstr "Adaptiv lagerhöjd" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" msgid "Auto brim width" @@ -13523,13 +13419,13 @@ msgstr "" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" msgid "Tree support brim width" msgstr "Tree supportens brim bredd" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "" msgid "Tip Diameter" @@ -13570,7 +13466,7 @@ msgstr "Tree support med ifyllnad" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Inställningen bestämmer om det ska läggas till ifyllnad i stora hålrum av " "tree support" @@ -13584,7 +13480,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13599,13 +13495,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13614,7 +13510,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Nozzel temperatur efter första lager" msgid "Detect thin wall" @@ -13622,20 +13518,20 @@ msgstr "Upptäck tunna väggar" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Upptäck tunna väggar som inte kan ha två linjer och använder en linje för " "att skrivas ut. Utskrifts kvaliteten begränsas efter som det inte är en " "sluten slinga" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "G-koden sätts in vid filament byte, inklusive T kommando som aktiverar " "verktygs byte" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "" msgid "" @@ -13643,7 +13539,7 @@ msgid "" "the nozzle diameter." msgstr "" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Hastighet för solida topp ytors ifyllnad" msgid "Top shell layers" @@ -13652,7 +13548,7 @@ msgstr "Övre skal lager" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Antal solida topp lager på topp skal, inkluderar topp ytans lager. När " "tjockleken kalkyleras av detta värde och det är tunnare än topp skalets " @@ -13669,22 +13565,23 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Antal solida övre lager ökas när tjockleken kalkyleras och övre skalet är " "tunnare än detta värde. Detta kan undvika att ha för tunt skal när " "lagerhöjden är liten. 0 betyder att den här inställningen är inaktiverad och " "tjockleken på det övre skalet bestäms av de övre skal lagerna" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Förflyttnings hastighet" msgid "Wipe while retracting" msgstr "Avskrapa medans retraktering" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Detta flyttarnozzeln längs den sista extruderingsbanan när det retrakterar " "för att rengöra eventuellt läckt material på nozzeln. Detta kan minimera " @@ -13695,11 +13592,11 @@ msgstr "Avskrapnings avstånd" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13733,7 +13630,7 @@ msgstr "Prime volym (volymen av ut pressat material)" msgid "The volume of material to prime extruder on tower." msgstr "Material volymen att (pressa ut) genom extrudern på tornet." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Prime tornets bredd" msgid "Wipe tower rotation angle" @@ -13767,7 +13664,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -13811,8 +13708,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Det här objektet används för att rensa nozzeln efter ett filamentbyte för " "att spara filament och minska utskriftstiden. Färgerna i objekten kommer att " @@ -13844,18 +13741,20 @@ msgid "Idle temperature" msgstr "" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "X-Y håls kompensation" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Objektets hål kommer att krympa eller öka i XY planet med valt värde. " "Positivt värde ökar och negativt värde minskar hålets storlek. Denna " @@ -13865,11 +13764,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y kontur kompenstation" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Objektets kontur kommer att krympa eller öka i XY planet med konfigurerat " "värde. Positivt värde ökar och negativt värde minskar konturens storlek. " @@ -13917,23 +13817,23 @@ msgstr "" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" msgid "Use relative E distances" msgstr "Använd relativa E avstånd" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Den klassiska vägg generatorn producerar väggar med konstant extruderings " "bredd och för mycket tunna områden används gap-fill. Arachne-motorn " @@ -13948,7 +13848,7 @@ msgstr "Längd för vägg övergång" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Vid övergång mellan olika antal väggar när delen blir tunnare, tilldelas ett " "visst utrymme för att dela eller sammanfoga väggsegmenten. Det uttrycks i " @@ -13964,7 +13864,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Förhindra övergång fram och tillbaka mellan en extra vägg och en mindre. " "Denna marginal utökar intervallet av extruderingsbredder som följer till " @@ -13982,7 +13882,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "När man skapar övergångar mellan jämna och udda antal väggar. En kil form " "med en vinkel som är större än den här inställningen kommer inte att ha " @@ -13996,7 +13896,7 @@ msgstr "Antal vägg fördelningar" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Antalet väggar, räknat från mitten, över vilka variationen ska spridas. " "Lägre värden innebär att de yttre väggarna inte ändras i bredd." @@ -14004,11 +13904,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minsta funktions storlek" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "Minsta tjocklek på tunna funktioner. Modellfunktioner som är tunnare än " "detta värde skrivs inte ut, medan funktioner som är tjockare än minsta " @@ -14045,7 +13946,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Bredden på den vägg som ska ersätta tunna element (enligt minsta storlek för " "element) i modellen. Om den minsta väggbredden är tunnare än tjockleken på " @@ -14056,9 +13957,9 @@ msgid "Detect narrow internal solid infill" msgstr "Upptäck tight inre solid ifyllnad" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Detta val kommer att auto upptäcka tight inre solid ifyllnads område. Om " "aktiverat kommer det koncentriska mönstret att användas för området för att " @@ -14092,7 +13993,7 @@ msgstr "Exportera beredningsdata till en mapp" msgid "Load slicing data" msgstr "Ladda berednings data" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Ladda cachad berednings data från katalogen" msgid "Export STL" @@ -14104,7 +14005,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -14127,13 +14028,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "Ladda standard filament" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Ladda första filamentet som standard för de som inte laddats" msgid "Minimum save" @@ -14157,7 +14058,7 @@ msgstr "Max berednings tid per platta i sekunder" msgid "No check" msgstr "Ingen kontroll" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Utför inga giltighets kontroller, t.ex. kontroll av konflikter mellan G-kod " "och banor." @@ -14192,17 +14093,17 @@ msgstr "Placera Val" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Placera val: 0-inaktivera, 1-aktivera, andra-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Antal upprepningar" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Antal upprepningar av hela modellen" msgid "Ensure on bed" msgstr "" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" msgid "" @@ -14213,7 +14114,7 @@ msgstr "" msgid "Convert Unit" msgstr "Konvertera enhet" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Konvertera modellens enheter" msgid "Orient Options" @@ -14231,65 +14132,65 @@ msgstr "" msgid "Rotation angle around the Y axis in degrees." msgstr "" -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Skala modellen med en plus faktor" msgid "Load General Settings" msgstr "Ladda allmänna inställningar" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Ladda process/maskin inställningar ifrån vald fil" msgid "Load Filament Settings" msgstr "Ladda filament inställningar" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Ladda filament inställningar ifrån vald fil" msgid "Skip Objects" msgstr "Hoppa över objekt" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Hoppa över vissa objekt i denna utskrift" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "ladda senaste process/maskin inställningar vid användning av senaste" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "ladda aktuella process/maskin inställningar från angiven fil vid användning " "av aktuella" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14320,13 +14221,13 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "" msgid "Load filament ids" @@ -14335,30 +14236,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14385,13 +14286,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" msgid "" @@ -14475,10 +14376,10 @@ msgstr "" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "" msgid "Total volume" @@ -14701,7 +14602,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Ett objekts XY-storleks kompensation kommer inte att användas eftersom den " "är också färglagd.\n" @@ -14725,14 +14626,11 @@ msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "" "Okänt filformat: indata filen måste ha fil ändelsen .3mf eller .zip.amf." -msgid "Canceled" -msgstr "Avbruten" - msgid "load_obj: failed to parse" msgstr "load_obj: misslyckades med att analysera" msgid "load mtl in obj: failed to parse" -msgstr "load mtl in obj: failed to parse" +msgstr "" msgid "The file contains polygons with more than 4 vertices." msgstr "Filen innehåller polygoner med fler än 4 hörn." @@ -14831,7 +14729,7 @@ msgid "The name cannot be empty." msgstr "Namnet får inte vara tomt." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Den valda inställningen: %s hittades inte." msgid "The name cannot be the same as the system preset name." @@ -14865,14 +14763,9 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" -"This machine type can only hold 16 historical results per nozzle. You can " -"delete the existing historical results and then start calibration. Or you " -"can continue the calibration, but you cannot create new calibration " -"historical results. \n" -"Do you still want to continue the calibration?" msgid "Connecting to printer..." msgstr "Ansluter till skrivaren..." @@ -14880,7 +14773,7 @@ msgstr "Ansluter till skrivaren..." msgid "The failed test result has been dropped." msgstr "Det misslyckade testresultatet har tagits bort." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Flödesdynamik kalibrerings resultaten har sparats på printern." #, c-format, boost-format @@ -14898,8 +14791,6 @@ msgid "" "This machine type can only hold %d history results per nozzle. This result " "will not be saved." msgstr "" -"This machine type can only hold %d historical results per nozzle. This " -"result will not be saved." msgid "Internal Error" msgstr "Internt fel" @@ -14907,11 +14798,11 @@ msgstr "Internt fel" msgid "Please select at least one filament for calibration" msgstr "Välj minst ett filament för kalibrering" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "" "Resultat för kalibrering av flödeshastigheten har sparats till inställningen." -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Max volymetrisk hastighets kalibrerings resultat har sparats till " "förinställningen" @@ -14924,10 +14815,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Vi har nu lagt till automatisk kalibrering för olika filament, vilket är " "helt automatiserat och resultatet sparas i printern för framtida användning. " @@ -14968,22 +14859,13 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"After using Flow Dynamics Calibration, there might still be some extrusion " -"issues, such as:\n" -"1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" -"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" -"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." msgid "" "In addition, Flow Rate Calibration is crucial for foaming materials like LW-" @@ -15028,22 +14910,6 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" -"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, " -"directly measuring the calibration patterns. However, please be advised that " -"the efficacy and accuracy of this method may be compromised with specific " -"types of materials. Particularly, filaments that are transparent or semi-" -"transparent, sparkling-particled, or have a high-reflective finish may not " -"be suitable for this calibration and can produce less-than-desirable " -"results.\n" -"\n" -"The calibration results may vary between each calibration or filament. We " -"are still improving the accuracy and compatibility of this calibration " -"through firmware updates over time.\n" -"\n" -"Caution: Flow Rate Calibration is an advanced process, to be attempted only " -"by those who fully understand its purpose and implications. Incorrect usage " -"can lead to sub-par prints or printer damage. Please make sure to carefully " -"read and understand the process before performing it." msgid "When you need Max Volumetric Speed Calibration" msgstr "När du behöver kalibrering av maximal volymhastighet" @@ -15089,7 +14955,7 @@ msgstr "Namnet får inte innehålla mer än 40 tecken." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Endast ett av resultaten med samma namn kommer att sparas. Är du säker på " "att du vill ersätta de andra resultaten?" @@ -15143,9 +15009,6 @@ msgstr "Hoppa över kalibrering2" msgid "flow ratio : %s " msgstr "flödes förhållande: %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Välj det block som har den jämnaste toppytan." - msgid "Please choose a block with smoothest top surface." msgstr "Välj det block som har den jämnaste toppytan." @@ -15189,7 +15052,7 @@ msgstr "Filament för kalibrering" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Tips för kalibreringsmaterial:\n" "- Material som kan ha samma temperatur på den varma bädden\n" @@ -15234,7 +15097,7 @@ msgid "Flow Dynamics Calibration Result" msgstr "Resultat för kalibrering av flödesdynamik" msgid "New" -msgstr "New" +msgstr "" msgid "No History Result" msgstr "Inget historikresultat" @@ -15250,25 +15113,25 @@ msgstr "Åtgärd" #, c-format, boost-format msgid "This machine type can only hold %d history results per nozzle." -msgstr "This machine type can only hold %d historical results per nozzle." +msgstr "" msgid "Edit Flow Dynamics Calibration" msgstr "Redigera kalibrering av flödesdynamik" msgid "New Flow Dynamic Calibration" -msgstr "New Flow Dynamic Calibration" +msgstr "" msgid "Ok" msgstr "Ok" msgid "The filament must be selected." -msgstr "The filament must be selected." +msgstr "" msgid "Network lookup" msgstr "Nätverks sökning" msgid "Address" -msgstr "Address" +msgstr "" msgid "Hostname" msgstr "Värdnamn" @@ -15437,7 +15300,7 @@ msgstr "Slutets indragnings längd: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "" msgid "Upload to Printer Host with the following filename:" @@ -15484,7 +15347,7 @@ msgstr "Avbryt vald" msgid "Show error message" msgstr "Visa felmeddelande" -msgid "Enqueued" +msgid "Queued" msgstr "I kö" msgid "Uploading" @@ -15573,17 +15436,17 @@ msgstr "Systemversion:" msgid "DNS Server:" msgstr "DNS server:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "" -msgid "Test Bing.com" -msgstr "Test Bing.com" +msgid "Test bing.com" +msgstr "" msgid "Test bing.com:" -msgstr "Test bing.com:" +msgstr "" msgid "Log Info" msgstr "Info om logg" @@ -15643,7 +15506,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "Custom vendor missing; please input custom vendor." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" eller \"Generic\" kan inte användas som leverantör för anpassade " "filament." @@ -15666,8 +15529,8 @@ msgstr "" "Alla inmatningar i den anpassade leverantören eller serien är mellanslag. " "Vänligen ange på nytt." -msgid "The vendor can not be a number. Please re-enter." -msgstr "The vendor can not be a number; please re-enter." +msgid "The vendor cannot be a number. Please re-enter." +msgstr "" msgid "" "You have not selected a printer or preset yet. Please select at least one." @@ -15675,11 +15538,11 @@ msgstr "Du har ännu inte valt någon printer eller inställning. Välj minst en #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Filamentnamnet %s som du skapade finns redan. \n" +"Filamentnamnet %s som du skapade finns redan.\n" "Om du fortsätter kommer den skapade inställningen att visas med sitt " "fullständiga namn. Vill du fortsätta?" @@ -15695,8 +15558,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" msgid "Create Printer/Nozzle" @@ -15720,7 +15583,7 @@ msgstr "Importera inställning" msgid "Create Type" msgstr "Skapa typ" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "The model was not found; please reselect vendor." msgid "Select Model" @@ -15763,16 +15626,16 @@ msgstr "Filen överstiger %d MB, vänligen importera igen." msgid "Exception in obtaining file size, please import again." msgstr "Undantag vid erhållande av filstorlek, vänligen importera igen." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Inställd sökväg hittades inte; vänligen välj leverantör igen." msgid "The printer model was not found, please reselect." msgstr "Printer modellen hittades inte, välj igen." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "The nozzle diameter was not found; please reselect." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "The printer preset was not found; please reselect." msgid "Printer Preset" @@ -15836,7 +15699,7 @@ msgstr "Skapa inställningar för filament misslyckades. Enligt följande:\n" msgid "Create process presets failed. As follows:\n" msgstr "Skapa process inställningar misslyckades. Enligt följande:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Leverantören hittades inte; välj igen." msgid "Current vendor has no models, please reselect." @@ -15871,10 +15734,10 @@ msgstr "" "Du har ännu inte valt vilken printer som nozzeln ska bytas ut på; välj en " "printer." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Skapa Printer lyckades" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Filament Created Successfully" msgid "Printer Created" @@ -15903,7 +15766,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" @@ -15956,15 +15819,15 @@ msgstr "" "creation." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Användarens inställning för filament. \n" +"Användarens inställning för filament.\n" "Kan delas med andra." msgid "" @@ -16009,7 +15872,7 @@ msgid "Please select a type you want to export" msgstr "Välj en inställningstyp som du vill exportera" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "Failed to create temporary folder, please try Export Configs again." +msgstr "" msgid "Edit Filament" msgstr "Redigera filament" @@ -16024,7 +15887,7 @@ msgstr "" "Observera: Om den enda inställningen under detta filament raderas, kommer " "filamentet att raderas efter att dialogen har avslutats." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "Inställningar som ärvts av andra inställningar kan inte raderas" msgid "The following presets inherits this preset." @@ -16048,12 +15911,12 @@ msgid "Delete Filament" msgstr "Ta bort filament" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Alla filament inställningar som hör till detta filament kommer att " -"raderas. \n" +"raderas.\n" "Om du använder detta filament i din printer, vänligen återställ filament " "informationen för den platsen." @@ -16181,17 +16044,17 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Felaktig typ av utskriftsvärd: %s" -msgid "Connection to AstroBox works correctly." -msgstr "Connection to AstroBox is working correctly." +msgid "Connection to AstroBox is working correctly." +msgstr "" msgid "Could not connect to AstroBox" msgstr "Kunde inte ansluta till AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." -msgstr "Note: AstroBox version 1.1.0 or higher is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Duet works correctly." -msgstr "Connection to Duet is working correctly." +msgid "Connection to Duet is working correctly." +msgstr "" msgid "Could not connect to Duet" msgstr "Kunde inte ansluta till Duet" @@ -16208,8 +16071,8 @@ msgstr "Det gick inte att hämta resurser för att skapa en ny anslutning" msgid "Upload not enabled on FlashAir card." msgstr "Uppladdning inte aktiverad på FlashAir kort." -msgid "Connection to FlashAir works correctly and upload is enabled." -msgstr "Connection to FlashAir is working correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." +msgstr "" msgid "Could not connect to FlashAir" msgstr "Kunde inte ansluta till FlashAir" @@ -16221,29 +16084,29 @@ msgstr "" "Obs: FlashAir med firmware 2.00.02 eller nyare och aktiverad " "uppladdningsfunktion krävs." -msgid "Connection to MKS works correctly." -msgstr "Connection to MKS is working correctly." +msgid "Connection to MKS is working correctly." +msgstr "" msgid "Could not connect to MKS" msgstr "Kunde inte ansluta till MKS" -msgid "Connection to OctoPrint works correctly." -msgstr "Connection to OctoPrint is working correctly." +msgid "Connection to OctoPrint is working correctly." +msgstr "" msgid "Could not connect to OctoPrint" msgstr "Kunde inte ansluta till OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." -msgstr "Note: OctoPrint version 1.1.0 or higher is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." +msgstr "" -msgid "Connection to Prusa SL1 / SL1S works correctly." -msgstr "Connection to Prusa SL1 / SL1S is working correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." +msgstr "" msgid "Could not connect to Prusa SLA" msgstr "Kunde inte ansluta till Prusa SLA" -msgid "Connection to PrusaLink works correctly." -msgstr "Connection to PrusaLink is working correctly." +msgid "Connection to PrusaLink is working correctly." +msgstr "" msgid "Could not connect to PrusaLink" msgstr "Kunde inte ansluta till PrusaLink" @@ -16266,20 +16129,20 @@ msgstr "" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "" msgid "Could not connect to Prusa Connect" msgstr "" -msgid "Connection to Repetier works correctly." -msgstr "Connection to Repetier is working correctly." +msgid "Connection to Repetier is working correctly." +msgstr "" msgid "Could not connect to Repetier" msgstr "Kunde inte ansluta till Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." -msgstr "Note: Repetier version 0.90.0 or higher is required." +msgid "Note: Repetier version 0.90.0 or higher is required." +msgstr "" #, boost-format msgid "" @@ -16310,255 +16173,170 @@ msgstr "" "Felmeddelande: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" -"It has a small layer height, and results in almost negligible layer lines " -"and high print quality. It is suitable for most general printing cases." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " "and acceleration, and the sparse infill pattern is Gyroid. This results in " "much higher print quality but a much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a slightly " "bigger layer height. This results in almost negligible layer lines and " -"slightly longer print time." +"slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " "height. This results in slightly visible layer lines but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "height. This results in almost invisible layer lines and higher print " -"quality but longer print time." +"quality but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost invisible layer lines and much higher print " "quality but much longer print time." - -msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." msgstr "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height. This results in minimal layer lines and higher print quality but " -"longer print time." msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" + +msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in minimal layer lines and much higher print quality " "but much longer print time." +msgstr "" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." -msgstr "" -"It has a normal layer height, and results in average layer lines and print " +"It has a normal layer height. This results in average layer lines and print " "quality. It is suitable for most printing cases." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but slightly shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in less apparent layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, lower speeds and acceleration, and the sparse infill pattern is " "Gyroid. This results in almost negligible layer lines and much higher print " "quality but much longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." -msgstr "" -"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height. This results in almost negligible layer lines and longer print time." +msgstr "" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " "and a higher sparse infill density. This results in higher print strength " "but more filament consumption and longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height. This results in more apparent layer lines and lower print quality " +"height. This results in more apparent layer lines and lower print quality, " "but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " "height. This results in much more apparent layer lines and much lower print " "quality, but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height. This results in less apparent layer lines and slightly higher print " +"height. This results in less apparent layer lines and slight higher print " "quality but longer print time." +msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." -msgstr "" -"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " "height. This results in less apparent layer lines and higher print quality " "but longer print time." +msgstr "" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" -"It has a very big layer height, and results in very apparent layer lines, " -"low print quality and shorter printing time." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " "height. This results in very apparent layer lines and much lower print " "quality but shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " "layer height. This results in extremely apparent layer lines and much lower " "print quality but much shorter print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a slightly " "smaller layer height. This results in slightly less but still apparent layer " -"lines and slightly higher print quality, but longer print time in some cases." +"lines and slightly higher print quality but longer print time in some cases." +msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." -msgstr "" -"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " "height. This results in less but still apparent layer lines and slightly " "higher print quality, but longer print time in some cases." +msgstr "" msgid "Connected to Obico successfully!" msgstr "" @@ -16581,7 +16359,7 @@ msgstr "" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "" msgid "Could not connect to Flashforge" @@ -16596,7 +16374,7 @@ msgstr "" msgid "Something unexpected happened when trying to log in, please try again." msgstr "" -msgid "User cancelled." +msgid "User canceled." msgstr "" msgid "Head diameter" @@ -16627,21 +16405,21 @@ msgid "Adjust section view" msgstr "" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" msgid "Set the brim type to \"painted\"" msgstr "" msgid " invalid brim ears" -msgstr "" +msgstr " ogiltiga öron" msgid "Brim Ears" -msgstr "" +msgstr "Brätte Öron" msgid "Please select single object." -msgstr "Please select single object." +msgstr "" #: resources/data/hints.ini: [hint:Precise wall] msgid "" @@ -16700,7 +16478,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" #: resources/data/hints.ini: [hint:Reverse on odd] @@ -16741,7 +16519,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Placera Automatiskt\n" "Visste du att du automatiskt kan ordna alla objekt i ditt projekt?" @@ -16750,7 +16528,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Auto-Orient\n" "Visste du att du kan rotera objekt till en optimal orientering för utskrift " @@ -16915,7 +16693,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Brim för bättre vidhäftning\n" @@ -16926,7 +16704,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Ange parametrar för flera objekt\n" "Visste du att du kan ställa in berednings parametrar för alla valda objekt " @@ -16943,7 +16721,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Rensa in i support/objekt/ifyllnad\n" @@ -16960,13 +16738,13 @@ msgstr "" "Visste du att du kan använda fler väggslingor och högre gles fyllningstäthet " "för att förbättra modellens styrka?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "När behöver du skriva ut med printer dörren öppen?\n" "Visste du att en öppen printer dörr kan minska risken för igensättning av " @@ -16978,12 +16756,12 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Undvik vridning\n" "Visste du att när du skriver ut material som är benägna att vrida, såsom " "ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten " -"för vridning." +"för vridning?" #~ msgid "" #~ "We have added an experimental style \"Tree Slim\" that features smaller " @@ -17005,7 +16783,7 @@ msgstr "" #~ "eller med support material på anläggningsytan." #~ msgid "" -#~ "When using support material for the support interface, We recommend the " +#~ "When using support material for the support interface, we recommend the " #~ "following settings:\n" #~ "0 top z distance, 0 interface spacing, concentric pattern and disable " #~ "independent support layer height" @@ -17046,9 +16824,6 @@ msgstr "" #~ msgid "Support: propagate branches at layer %d" #~ msgstr "Support: föröka grenar vid lager %d" -#~ msgid "Current Cabin humidity" -#~ msgstr "Current Cabin humidity" - #~ msgid "Stopped." #~ msgstr "Avbruten." @@ -17126,24 +16901,12 @@ msgstr "" #~ msgid "Thick bridges" #~ msgstr "Tjocka bridges" -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "normal(auto) och tree(auto) används för att generera support automatiskt. " -#~ "Om normal(manual) eller tree(manual) väljs, genereras endast support " -#~ "förstärkare." - #~ msgctxt "Verb" #~ msgid "Scale" #~ msgstr "Skala" -#~ msgid "Cool plate" -#~ msgstr "Kall platta" - -#~ msgid "Z hop when retract" -#~ msgstr "Z hopp vid retraktion" +#~ msgid "Z-hop when retract" +#~ msgstr "Z-hopp vid retraktion" #~ msgid "" #~ "While printing by Object, the extruder may collide skirt.\n" @@ -17153,7 +16916,7 @@ msgstr "" #~ "Återställ därför skirt lagret till 1 för att undvika kollisioner." #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Minska detta värde något (tex 0.9) för att minska material åtgång för " @@ -17169,33 +16932,16 @@ msgstr "" #~ msgid "Speed of bridge and completely overhang wall" #~ msgstr "Hastighet för bridges/bryggor och hela överhängs väggar" -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Ladda nytt filament vid byte av filament, endast för statistiska ändamål" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Ladda ur gammalt filament vid byte av filament, endast för statistiska " #~ "ändamål" -#~ msgid "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials,the actual chamber " -#~ "temperature should not be high to avoid cloggings, so 0 which stands for " -#~ "turning off is highly recommended" -#~ msgstr "" -#~ "Higher chamber temperature can help suppress or reduce warping and " -#~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " -#~ "TPU, PVA and other low temperature materials, the actual chamber " -#~ "temperature should not be high to avoid clogs, so 0 (turned off) is " -#~ "highly recommended." - #~ msgid "" #~ "Different nozzle diameters and different filament diameters is not " #~ "allowed when prime tower is enabled." @@ -17284,9 +17030,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Hitta hörnet med den perfekta graden av extrudering" -#~ msgid "V" -#~ msgstr "V" - #~ msgid "Export &Configs" #~ msgstr "Exportera konfiguration" @@ -17305,34 +17048,18 @@ msgstr "" #~ "The percentage value is relative to line width of sparse infill" #~ msgstr "" #~ "Detta gör att ifyllnads området kan förstoras något för att överlappa " -#~ "väggarna för bättre vidhäftning.Det procentuella värdet är i förhållande " +#~ "väggarna för bättre vidhäftning. Det procentuella värdet är i förhållande " #~ "till linjebredden för sparsam ifyllnad" #~ msgid "Unload Filament" #~ msgstr "Mata ut" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Välj ett AMS fack tryck sedan \"Ladda eller \"Mata ur\" knappen för att " -#~ "automatiskt mata eller mata ut filament." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Moderkort" -#~ msgid "TH" -#~ msgstr "TH" - #~ msgid "XCam" #~ msgstr "X Kamera" -#~ msgid "HMS" -#~ msgstr "HMS" - #~ msgid "active" #~ msgstr "aktiv" @@ -17372,7 +17099,7 @@ msgstr "" #~ "representerar kammaren korrekt." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Observera: Om nytt filament sätts in under utskrift kommer AMS inte " @@ -17389,7 +17116,7 @@ msgstr "" #~ msgstr "Initieringen misslyckades (ingen kamera enhet)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Skrivaren är upptagen med att ladda ner; vänta tills nedladdningen är " #~ "klar." @@ -17419,12 +17146,9 @@ msgstr "" #~ msgid "Failed to fetching model information from printer." #~ msgstr "Det gick inte att hämta modell information från skrivaren." -#~ msgid "Failed to parse model informations." -#~ msgstr "Det gick inte att analysera modellinformation" - #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -17433,7 +17157,7 @@ msgstr "" #~ "inställningar?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -17451,7 +17175,7 @@ msgstr "" #~ msgid "Configuration package updated to " #~ msgstr "Konfigurations paket uppdaterat till " -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "Konfigurationen kan inte laddas." #~ msgid "Movement:" @@ -17482,10 +17206,10 @@ msgstr "" #~ msgstr "Kontakterna måste vara på objektets yta." #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" -#~ "Ogiltigt tillstånd. \n" +#~ "Ogiltigt tillstånd.\n" #~ "Ingen del är vald att behålla efter skärning" #~ msgid "Edit Text" @@ -17500,9 +17224,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "Välj SLA arkiv:" -#~ msgid "Import file" -#~ msgstr "Importera fil" - #~ msgid "Import model and profile" #~ msgstr "Importera modell och profil" @@ -17555,9 +17276,6 @@ msgstr "" #~ "Nej - Återställ automatiskt densiteten till standardvärdet som inte är " #~ "100 %." -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." -#~ msgstr "Värm nozzeln till över 170 grader innan du laddar filamentet." - #, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" #~ msgstr "" @@ -17573,9 +17291,6 @@ msgstr "" #~ msgid " doesn't work at 100%% density " #~ msgstr " fungerar inte vid 100%% densitet " -#~ msgid "Ctrl + Shift + Enter" -#~ msgstr "Ctrl + Shift + Enter" - #~ msgid "Tool-Lay on Face" #~ msgstr "Ytplacerings verktyg" @@ -17643,15 +17358,6 @@ msgstr "" #~ "Vet du hur du kontrollerar vy och objekt/delval med mus och pekskärm i 3D-" #~ "scenen?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Fix Modell\n" -#~ "Visste du att du kan fixa en skadad 3D-modell för att undvika många " -#~ "berednings problem?" - #~ msgid "Embedded" #~ msgstr "Inbäddad" @@ -17706,14 +17412,11 @@ msgstr "" #~ msgid "Calibration of extrusion" #~ msgstr "Kalibrering av extrudering" -#~ msgid "Push new filament into the extruder" -#~ msgstr "Mata nytt filament till extruder" - #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "Byggplattans temperatur för andra lager är mindre än temperaturen för " #~ "första lager med mer än %d grader celsius.\n" @@ -17748,21 +17451,15 @@ msgstr "" #~ msgid "Score" #~ msgstr "Resultat" -#~ msgid "Bambu High Temperature Plate" -#~ msgstr "Bambu High Temperature Plate" - #~ msgid "Can't connect to the printer" #~ msgstr "Kan inte ansluta till skrivaren" #~ msgid "Recommended temperature range" #~ msgstr "Rekommenderat nozzel temperaturs område" -#~ msgid "High Temp Plate" -#~ msgstr "High Temp Plate" - #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Detta är byggplattans temperatur när High Temp Plate är installerad. " #~ "Värdet 0 betyder att filamentet inte stöder utskrift på High Temp Plate." diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 39cd77fadf..a25bb5dbec 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -14,7 +14,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Destek boyama" msgid "Alt + Mouse wheel" @@ -111,7 +111,7 @@ msgstr "Yüzüstü yatır" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Filament sayısı, boyama aracının desteklediği maksimum sayıyı aşıyor. Boyama " @@ -596,10 +596,10 @@ msgstr "Wireframe göster" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "İşlem önizlemesi sırasında uygulanamaz." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "İşlem zaten iptal ediliyor. Lütfen birkaç saniye bekleyin." msgid "Face recognition" @@ -793,7 +793,7 @@ msgid "Change Text Type" msgstr "Metin Türünü Değiştir" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Kabartma metni için stili yeniden adlandırın (%1%)" msgid "Name can't be empty." @@ -1014,8 +1014,8 @@ msgstr "“%1%” yazı tipi kullanılamıyor. Lütfen başka birini seçin." #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Tam olarak aynı yazı tipi yüklenemiyor(\"%1%\"). Uygulama benzer bir " "uygulama seçti(\"%2%\"). Metni düzenlemeyi etkinleştirmek için yazı tipini " @@ -1145,7 +1145,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "Şekil görünmez (%1%) olarak işaretlendi." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Şeklin dolgusu (%1%) desteklenmeyenleri içeriyor: %2%." @@ -1319,7 +1319,7 @@ msgid "Measure" msgstr "Ölçüm" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Lütfen patlama oranının = 1 olduğunu onaylayın ve lütfen en az bir nesne " "seçin" @@ -1379,13 +1379,13 @@ msgstr "" "Özellik 1 sıfırlandı, \n" "özellik 2, özellik 1 oldu" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Uyarı: Lütfen Düzlemin özelliğini seçin." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Uyarı: Lütfen Noktanın veya Çemberin özelliğini seçin." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Uyarı: Lütfen iki farklı ağ seçin." msgid "Copy to clipboard" @@ -1409,7 +1409,7 @@ msgstr "Paralel" msgid "Center coincidence" msgstr "Merkezi" -msgid "Featue 1" +msgid "Feature 1" msgstr "Özellik 1" msgid "Reverse rotation" @@ -1462,7 +1462,7 @@ msgid "" msgstr "\"%1%\" yapılandırma dosyası yüklendi ancak bazı değerler tanınamadı." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer hafızasının yetersiz olması nedeniyle sonlandırılacak. Bir hata " @@ -1598,7 +1598,7 @@ msgstr "Projeyi Aç" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en " "son sürüme güncellenmesi gerekiyor" @@ -1809,7 +1809,7 @@ msgstr "Orca Cehennemi" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1906,16 +1906,16 @@ msgstr "Nesnelerin desteğine akıt" msgid "Edit in Parameter Table" msgstr "Parametre tablosunda düzenle" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "İnçten dönüştür" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "İnçe geri çevir" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Metreden dönüştür" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Metreye geri çevir" msgid "Assemble" @@ -2168,7 +2168,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2185,7 +2185,7 @@ msgstr "Tüm bağlayıcıları sil" msgid "Deleting the last solid part is not allowed." msgstr "Son katı kısmın silinmesine izin verilmez." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "Hedef nesne yalnızca bir parça içerir ve bölünemez." msgid "Assembly" @@ -2228,12 +2228,12 @@ msgid "Selection conflicts" msgstr "Seçim çakışmaları" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "İlk seçilen öğe bir nesne ise ikincisi de nesne olmalıdır." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "İlk seçilen öğe bir parça ise ikincisi aynı nesnenin parçası olmalıdır." @@ -2296,7 +2296,7 @@ msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "" "bir hücre aynı sütundaki yalnızca bir veya daha fazla hücreye kopyalanabilir" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "birden fazla hücre kopyalama desteklenmiyor" msgid "Outside" @@ -2558,8 +2558,8 @@ msgid "Edit" msgstr "Düzenle" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Seçilen tüm nesneler kilitli plaka üzerindedir,\n" "Bu nesneler üzerinde otomatik düzenleme yapamıyoruz." @@ -2568,8 +2568,8 @@ msgid "No arrangeable objects are selected." msgstr "Düzenlenebilir hiçbir nesne seçilmedi." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Bu plaka kilitli.\n" "Bu plaka üzerinde otomatik düzenleme yapamıyoruz." @@ -2608,15 +2608,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Seçilen tüm nesneler kilitli plaka üzerindedir,\n" "Bu nesneler üzerinde otomatik yönlendirme yapamıyoruz." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Bu plaka kilitli.\n" "Bu plaka üzerinde otomatik yönlendirme yapamıyoruz." @@ -2671,7 +2671,7 @@ msgstr "" msgid "Cloud service connection failed. Please try again." msgstr "Bulut hizmeti bağlantısı başarısız oldu. Lütfen tekrar deneyin." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Yazdırma dosyası bulunamadı. lütfen tekrar dilimleyin." msgid "" @@ -2700,7 +2700,7 @@ msgstr "" "Yazdırma dosyasının boyutu çok büyük. Lütfen dosya boyutunu ayarlayıp tekrar " "deneyin." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Yazdırma dosyası bulunamadı. Lütfen tekrar dilimleyip baskıya gönderin." @@ -2741,10 +2741,12 @@ msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "LAN yoluyla yazdırmadan önce bir SD kartın takılması gerekir." -msgid "Sending gcode file over LAN" +#, fuzzy +msgid "Sending G-code file over LAN" msgstr "LAN üzerinden gcode dosyası gönderiliyor" -msgid "Sending gcode file to sdcard" +#, fuzzy +msgid "Sending G-code file to SD card" msgstr "Gcode dosyası sdcard'a gönderiliyor" #, c-format, boost-format @@ -2792,10 +2794,10 @@ msgstr "İndiriliyor" msgid "Download failed" msgstr "Yükleme başarısız" -msgid "Cancelled" +msgid "Canceled" msgstr "İptal edildi" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Yükleme başarılı." msgid "Installing" @@ -2868,9 +2870,6 @@ msgstr "Onayla" msgid "Close" msgstr "Kapat" -msgid "Colour" -msgstr "Renk" - msgid "" "Nozzle\n" "Temperature" @@ -3031,8 +3030,8 @@ msgstr "Mevcut AMS nemi" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Lütfen kurutucuyu çok ıslandığında değiştirin. Gösterge aşağıdaki durumlarda " @@ -3041,7 +3040,7 @@ msgstr "" "yavaşlatır." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Yazdırma işinde kullanılan filament için hangi AMS yuvasının kullanılması " "gerektiğini yapılandırma" @@ -3061,8 +3060,8 @@ msgstr "AMS'yi Etkinleştirme" msgid "Print using materials mounted on the back of the case" msgstr "Kasanın arkasına monte edilen malzemeleri kullanarak yazdırma" -msgid "Print with filaments in ams" -msgstr "Ams içerisindeki filamentlerle yazdırma" +msgid "Print with filaments in AMS" +msgstr "AMS içerisindeki filamentlerle yazdırma" msgid "Print with filaments mounted on the back of the chassis" msgstr "Kasanın arkasına monte edilmiş filamentler ile yazdırma" @@ -3088,12 +3087,12 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" "Eğer AMS'de iki aynı filament bulunursa, AMS filament yedekleme özelliği " -"etkinleştirilecektir. \n" +"etkinleştirilecektir.\n" "(Şu anda aynı markaya ait sarf malzemelerinin otomatik temini " "desteklenmektedir, malzeme türü ve rengi)" @@ -3117,7 +3116,7 @@ msgstr "" "olarak okuyacaktır. Bu yaklaşık 20 saniye sürer." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Not: Yazdırma sırasında yeni bir filaman takılırsa AMS, yazdırma tamamlanana " @@ -3135,8 +3134,8 @@ msgstr "Güncellemeyi aç" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "AMS, başlangıçta takılan filamentin bilgilerini otomatik olarak okuyacaktır. " "Yaklaşık 1 dakika sürecektir. Okuma işlemi filament makaralarını saracaktır." @@ -3165,8 +3164,8 @@ msgid "AMS filament backup" msgstr "AMS filament yedeklemesi" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS, mevcut filament bittiğinde otomatik olarak aynı özelliklere sahip başka " "bir makaraya devam edecektir" @@ -3231,7 +3230,7 @@ msgstr "Ölümcül bir hata oluştu: “%1%”" msgid "Please save project and restart the program." msgstr "Lütfen projeyi kaydedin ve programı yeniden başlatın." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Önceki dosyadan G Kodu işleniyor..." msgid "Slicing complete" @@ -3253,10 +3252,10 @@ msgid "Underflow" msgstr "Düşük Akış" msgid "Floating reserved operand" -msgstr "Floating reserved operand" +msgstr "" msgid "Stack overflow" -msgstr "Stack overflow" +msgstr "" msgid "Running post-processing scripts" msgstr "İşlem sonrası komut dosyalarını çalıştırma" @@ -3315,12 +3314,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "G kodu dosyası %1%’e aktarıldı" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "G kodunu dışa aktarırken bilinmeyen hata." -#, boost-format +#, fuzzy, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3496,8 +3495,8 @@ msgstr "AMS kullanın" msgid "Select Printers" msgstr "Yazıcıları Seçin" -msgid "Ams Status" -msgstr "Ams Durumu" +msgid "AMS Status" +msgstr "AMS Durumu" msgid "Printing Options" msgstr "Yazdırma Seçenekleri" @@ -3518,7 +3517,7 @@ msgid "Send to" msgstr "Gönderildi" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "aynı anda kaç yazıcının ısıtma işleminden geçebileceği, aynı anda " @@ -3528,7 +3527,7 @@ msgid "Wait" msgstr "Bekleyin" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "her parti başına dakika. (Isıtmanın tamamlanması ne kadar sürerse buna " "bağlıdır.)" @@ -3622,9 +3621,10 @@ msgstr "Yatak modelini içe aktarmak için bir STL dosyası seçin:" msgid "Bed Shape" msgstr "Yatak Şekli" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" "Önerilen minimum sıcaklık 190 dereceden azdır veya önerilen maksimum " "sıcaklık 300 dereceden yüksektir.\n" @@ -3647,10 +3647,10 @@ msgstr "" "Lütfen yazdırmak için sıcaklığı kullanıp kullanmayacağınızdan emin olun.\n" "\n" -#, c-format, boost-format +#, fuzzy, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Bu filament tipinin tavsiye edilen Nozul sıcaklığı [%d, %d] derece " "santigrattır" @@ -3664,9 +3664,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksektir, " "malzemenin yumuşamasına ve tıkanmasına neden olabilir Malzeme için maksimum " @@ -3731,12 +3731,12 @@ msgstr "" "ayarlandığından emin olunduğunda iyi çalışmaz." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" msgstr "" -"Bu ayarlar otomatik olarak değiştirilsin mi? \n" +"Bu ayarlar otomatik olarak değiştirilsin mi?\n" "Evet - Dikey kabuk kalınlığını Orta olarak değiştirin ve alternatif ekstra " "duvarı etkinleştirin\n" "Hayır - Alternatif ekstra duvar kullanmayın" @@ -3798,7 +3798,7 @@ msgstr "" " Ancak I3 yapısına sahip yazıcılar timelapse videolar oluşturmayacaktır." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3858,7 +3858,7 @@ msgstr "Yazdırma kullanıcı tarafından duraklatıldı" msgid "Pause of front cover falling" msgstr "Ön kapağın düşmesinin duraklaması" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Mikro Lida'nın kalibre edilmesi" msgid "Calibrating extrusion flow" @@ -3894,7 +3894,7 @@ msgstr "Oda sıcaklığı kontrol hatası nedeniyle duraklatıldı" msgid "Cooling chamber" msgstr "Soğutma haznesi" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Kullanıcı tarafından eklenen Gcode tarafından duraklatıldı" msgid "Motor noise showoff" @@ -3938,7 +3938,7 @@ msgstr "Güncelleme başarısız." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "Mevcut hazne sıcaklığı veya hedef hazne sıcaklığı 45 ° C'yi aşıyor Ekstruder " @@ -3946,8 +3946,8 @@ msgstr "" "yüklenmesine izin verilmez." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Ekstrudere düşük sıcaklıkta filament (PLA / PETG / TPU) yüklendi. Ekstruder " @@ -3956,14 +3956,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Hazne sıcaklığını 40°C'nin altına ayarladığınızda, hazne sıcaklık kontrolü " "etkinleştirilmeyecektir. Ve hedef hazne sıcaklığı otomatik olarak 0°C'ye " "ayarlanacaktır." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Yazdırma işi başlatılamadı" msgid "" @@ -3976,7 +3976,7 @@ msgstr "Geçerli akış hızı cali parametresi geçersiz" msgid "Selected diameter and machine diameter do not match" msgstr "Seçilen çap ile makine çapı eşleşmiyor" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Cali G-code oluşturma başarısız oldu" msgid "Calibration error" @@ -3989,14 +3989,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF, AMS tarafından desteklenNozulktedir." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Nemli PVA esnekleşecek ve AMS'nin içine sıkışacaktır, lütfen kullanmadan " "önce kurutmaya dikkat edin." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "CF/GF filamentleri sert ve kırılgandır. AMS'de kırılması veya sıkışması " @@ -4012,7 +4012,8 @@ msgstr "Özel G Kodunu Düzenle (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "Yerleşik yer tutucular (G koduna eklemek için öğeye çift tıklayın)" -msgid "Search gcode placeholders" +#, fuzzy +msgid "Search G-code placeholders" msgstr "Gcode yer tutucularını arayın" msgid "Add selected placeholder to G-code" @@ -4071,7 +4072,7 @@ msgid "parameter name" msgstr "parametre adı" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s yüzde olamaz" #, c-format, boost-format @@ -4159,7 +4160,7 @@ msgstr "Fan: " msgid "Temperature: " msgstr "Sıcaklık: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "G kodları yükleniyor" msgid "Generating geometry vertex data" @@ -4273,10 +4274,7 @@ msgstr "Yazdır" msgid "Printer" msgstr "Yazıcı" -msgid "Custom g-code" -msgstr "Özel g-code" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Araç Değiştirme" msgid "Time Estimation" @@ -4402,8 +4400,11 @@ msgstr "Y eksenine hizala" msgid "Add plate" msgstr "Plaka ekle" -msgid "Auto orient" -msgstr "Otomatik yönlendir" +msgid "Auto orient all/selected objects" +msgstr "Otomatik yönlendir tüm/seçili nesneler" + +msgid "Auto orient all objects on current plate" +msgstr "Geçerli plakadaki tüm nesneleri otomatik yönlendir" msgid "Arrange all objects" msgstr "Tüm nesneleri hizala" @@ -4426,8 +4427,8 @@ msgstr "Plaka Seç" msgid "Assembly Return" msgstr "Montaj İptali" -msgid "return" -msgstr "geri dön" +msgid "Return" +msgstr "Geri dön" msgid "Paint Toolbar" msgstr "Boyama Araç Çubuğu" @@ -4453,28 +4454,28 @@ msgstr "Hacim:" msgid "Size:" msgstr "Boyut:" -#, boost-format +#, fuzzy, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "%d katmanında gcode yollarında çakışmalar bulundu, z = %.2lf mm. Lütfen " "çakışan nesneleri daha uzağa ayırın (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Plakanın sınırına bir nesne serilir." msgid "A G-code path goes beyond the max print height." msgstr "Bir G kodu yolu maksimum baskı yüksekliğinin ötesine geçer." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Bir G kodu yolu plakanın sınırlarının ötesine geçer." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Yalnızca düzenlenen nesne görünür." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4554,8 +4555,8 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" -msgstr "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" +msgstr "Connect Printer (LAN)" msgid "Please input the printer access code:" msgstr "Lütfen yazıcı erişim kodunu girin:" @@ -4855,7 +4856,7 @@ msgstr "Otomatik Perspektif" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" "Üst/Alt/Yan görünümler arasında geçiş yaparken ortografik ve perspektif " "arasında otomatik olarak geçiş yapın" @@ -4863,13 +4864,13 @@ msgstr "" msgid "Show &G-code Window" msgstr "&G-code Penceresini Göster" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "Previce sahnesinde G-kodu penceresini göster" msgid "Show 3D Navigator" msgstr "3D Gezgini Göster" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "Hazırlama ve Önizleme sahnesinde 3D gezgini göster" msgid "Reset Window Layout" @@ -4881,19 +4882,19 @@ msgstr "Varsayılan pencere düzenine sıfırla" msgid "Show &Labels" msgstr "Etiketleri Göster" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "3B sahnede nesne etiketlerini göster" msgid "Show &Overhang" msgstr "Çıkıntıyı Göster" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "3B sahnede nesne çıkıntısı vurgusunu göster" msgid "Show Selected Outline (beta)" msgstr "Seçilen Taslağı Göster (Deneysel)" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "3D sahnede seçilen nesnenin etrafındaki ana hatları göster" msgid "Preferences" @@ -5069,7 +5070,7 @@ msgid "Filament Settings" msgstr "Filament Ayarları" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -5107,7 +5108,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "Yazıcı kamerası arızalı." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Sorun oluştu. Lütfen yazıcının ürün yazılımını güncelleyin ve tekrar deneyin." @@ -5127,7 +5128,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "Bağlantı Başarısız. Lütfen ağı kontrol edip tekrar deneyin" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Lütfen ağı kontrol edip tekrar deneyin. Sorun devam ederse yazıcıyı yeniden " @@ -5286,8 +5287,8 @@ msgid "Failed to parse model information." msgstr "Model bilgileri ayrıştırılamadı." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" ".gcode.3mf dosyası hiçbir G kodu verisi içermiyor. Lütfen dosyayı Bambu " "Studio ile dilimleyin ve yeni bir .gcode.3mf dosyasını dışa aktarın." @@ -5483,9 +5484,9 @@ msgstr "Katman: %s" msgid "Layer: %d/%d" msgstr "Katman: %d/%d" +#, fuzzy msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" "Filamenti yüklemeden veya boşaltmadan önce lütfen nozulu 170 derecenin " "üzerine ısıtın." @@ -5496,7 +5497,7 @@ msgstr "Daha Fazla Boşalt" msgid "Still load" msgstr "Daha Fazla Yükle" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Lütfen kalibrasyondan önce bir AMS yuvası seçin" msgid "" @@ -5545,9 +5546,6 @@ msgstr "Gönder" msgid "Please click on the star first." msgstr "Lütfen önce yıldıza tıklayınız." -msgid "InFo" -msgstr "Bilgi" - msgid "Get oss config failed." msgstr "Oss yapılandırması başarısız." @@ -5566,7 +5564,7 @@ msgstr " yapılandırma ön yüklemesi başarısız oldu\n" msgid " No corresponding storage bucket\n" msgstr " Uygun depolama alanı yok\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " açılamaz\n" msgid "" @@ -5593,7 +5591,7 @@ msgid "obtaining instance_id failed\n" msgstr "instance_id alınamadı\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5607,7 +5605,7 @@ msgstr "hata mesajı: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5615,7 +5613,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Bazı resimleriniz yüklenemedi. Değerlendirme için web sayfasına yönlendirmek " "ister misiniz?" @@ -5625,7 +5623,7 @@ msgstr "En fazla 16 görüntü seçebilirsiniz." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Bu baskı profiline olumlu bir puan vermek için (4 veya 5 yıldız) en az bir " "başarılı baskı kaydı gereklidir." @@ -5670,7 +5668,7 @@ msgid "Newer 3mf version" msgstr "Daha yeni 3mf sürümü" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "3mf dosya sürümü Beta’dadır ve mevcut OrcaSlicer sürümünden daha yenidir." @@ -5783,7 +5781,7 @@ msgstr[1] "%1$d Nesnelerin renkli boyaması var." #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d nesne, kesme nesnesinin bir parçası olarak yüklendi." msgstr[1] "%1$d nesne, kesme nesnesinin parçaları olarak yüklendi" @@ -5808,7 +5806,7 @@ msgstr "Hata:" msgid "Warning:" msgstr "Uyarı:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Başarıyla dışarı aktarıldı." msgid "Model file downloaded." @@ -5826,11 +5824,12 @@ msgstr " Yüklemek için tıklayın." msgid "WARNING:" msgstr "UYARI:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "" "Modelinizin desteğe ihtiyacı var! Lütfen destek materyalini etkinleştirin." -msgid "Gcode path overlap" +#, fuzzy +msgid "G-code path overlap" msgstr "Gcode yolu çakışması" msgid "Support painting" @@ -6075,7 +6074,7 @@ msgstr "\"%1%\" dosyasındaki değişiklikleri kaydetmek istiyor musunuz?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Başarıyla kaldırıldı. %s(%s) aygıtı artık bilgisayardan güvenli bir şekilde " @@ -6136,8 +6135,8 @@ msgstr "3mf yükle" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "" "3mf'nin %s sürümü, %s'in %s sürümünden daha yeni, Aşağıdaki anahtarlar " "tanınmadan bulundu:" @@ -6159,26 +6158,27 @@ msgstr "3mf'de geçersiz değerler bulundu:" msgid "Please correct them in the param tabs" msgstr "Lütfen bunları parametre sekmelerinde düzeltin" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-" "kodları bulunmaktadır:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Lütfen bu değiştirilmiş G-kodlarının makineye herhangi bir zarar vermemesi " "için güvenli olduğunu onaylayın!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "G-kodları Değişti" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "3mf dosyasında şu özel filament veya yazıcı ayarları bulunmaktadır:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Lütfen bu ön ayarlar içindeki G-kodlarının makineye herhangi bir zararı " @@ -6240,8 +6240,8 @@ msgid "The file does not contain any geometry data." msgstr "Dosya herhangi bir geometri verisi içermiyor." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Nesneniz çok büyük görünüyor. Plakaya sığacak şekilde otomatik olarak " "küçültmek istiyor musunuz?" @@ -6348,10 +6348,10 @@ msgstr "Ağ Eklentisi algılanmadı. Ağla ilgili özellikler kullanılamıyor." msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Yalnızca önizleme modu:\n" -"Yüklenen dosya yalnızca gcode içeriyor, Hazırlama sayfasına girilemiyor" +"Yüklenen dosya yalnızca Gcode içeriyor, Hazırlama sayfasına girilemiyor" msgid "You can keep the modified presets to the new project or discard them" msgstr "Değiştirilen ön ayarları yeni projede tutabilir veya silebilirsiniz" @@ -6383,7 +6383,7 @@ msgstr "3mf dosyasını hazırla..." msgid "Download failed, unknown file format." msgstr "İndirme başarısız oldu, dosya türü bilinmiyor." -msgid "downloading project ..." +msgid "downloading project..." msgstr "proje indiriliyor..." msgid "Download failed, File size exception." @@ -6424,7 +6424,7 @@ msgstr "SLA arşivini içe aktar" msgid "The selected file" msgstr "Seçili dosya" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "geçerli gcode içermiyor." msgid "Error occurs while loading G-code file" @@ -6470,10 +6470,10 @@ msgstr "Aynı anda yalnızca bir G kodu dosyası açılabilir." msgid "G-code loading" msgstr "G-kod yükleniyor" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G kodu dosyaları modellerle birlikte yüklenemez!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Önizleme modundayken model eklenemiyor!" msgid "All objects will be removed, continue?" @@ -6635,8 +6635,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "Plaka %d: %s'nin %s(%s) filamentinı yazdırmak için kullanılması önerilmez. " @@ -6799,12 +6799,17 @@ msgstr "" "Etkinleştirilirse serbest kamerayı kullanın. Etkin değilse kısıtlı kamerayı " "kullanın." +msgid "Swap pan and rotate mouse buttons" +msgstr "Pan ve döndürme işlevlerini fare düğmeleri arasında değiştir" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Etkinleştirildiğinde, sol ve sağ fare düğmelerinin pan ve döndürme işlevlerini yer değiştirir." + msgid "Reverse mouse zoom" msgstr "Mouse yakınlaştırmasını tersine çevir" msgid "If enabled, reverses the direction of zoom with mouse wheel." -msgstr "" -"Etkinleştirilirse, mouse tekerleğiyle yakınlaştırmanın yönü tersine çevrilir." +msgstr "Etkinleştirilirse, mouse tekerleğiyle yakınlaştırmanın yönü tersine çevrilir." msgid "Show splash screen" msgstr "Açılış ekranını göster" @@ -6842,7 +6847,7 @@ msgstr "" "Etkinleştirilirse, Orca her yazıcı için filament/işlem yapılandırmasını " "hatırlayacak ve otomatik olarak değiştirecektir." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" "Çoklu Cihaz Yönetimi(Studio yeniden başlatıldıktan sonra geçerli olur)." @@ -6862,7 +6867,7 @@ msgstr "Nesne klonlamadan sonra plakayı otomatik düzenleme" msgid "Network" msgstr "Ağ" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)" msgid "User Sync" @@ -6937,7 +6942,7 @@ msgstr "Maksimum yeni proje sayısı" msgid "Clear my choice on the unsaved projects." msgstr "Kaydedilmemiş projelerdeki seçimimi temizle." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Değiştirilmiş G-kodları içeren 3MF dosyalarını yüklerken uyarı verme" msgid "Auto-Backup" @@ -7054,10 +7059,10 @@ msgstr "hata ayıklama kaydet düğmesi" msgid "save debug settings" msgstr "hata ayıklama ayarlarını kaydet" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "DEBUG ayarları başarıyla kaydedildi!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Bulut ortamını değiştirin, lütfen tekrar giriş yapın!" msgid "System presets" @@ -7072,10 +7077,10 @@ msgstr "Uyumsuz ön ayarlar" msgid "AMS filaments" msgstr "AMS filamentler" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Filament rengini seçmek için tıklayın" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Lütfen filament rengini seçin" msgid "Add/Remove presets" @@ -7093,7 +7098,7 @@ msgstr "Filament Ekle/Kaldır" msgid "Add/Remove materials" msgstr "Materyal Ekle/Kaldır" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Yazıcıları Seç/Kaldır (sistem ön ayarları)" msgid "Create printer" @@ -7165,13 +7170,13 @@ msgstr "3mf yükleniyor" msgid "Jump to model publish web page" msgstr "Model yayınlama web sayfasına git" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "Not: Hazırlık birkaç dakika sürebilir. Lütfen sabırlı olun." msgid "Publish" msgstr "Yayınla" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Yayınlama iptal edildi" msgid "Slicing Plate 1" @@ -7196,7 +7201,7 @@ msgstr "Ön ayar içerisinde proje" msgid "Name is unavailable." msgstr "Ad kullanılamıyor." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Sistem profilinin üzerine yazmaya izin verilmiyor" #, boost-format @@ -7204,10 +7209,12 @@ msgid "Preset \"%1%\" already exists." msgstr "\"%1%\" ön ayarı zaten mevcut." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "\"%1%\" ön ayarı zaten mevcut ve mevcut yazıcıyla uyumlu değil." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Kaydetme eyleminin bu ön ayarın yerini alacağını lütfen unutmayın" msgid "The name cannot be the same as a preset alias name." @@ -7271,22 +7278,22 @@ msgid "Busy" msgstr "Meşgul" msgid "Bambu Cool Plate" -msgstr "Bambu Cool Plate" +msgstr "" msgid "PLA Plate" msgstr "PLA Plaka" msgid "Bambu Engineering Plate" -msgstr "Bambu Engineering Plate" +msgstr "" msgid "Bambu Smooth PEI Plate" -msgstr "Bambu Smooth PEI Plate" +msgstr "" msgid "High temperature Plate" -msgstr "High Temperature Plate" +msgstr "" msgid "Bambu Textured PEI Plate" -msgstr "Bambu Textured PEI Plate" +msgstr "" msgid "Send print job to" msgstr "Yazdırma işini şuraya gönder" @@ -7426,7 +7433,7 @@ msgid "Please check the following:" msgstr "Lütfen aşağıdakileri kontrol edin:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7461,7 +7468,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Yüksek sıcaklıktaki malzemeyi (%s malzeme) %s ile yazdırmak püskürtme ucu " @@ -7576,7 +7583,7 @@ msgstr "Giriş başarısız oldu. Lütfen Pin Kodunu kontrol edin." msgid "Log in printer" msgstr "Yazıcıda oturum aç" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Bu yazıcıda geçerli hesapla oturum açmak ister misiniz?" msgid "Check the reason" @@ -7589,14 +7596,14 @@ msgid "Terms and Conditions" msgstr "Şartlar ve koşullar" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" -"Bir Bambu Lab cihazı satın aldığınız için teşekkür ederiz.Bambu Lab " -"cihazınızı kullanmadan önce lütfen şartlar ve koşulları okuyun.Bambu Lab " +"Bir Bambu Lab cihazı satın aldığınız için teşekkür ederiz. Bambu Lab " +"cihazınızı kullanmadan önce lütfen şartlar ve koşulları okuyun. Bambu Lab " "cihazınızı kullanmayı kabul etmek için tıklayarak, Gizlilik Politikasına ve " "Kullanım Koşullarına (topluca \"Şartlar\" olarak anılacaktır) uymayı kabul " "etmiş olursunuz. \"). Bambu Lab Gizlilik Politikasına uymuyorsanız veya bu " @@ -7623,7 +7630,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7678,7 +7685,7 @@ msgid "Click to reset all settings to the last saved preset." msgstr "Tüm ayarları en son kaydedilen ön ayara sıfırlamak için tıklayın." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Sorunsuz timeplace için Prime Tower gereklidir. Prime tower olmayan modelde " @@ -7686,7 +7693,7 @@ msgstr "" "misiniz?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Do you want to enable prime tower?" msgstr "" "Sorunsuz hızlandırılmış çekim için Prime Tower gereklidir. Prime tower " @@ -7697,7 +7704,7 @@ msgid "Still print by object?" msgstr "Hala nesneye göre yazdırıyor musunuz?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7708,7 +7715,7 @@ msgstr "" "destek katmanı yüksekliğini devre dışı bırakma" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7738,14 +7745,14 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "Katman yüksekliği, Yazıcı Ayarları -> Ekstruder -> Katman yüksekliği " "sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına " "neden olabilir." -msgid "Adjust to the set range automatically? \n" -msgstr "Ayarlanan aralığa otomatik olarak ayarlansın mı? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Ayarlanan aralığa otomatik olarak ayarlansın mı?\n" msgid "Adjust" msgstr "Ayarla" @@ -7755,8 +7762,8 @@ msgstr "Atla" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Deneysel özellik: Filament değişiklikleri sırasında, floşu en aza indirmek " @@ -7766,9 +7773,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Deneysel özellik: Filament değişiklikleri sırasında, filamanın en aza " "indirilmesi için filamanın daha büyük bir mesafeden geri çekilmesi ve " @@ -8014,63 +8021,63 @@ msgid "Nozzle temperature when printing" msgstr "Yazdırma sırasında nozul sıcaklığı" msgid "Cool Plate (SuperTack)" -msgstr "Cool Plate (SuperTack)" +msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Cool Plate takıldığında yatak sıcaklığı. 0 değeri, filamentin Cool Plate " "SuperTack üzerine yazdırmayı desteklemediği anlamına gelir" msgid "Cool Plate" -msgstr "Cool Plate" +msgstr "Soğuk plaka" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Cool Plate takıldığında yatak sıcaklığı. 0 değeri, filamentin Cool Plate " "üzerine yazdırmayı desteklemediği anlamına gelir" -msgid "Textured Cool plate" -msgstr "Textured Cool Plate" +msgid "Textured Cool Plate" +msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Cool Plate takıldığında yatak sıcaklığı. 0 Değeri, filamentin Textured Cool " "Plate üzerine yazdırmayı desteklemediği anlamına gelir" -msgid "Engineering plate" -msgstr "Engineering Plate" +msgid "Engineering Plate" +msgstr "" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Engineering Plate takıldığında yatak sıcaklığı. Değer 0, filamentin " "Engineering Plate yazdırmayı desteklemediği anlamına gelir" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Smooth PEI Plate / High Temp Plate" +msgstr "" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Smooth PEI Plate / High Temp Plate takılığın da yatak sıcaklığı. 0 Değeri, " "filamentin Smooth PEI Plate / High Temp Plate üzerine baskı yapmayı " "desteklemediği anlamına gelir" msgid "Textured PEI Plate" -msgstr "Textured PEI Plate" +msgstr "" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Textured PEI Plate takıldığın da yatak sıcaklığı. 0 Değeri, filamentin " "Textured PEI Plate üzerine yazdırmayı desteklemediği anlamına gelir" @@ -8132,13 +8139,13 @@ msgstr "Filament Bitiş G Kodu" msgid "Wipe tower parameters" msgstr "Silme Kulesi Parametreleri" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Tek Ekstruderli MM Yazıcılarda Araç Değiştirme Parametreleri" msgid "Ramming settings" msgstr "Sıkıştırma ayarları" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Çoklu Ekstruder MM Yazıcılarda Araç Değiştirme Parametreleri" msgid "Dependencies" @@ -8150,7 +8157,7 @@ msgstr "Profil Bağımlılıkları" msgid "Printable space" msgstr "Plaka Ayarı" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "%1% parametresi için geçersiz değer sağlandı: %2%" @@ -8173,7 +8180,7 @@ msgstr "Uyarlanabilir Yatak Ağı" msgid "Accessory" msgstr "Aksesuar" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "Yazıcı G-kod" msgid "Machine start G-code" @@ -8191,8 +8198,8 @@ msgstr "Katman Değişimi Öncesi G-kod" msgid "Layer change G-code" msgstr "Katman Değişimi G-kod" -msgid "Time lapse G-code" -msgstr "Time Lapse G-code" +msgid "Timelapse G-code" +msgstr "Timelapse G-kod" msgid "Change filament G-code" msgstr "Filament Değişimi G-kod" @@ -8283,10 +8290,10 @@ msgid "" "%d Filament Preset and %d Process Preset is attached to this printer. Those " "presets would be deleted if the printer is deleted." msgstr "" -"%d Filament Ön Ayarı ve %d İşlem Ön Ayarı bu yazıcıya eklenmiştir.Yazıcı " +"%d Filament Ön Ayarı ve %d İşlem Ön Ayarı bu yazıcıya eklenmiştir. Yazıcı " "silinirse bu ön ayarlar silinir." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "Diğer ön ayarlar tarafından devralınan ön ayarlar silinemez!" msgid "The following presets inherit this preset." @@ -8305,11 +8312,11 @@ msgstr[0] "Aşağıdaki ön ayar da silinecektir." msgstr[1] "Aşağıdaki ön ayarlar da silinecektir." msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"Seçilen ön ayarı silmek istediğinizden emin misiniz? \n" +"Seçilen ön ayarı silmek istediğinizden emin misiniz?\n" "Eğer ön ayar, şu anda yazıcınızda kullanılan bir filamente karşılık " "geliyorsa, lütfen o slot için filament bilgilerini sıfırlayın." @@ -8523,7 +8530,7 @@ msgstr "Yeni bir sürüm mevcut" msgid "Configuration update" msgstr "Yapılandırma güncellemesi" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Yeni bir konfigürasyon paketi mevcut. Kurmak istiyor musunuz?" msgid "Description:" @@ -8532,13 +8539,13 @@ msgstr "Açıklama:" msgid "Configuration incompatible" msgstr "Yapılandırma uyumsuz" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "yapılandırma paketi mevcut uygulamayla uyumlu değil." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Yapılandırma paketi mevcut uygulamayla uyumlu değil.\n" "%s yapılandırma paketini güncelleyecek, Aksi halde başlatılamayacak" @@ -8547,7 +8554,7 @@ msgstr "" msgid "Exit %s" msgstr "%s'den çık" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "yapılandırma paketi mevcut APP ile uyumlu değil." msgid "Configuration updates" @@ -8600,18 +8607,18 @@ msgid "Map Filament" msgstr "Filamenti Eşle" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Not: Renk seçildi, devam etmek için Tamam'ı seçebilirsiniz\n" -" veya manuel olarak ayarlayabilirsiniz." +"veya manuel olarak ayarlayabilirsiniz." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Uyarı: Yeni eklenen ve\n" -" mevcut ekstrüderlerin sayısı 16'yı aşıyor." +"mevcut ekstrüderlerin sayısı 16'yı aşıyor." msgid "Ramming customization" msgstr "Sıkıştırma özelleştirme" @@ -8729,7 +8736,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Sisteminizde video oynatmak için gerekli olan GStreamer H.264 codec " @@ -8800,13 +8807,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Seçilen nesneleri veya tüm nesneleri otomatik olarak yönlendirir. Seçilen " -"nesneler varsa, yalnızca seçilenleri yönlendirir. Aksi takdirde, geçerli " -"diskteki tüm nesneleri yönlendirir." +"nesneler varsa, yalnızca seçilenleri yönlendirir. Aksi takdirde mevcut " +"projedeki tüm nesneler yönlendirilecektir." + +msgid "Auto orients all objects on the active plate." +msgstr "Aktif plakadaki tüm nesneleri otomatik olarak yönlendirir." msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8916,8 +8926,11 @@ msgstr "Gizmo döndürme" msgid "Gizmo cut" msgstr "Gizmo kesim" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Yüzünüzü yatağa yerleştirin" +msgid "Gizmo place face on bed" +msgstr "Gizmo yüzünüzü yatağa yerleştirin" + +msgid "Gizmo mesh boolean" +msgstr "Gizmo mesh bölme" msgid "Gizmo SLA support points" msgstr "Gizmo SLA destek noktaları" @@ -8925,8 +8938,17 @@ msgstr "Gizmo SLA destek noktaları" msgid "Gizmo FDM paint-on seam" msgstr "Gizmo FDM boyalı dikiş" -msgid "Gizmo Text emboss / engrave" -msgstr "Gizmo Metin kabartma / kazıma" +msgid "Gizmo text emboss/engrave" +msgstr "Gizmo metin kabartma/kazıma" + +msgid "Gizmo measure" +msgstr "Gizmo ölçüm" + +msgid "Gizmo assemble" +msgstr "Gizmo birleştir" + +msgid "Gizmo brim ears" +msgstr "Gizmo " msgid "Zoom in" msgstr "Yakınlaştır" @@ -8967,8 +8989,8 @@ msgstr "Gizmo" msgid "Set extruder number for the objects and parts" msgstr "Nesneler ve parçalar için ekstruder numarasını ayarlayın" -msgid "Delete objects, parts, modifiers " -msgstr "Nesneleri, parçaları, değiştiricileri silin " +msgid "Delete objects, parts, modifiers" +msgstr "Nesneleri, parçaları, değiştiricileri silin" msgid "Select the object/part and press space to change the name" msgstr "Nesneyi/parçayı seçin ve adını değiştirmek için boşluk tuşuna basın" @@ -8997,7 +9019,7 @@ msgstr "Yatay kaydırıcı - Etkin başparmağı sağa taşı" msgid "On/Off one layer mode of the vertical slider" msgstr "Dikey kaydırıcının tek katman modunu açma/kapama" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "G-kodu penceresini aç/kapat" msgid "Move slider 5x faster" @@ -9016,7 +9038,7 @@ msgid "Release Note" msgstr "Sürüm notu" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "sürüm %s güncelleme bilgileri:" msgid "Network plug-in update" @@ -9029,7 +9051,7 @@ msgstr "" "için Tamam'a tıklayın." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Yeni bir Ağ eklentisi(%s) mevcut, Yüklemek istiyor musunuz?" msgid "New version of Orca Slicer" @@ -9047,10 +9069,10 @@ msgstr "Devam et" msgid "Resume Printing" msgstr "Yazdırmaya Devam Et" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Yazdırmaya Devam Et (kusurlar kabul edilebilir)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Yazdırmaya Devam Et (sorun çözüldü)" msgid "Stop Printing" @@ -9173,10 +9195,10 @@ msgstr "Son sürüm" msgid "Updating" msgstr "Güncelleniyor" -msgid "Updating failed" +msgid "Update failed" msgstr "Güncelleme başarısız oldu" -msgid "Updating successful" +msgid "Update successful" msgstr "Güncelleme başarılı" msgid "" @@ -9306,7 +9328,7 @@ msgstr "" "Baskınız hazırlama bölgelerine çok yakın. Çarpışma olmadığından emin olun." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "Geçersiz özel G kodu için gcode oluşturulamadı.\n" @@ -9357,7 +9379,7 @@ msgid "Multiple" msgstr "Çoklu" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "%1% çizgi genişliği hesaplanamadı. \"%2%\" değeri alınamıyor " msgid "" @@ -9494,9 +9516,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr " dışlama alanına çok yakın ve çarpışmalara neden olacak.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Birlikte büyük sıcaklık farkına sahip birden fazla filament basılamaz. Aksi " "takdirde baskı sırasında ekstruder ve nozul tıkanabilir veya hasar görebilir" @@ -9593,25 +9615,26 @@ msgstr "" "Uyarlanabilir katman yüksekliği açıkken ana kule desteklenmez. Tüm " "nesnelerin aynı katman yüksekliğine sahip olmasını gerektirir." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "" "Ana kule \"destek boşluğunun\" katman yüksekliğinin katı olmasını gerektirir" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "" "Prime tower, tüm nesnelerin aynı katman yüksekliğine sahip olmasını " "gerektirir" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Ana kule, tüm nesnelerin aynı sayıda sal katmanı üzerine yazdırılmasını " "gerektirir" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "Prime kulesi yalnızca aynı destek üst z mesafesi ile yazdırılırlarsa birden " "fazla nesne için desteklenir" @@ -9625,7 +9648,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "Prime tower yalnızca tüm nesnelerin aynı değişken katman yüksekliğine sahip " "olması durumunda desteklenir" @@ -9682,7 +9705,7 @@ msgstr "" "Destek uygulayıcıları kullanılıyor ancak destek etkinleştirilmiyor. Lütfen " "desteği etkinleştirin." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Katman yüksekliği nozul çapını aşamaz" msgid "" @@ -9810,8 +9833,8 @@ msgid "Elephant foot compensation" msgstr "Fil ayağı telafi oranı" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Fil ayağı etkisini telafi etmek için baskı plakasındaki ilk katmanı küçültün" @@ -9833,7 +9856,7 @@ msgstr "katman" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Her katman için dilimleme yüksekliği. Daha küçük katman yüksekliği, daha " "doğru ve daha fazla baskı süresi anlamına gelir" @@ -9841,14 +9864,14 @@ msgstr "" msgid "Printable height" msgstr "Yazdırılabilir yükseklik" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "" "Yazıcının mekanizması tarafından sınırlanan maksimum yazdırılabilir yükseklik" msgid "Preferred orientation" msgstr "Tercih edilen yönlendirme" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "" "İlk içe aktarma sonrasında stl'leri Z ekseninde otomatik olarak yönlendirin" @@ -9858,7 +9881,7 @@ msgstr "Yazıcı ön ayar adları" msgid "Use 3rd-party print host" msgstr "3. taraf yazdırma ana bilgisayarını kullanın" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "" "BambuLab yazıcısının 3. taraf yazdırma ana bilgisayarları aracılığıyla " "kontrol edilmesine izin ver" @@ -9884,7 +9907,7 @@ msgid "Device UI" msgstr "Cihaz kullanıcı arayüzü" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Print_Host ile aynı değilse cihazınızın kullanıcı arayüzünün URL'sini " "belirtin" @@ -9900,7 +9923,7 @@ msgstr "" "Bu alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi " "içermelidir." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Yazıcı adı" msgid "HTTPS CA File" @@ -9933,7 +9956,7 @@ msgstr "" "iptal kontrollerini göz ardı edin. Bağlantı başarısız olursa, kendinden " "imzalı sertifikalar için bu seçeneğin etkinleştirilmesi istenebilir." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Fiziksel yazıcıyla ilgili ön ayarların adları" msgid "Authorization Type" @@ -9945,20 +9968,21 @@ msgstr "API anahtarı" msgid "HTTP digest" msgstr "HTTP özeti" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Duvar geçişinden kaçın" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "Yüzeyde lekelenmeye neden olabilecek duvar boyunca ilerlemekten kaçın" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Duvarı geçmekten kaçının - maksimum servis yolu uzunluğu" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Duvarı geçmekten kaçınmak için maksimum sapma mesafesi. Yoldan sapma " "mesafesi bu değerden büyükse yoldan sapmayın. Yol uzunluğu, mutlak bir değer " @@ -9972,8 +9996,8 @@ msgid "Other layers" msgstr "Diğer katmanlar" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 değeri, filamentin " "Cool Plate üzerine yazdırmayı desteklemediği anlamına gelir" @@ -9982,29 +10006,29 @@ msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 Değeri, filamentin " "Dokulu Soğuk Plaka üzerine yazdırmayı desteklemediği anlamına gelir." msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. Değer 0, filamentin " "Mühendislik Plakasına yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 değeri, filamentin " "Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 Değeri, filamentin " "Dokulu PEI Plaka üzerine yazdırmayı desteklemediği anlamına gelir" @@ -10016,61 +10040,55 @@ msgid "Initial layer bed temperature" msgstr "İlk katman yatak sıcaklığı" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "İlk katmanın yatak sıcaklığı. 0 değeri, filamentin Soğuk Plaka SuperTack " "üzerine yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "İlk katmanın yatak sıcaklığı. 0 değeri, filamentin Cool Plate üzerine " "yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "İlk katmanın yatak sıcaklığı. 0 Değeri, filamentin Dokulu Soğuk Plaka " "üzerine yazdırmayı desteklemediği anlamına gelir." msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "İlk katmanın yatak sıcaklığı. Değer 0, filamentin Mühendislik Plakasına " "yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "İlk katmanın yatak sıcaklığı. 0 değeri, filamentin Yüksek Sıcaklık Plakasına " "yazdırmayı desteklemediği anlamına gelir" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "İlk katmanın yatak sıcaklığı. 0 Değeri, filamentin Dokulu PEI Plaka üzerine " "yazdırmayı desteklemediği anlamına gelir" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Yazıcının desteklediği yatak türleri" msgid "Smooth Cool Plate" -msgstr "Smooth Cool Plate" - -msgid "Engineering Plate" -msgstr "Engineering Plate" +msgstr "" msgid "Smooth High Temp Plate" -msgstr "Smooth High Temp Plate" - -msgid "Textured Cool Plate" -msgstr "Textured Cool Plate" +msgstr "" msgid "First layer print sequence" msgstr "İlk katman yazdırma sırası" @@ -10084,7 +10102,7 @@ msgstr "Diğer katmanların sayısı yazdırma sırası" msgid "Other layers filament sequence" msgstr "Diğer katmanlar filament dizisi" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Bu G kodu, z'yi kaldırmadan önce her katman değişikliğinde eklenir" msgid "Bottom shell layers" @@ -10093,7 +10111,7 @@ msgstr "Alt katmanlar" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Bu, alt yüzey katmanı da dahil olmak üzere alt kabuğun katı katmanlarının " "sayısıdır. Bu değerle hesaplanan kalınlık alt kabuk kalınlığından ince " @@ -10107,7 +10125,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Alt kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince " "ise dilimleme sırasında alt katı katmanların sayısı arttırılır. Bu, katman " @@ -10128,22 +10146,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Seçilen katı yüzeyler için boşluk doldurmayı etkinleştirir. Doldurulacak " "minimum boşluk uzunluğu aşağıdaki küçük boşlukları filtrele seçeneğinden " @@ -10157,15 +10175,15 @@ msgstr "" "potansiyelini azaltır ve üst ve alt yüzeylerde iğne deliği boşluğu " "kalmamasını sağlar\n" "3. Hiçbir Yer: Tüm katı dolgu alanları için boşluk doldurmayı devre dışı " -"bırakır. \n" +"bırakır.\n" "\n" "Klasik çevre oluşturucu kullanılıyorsa, aralarına tam genişlikte bir çizgi " "sığmazsa, çevreler arasında boşluk doldurmanın da oluşturulabileceğini " -"unutmayın. Bu çevre boşluğu dolgusu bu ayarla kontrol edilmez. \n" +"unutmayın. Bu çevre boşluğu dolgusu bu ayarla kontrol edilmez.\n" "\n" "Oluşturulan klasik çevre de dahil olmak üzere tüm boşluk doldurmanın " "kaldırılmasını istiyorsanız, filtreyi küçük boşluklar dışında değerini " -"999999 gibi büyük bir sayıya ayarlayın. \n" +"999999 gibi büyük bir sayıya ayarlayın.\n" "\n" "Ancak çevreler arasındaki boşluğun doldurulması modelin gücüne katkıda " "bulunduğundan bu önerilmez. Çevreler arasında aşırı boşluk dolgusunun " @@ -10291,9 +10309,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10305,7 +10323,7 @@ msgstr "" " Daha düşük yoğunluklu iç köprüler, üst yüzeydeki yastıklanmayı azaltmaya " "yardımcı olabilir ve ekstrüde köprünün etrafında havanın dolaşması için daha " "fazla alan olduğundan iç köprü güvenilirliğini artırarak soğutma hızını " -"artırır. \n" +"artırır.\n" "\n" "Bu seçenek, dolgu üzerine ikinci iç köprü seçeneği ile birleştirildiğinde " "özellikle iyi çalışır ve katı dolgu ekstrüde edilmeden önce iç köprüleme " @@ -10315,14 +10333,14 @@ msgid "Bridge flow ratio" msgstr "Köprülerde akış oranı" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" "Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek amacıyla bu " -"değeri biraz azaltın (örneğin 0,9). \n" +"değeri biraz azaltın (örneğin 0,9).\n" "\n" "Kullanılan gerçek köprü akışı, bu değerin filament akış oranıyla ve " "ayarlandıysa nesnenin akış oranıyla çarpılmasıyla hesaplanır." @@ -10351,13 +10369,13 @@ msgstr "Üst katı dolgu akış oranı" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." msgstr "" "Bu faktör üst katı dolgu için malzeme miktarını etkiler. Pürüzsüz bir yüzey " -"elde etmek için bunu biraz azaltabilirsiniz. \n" +"elde etmek için bunu biraz azaltabilirsiniz.\n" "\n" "Kullanılan gerçek üst yüzey akışı, bu değerin filament akış oranıyla ve " "ayarlandıysa nesnenin akış oranıyla çarpılmasıyla hesaplanır." @@ -10366,12 +10384,12 @@ msgid "Bottom surface flow ratio" msgstr "Alt katı dolgu akış oranı" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"Bu faktör alt katı dolgu için malzeme miktarını etkiler. \n" +"Bu faktör alt katı dolgu için malzeme miktarını etkiler.\n" "\n" "Kullanılan gerçek alt katı dolgu akışı, bu değerin filament akış oranıyla ve " "ayarlandıysa nesnenin akış oranıyla çarpılmasıyla hesaplanır." @@ -10390,8 +10408,8 @@ msgid "Only one wall on top surfaces" msgstr "Üst yüzeylerde yalnızca bir duvar" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Üst dolgu desenine daha fazla yer açmak için düz üst yüzeyde yalnızca bir " "duvar kullanın" @@ -10424,7 +10442,7 @@ msgstr "İlk katmanda yalnızca bir duvar" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Alt dolgu desenine daha fazla yer açmak için ilk katmanda yalnızca bir duvar " "kullanın" @@ -10464,7 +10482,7 @@ msgid "Reverse only internal perimeters" msgstr "Yalnızca iç çevreleri ters çevir" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10477,7 +10495,7 @@ msgid "" "Reverse Threshold to 0 so that all internal walls print in alternating " "directions on even layers irrespective of their overhang degree." msgstr "" -"Ters çevre mantığını yalnızca iç çevrelere uygulayın. \n" +"Ters çevre mantığını yalnızca iç çevrelere uygulayın.\n" "\n" "Bu ayar, parçalar artık farklı yönlerde dağıtıldığından parça gerilimlerini " "büyük ölçüde azaltır. Bu, dış duvar kalitesini korurken parçanın bükülmesini " @@ -10496,9 +10514,9 @@ msgstr "Köprü havşa delikleri" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "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" @@ -10536,13 +10554,13 @@ msgstr "" msgid "Classic mode" msgstr "Klasik mod" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Klasik modu kullanmak için bu seçeneği etkinleştirin" msgid "Slow down for overhang" msgstr "Çıkıntılarda yavaşla" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Farklı sarkma derecelerinde yazdırmayı yavaşlatmak için bu seçeneği " "etkinleştirin" @@ -10553,11 +10571,11 @@ msgstr "Kıvrılmış çevre çizgilerinde yavaşlat" #, fuzzy, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10595,14 +10613,14 @@ msgid "External" msgstr "Harici" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " "are supported by less than 13%, whether they are part of a bridge or an " "overhang." msgstr "" -"Dışarıdan görülebilen köprü ekstrüzyonlarının hızı. \n" +"Dışarıdan görülebilen köprü ekstrüzyonlarının hızı.\n" "\n" "Ayrıca, kıvrılmış çevreler için yavaşlama devre dışı bırakılırsa veya Klasik " "çıkıntı modu etkinleştirilirse, ister bir köprünün ister bir çıkıntının " @@ -10622,7 +10640,7 @@ msgstr "" msgid "Brim width" msgstr "Kenar genişliği" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Modelden en dış kenar çizgisine kadar olan mesafe" msgid "Brim type" @@ -10644,7 +10662,7 @@ msgstr "Kenar-nesne boşluğu" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "En içteki kenar çizgisi ile nesne arasındaki boşluk, kenarlığın daha kolay " "çıkarılmasını sağlayabilir" @@ -10659,8 +10677,8 @@ msgid "Brim ear max angle" msgstr "Kenar kulak maksimum açısı" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Kenarlı bir kulağın görünmesine izin veren maksimum açı.\n" @@ -10673,7 +10691,7 @@ msgstr "Kenar kulak algılama yarıçapı" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "Keskin açılar tespit edilmeden önce geometrinin büyük bir kısmı yok " "edilecektir. Bu parametre, ondalık sapmanın minimum uzunluğunu gösterir.\n" @@ -10712,7 +10730,7 @@ msgstr "" "ifadesi. Bu ifade doğru olarak değerlendirilirse bu profilin etkin yazdırma " "profiliyle uyumlu olduğu kabul edilir." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Yazdırma sırası, katman katman veya nesne nesne" msgid "By layer" @@ -10724,7 +10742,7 @@ msgstr "Nesneye göre" msgid "Intra-layer order" msgstr "Katman içi sipariş" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Tek bir katmanda yazdırma sırası" msgid "As object list" @@ -10737,7 +10755,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Son katman süresinin \"Maksimum fan hızı eşiği\"ndeki katman süresi " "eşiğinden kısa olmamasını sağlamak amacıyla yazdırma hızını yavaşlatmak için " @@ -10749,7 +10767,7 @@ msgstr "Normal baskı" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "İlk katman dışında hem normal yazdırmanın hem de ilerlemenin varsayılan " "ivmesi" @@ -10757,13 +10775,13 @@ msgstr "" msgid "Default filament profile" msgstr "Varsayılan filament profili" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Bu yazıcıprofiline geçildiğinde varsayılan filament profili" msgid "Default process profile" msgstr "Varsayılan süreç profili" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Bu yazıcıprofiline geçildiğinde varsayılan işlem profili" msgid "Activate air filtration" @@ -10776,22 +10794,23 @@ msgstr "" msgid "Fan speed" msgstr "Fan hızı" +#, fuzzy msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Baskı sırasında egzoz fanının hızı. Bu hız, filament özel gcode'undaki hızın " "üzerine yazılacaktır" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Baskı tamamlandıktan sonra egzoz fanının hızı" msgid "No cooling for the first" msgstr "Soğutmayı devre dışı bırak" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "İlk belirli katmanlar için tüm soğutma fanını kapatın. Daha iyi baskı " "plakası yapışması sağlamak için ilk katmanın soğutma fanı kapatılırdı" @@ -10800,8 +10819,8 @@ msgid "Don't support bridges" msgstr "Köprülerde destek olmasın" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Desteği çok büyük yapan tüm köprü alanını desteklemeyin. Bridge genellikle " "çok uzun olmasa da destek olmadan doğrudan yazdırılabilir" @@ -10850,20 +10869,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10916,54 +10935,42 @@ msgstr "Küçük iç köprüleri filtreleyin" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Bu seçenek, aşırı eğimli veya kavisli modellerde üst yüzeylerdeki " "yastıklamayı azaltmaya yardımcı olabilir.\n" -"\n" "Varsayılan olarak küçük iç köprüler filtrelenir ve iç katı dolgu doğrudan " "seyrek dolgunun üzerine yazdırılır. Bu çoğu durumda işe yarar ve üstün yüzey " -"kalitesinden çok fazla ödün vermeden yazdırmayı hızlandırır. \n" -"\n" +"kalitesinden çok fazla ödün vermeden yazdırmayı hızlandırır.\n" "Bununla birlikte, çok eğimli veya kavisli modellerde, özellikle çok düşük " "seyrek dolgu yoğunluğunun kullanıldığı durumlarda bu, desteklenmeyen katı " "dolgunun kıvrılmasına ve yastıklanmaya neden olmasına neden olabilir.\n" -"\n" "Sınırlı filtrelemenin etkinleştirilmesi veya hiç filtre uygulanmaması, " "dahili köprü katmanını hafif desteksiz iç katı dolgu üzerine yazdıracaktır. " "Aşağıdaki seçenekler filtrelemenin hassasiyetini kontrol eder, yani iç " "köprülerin nerede oluşturulduğunu kontrol ederler.\n" -"\n" "1. Filtrele - bu seçeneği etkinleştirir. Bu varsayılan davranıştır ve çoğu " "durumda iyi çalışır.\n" -"\n" "2. Sınırlı filtreleme - aşırı eğimli yüzeylerde iç köprüler oluştururken " "gereksiz köprülerden kaçınır. Bu, çoğu zor modelde işe yarar.\n" -"\n" "3. Filtreleme yok - her potansiyel dahili çıkıntıda iç köprüler oluşturur. " "Bu seçenek aşırı eğimli üst yüzey modelleri için kullanışlıdır; ancak çoğu " "durumda çok fazla gereksiz köprü oluşturur." @@ -10992,20 +10999,20 @@ msgstr "" msgid "End G-code" msgstr "Bitiş G kodu" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Tüm yazdırmayı tamamladığında çalışacak olan G Kodu" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "Nesne Arası Gcode" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Nesnelerin arasına Gcode ekleyin. Bu parametre yalnızca modellerinizi nesne " "nesne yazdırdığınızda etkili olacaktır" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Bu filament ile baskı bittiğinde çalışacak G kodu" msgid "Ensure vertical shell thickness" @@ -11039,7 +11046,7 @@ msgstr "Orta" msgid "Top surface pattern" msgstr "Üst yüzey deseni" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Üst yüzey dolgusunun çizgi deseni" msgid "Concentric" @@ -11069,7 +11076,7 @@ msgstr "Sekizgen spiral" msgid "Bottom surface pattern" msgstr "Alt yüzey deseni" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Köprü dolgusu değil, alt yüzey dolgusunun çizgi deseni" msgid "Internal solid infill pattern" @@ -11114,14 +11121,14 @@ msgid "Small perimeters threshold" msgstr "Küçük çevre (perimeter) eşiği" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Bu, küçük çevre uzunluğu için eşiği belirler. Varsayılan eşik 0 mm'dir" msgid "Walls printing order" msgstr "Duvar baskı sırası" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11135,7 +11142,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11157,7 +11164,7 @@ msgstr "" "düşecektir. Bu seçenek, önce 3. çevreden itibaren iç duvarları, ardından dış " "çevreyi ve son olarak da birinci iç çevreyi yazdırdığından etkili olması " "için en az 3 duvar gerektirir. Bu seçenek çoğu durumda Dış/İç seçeneğine " -"karşı önerilir. \n" +"karşı önerilir.\n" "\n" "İç/Dış/İç seçeneğinin aynı dış duvar kalitesi ve boyutsal doğruluk " "avantajları için Dış/İç seçeneğini kullanın. Bununla birlikte, yeni bir " @@ -11328,7 +11335,7 @@ msgstr "" msgid "Extruder Color" msgstr "Ekstruder rengi" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Yalnızca kullanıcı arayüzünde görsel yardım olarak kullanılır" msgid "Extruder offset" @@ -11337,12 +11344,13 @@ msgstr "Ekstruder konum" msgid "Flow ratio" msgstr "Akış oranı" +#, fuzzy msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel " "değişime sahip olabilir. Bu ayar, bu filamentin gcode'daki tüm ekstrüzyon " @@ -11350,12 +11358,13 @@ msgstr "" "arasındadır. Belki hafif taşma veya taşma olduğunda güzel düz bir yüzey elde " "etmek için bu değeri ayarlayabilirsiniz" +#, fuzzy msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11364,7 +11373,7 @@ msgstr "" "değişime sahip olabilir. Bu ayar, bu filamentin gcode’daki tüm ekstrüzyon " "akışını orantılı olarak değiştirir. Önerilen değer aralığı 0,95 ile 1,05 " "arasındadır. Belki hafif taşma veya taşma olduğunda güzel düz bir yüzey elde " -"etmek için bu değeri ayarlayabilirsiniz. \n" +"etmek için bu değeri ayarlayabilirsiniz.\n" "\n" "Nihai nesne akış oranı, bu değerin filament akış oranıyla çarpılmasıyla elde " "edilir." @@ -11379,7 +11388,7 @@ msgstr "" "Basınç avansını etkinleştirin; etkinleştirildiğinde otomatik kalibrasyon " "sonucunun üzerine yazılacaktır." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "Basınç avansı (Klipper) Doğrusal ilerleme faktörü (Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -11427,7 +11436,7 @@ msgstr "" msgid "Adaptive pressure advance measurements (beta)" msgstr "Uyarlanabilir basınç ilerleme ölçümleri (beta)" -#, no-c-format, no-boost-format +#, fuzzy, no-c-format, no-boost-format msgid "" "Add sets of pressure advance (PA) values, the volumetric flow speeds and " "accelerations they were measured at, separated by a comma. One set of values " @@ -11443,19 +11452,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Basınç ilerlemesi (basınç) değerlerinin setlerini, hacimsel akış hızlarını " "ve ölçüldükleri ivmeleri virgülle ayırarak ekleyin. Satır başına bir değer " @@ -11480,9 +11488,9 @@ msgstr "" "olursa o kadar azalmalıdır. Değilse, ekstruderinizin doğru şekilde " "çalıştığını doğrulayın. Ne kadar yavaş ve daha az ivmeyle yazdırırsanız, " "kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark " -"görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.3. Buradaki " -"metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve filament " -"profilinizi kaydedin\n" +"görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n" +"3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve " +"filament profilinizi kaydedin." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)" @@ -11502,15 +11510,15 @@ msgid "Pressure advance for bridges" msgstr "Köprüler için basınç ilerlemesi" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" "Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0’a " -"ayarlayın. \n" +"ayarlayın.\n" "\n" " Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra " "hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, " @@ -11528,8 +11536,9 @@ msgid "Keep fan always on" msgstr "Fanı her zaman açık tut" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Bu ayarı etkinleştirirseniz, parça soğutma fanı hiçbir zaman durdurulmayacak " "ve başlatma ve durdurma sıklığını azaltmak için en azından minimum hızda " @@ -11542,24 +11551,21 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Bu ayar etkinleştirildiğinde, dış çevrelerin minimum katman süresine uyması " "için yavaşlatılmamasını sağlar. Bu, özellikle aşağıdaki durumlarda yardımcı " "olur:\n" -"\n" "1. Parlak filamentler yazdırırken parlaklıktaki değişikliklerden kaçınmak " "için\n" "2. Z bantlanması gibi görünen hafif duvar kusurları yaratabilecek dış duvar " "hızındaki değişikliklerden kaçınmak için\n" "3. Dış duvarlarda VFAs (ince kusurlar) oluşturan hızlarda yazdırmaktan " -"kaçınmak için\n" +"kaçınmak için" msgid "Layer time" msgstr "Katman süresi" @@ -11567,7 +11573,7 @@ msgstr "Katman süresi" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Tahmini süresi bu değerden kısa olan katlarda parça soğutma fanı devreye " "girecektir. Fan hızı, katman yazdırma süresine göre minimum ve maksimum fan " @@ -11598,7 +11604,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Bu ayar, saniyede ne kadar miktarda filamentin eritilip ekstrude " "edilebileceğini gösterir. Çok yüksek ve makul olmayan hız ayarı durumunda, " @@ -11613,7 +11619,7 @@ msgstr "Filament yükleme süresi" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Filamenti değiştirdiğinizde yeni filament yükleme zamanı. Genellikle tek " "ekstruderli çok malzemeli makineler için geçerlidir. Araç değiştiriciler " @@ -11626,7 +11632,7 @@ msgstr "Filament boşaltma süresi" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Filamenti değiştirdiğinizde eski filamenti boşaltma zamanı. Genellikle tek " "ekstruderli çok malzemeli makineler için geçerlidir. Araç değiştiriciler " @@ -11639,15 +11645,15 @@ msgstr "Takım değiştirme süresi" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Araç değiştirmek için harcanan zaman. Genellikle araç değiştiriciler veya " "çok araçlı makineler için geçerlidir. Tek ekstruderli çok malzemeli " "makineler için bu değer genellikle 0’dır. Yalnızca istatistikler için." msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Filament çapı, gcode'da ekstrüzyonu hesaplamak için kullanılır; bu nedenle " "önemlidir ve doğru olmalıdır" @@ -11717,7 +11723,7 @@ msgid "Unloading speed" msgstr "Boşaltma hızı" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Filamenti silme kulesinde boşaltmak için kullanılan hız (sıkıştırmadan hemen " @@ -11735,8 +11741,8 @@ msgid "Delay after unloading" msgstr "Boşaltma işleminden sonra gecikme" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Filament boşaltıldıktan sonra beklenmesi gereken süre. Orijinal boyutlara " @@ -11763,7 +11769,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Soğutma tüpünün merkezinden ölçülen damgalama mesafesi" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11818,7 +11824,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Çok takımlı yazıcı kullanırken sıkıştırma gerçekleştirin (yani Yazıcı " "Ayarları'ndaki 'Tek Ekstruder Çoklu Malzeme' işaretli olmadığında). " @@ -11829,32 +11835,32 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Çoklu araç sıkıştırma hacmi" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Takım değişiminden önce sıkıştırılacak hacim." msgid "Multi-tool ramming flow" msgstr "Çoklu araç sıkıştırma akışı" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Araç değişiminden önce filamenti sıkıştırmak için kullanılan akış." msgid "Density" msgstr "Yoğunluk" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Filament yoğunluğu. Yalnızca istatistikler için" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Filament malzeme türü" msgid "Soluble material" msgstr "Çözünür malzeme" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "" "Çözünür malzeme genellikle destek ve destek arayüzünü yazdırmak için " "kullanılır" @@ -11863,7 +11869,7 @@ msgid "Support material" msgstr "Destek malzemesi" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "" "Destek malzemesi yaygın olarak destek ve destek arayüzünü yazdırmak için " "kullanılır" @@ -11873,8 +11879,8 @@ msgstr "Yumuşama sıcaklığı" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Filament bu sıcaklıkta yumuşar, bu nedenle yatak sıcaklığı bununla eşit veya " "daha yüksekse, tıkanmaları önlemek için ön kapağı açmanız ve/veya üst camı " @@ -11883,7 +11889,7 @@ msgstr "" msgid "Price" msgstr "Fiyat" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Filament fiyatı. Yalnızca istatistikler için" msgid "money/kg" @@ -11892,7 +11898,7 @@ msgstr "ücret/kg" msgid "Vendor" msgstr "Satıcı" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Filament satıcısı. Yalnızca gösteri için" msgid "(Undefined)" @@ -11903,7 +11909,7 @@ msgstr "Seyrek dolgu yönü" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Hattın başlangıcını veya ana yönünü kontrol eden seyrek dolgu deseni açısı" @@ -11912,7 +11918,7 @@ msgstr "Katı dolgu yönü" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı" @@ -11928,7 +11934,7 @@ msgstr "Dolgu yoğunluğu" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "İç seyrek dolgunun yoğunluğu, %100 tüm seyrek dolguyu katı dolguya " "dönüştürür ve iç katı dolgu modeli kullanılacaktır" @@ -11936,7 +11942,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Dolgu deseni" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "İç dolgu deseni" msgid "Grid" @@ -12007,7 +12013,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12038,7 +12044,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12055,23 +12061,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "0 (Basit bağlantı)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Dış duvarların hızlandırılması" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "İç duvarların hızlandırılması" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Seyahat hareketlerinin hızlandırılması" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması " "üst yüzey kalitesini iyileştirebilir" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Dış duvarın hızlanması. Daha düşük bir değer kullanmak kaliteyi artırabilir" @@ -12102,7 +12108,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Başlangıç katmanının hızlandırılması. Daha düşük bir değerin kullanılması " "baskı plakası yapışkanlığını iyileştirebilir" @@ -12110,7 +12116,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Accel_to_decel'i etkinleştir" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Klipper'ın max_accel_to_decel'i otomatik olarak ayarlanacak" msgid "accel_to_decel" @@ -12118,26 +12124,26 @@ msgstr "Accel_to_decel" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "" "Klipper'ın max_accel_to_decel değeri ivmenin bu %%'sine göre ayarlanacak" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Dış duvar JERK değeri" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "İç duvarlar JERK değeri" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Üst yüzey için JERK değeri" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Dolgu için JERK değeri" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "İlk katman için JERK değeri" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Seyahat için JERK değeri" msgid "" @@ -12152,24 +12158,24 @@ msgstr "Başlangıç katman yüksekliği" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "İlk katmanın yüksekliği. İlk katman yüksekliğini biraz kalın yapmak, baskı " "plakasının yapışmasını iyileştirebilir" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Katı dolgu kısmı dışındaki ilk katmanın hızı" msgid "Initial layer infill" msgstr "Başlangıç katman dolgusu" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "İlk katmanın katı dolgu kısmının hızı" msgid "Initial layer travel speed" msgstr "İlk katman seyahat hızı" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "İlk katman seyahat hızı" msgid "Number of slow layers" @@ -12185,7 +12191,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "İlk katman nozul sıcaklığı" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "Bu filamenti kullanırken ilk katmanı yazdırmak için nozul sıcaklığı" msgid "Full fan speed at layer" @@ -12213,7 +12219,7 @@ msgstr "Destekler için fan hızı" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12246,7 +12252,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Duvara baskı yaparken rastgele titreme, böylece yüzeyin pürüzlü bir görünüme " "sahip olması. Bu ayar bulanık konumu kontrol eder" @@ -12265,7 +12271,7 @@ msgstr "Bulanık kaplama kalınlığı" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Titremenin gerçekleşeceği genişlik. Dış duvar çizgi genişliğinin altında " "olması sakıncalıdır" @@ -12275,21 +12281,21 @@ msgstr "Bulanık kaplama noktası mesafesi" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Her çizgi parçasına eklenen rastgele noktalar arasındaki ortalama mesafe" msgid "Apply fuzzy skin to first layer" msgstr "Bulanık cildi ilk katmana uygulayın" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "İlk katmana bulanık cilt uygulanıp uygulanmayacağı" msgid "Fuzzy skin noise type" msgstr "Bulanık cilt gürültü türü" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12370,7 +12376,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Boşluk doldurma hızı. Boşluk genellikle düzensiz çizgi genişliğine sahiptir " "ve daha yavaş yazdırılmalıdır" @@ -12393,7 +12399,7 @@ msgstr "Ark" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12402,7 +12408,7 @@ msgid "" "to line segments by the firmware." msgstr "" "G2 ve G3 hareketlerine sahip bir G kodu dosyası elde etmek için bunu " -"etkinleştirin. Montaj toleransı çözünürlükle aynıdır. \n" +"etkinleştirin. Montaj toleransı çözünürlükle aynıdır.\n" "\n" "Not: Klipper makineler için bu seçeneğin devre dışı bırakılması önerilir. " "Klipper, yazılım tarafından tekrar çizgi bölümlerine bölündüğü için yay " @@ -12414,7 +12420,8 @@ msgstr "" msgid "Add line number" msgstr "Satır numarası ekle" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Her G Kodu satırının başına satır numarası (Nx) eklemek için bunu " "etkinleştirin" @@ -12424,7 +12431,7 @@ msgstr "İlk katmanı tara" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Yazıcıdaki kameranın ilk katmanın kalitesini kontrol etmesini sağlamak için " "bunu etkinleştirin" @@ -12434,7 +12441,7 @@ msgstr "Nozul tipi" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Nozulnin metalik malzemesi. Bu, nozulun aşınma direncini ve ne tür " "filamentin basılabileceğini belirler" @@ -12467,7 +12474,7 @@ msgstr "sıcak rulo" msgid "Printer structure" msgstr "Yazıcı yapısı" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Yazıcının fiziksel düzenlemesi ve bileşenleri" msgid "CoreXY" @@ -12495,15 +12502,16 @@ msgstr "" "Makinede yardımcı parça soğutma fanı varsa bu seçeneği etkinleştirin. G-code " "komut: M106 P2 S(0-255)." +#, fuzzy msgid "" "Start the fan this number of seconds earlier than its target start time (you " "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Fanı hedef başlangıç zamanından bu kadar saniye önce başlatın (kesirli " @@ -12540,7 +12548,7 @@ msgstr "" msgid "Time cost" msgstr "Zaman maliyeti" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Yazıcı saat başına maliyeti" msgid "money/h" @@ -12570,7 +12578,7 @@ msgstr "" msgid "G-code flavor" msgstr "G-Kod Uyumu" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "Yazıcının ne tür bir gcode ile uyumlu olduğu" msgid "Klipper" @@ -12579,14 +12587,14 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Pelet modlu yazıcı" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Yazıcınız filament yerine pellet kullanıyorsa bu seçeneği etkinleştirin" msgid "Support multi bed types" msgstr "Çoklu plaka" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" "Birden fazla plaka tipi kullanmak istiyorsanız bu seçeneği etkinleştirin" @@ -12594,7 +12602,7 @@ msgid "Label objects" msgstr "Nesneleri etiketle" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12607,7 +12615,7 @@ msgstr "" msgid "Exclude objects" msgstr "Nesneleri hariç tut" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "" "G koduna EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin" @@ -12638,7 +12646,7 @@ msgid "Infill combination - Max layer height" msgstr "Dolgu kombinasyonu - Maksimum katman yüksekliği" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12649,7 +12657,7 @@ msgid "" "Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values " "(eg 80%). This value must not be larger than the nozzle diameter." msgstr "" -"Birleşik seyrek dolgu için maksimum katman yüksekliği. \n" +"Birleşik seyrek dolgu için maksimum katman yüksekliği.\n" "\n" "Nozül çapını kullanmak için (baskı süresinde maksimum azalma için) %0 veya " "%100’e veya seyrek dolgu mukavemetini maksimuma çıkarmak için ~%80’lik bir " @@ -12695,7 +12703,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "Üst katı dolgu alanı, daha iyi yapışma sağlamak ve üst dolgunun duvarlarla " "buluştuğu yerde küçük deliklerin görünümünü en aza indirmek için duvarla üst " @@ -12703,13 +12711,13 @@ msgstr "" "deliklerinin görünümünü en aza indiren iyi bir başlangıç ​​noktasıdır. Yüzde " "değeri seyrek dolgunun çizgi genişliğine göredir" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "İç seyrek dolgunun hızı" msgid "Inherits profile" msgstr "Miras profil" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Ebeveyn profilinin adı" msgid "Interface shells" @@ -12718,7 +12726,7 @@ msgstr "Arayüz kabukları" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Bitişik malzemeler/hacimler arasında katı kabuk oluşumunu zorlayın. Yarı " "saydam malzemelerle veya elle çözülebilen destek malzemesiyle çoklu " @@ -12738,7 +12746,7 @@ msgstr "Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Bölümlere ayrılmış bir bölgenin birbirine kenetlenen derinliği. " @@ -12828,7 +12836,7 @@ msgstr "Tamamı katı katman" msgid "Ironing Pattern" msgstr "Ütüleme Deseni" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Ütüleme işlemi sırasında kullanılacak desen" msgid "Ironing flow" @@ -12836,7 +12844,7 @@ msgstr "Ütüleme akışı" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Ütüleme sırasında çıkacak malzeme miktarı. Normal katman yüksekliğindeki " "akışa göre. Çok yüksek değer yüzeyde aşırı ekstrüzyona neden olur" @@ -12844,7 +12852,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Ütüleme çizgi aralığı" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Ütü çizgileri arasındaki mesafe" msgid "Ironing inset" @@ -12852,14 +12860,14 @@ msgstr "Ütüleme boşluğu" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "Kenarlardan korunacak mesafe. 0 değeri bunu nozül çapının yarısına ayarlar" msgid "Ironing speed" msgstr "Ütüleme hızı" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Ütüleme çizgilerinin baskı hızı" msgid "Ironing angle" @@ -12872,7 +12880,7 @@ msgstr "" "Köşebent ütüleme işlemi yapılır. Negatif bir sayı bu işlevi devre dışı " "bırakır ve varsayılan yöntemi kullanır." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "" "Bu gcode kısmı, z kaldırma işleminden sonra her katman değişikliğinde eklenir" @@ -12881,7 +12889,7 @@ msgstr "Sessiz modu destekler" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Makinenin yazdırmak için daha düşük hızlanma kullandığı sessiz modu " "destekleyip desteklemediği" @@ -12894,25 +12902,25 @@ msgstr "Yazıcı sınırları" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Etkinleştirilirse, makine sınırları G kodu dosyasına aktarılacaktır.\n" "G kodu tadı Klipper olarak ayarlandığında bu seçenek göz ardı edilecektir." msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Bu G kodu duraklatma yazdırması için bir kod olarak kullanılacaktır. " "Kullanıcı gcode görüntüleyiciye duraklatma G kodunu ekleyebilir" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Bu G kodu özel kod olarak kullanılacak" msgid "Small area flow compensation (beta)" msgstr "Küçük alan akış telafisi (beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Küçük dolgu alanları için akış telafisini etkinleştirin" msgid "Flow Compensation Model" @@ -13028,12 +13036,12 @@ msgstr "Geri çekilme için maksimum hızlanma (M204 R)" msgid "Maximum acceleration for travel" msgstr "Seyahat için maksimum hızlanma" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "Seyahat için maksimum ivme (M204 T), yalnızca Marlin 2 için geçerlidir" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Otomatik soğutma etkinleştirildiğinde parça soğutma fanı hızı artırılabilir. " "Bu, parça soğutma fanının maksimum hız sınırlamasıdır" @@ -13042,8 +13050,8 @@ msgid "Max" msgstr "Maksimum" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Ekstruder için yazdırılabilir en büyük katman yüksekliği. Uyarlanabilir " "katman yüksekliği etkinleştirildiğinde maksimum katman yüksekliğini " @@ -13058,23 +13066,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13090,19 +13098,19 @@ msgstr "" "değişikliklerine izin verildiği anlamına gelir ve daha hızlı hız geçişlerine " "neden olur.\n" "\n" -"0 değeri özelliği devre dışı bırakır. \n" +"0 değeri özelliği devre dışı bırakır.\n" "\n" "Yüksek hızlı, yüksek akışlı doğrudan tahrikli bir yazıcı için (Bambu lab " "veya Voron gibi) bu değer genellikle gerekli değildir. Ancak özellik " "hızlarının büyük ölçüde değiştiği bazı durumlarda marjinal bir fayda " "sağlayabilir. Örneğin, çıkıntılar nedeniyle agresif yavaşlamalar olduğunda. " -"Bu durumlarda 300-350mm3/s2 civarında yüksek bir değer önerilir çünkü bu, " +"Bu durumlarda 300-350 mm³/s² civarında yüksek bir değer önerilir çünkü bu, " "basınç ilerlemesinin daha yumuşak bir akış geçişi elde etmesine yardımcı " "olmak için yeterli yumuşatmaya izin verir.\n" "\n" "Basınç avansı olmayan daha yavaş yazıcılar için değer çok daha düşük " -"ayarlanmalıdır. Doğrudan tahrikli ekstruderler için 10-15mm3/s2 ve Bowden " -"tarzı için 5-10mm3/s2 değeri iyi bir başlangıç noktasıdır. \n" +"ayarlanmalıdır. Doğrudan tahrikli ekstruderler için 10-15 mm³/s² ve Bowden " +"tarzı için 5-10 mm³/s² değeri iyi bir başlangıç noktasıdır.\n" "\n" "Bu özellik Prusa slicer'da Basınç Dengeleyici olarak bilinir.\n" "\n" @@ -13114,19 +13122,20 @@ msgstr "mm³/s²" msgid "Smoothing segment length" msgstr "Segment uzunluğunu yumuşatma" +#, fuzzy msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" "Daha düşük bir değer, daha düzgün ekstrüzyon hızı geçişleriyle sonuçlanır. " "Ancak bu, önemli ölçüde daha büyük bir gcode dosyasına ve yazıcının işlemesi " -"için daha fazla talimata neden olur. \n" +"için daha fazla talimata neden olur.\n" "\n" "Varsayılan 3 değeri çoğu durumda işe yarar. Yazıcınız tutukluk yapıyorsa, " "yapılan ayarlama sayısını azaltmak için bu değeri artırın\n" @@ -13147,7 +13156,7 @@ msgstr "" "dışarıdan görülebilen çıkıntılarda keskin hız geçişlerinden kaynaklanan " "bozulmaların azaltılmasına yardımcı olabilir." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Parça soğutma fanı için minimum hız" msgid "" @@ -13167,8 +13176,8 @@ msgid "Min" msgstr "Minimum" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Ekstruder için yazdırılabilir en düşük katman yüksekliği. Kullanılan tp, " "uyarlanabilir katman yüksekliğini etkinleştirirken minimum katman " @@ -13212,7 +13221,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Nozul hacmi" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Kesici ile nozulun ucu arasındaki nozul hacmi" msgid "Cooling tube position" @@ -13257,7 +13266,7 @@ msgstr "Ekstra yükleme mesafesi" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Sıfır olarak ayarlandığında, yükleme sırasında filamentin park konumundan " @@ -13277,7 +13286,7 @@ msgstr "Dolguda geri çekmeyi azalt" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Hareket kesinlikle dolgu alanına girdiğinde geri çekilmeyin. Bu, sızıntının " "görülemeyeceği anlamına gelir. Bu, karmaşık model için geri çekme sürelerini " @@ -13294,7 +13303,7 @@ msgstr "" msgid "Filename format" msgstr "Dosya adı formatı" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" "Kullanıcı dışa aktarma sırasında proje dosyası adını kendisi tanımlayabilir" @@ -13322,7 +13331,7 @@ msgstr "Yazdırılabilir çıkıntı delik alanı oluşturun" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce " "maksimum alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır." @@ -13351,10 +13360,10 @@ msgstr "" "İç duvarın çizgi genişliği. % olarak ifade edilirse Nozul çapı üzerinden " "hesaplanacaktır." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "İç duvarın hızı" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Her katmanın duvar sayısı" msgid "Alternate extra wall" @@ -13362,10 +13371,10 @@ msgstr "Alternatif ekstra duvar" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -13374,7 +13383,7 @@ msgstr "" "arasında dikey olarak sıkışır ve daha güçlü baskılar elde edilir.\n" "\n" "Bu seçenek etkinleştirildiğinde dikey kabuk kalınlığını sağla seçeneğinin " -"devre dışı bırakılması gerekir. \n" +"devre dışı bırakılması gerekir.\n" "\n" "İlave çevrelerin sabitleneceği dolgu sınırlı olduğundan, bu seçenekle " "birlikte yıldırım dolgusunun kullanılması önerilmez." @@ -13410,26 +13419,26 @@ msgstr "Yazıcı çeşidi" msgid "Raft contact Z distance" msgstr "Raft kontak Z mesafesi" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Nesne ve raft arasındaki Z boşluğu. Çözünür arayüz için göz ardı edildi" msgid "Raft expansion" msgstr "Raft genişletme" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "XY düzlemindeki tüm sal katmanlarını genişlet" msgid "Initial layer density" msgstr "Başlangıç katman yoğunluğu" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "İlk sal veya destek katmanının yoğunluğu" msgid "Initial layer expansion" msgstr "İlk katman genişletme" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Yatak plakası yapışmasını iyileştirmek için ilk raft veya destek katmanını " "genişletin" @@ -13439,15 +13448,16 @@ msgstr "Raft katmanları" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Nesne bu sayıdaki destek katmanı tarafından yükseltilecektir. ABS " "yazdırırken sarmayı önlemek için bu işlevi kullanın" +#, fuzzy msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Gcode dosyasında çok fazla nokta ve gcode çizgisinin olmaması için modelin " "konturu basitleştirildikten sonra G-code yolu oluşturulur. Daha küçük değer, " @@ -13458,7 +13468,7 @@ msgstr "Seyahat mesafesi" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Geri çekmeyi yalnızca hareket mesafesi bu eşikten daha uzun olduğunda " "tetikleyin" @@ -13467,14 +13477,14 @@ msgid "Retract amount before wipe" msgstr "Temizleme işlemi öncesi geri çekme miktarı" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Geri çekme uzunluğuna göre, temizlemeden önce hızlı geri çekilmenin uzunluğu" msgid "Retract when change layer" msgstr "Katman değişiminde geri çek" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Katmanı değiştirdiğinde geri çekilmeyi zorla" msgid "Retract on top layer" @@ -13482,7 +13492,7 @@ msgstr "Üst katmanda geri çek" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Üst katmanda geri çekilmeye zorlayın. Devre dışı bırakmak, Hilbert eğrisi " "gibi küçük hareketlerin olduğu çok yavaş modellerde tıkanmayı önleyebilir" @@ -13497,16 +13507,16 @@ msgstr "" "Uzun seyahat sırasında sızıntıyı önlemek için ekstruderdeki malzemenin bir " "kısmı geri çekilir. Geri çekmeyi devre dışı bırakmak için sıfır ayarlayın" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Kesildiğinde uzun geri çekilme (deneysel)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" -"Deneysel özellik. Tasfiyeyi en aza indirmek için değişiklikler sırasında " +"Deneysel özellik: Tasfiyeyi en aza indirmek için değişiklikler sırasında " "filamentin daha uzun bir mesafeden geri çekilmesi ve kesilmesi. Bu, yıkamayı " "önemli ölçüde azaltırken, aynı zamanda nozul tıkanması veya diğer yazdırma " "sorunları riskini de artırabilir." @@ -13515,10 +13525,10 @@ msgid "Retraction distance when cut" msgstr "Kesildiğinde geri çekilme mesafesi" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" -"Deneysel özellik.Filament değişimi sırasında kesilmeden önce geri çekilme " +"Deneysel özellik: Filament değişimi sırasında kesilmeden önce geri çekilme " "uzunluğu" msgid "Z-hop height" @@ -13527,29 +13537,29 @@ msgstr "Z-Sıçrama yüksekliği" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Geri çekme işlemi her yapıldığında, nozul ile baskı arasında açıklık " "oluşturmak için nozul biraz kaldırılır. Hareket halindeyken nozulun baskıya " "çarpmasını önler. Z'yi kaldırmak için spiral çizgi kullanmak çekmeyi " "önleyebilir" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Z sıçrama alt sınırı" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Z sıçraması yalnızca Z bu değerin üzerinde ve parametrenin altında olduğunda " "devreye girer: \"Z sıçraması üst sınırı\"" -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Z sıçrama üst sınırı" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Bu değer pozitifse, Z sıçraması yalnızca Z parametresinin üzerinde olduğunda " "etkinleşir: \"Z sıçrama alt sınırı\" parametresinin üzerinde ve bu değerin " @@ -13558,9 +13568,6 @@ msgstr "" msgid "Z-hop type" msgstr "Z-Sıçrama türü" -msgid "Z hop type" -msgstr "Z sıçraması türü" - msgid "Slope" msgstr "Eğim" @@ -13571,8 +13578,8 @@ msgid "Traveling angle" msgstr "Seyahat açısı" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Eğim ve Spiral Z atlama tipi için ilerleme açısı. 90°’ye ayarlamak normal " "kaldırmayla sonuçlanır" @@ -13601,10 +13608,10 @@ msgid "On surfaces" msgstr "Yüzeyler" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" -"Z Hop davranışını zorunlu kılın. Bu ayar yukarıdaki ayarlardan etkilenir " +"Z-Hop davranışını zorunlu kılın. Bu ayar yukarıdaki ayarlardan etkilenir " "(Z'yi yalnızca yukarıya/aşağıya kaldırın)." msgid "All Surfaces" @@ -13639,15 +13646,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Geri çekme hızı" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Geri çekme hızları" msgid "De-retraction Speed" msgstr "İleri itme hızı" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Filamenti ekstrudere yeniden yükleme hızı. Sıfır, geri çekilmeyle aynı hız " "anlamına gelir" @@ -13670,7 +13677,7 @@ msgid "Disable set remaining print time" msgstr "Kalan yazdırma süresini ayarlamayı devre dışı bırak" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "M73'ün oluşturulmasını devre dışı bırakın: Son gcode'da kalan yazdırma " "süresini ayarlayın" @@ -13678,7 +13685,7 @@ msgstr "" msgid "Seam position" msgstr "Dikiş konumu" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Dış duvarın her bir parçasını yazdırmak için başlangıç konumu" msgid "Nearest" @@ -13773,7 +13780,7 @@ 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 " +"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 " @@ -13841,7 +13848,7 @@ msgid "Role base wipe speed" msgstr "Otomatik temizleme hızı" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -13868,7 +13875,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -13878,7 +13885,7 @@ msgstr "" "başlangıcında olası aşırı çıkıntının görünürlüğünü en aza indirmek için, " "kaldırma işlemi dış çevrenin başlangıcından itibaren biraz içeride " "gerçekleştirilir. Bu şekilde herhangi bir aşırı ekstrüzyon potansiyeli dış " -"yüzeyden gizlenir. \n" +"yüzeyden gizlenir.\n" "\n" "Bu, Dış/İç veya İç/Dış/İç duvar yazdırma sırası ile yazdırırken " "kullanışlıdır, çünkü bu modlarda, bir geri çekilme hareketinin hemen " @@ -13889,9 +13896,9 @@ msgstr "Temizleme hızı" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Temizleme hızı, bu konfigürasyonda belirtilen hız ayarına göre belirlenir. " "Değer yüzde olarak ifade edilirse (örn. %80), yukarıdaki ilerleme hızı " @@ -13916,7 +13923,7 @@ msgstr "" msgid "Skirt height" msgstr "Etek yüksekliği" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Etek katman sayısı. Genellikle tek katman" msgid "Single loop draft shield" @@ -13937,7 +13944,7 @@ msgstr "Rüzgarlık" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -13948,7 +13955,7 @@ msgstr "" "Rüzgar taslağı nedeniyle ABS veya ASA baskının eğrilmesine ve baskı " "yatağından ayrılmasına karşı koruma sağlamak için bir rüzgarlık " "kullanışlıdır. Genellikle yalnızca açık çerçeveli, yani muhafazasız " -"yazıcılarda gereklidir. \n" +"yazıcılarda gereklidir.\n" "\n" "Etkin = etek, yazdırılan en yüksek nesne kadar uzun. Aksi takdirde ‘Etek " "yüksekliği’ kullanılır.\n" @@ -13977,7 +13984,7 @@ msgstr "Nesneye göre" msgid "Skirt loops" msgstr "Etek sayısı" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "" "Etek için ilmek sayısı. Sıfır, eteği devre dışı bırakmak anlamına gelir" @@ -13996,9 +14003,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Etek yazdırılırken mm cinsinden minimum filaman ekstrüzyon uzunluğu. Sıfır, " @@ -14010,8 +14017,9 @@ msgstr "" "dikkate alınmaz. Böyle bir durumda döngü sayısını artırın." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Tahmini katman süresi bu değerden kısa olduğunda, bu katmanlar için daha iyi " "soğutma sağlamak amacıyla, dışa aktarılan gcode'daki yazdırma hızı " @@ -14022,7 +14030,7 @@ msgstr "Minimum seyrek dolgu" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Eşik değerinden küçük olan seyrek dolgu alanı, yerini iç katı dolguya " "bırakmıştır" @@ -14040,13 +14048,13 @@ msgstr "" "İç katı dolgunun çizgi genişliği. % olarak ifade edilirse Nozul çapı " "üzerinden hesaplanacaktır." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "Üst ve alt yüzeyin değil, iç katı dolgunun hızı" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Spiralleştirme, dış konturun z hareketlerini yumuşatır. Ve katı bir modeli, " "katı alt katmanlara sahip tek duvarlı bir baskıya dönüştürür. Oluşturulan " @@ -14057,7 +14065,7 @@ msgstr "Pürüzsüz spiral" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Pürüzsüz Spiral, X ve Y hareketlerini de yumuşatır ve dikey olmayan " "duvarlarda XY yönlerinde bile hiçbir görünür ek yeri oluşmamasını sağlar." @@ -14068,7 +14076,7 @@ msgstr "Maksimum xy yumuşatma" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "Düzgün bir spiral elde etmek için XY'deki noktaları hareket ettirmek için " "maksimum mesafe % olarak ifade edilirse nozül çapı üzerinden hesaplanacaktır." @@ -14129,8 +14137,8 @@ msgstr "Sıcaklık değişimi" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Ekstruder aktif olmadığında uygulanacak sıcaklık farkı. Filament ayarlarında " "‘rölanti sıcaklığı’ sıfır olmayan bir değere ayarlandığında bu değer " @@ -14154,7 +14162,7 @@ msgid "Preheat steps" msgstr "Ön ısıtma adımları" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Birden fazla ön ısıtma komutu ekleyin (örn. M104.1). Yalnızca Prusa XL için " @@ -14163,16 +14171,16 @@ msgstr "" msgid "Start G-code" msgstr "Başlangıç G Kodu" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Baskı başladığında çalışacak G Kodu" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Bu filament ile baskı başladığında çalıştırılacak G-Kod" msgid "Single Extruder Multi Material" msgstr "Tek ekstruder çoklu malzeme" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Çoklu filament basmak için tek nozul kullan" msgid "Manual Filament Change" @@ -14194,18 +14202,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Prime tower'da temizlik" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Kalan filamenti Prime Tower'da boşalt" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Filament sıkıştırmayı etkinleştir" msgid "No sparse layers (beta)" msgstr "Seyrek katman yok (beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14277,9 +14285,9 @@ msgid "Enable support generation." msgstr "Destek oluşturmayı etkinleştir." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Desteğin otomatik olarak oluşturulması için Normal (Otomatik) ve Ağaç " "(Otomatik) kullanılır. Normal (Manuel) veya Ağaç (Manuel) seçilirse yalnızca " @@ -14300,7 +14308,7 @@ msgstr "Ağaç (Manuel)" msgid "Support/object xy distance" msgstr "Destek/nesne xy mesafesi" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Bir nesne ile desteği arasındaki XY ayrımı" msgid "Support/object first layer gap" @@ -14318,7 +14326,7 @@ msgstr "Destek desenini yatay düzlemde döndürmek için bu ayarı kullanın." msgid "On build plate only" msgstr "Yalnızca baskı plakasında" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Model yüzeyinde destek oluşturmayın, yalnızca baskı plakasında" msgid "Support critical regions only" @@ -14340,13 +14348,13 @@ msgstr "Muhtemelen desteğe ihtiyaç duymayan küçük çıkıntıları kaldır msgid "Top Z distance" msgstr "Üst Z mesafesi" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "Üst destek arayüzü ile nesne arasındaki z boşluğu" msgid "Bottom Z distance" msgstr "Alt Z mesafesi" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "Alt destek arayüzü ile nesne arasındaki z boşluğu" msgid "Support/raft base" @@ -14354,7 +14362,7 @@ msgstr "Destek/raft tabanı" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Destek tabanını ve salı yazdırmak için filament. \"Varsayılan\", destek için " "belirli bir filamentin olmadığı ve mevcut filamentin kullanıldığı anlamına " @@ -14390,7 +14398,7 @@ msgstr "Destek/raft arayüzü" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Filament baskı desteği arayüzü. \"Varsayılan\", destek arayüzü için özel bir " "filamentin olmadığı ve mevcut filamentin kullanıldığı anlamına gelir" @@ -14398,13 +14406,13 @@ msgstr "" msgid "Top interface layers" msgstr "Üst arayüz katmanları" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Üst arayüz katmanlarının sayısı" msgid "Bottom interface layers" msgstr "Alt arayüz katmanları" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Alt arayüz katmanlarının sayısı" msgid "Same as top" @@ -14413,22 +14421,22 @@ msgstr "Üsttekiyle aynı" msgid "Top interface spacing" msgstr "Üst arayüz aralığı" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "Arayüz çizgilerinin aralığı. Sıfır, sağlam arayüz anlamına gelir" msgid "Bottom interface spacing" msgstr "Alt arayüz aralığı" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "Alt arayüz çizgilerinin aralığı. Sıfır, sağlam arayüz anlamına gelir" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Destek arayüzünün hızı" msgid "Base pattern" msgstr "Destek deseni" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Desteğin çizgi deseni" msgid "Rectilinear grid" @@ -14443,7 +14451,7 @@ msgstr "Arayüz deseni" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Destek arayüzünün çizgi deseni. Çözünmeyen destek arayüzü için varsayılan " "model Doğrusaldır, çözünebilir destek arayüzü için varsayılan model ise " @@ -14455,16 +14463,16 @@ msgstr "Doğrusal Taramalı" msgid "Base pattern spacing" msgstr "Destek desen aralığı" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Destek hatları arasındaki boşluk" msgid "Normal Support expansion" msgstr "Normal destek genişletmesi" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Normal desteğin yatay açıklığını genişletin (+) veya daraltın (-)" -msgid "Speed of support" +msgid "Speed of support." msgstr "Destek hızı" msgid "" @@ -14509,7 +14517,7 @@ msgstr "Bağımsız destek katmanı yüksekliği" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Destek katmanı, nesne katmanından bağımsız olarak katman yüksekliğini " @@ -14541,8 +14549,8 @@ msgid "Tree support branch angle" msgstr "Ağaç desteği dal açısı" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Bu ayar, ağaç desteğinin dallarının oluşmasına izin verilen maksimum çıkıntı " @@ -14590,8 +14598,8 @@ msgid "Adaptive layer height" msgstr "Uyarlanabilir katman yüksekliği" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Bu seçeneğin etkinleştirilmesi, ilki hariç ağaç destek katmanının " "yüksekliğinin otomatik olarak hesaplanacağı anlamına gelir " @@ -14601,7 +14609,7 @@ msgstr "Otomatik kenar genişliği" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Bu seçeneğin etkinleştirilmesi, ağaç desteğinin kenar genişliğinin otomatik " "olarak hesaplanacağı anlamına gelir" @@ -14609,7 +14617,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Ağaç desteği kenar genişliği" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "Ağaç dalından en dış kenar çizgisine kadar olan mesafe" msgid "Tip Diameter" @@ -14655,7 +14663,7 @@ msgstr "Dolgulu ağaç desteği" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Bu ayar, ağaç desteğinin büyük oyuklarının içine dolgu eklenip " "eklenmeyeceğini belirtir" @@ -14669,7 +14677,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14680,7 +14688,7 @@ msgstr "" "etkinleştirir\n" " oda sıcaklığını ayarlar ve bu sıcaklığa ulaşılıncaya kadar bekler. Ayrıca " "baskı sonunda M141 komutu vererek varsa hazne ısıtıcısının kapatılmasını " -"sağlar. \n" +"sağlar.\n" "\n" "Bu seçenek, M191 ve M141 komutlarını makrolar aracılığıyla veya yerel olarak " "destekleyen bellenime dayanır ve genellikle aktif bir oda ısıtıcısı " @@ -14694,13 +14702,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -14712,7 +14720,7 @@ msgstr "" "oda sıcaklığı, bükülmenin bastırılmasına veya azaltılmasına yardımcı " "olabilir ve potansiyel olarak daha yüksek katmanlar arası bağlanma " "mukavemetine yol açabilir. Ancak aynı zamanda daha yüksek oda sıcaklığı, ABS " -"ve ASA için hava filtreleme verimliliğini azaltacaktır. \n" +"ve ASA için hava filtreleme verimliliğini azaltacaktır.\n" "\n" "PLA, PETG, TPU, PVA ve diğer düşük sıcaklıktaki malzemeler için, ısı " "kırılmasında malzemenin yumuşamasından kaynaklanan ekstrüderin tıkanmasını " @@ -14727,7 +14735,7 @@ msgstr "" "takılı değilse yazdırma başlatma makrosunda ısı bekletme işlemini " "gerçekleştirmek istiyorsanız bu yararlı olabilir." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "İlk katmandan sonraki katmanlar için nozul sıcaklığı" msgid "Detect thin wall" @@ -14735,19 +14743,19 @@ msgstr "İnce duvarı algıla" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "İki çizgi genişliğini içeremeyen ince duvarı tespit edin. Ve yazdırmak için " "tek satır kullanın. Kapalı döngü olmadığından pek iyi basılmamış olabilir" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Bu gcode, takım değişimini tetiklemek için T komutu da dahil olmak üzere " "filament değiştirildiğinde eklenir" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "Bu gcode, ekstrüzyon rolü değiştirildiğinde eklenir" msgid "" @@ -14757,7 +14765,7 @@ msgstr "" "Üst yüzeyler için çizgi genişliği. % olarak ifade edilirse Nozul çapı " "üzerinden hesaplanacaktır." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Sağlam üst yüzey dolgusunun hızı" msgid "Top shell layers" @@ -14766,7 +14774,7 @@ msgstr "Üst katmanlar" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Bu, üst yüzey katmanı da dahil olmak üzere üst kabuğun katı katmanlarının " "sayısıdır. Bu değerle hesaplanan kalınlık üst kabuk kalınlığından ince " @@ -14783,7 +14791,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince " "ise dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman " @@ -14791,15 +14799,16 @@ msgstr "" "ayarın devre dışı olduğu ve üst kabuğun kalınlığının kesinlikle üst kabuk " "katmanları tarafından belirlendiği anlamına gelir" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Daha hızlı ve ekstrüzyonsuz seyahat hızı" msgid "Wipe while retracting" msgstr "Geri çekme esnasında temizlik" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Nozul üzerinde sızan malzemeyi temizlemek için geri çekerken Nozulu son " "ekstrüzyon yolu boyunca hareket ettirin. Bu işlem yeni parça yazdırırken " @@ -14810,21 +14819,21 @@ msgstr "Temizleme mesafesi" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Geri çekilirken nozulun son yol boyunca ne kadar süre hareket edeceğini " -"açıklayın. \n" +"açıklayın.\n" "\n" "Silme işleminin ne kadar sürdüğüne, ekstruder/filament geri çekme " "ayarlarının ne kadar hızlı ve uzun olduğuna bağlı olarak, kalan filamanı " -"geri çekmek için bir geri çekme hareketine ihtiyaç duyulabilir. \n" +"geri çekmek için bir geri çekme hareketine ihtiyaç duyulabilir.\n" "\n" "Aşağıdaki silme ayarından önce geri çekme miktarına bir değer ayarlamak, " "silme işleminden önce aşırı geri çekme işlemini gerçekleştirecektir, aksi " @@ -14858,7 +14867,7 @@ msgstr "Ana hacim" msgid "The volume of material to prime extruder on tower." msgstr "Kule üzerindeki ana ekstruder malzeme hacmi." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Prime tower genişliği" msgid "Wipe tower rotation angle" @@ -14894,7 +14903,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -14962,8 +14971,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Bu nesne, filamentten tasarruf etmek ve baskı süresini azaltmak için " "filament değişiminden sonra nozulu temizlemek için kullanılacaktır. Sonuç " @@ -15002,9 +15011,9 @@ msgid "Idle temperature" msgstr "Boşta sıcaklık" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Alet şu anda çoklu alet kurulumlarında kullanılmadığında püskürtme ucu " "sıcaklığı. Bu yalnızca Yazdırma Ayarlarında ‘Sızıntı önleme’ etkin olduğunda " @@ -15013,10 +15022,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "X-Y delik dengeleme" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Nesnenin delikleri XY düzleminde yapılandırılan değer kadar büyütülür veya " "küçültülür. Pozitif değer delikleri büyütür. Negatif değer delikleri " @@ -15026,11 +15037,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y kontur telafisi" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Nesnenin konturu XY düzleminde yapılandırılan değer kadar büyütülür veya " "küçültülür. Pozitif değer konturu büyütür. Negatif değer konturu küçültür. " @@ -15089,7 +15101,7 @@ msgstr "G kodu küçük resimlerinin formatı" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "G kodu küçük resimlerinin formatı: En iyi kalite için PNG, en küçük boyut " "için JPG, düşük bellekli donanım yazılımı için QOI" @@ -15098,10 +15110,10 @@ msgid "Use relative E distances" msgstr "Göreceli (relative) E mesafelerini kullan" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "\"label_objects\" seçeneği kullanılırken göreceli ekstrüzyon önerilir. Bazı " "ekstrüderler bu seçenek işaretlenmediğinde daha iyi çalışır (mutlak " @@ -15111,7 +15123,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Klasik duvar oluşturucu sabit ekstrüzyon genişliğine sahip duvarlar üretir " "ve çok ince alanlar için boşluk doldurma kullanılır. Arachne motoru değişken " @@ -15126,7 +15138,7 @@ msgstr "Duvar geçiş uzunluğu" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "Parça inceldikçe farklı sayıdaki duvarlar arasında geçiş yaparken, duvar " "parçalarını bölmek veya birleştirmek için belirli bir miktar alan ayrılır. " @@ -15142,7 +15154,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Fazladan bir duvar ile bir eksik arasında ileri geri geçişi önleyin. Bu " "kenar boşluğu, [Minimum duvar genişliği - kenar boşluğu, 2 * Minimum duvar " @@ -15161,7 +15173,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Çift ve tek sayıdaki duvarlar arasında geçişler ne zaman oluşturulmalıdır? " "Bu ayardan daha büyük bir açıya sahip bir kama şeklinin geçişleri olmayacak " @@ -15174,7 +15186,7 @@ msgstr "Duvar dağılım sayısı" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Varyasyonun yayılması gereken, merkezden sayılan duvar sayısı. Daha düşük " "değerler, dış duvarların genişliğinin değişmediği anlamına gelir" @@ -15182,11 +15194,12 @@ msgstr "" msgid "Minimum feature size" msgstr "Minimum özellik boyutu" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "İnce özellikler için minimum kalınlık. Bu değerden daha ince olan model " "özellikleri yazdırılmayacak, Minimum özellik boyutundan daha kalın olan " @@ -15236,7 +15249,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Modelin ince özelliklerinin yerini alacak duvarın genişliği (Minimum özellik " "boyutuna göre). Minimum duvar genişliği özelliğin kalınlığından daha inceyse " @@ -15247,9 +15260,9 @@ msgid "Detect narrow internal solid infill" msgstr "Dar iç katı dolguyu tespit et" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Bu seçenek dar dahili katı dolgu alanını otomatik olarak algılayacaktır. " "Etkinleştirilirse, yazdırmayı hızlandırmak amacıyla alanda eşmerkezli desen " @@ -15282,7 +15295,7 @@ msgstr "Dilimleme verilerini bir klasöre aktarın." msgid "Load slicing data" msgstr "Dilimleme verilerini yükle" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Önbelleğe alınmış dilimleme verilerini dizinden yükle" msgid "Export STL" @@ -15294,7 +15307,7 @@ msgstr "Nesneleri tek STL olarak dışa aktarın." msgid "Export multiple STLs" msgstr "Birden çok STL’yi dışa aktar" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Nesneleri birden fazla STL olarak dizine aktarın" msgid "Slice" @@ -15317,14 +15330,14 @@ msgstr "düşüşte olan makineleri kontrol et" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" "mevcut makinenin listedeki makinelerle uyumlu olup olmadığını kontrol edin" msgid "Load default filaments" msgstr "Varsayılan filamentleri yükle" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Yüklenmeyenler için ilk filamenti varsayılan olarak yükleyin" msgid "Minimum save" @@ -15348,7 +15361,8 @@ msgstr "saniye cinsinden plaka başına maksimum dilimleme süresi." msgid "No check" msgstr "Kontrol yok" -msgid "Do not run any validity checks, such as gcode path conflicts check." +#, fuzzy +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Gcode yol çakışmaları kontrolü gibi herhangi bir geçerlilik kontrolü " "çalıştırmayın." @@ -15384,17 +15398,17 @@ msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "" "Hizalama seçenekleri: 0-devre dışı bırak, 1-etkinleştir, diğer-otomatik" -msgid "Repetions count" +msgid "Repetition count" msgstr "Tekrar sayısı" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Tüm modelin tekrar sayısı" msgid "Ensure on bed" msgstr "Baskı yatağında olduğundan emin olun" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Kısmen aşağıda olduğunda nesneyi yatağın üzerine kaldırın. Varsayılan olarak " "devre dışı" @@ -15409,7 +15423,7 @@ msgstr "" msgid "Convert Unit" msgstr "Birimi Dönüştür" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Modelin birimlerini dönüştür" msgid "Orient Options" @@ -15429,68 +15443,68 @@ msgstr "Y etrafında döndür" msgid "Rotation angle around the Y axis in degrees." msgstr "Y ekseni etrafında derece cinsinden dönüş açısı." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Modeli kayan nokta faktörüne göre ölçeklendirin" msgid "Load General Settings" msgstr "Genel Ayarları Yükle" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Belirtilen dosyadan proses/yazıcıayarlarını yükleyin" msgid "Load Filament Settings" msgstr "Filament Ayarlarını Yükle" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Filament ayarlarını belirtilen dosya listesinden yükleyin" msgid "Skip Objects" msgstr "Nesneleri Atla" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Bu baskıdaki bazı nesneleri atla" msgid "Clone Objects" msgstr "Nesneleri Klonla" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "Yükleme listesindeki nesneleri klonlama" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "güncellemeyi kullanırken güncelleme işlemi/yazıcıayarlarını yükle" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" "güncellemeyi kullanırken belirtilen dosyadan güncel işlem/yazıcıayarlarını " "yükle" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "güncellemeyi kullanırken güncelleme filament ayarlarını yükle" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" "güncellemeyi kullanırken belirtilen dosyadan güncel filament ayarlarını yükle" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" "etkinleştirilirse mevcut makinenin listedeki makinelerle uyumlu olup " "olmadığını kontrol edin" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "Düşüşteki makinelerin ayarları" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "makine ayarları listesinin aşağı doğru kontrol yapması gerekiyor" msgid "Load assemble list" msgstr "Montaj listesini yükle" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "Montaj nesne listesini yapılandırma dosyasından yükle" msgid "Data directory" @@ -15524,15 +15538,17 @@ msgstr "" msgid "Enable timelapse for print" msgstr "Yazdırma için hızlandırılmış çekimi etkinleştir" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" "Etkinleştirilirse, bu dilimleme hızlandırılmış çekim kullanılarak " "değerlendirilecektir" -msgid "Load custom gcode" +#, fuzzy +msgid "Load custom G-code" msgstr "Özel gcode yükle" -msgid "Load custom gcode from json" +#, fuzzy +msgid "Load custom G-code from json." msgstr "Json'dan özel gcode yükleyin" msgid "Load filament ids" @@ -15541,35 +15557,37 @@ msgstr "Filament kimliklerini yükle" msgid "Load filament ids for each object" msgstr "Her nesne için filaman kimliklerini yükleyin" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Bir plaka üzerinde birden fazla renge izin verin" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" "Etkinleştirilirse, düzenleme bir plaka üzerinde birden fazla renge izin " "verecektir" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Düzenlerken rotasyonlara izin ver" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" "Etkinleştirilirse düzenleme, nesne yerleştirildiğinde dönüşlere izin verir" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Düzenleme yaparken ekstrüzyon kalibrasyon bölgesinden kaçının" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Etkinleştirilirse, nesne yerleştirildiğinde düzenleme ekstrüzyon kalibrasyon " "bölgesini önleyecektir" -msgid "Skip modified gcodes in 3mf" +#, fuzzy +msgid "Skip modified G-code in 3mf" msgstr "3mf’de değiştirilmiş gcode’ları atla" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +#, fuzzy +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" "Yazıcı veya filament Ön Ayarlarından 3mf’deki değiştirilmiş gcode’ları " "atlayın" @@ -15598,13 +15616,13 @@ msgstr "meta veri değer listesi" msgid "metadata value list added into 3mf" msgstr "3mf’ye meta veri değeri listesi eklendi" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Daha yeni sürüme sahip 3mf’nin dilimlenmesine izin ver" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Mevcut z-hop" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Özel G kodu bloğunun başında bulunan z-hop'u içerir." msgid "" @@ -15706,10 +15724,10 @@ msgstr "" "Baskının tamamı boyunca ekstruder başına ekstrüzyona tabi tutulan toplam " "filament hacmi." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Toplam takım değişiklikleri" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Yazdırma sırasındaki takım değişikliği sayısı." msgid "Total volume" @@ -15954,7 +15972,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Bir nesnenin XY boyutu telafisi , aynı zamanda renkli boyalı olduğundan " "kullanılmayacaktır.\n" @@ -15980,9 +15998,6 @@ msgstr "" "Bilinmeyen dosya formatı. Giriş dosyası .3mf veya .zip.amf uzantılı " "olmalıdır." -msgid "Canceled" -msgstr "İptal edildi" - msgid "load_obj: failed to parse" msgstr "load_obj: ayrıştırılamadı" @@ -16085,7 +16100,7 @@ msgid "The name cannot be empty." msgstr "Ad boş olamaz." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Seçilen ön ayar: %s bulunamadı." msgid "The name cannot be the same as the system preset name." @@ -16119,7 +16134,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Bu makine tipi, püskürtme ucu başına yalnızca 16 geçmiş sonucu tutabilir. " @@ -16134,7 +16149,7 @@ msgstr "Yazıcıya bağlanılıyor..." msgid "The failed test result has been dropped." msgstr "Başarısız olan test sonucu düşürüldü." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Akış Dinamiği Kalibrasyonu sonucu yazıcıya kaydedildi" #, c-format, boost-format @@ -16161,10 +16176,10 @@ msgstr "İç hata" msgid "Please select at least one filament for calibration" msgstr "Lütfen kalibrasyon için en az bir filament seçin" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "Akış hızı kalibrasyon sonucu ön ayara kaydedildi" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "Maksimum hacimsel hız kalibrasyon sonucu ön ayara kaydedildi" msgid "When do you need Flow Dynamics Calibration" @@ -16175,10 +16190,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Artık farklı filamentler için tamamen otomatik olan otomatik kalibrasyonu " "ekledik ve sonuç ileride kullanılmak üzere yazıcıya kaydedilecek. " @@ -16237,12 +16252,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Akış Dinamiği Kalibrasyonunu kullandıktan sonra hâlâ aşağıdaki gibi bazı " "ekstrüzyon sorunları olabilir:\n" @@ -16358,7 +16373,7 @@ msgstr "Ad 40 karakteri aşamaz." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Aynı ada sahip sonuçlardan yalnızca biri kaydedilecektir. Diğer sonuçları " "geçersiz kılmak istediğinizden emin misiniz?" @@ -16412,9 +16427,6 @@ msgstr "Kalibrasyon2'yi atla" msgid "flow ratio : %s " msgstr "akış oranı : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Lütfen üst yüzeyi en pürüzsüz olan bloğu seçin" - msgid "Please choose a block with smoothest top surface." msgstr "Lütfen üst yüzeyi en pürüzsüz olan bloğu seçin." @@ -16458,7 +16470,7 @@ msgstr "Kalibrasyon İçin Filament" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Kalibrasyon malzemesi için ipuçları:\n" "- Aynı baskı yatağı sıcaklığını paylaşabilen malzemeler\n" @@ -16720,7 +16732,7 @@ msgstr "Geri çekme uzunluğu bitişi: " msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "G Kodunu yazıcı ana bilgisayarına gönder" msgid "Upload to Printer Host with the following filename:" @@ -16767,7 +16779,7 @@ msgstr "Seçileni iptal et" msgid "Show error message" msgstr "Hata mesajını göster" -msgid "Enqueued" +msgid "Queued" msgstr "Sıraya alındı" msgid "Uploading" @@ -16802,7 +16814,7 @@ msgid "Unable to perform boolean operation on selected parts" msgstr "Seçilen parçalarda bölme işlemi gerçekleştirilemiyor" msgid "Mesh Boolean" -msgstr "Mesh Boolean" +msgstr "Mesh Bölme" msgid "Union" msgstr "Union" @@ -16858,13 +16870,13 @@ msgstr "Sistem Versiyonu:" msgid "DNS Server:" msgstr "Dns sunucusu:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "OrcaSlicer'ı (GitHub) test edin" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "OrcaSlicer'ı (GitHub) test edin:" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "Bing.com'u test edin" msgid "Test bing.com:" @@ -16928,7 +16940,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "Özel satıcı girişi yapılmaz, lütfen özel satıcıyı girin." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "\"Bambu\" veya \"Genel\" özel filamentler için Satıcı olarak kullanılamaz." @@ -16950,7 +16962,7 @@ msgstr "" "Özel satıcı veya seri numarasındaki tüm girişler boşluklardan oluşuyor. " "Lütfen tekrar girin." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "Üretici bir sayı olamaz. Lütfen tekrar girin." msgid "" @@ -16959,7 +16971,7 @@ msgstr "Henüz bir yazıcı veya ön ayar seçmediniz. Lütfen en az birini seç #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -16979,11 +16991,11 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri " -"@printer\". \n" +"@printer\".\n" "Daha fazla yazıcıya yönelik ön ayar eklemek için lütfen yazıcı seçimine gidin" msgid "Create Printer/Nozzle" @@ -17007,7 +17019,7 @@ msgstr "Ön Ayarı İçe Aktar" msgid "Create Type" msgstr "Tür Oluştur" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "Model bulunamadı, lütfen satıcıyı seçin." msgid "Select Model" @@ -17050,16 +17062,16 @@ msgstr "Dosya %d MB'yi aşıyor lütfen tekrar içe aktarın." msgid "Exception in obtaining file size, please import again." msgstr "Dosya boyutunun elde edilmesinde istisna, lütfen tekrar içe aktarın." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Ön ayar yolu bulunamıyor, lütfen satıcıyı yeniden seçin." msgid "The printer model was not found, please reselect." msgstr "Yazıcı modeli bulunamadı, lütfen yeniden seçin." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Nozul çapı bulunamadı, lütfen yeniden seçin." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "Yazıcı ön ayarı bulunamadı, lütfen yeniden seçin." msgid "Printer Preset" @@ -17123,7 +17135,7 @@ msgstr "Filament ön ayarları oluşturulamadı. Şu şekilde:\n" msgid "Create process presets failed. As follows:\n" msgstr "İşlem ön ayarları oluşturulamadı. Şu şekilde:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Satıcı bulunamadı, lütfen yeniden seçin." msgid "Current vendor has no models, please reselect." @@ -17156,10 +17168,10 @@ msgid "" msgstr "" "Hala nozulu değiştirmek için yazıcı seçmediniz, lütfen bir seçim yapın." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Yazıcı Oluşturma Başarılı" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Filament Oluşturma Başarılı" msgid "Printer Created" @@ -17188,7 +17200,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -17248,17 +17260,17 @@ msgstr "" "değiştirebilirsiniz." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" -"Yazıcı ve yazıcıya ait tüm filament ve işlem ön ayarları. \n" +"Yazıcı ve yazıcıya ait tüm filament ve işlem ön ayarları.\n" "Başkalarıyla paylaşılabilir." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" -"Kullanıcının filament ön ayarı. \n" +"Kullanıcının filament ön ayarı.\n" "Başkalarıyla paylaşılabilir." msgid "" @@ -17322,7 +17334,7 @@ msgstr "" "Not: Bu filamentin altındaki tek ön ayar silinirse, diyalogdan çıkıldıktan " "sonra filament silinecektir." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "Diğer ön ayarlar tarafından devralınan ön ayarlar silinemez" msgid "The following presets inherits this preset." @@ -17346,11 +17358,11 @@ msgid "Delete Filament" msgstr "Filamenti Sil" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" -"Bu filamente ait tüm filaman ön ayarları silinecektir. \n" +"Bu filamente ait tüm filaman ön ayarları silinecektir.\n" "Yazıcınızda bu filamenti kullanıyorsanız lütfen o yuvanın filament bilgisini " "sıfırlayın." @@ -17481,16 +17493,16 @@ msgstr "" msgid "Mismatched type of print host: %s" msgstr "Eşleşmeyen yazdırma ana bilgisayarı türü: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "AstroBox'a bağlantı düzgün çalışıyor." msgid "Could not connect to AstroBox" msgstr "AstroBox'a bağlanılamadı" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Not: AstroBox sürümünün en az 1.1.0 olması gerekmektedir." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "Duet'e bağlantı düzgün çalışıyor." msgid "Could not connect to Duet" @@ -17508,7 +17520,7 @@ msgstr "Yeni bir bağlantı oluşturmak için kaynaklar alınamadı" msgid "Upload not enabled on FlashAir card." msgstr "FlashAir kartında yükleme etkin değil." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "FlashAir bağlantısı düzgün çalışıyor ve yükleme etkin." msgid "Could not connect to FlashAir" @@ -17521,28 +17533,28 @@ msgstr "" "Not: Firmware 2.00.02 veya daha yeni ve etkinleştirilmiş yükleme işlevine " "sahip FlashAir gereklidir." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "MKS'ye bağlantı düzgün çalışıyor." msgid "Could not connect to MKS" msgstr "MKS'ye bağlanılamadı" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrint'e bağlantı düzgün çalışıyor." msgid "Could not connect to OctoPrint" msgstr "OctoPrint'e bağlanılamadı" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Not: OctoPrint sürümü en az 1.1.0 gereklidir." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Prusa SL1 / SL1S bağlantısı düzgün çalışıyor." msgid "Could not connect to Prusa SLA" msgstr "Prusa SLA'ya bağlanılamadı" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "PrusaLink'e bağlantı düzgün çalışıyor." msgid "Could not connect to PrusaLink" @@ -17566,19 +17578,19 @@ msgstr "%1% : boş alan yok" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Yükleme başarısız oldu. %1%'de uygun depolama alanı bulunamadı." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Prusa Connect'e bağlantı düzgün çalışıyor." msgid "Could not connect to Prusa Connect" msgstr "Prusa Connect'e bağlanılamadı" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Repetier'e bağlantı düzgün çalışıyor." msgid "Could not connect to Repetier" msgstr "Repetier'a bağlanılamadı" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Not: Repetier sürümü en az 0.90.0 gereklidir." #, boost-format @@ -17610,8 +17622,8 @@ msgstr "" "Hata: \"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Küçük bir katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir katman " "çizgileri ve yüksek baskı kalitesi sağlar. Çoğu genel yazdırma durumu için " @@ -17619,8 +17631,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "0,2 mm’lik nozülün varsayılan profiliyle karşılaştırıldığında daha düşük hız " "ve ivmeye sahiptir ve seyrek dolgu deseni Gyroid’dir. Böylece çok daha " @@ -17629,8 +17641,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "biraz daha büyük katman yüksekliğine sahiptir ve neredeyse ihmal edilebilir " @@ -17638,8 +17650,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve katman çizgilerinin hafifçe " @@ -17647,8 +17658,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "0,2 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "katman yüksekliği daha küçüktür ve neredeyse görünmez katman çizgileri ve " @@ -17657,8 +17668,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "0,2 mm’lik nozulun varsayılan profiliyle karşılaştırıldığında, daha küçük " "katman çizgilerine, daha düşük hızlara ve ivmeye sahiptir ve seyrek dolgu " @@ -17667,9 +17678,9 @@ msgstr "" "edilir." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "Varsayılan 0,2 mm püskürtme ucu profiliyle karşılaştırıldığında, daha küçük " "katman yüksekliğine sahiptir ve minimum katman çizgileri ve daha yüksek " @@ -17678,8 +17689,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "0,2 mm’lik nozulun varsayılan profiliyle karşılaştırıldığında, daha küçük " "katman çizgilerine, daha düşük hızlara ve ivmeye sahiptir ve seyrek dolgu " @@ -17687,16 +17698,16 @@ msgstr "" "kalitesi elde edilir, ancak çok daha uzun baskı süresi elde edilir." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Genel bir katman yüksekliğine sahiptir ve genel katman çizgileri ve baskı " "kalitesiyle sonuçlanır. Çoğu genel yazdırma durumu için uygundur." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "0,4 mm’lik nozulun varsayılan profiliyle karşılaştırıldığında, daha fazla " "duvar döngüsüne ve daha yüksek seyrek dolgu yoğunluğuna sahiptir. Bu, " @@ -17705,8 +17716,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve daha belirgin katman çizgileri ve " @@ -17715,8 +17726,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve daha belirgin katman çizgileri ve " @@ -17724,8 +17735,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri " @@ -17734,8 +17745,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "0,4 mm’lik nozülün varsayılan profiliyle karşılaştırıldığında daha küçük " "katman yüksekliğine, daha düşük hızlara ve ivmeye sahiptir ve seyrek dolgu " @@ -17745,8 +17756,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "katman yüksekliği daha küçüktür ve neredeyse göz ardı edilebilir katman " @@ -17756,8 +17767,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "0,4 mm’lik nozülün varsayılan profiliyle karşılaştırıldığında daha küçük " "katman yüksekliğine, daha düşük hızlara ve ivmeye sahiptir ve seyrek dolgu " @@ -17767,24 +17778,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "0,4 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "katman yüksekliği daha küçüktür ve neredeyse göz ardı edilebilecek düzeyde " "katman çizgileri ve daha uzun yazdırma süresi sağlar." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Büyük bir katman yüksekliğine sahiptir ve belirgin katman çizgileri ile " "sıradan baskı kalitesi ve baskı süresi sağlar." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "0,6 mm’lik nozulun varsayılan profiliyle karşılaştırıldığında, daha fazla " "duvar döngüsüne ve daha yüksek seyrek dolgu yoğunluğuna sahiptir. Bu, " @@ -17793,8 +17803,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve daha belirgin katman çizgileri ve " @@ -17803,8 +17813,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve çok daha belirgin katman çizgileri " @@ -17813,8 +17823,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "küçük bir katman yüksekliğine sahiptir ve katman çizgilerinin daha az " @@ -17823,24 +17833,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "0,6 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "küçük bir katman yüksekliğine sahiptir ve daha az görünür katman çizgileri " "ve daha yüksek baskı kalitesi sağlar, ancak daha uzun yazdırma süresi sağlar." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Çok büyük bir katman yüksekliğine sahiptir ve çok belirgin katman " "çizgilerine, düşük baskı kalitesine ve genel yazdırma süresine neden olur." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "büyük bir katman yüksekliğine sahiptir ve çok belirgin katman çizgileri ve " @@ -17849,8 +17859,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, çok " "daha büyük bir katman yüksekliğine sahiptir ve son derece belirgin katman " @@ -17859,9 +17869,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, " "biraz daha küçük bir katman yüksekliğine sahiptir ve biraz daha az ama yine " @@ -17870,8 +17879,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "0,8 mm’lik püskürtme ucunun varsayılan profiliyle karşılaştırıldığında, daha " "küçük bir katman yüksekliğine sahiptir ve daha az ama yine de görünür katman " @@ -17900,7 +17909,7 @@ msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "" "SimplyPrint hesabı bağlı değil. Ayarlamak için Bağlantı seçeneklerine gidin." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "Flashforge bağlantısı düzgün çalışıyor." msgid "Could not connect to Flashforge" @@ -17916,7 +17925,7 @@ msgid "Something unexpected happened when trying to log in, please try again." msgstr "" "Giriş yapmaya çalışırken beklenmeyen bir şey oldu, lütfen tekrar deneyin." -msgid "User cancelled." +msgid "User canceled." msgstr "Kullanıcı iptal edildi." msgid "Head diameter" @@ -17947,8 +17956,8 @@ msgid "Adjust section view" msgstr "Kesit görünümünü ayarla" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Uyarı: Siperlik tipi \"boyalı\" olarak ayarlanmamışsa, siperlik kulakları " "etkili olmayacaktır!" @@ -18091,7 +18100,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Otomatik Düzenleme\n" "Projenizdeki tüm nesneleri otomatik olarak düzenleyebileceğinizi biliyor " @@ -18101,7 +18110,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Otomatik Yönlendirme\n" "Basit bir tıklamayla nesneleri yazdırma için en uygun yöne " @@ -18282,7 +18291,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Daha iyi yapışma için kenar\n" @@ -18293,7 +18302,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Birden çok nesne için parametreleri ayarlama\n" "Seçilen tüm nesneler için dilimleme parametrelerini aynı anda " @@ -18310,7 +18319,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Desteğe/nesnelere/dolguya hizalayın\n" @@ -18327,13 +18336,14 @@ msgstr "" "Modelin gücünü artırmak için daha fazla duvar halkası ve daha yüksek seyrek " "dolgu yoğunluğu kullanabileceğinizi biliyor muydunuz?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Yazıcı kapısı açıkken yazdırmanız gerektiğinde\n" "Yazıcı kapısının açılmasının, daha yüksek muhafaza sıcaklığıyla daha düşük " @@ -18346,7 +18356,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Eğilmeyi önleyin\n" "ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı " @@ -18371,17 +18381,6 @@ msgstr "" #~ "en az 2 arayüz katmanı, en az 0,1 mm üst z mesafesi veya arayüzde destek " #~ "malzemeleri kullanılması." -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "Destek arayüzü için destek materyali kullanırken aşağıdaki ayarları " -#~ "öneriyoruz:\n" -#~ "0 üst z mesafesi, 0 arayüz aralığı, eş merkezli desen ve bağımsız destek " -#~ "katmanı yüksekliğini devre dışı bırakma" - #~ msgid "Branch Diameter with double walls" #~ msgstr "Çift duvarlı dal çapı" @@ -18547,7 +18546,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -18573,7 +18572,7 @@ msgstr "" #~ "\n" #~ "Varsayılan olarak küçük iç köprüler filtrelenir ve iç katı dolgu doğrudan " #~ "seyrek dolgunun üzerine yazdırılır. Bu çoğu durumda işe yarar ve üstün " -#~ "yüzey kalitesinden çok fazla ödün vermeden yazdırmayı hızlandırır. \n" +#~ "yüzey kalitesinden çok fazla ödün vermeden yazdırmayı hızlandırır.\n" #~ "\n" #~ "Bununla birlikte, özellikle çok düşük seyrek dolgu yoğunluğunun " #~ "kullanıldığı aşırı eğimli veya kavisli modellerde, bu durum " @@ -18607,25 +18606,6 @@ msgstr "" #~ "Bu geçersiz kılmayı devre dışı bırakmak için -1'e ayarlayın.\n" #~ "Yalnızca devre dışı_fan_first_layers tarafından geçersiz kılınabilir." -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "Daha düşük bir değer, daha yumuşak ekstrüzyon hızı geçişleriyle " -#~ "sonuçlanır. Ancak bu, önemli ölçüde daha büyük bir gcode dosyası ve " -#~ "yazıcının işlemesi için daha fazla talimatla sonuçlanır. \n" -#~ "\n" -#~ "Varsayılan değer olan 3 çoğu durumda iyi çalışır. Yazıcınız takılıyorsa, " -#~ "yapılan ayarlamaların sayısını azaltmak için bu değeri artırın\n" -#~ "\n" -#~ "İzin verilen değerler: 1-5" - #~ msgid "" #~ "The minimum printing speed that the printer will slow down to to attempt " #~ "to maintain the minimum layer time above, when slow down for better layer " @@ -18635,18 +18615,6 @@ msgstr "" #~ "minimum katman süresini korumaya çalışmak için yazıcının yavaşlayacağı " #~ "minimum yazdırma hızı." -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "Desteği otomatik olarak oluşturmak için normal(otomatik) ve " -#~ "ağaç(otomatik) kullanılır. Normal(manuel) veya ağaç(manuel) seçilirse " -#~ "yalnızca destek uygulayıcıları oluşturulur" - -#~ msgid ", ver: " -#~ msgstr ", ver: " - #~ msgid "ShiftLeft mouse button" #~ msgstr "Shift + Sol fare düğmesi" @@ -18660,13 +18628,10 @@ msgstr "" #~ msgid "Orca Slicer " #~ msgstr "Orca Dilimleyici " -#~ msgid "Cool plate" -#~ msgstr "Soğuk plaka" - #~ msgid "Lift Z Enforcement" #~ msgstr "Z Kaldırma Uygulaması" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "Geri çekme esnasında Z sıçraması" #, no-c-format, no-boost-format @@ -18698,7 +18663,7 @@ msgstr "" #~ "parçanın bükülmesinin azaltılmasına da yardımcı olabilir." #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -18711,7 +18676,7 @@ msgstr "" #~ "Reverse Threshold to 0 so that all internal walls print in alternating " #~ "directions on odd layers irrespective of their overhang degree." #~ msgstr "" -#~ "Ters çevre mantığını yalnızca iç çevrelere uygulayın. \n" +#~ "Ters çevre mantığını yalnızca iç çevrelere uygulayın.\n" #~ "\n" #~ "Bu ayar, parçalar artık farklı yönlerde dağıtıldığından parça " #~ "gerilimlerini büyük ölçüde azaltır. Bu, dış duvar kalitesini korurken " @@ -18768,41 +18733,10 @@ msgstr "" #~ "Nesne ile yazdırma sırasında ekstruder etekle çarpışabilir.\n" #~ "Bu durumu önlemek için etek katmanını 1'e sıfırlayın." -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "Keskin açılar tespit edilmeden önce geometrinin büyük bir kısmı yok " -#~ "edilecektir. Bu parametre, ondalık sapmanın minimum uzunluğunu gösterir.\n" -#~ "Devre dışı bırakmak için 0" - -#~ msgid "" -#~ "Start the fan this number of seconds earlier than its target start time " -#~ "(you can use fractional seconds). It assumes infinite acceleration for " -#~ "this time estimation, and will only take into account G1 and G0 moves " -#~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " -#~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" -#~ "Use 0 to deactivate." -#~ msgstr "" -#~ "Fanı hedef başlangıç zamanından bu kadar saniye önce başlatın (kesirli " -#~ "saniyeleri kullanabilirsiniz). Bu süre tahmini için sonsuz ivme varsayar " -#~ "ve yalnızca G1 ve G0 hareketlerini hesaba katar (yay uydurma " -#~ "desteklenmez).\n" -#~ "Fan komutlarını özel kodlardan taşımaz (bir çeşit 'bariyer' görevi " -#~ "görürler).\n" -#~ "'Yalnızca özel başlangıç gcode'u etkinleştirilmişse, fan komutları " -#~ "başlangıç gcode'una taşınmayacaktır.\n" -#~ "Devre dışı bırakmak için 0'ı kullanın." - #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " #~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "with open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -18815,7 +18749,7 @@ msgstr "" #~ "Rüzgar taslağı nedeniyle ABS veya ASA baskının eğrilmesine ve baskı " #~ "yatağından ayrılmasına karşı koruma sağlamak için bir rüzgarlık " #~ "kullanışlıdır. Genellikle yalnızca açık çerçeveli, yani muhafazasız " -#~ "yazıcılarda gereklidir. \n" +#~ "yazıcılarda gereklidir.\n" #~ "\n" #~ "Seçenekler:\n" #~ "Etkin = etek, yazdırılan en yüksek nesne kadar uzundur.\n" @@ -18828,19 +18762,6 @@ msgstr "" #~ msgid "Limited" #~ msgstr "Sınırlı" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "Etek yazdırılırken mm cinsinden minimum filaman ekstrüzyon uzunluğu. " -#~ "Sıfır, bu özelliğin devre dışı olduğu anlamına gelir.\n" -#~ "\n" -#~ "Yazıcı ana hat olmadan yazdırmak üzere ayarlanmışsa sıfır dışında bir " -#~ "değer kullanmak yararlı olur." - #~ msgid "" #~ "Adjust this value to prevent short, unclosed walls from being printed, " #~ "which could increase print time. Higher values remove more and longer " @@ -18874,7 +18795,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -18900,7 +18821,7 @@ msgstr "" #~ "\n" #~ "Varsayılan olarak küçük iç köprüler filtrelenir ve iç katı dolgu doğrudan " #~ "seyrek dolgunun üzerine yazdırılır. Bu çoğu durumda işe yarar ve üstün " -#~ "yüzey kalitesinden çok fazla ödün vermeden yazdırmayı hızlandırır. \n" +#~ "yüzey kalitesinden çok fazla ödün vermeden yazdırmayı hızlandırır.\n" #~ "\n" #~ "Bununla birlikte, özellikle çok düşük seyrek dolgu yoğunluğunun " #~ "kullanıldığı aşırı eğimli veya kavisli modellerde, bu durum " @@ -18961,7 +18882,7 @@ msgstr "" #~ "3. Hiçbir Yerde: Boşluk doldurmayı devre dışı bırakır\n" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "" #~ "Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek için bu " @@ -19003,13 +18924,13 @@ msgstr "" #~ "Dahili köprünün hızı. Değer yüzde olarak ifade edilirse köprü_hızına göre " #~ "hesaplanacaktır. Varsayılan değer %150'dir." -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "" #~ "Filamenti değiştirdiğinizde yeni filament yükleme zamanı. Yalnızca " #~ "istatistikler için" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "" #~ "Filamenti değiştirdiğinizde eski filamenti boşaltma zamanı. Yalnızca " #~ "istatistikler için" @@ -19048,8 +18969,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -19213,12 +19134,6 @@ msgstr "" #~ msgid "Please find the cornor with perfect degree of extrusion" #~ msgstr "Lütfen mükemmel ekstrüzyon derecesine sahip köşeyi bulun" -#~ msgid "X" -#~ msgstr "X" - -#~ msgid "Y" -#~ msgstr "Y" - #~ msgid "" #~ "Associate OrcaSlicer with prusaslicer:// links so that Orca can open " #~ "PrusaSlicer links from Printable.com" @@ -19245,12 +19160,9 @@ msgstr "" #~ "kötü bir dış yüzey kalitesine neden olacaktır. Ayrıca dolgunun parçanın " #~ "dış yüzeylerinden parlamasına da neden olabilir." -#~ msgid "V" -#~ msgstr "V" - #~ msgid "" #~ "Orca Slicer is based on BambuStudio by Bambulab, which is from " -#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " +#~ "PrusaSlicer by Prusa Research. PrusaSlicer is from Slic3r by Alessandro " #~ "Ranellucci and the RepRap community" #~ msgstr "" #~ "Orca Slicer, Prusa Research'ün PrusaSlicer'ından Bambulab'ın " @@ -19347,37 +19259,9 @@ msgstr "" #~ msgid "Unload Filament" #~ msgstr "Filamenti Çıkarın" -#~ msgid "" -#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to " -#~ "automatically load or unload filiament." -#~ msgstr "" -#~ "Filamenti otomatik olarak yüklemek veya çıkarmak için bir AMS yuvası " -#~ "seçin ve ardından \"Yükle\" veya \"Boşalt\" düğmesine basın." - -#~ msgid "MC" -#~ msgstr "MC" - #~ msgid "MainBoard" #~ msgstr "Anakart" -#~ msgid "TH" -#~ msgstr "TH" - -#~ msgid "XCam" -#~ msgstr "XCam" - -#~ msgid "HMS" -#~ msgstr "HMS" - -#~ msgid "- ℃" -#~ msgstr "- °C" - -#~ msgid "0.5" -#~ msgstr "0.5" - -#~ msgid "0.005" -#~ msgstr "0.005" - #~ msgid "New Flow Dynamics Calibration" #~ msgstr "Yeni Akış Dinamiği Kalibrasyonu" @@ -19388,13 +19272,6 @@ msgstr "" #~ "4’ten fazla stüdyo/kullanışlı uzaktan erişim kullanıyor, bazılarını " #~ "kapatıp tekrar deneyebilirsiniz." -#~ msgid "" -#~ "The 3mf file version is in Beta and it is newer than the current Bambu " -#~ "Studio version." -#~ msgstr "" -#~ "3mf dosya sürümü Beta aşamasındadır ve mevcut Bambu Studio sürümünden " -#~ "daha yenidir." - #~ msgid "If you would like to try Bambu Studio Beta, you may click to" #~ msgstr "Bambu Studio Beta’yı denemek isterseniz tıklayabilirsiniz." @@ -19446,7 +19323,7 @@ msgstr "" #~ "Bu süre zarfında gösterge hazneyi doğru şekilde temsil etmeyebilir." #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "Not: Yazdırma sırasında yeni filament takılırsa AMS, yazdırma tamamlanana " @@ -19463,7 +19340,7 @@ msgstr "" #~ msgstr "Başlatma başarısız oldu (Kamera Cihazı Yok)!" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "" #~ "Yazıcı indirme işlemiyle meşgul. Lütfen indirme işleminin bitmesini " #~ "bekleyin." @@ -19496,9 +19373,6 @@ msgstr "" #~ msgid "Failed to fetching model informations from printer." #~ msgstr "Model bilgileri yazıcıdan alınamadı." -#~ msgid "Failed to parse model informations." -#~ msgstr "Model bilgileri ayrıştırılamadı." - #~ msgid "Connection lost. Please retry." #~ msgstr "Bağlantı koptu. Lütfen tekrar deneyiniz." @@ -19507,7 +19381,7 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -19516,7 +19390,7 @@ msgstr "" #~ "korumak ister misiniz?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "" @@ -19604,7 +19478,7 @@ msgstr "" #~ "bırakılmasıyla çalışır. " #~ msgid "" -#~ "Change these settings automatically? \n" +#~ "Change these settings automatically?\n" #~ "Yes - Disable ensure vertical shell thickness and enable alternate extra " #~ "wall\n" #~ "No - Don't use alternate extra wall" @@ -19639,9 +19513,6 @@ msgstr "" #~ "Ç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 " " - #~ msgid "Text-Rotate" #~ msgstr "Metin Döndürme" @@ -19669,16 +19540,7 @@ msgstr "" #~ "çıkıntıları olduğunda ve özellik hızları açıkça belirtilmediğinde " #~ "filament için minimum yazdırma hızı." -#~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "To add preset for more prinetrs, Please go to printer selection" -#~ msgstr "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "To add preset for more prinetrs, Please go to printer selection" - -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "Yapılandırma yüklenemiyor." #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -19689,18 +19551,6 @@ msgstr "" #~ msgid "wiki" #~ msgstr "wiki" -#~ msgid "" -#~ "Relative extrusion is recommended when using \"label_objects\" " -#~ "option.Some extruders work better with this option unchecked (absolute " -#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is " -#~ "always enabled on BambuLab printers. Default is checked" -#~ msgstr "" -#~ "\"label_objects\" seçeneği kullanılırken göreceli ekstrüzyon önerilir. " -#~ "Bazı ekstruderler bu seçeneğin işareti kaldırıldığında (mutlak ekstrüzyon " -#~ "modu) daha iyi çalışır. Temizleme kulesi yalnızca göreceli modla " -#~ "uyumludur. BambuLab yazıcılarında her zaman etkindir. Varsayılan olarak " -#~ "işaretlendi" - #~ msgid "Movement:" #~ msgstr "Hareket:" @@ -19729,7 +19579,7 @@ msgstr "" #~ msgstr "konektörler nesnenin dışında" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" #~ "Geçersiz durum.\n" @@ -19753,7 +19603,7 @@ msgstr "" #~ "bağlantısının düzgün çalışıp çalışmadığını kontrol edin ve baskıyı tekrar " #~ "gönderin." -#~ msgid "The beginning of the vendor can not be a number. Please re-enter." +#~ msgid "The beginning of the vendor cannot be a number. Please re-enter." #~ msgstr "Satıcının başlangıcı sayı olamaz. Lütfen tekrar girin." #~ msgid "Edit Text" @@ -19768,9 +19618,6 @@ msgstr "" #~ msgid "Choose SLA archive:" #~ msgstr "SLA arşivini seçin:" -#~ msgid "Import file" -#~ msgstr "Dosyayı içe aktar" - #~ msgid "Import model and profile" #~ msgstr "Modeli ve profili içe aktar" @@ -19841,14 +19688,14 @@ msgstr "" #~ "Hayır - yoğunluğu otomatik olarak %100 olmayan varsayılan değere " #~ "sıfırlayın" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "" #~ "Filamenti yüklemeden önce lütfen Nozulu 170 derecenin üzerine ısıtın." -#~ msgid "Show g-code window" +#~ msgid "Show G-code window" #~ msgstr "G kodu penceresini göster" -#~ msgid "If enabled, g-code window will be displayed." +#~ msgid "If enabled, G-code window will be displayed." #~ msgstr "Etkinleştirilirse g kodu penceresi görüntülenecektir." #, c-format @@ -19956,7 +19803,7 @@ msgstr "" #~ msgstr "X ekseni etrafında derece cinsinden dönüş açısı." #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "Seçilen ön ayar: %1% bulunamadı." #~ msgid "" @@ -19968,21 +19815,12 @@ msgstr "" #~ "3D sahnede fare ve dokunmatik panel ile görünümü ve nesne/parça seçimini " #~ "nasıl kontrol edeceğinizi biliyor muydunuz?" -#~ msgid "" -#~ "Fix Model\n" -#~ "Did you know that you can fix a corrupted 3D model to avoid a lot of " -#~ "slicing problems?" -#~ msgstr "" -#~ "Modeli Düzelt\n" -#~ "Pek çok dilimleme sorununu önlemek için bozuk bir 3D modeli " -#~ "düzeltebileceğinizi biliyor muydunuz?" - #~ msgid "Embedded" #~ msgstr "Gömülü" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması " #~ "mümkün olmayabilir. Lütfen dosyayı silin ve tekrar deneyin." @@ -19998,7 +19836,7 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" @@ -20077,18 +19915,13 @@ msgstr "" #~ msgstr "Tabla" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "" #~ "Yüksek sıcaklık plakası takıldığında yatak sıcaklığı. 0 değeri, " #~ "filamentin Yüksek Sıcaklık Plakasına yazdırmayı desteklemediği anlamına " #~ "gelir" -#~ msgid "" -#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration" -#~ msgstr "" -#~ "Klipper max_accel_to_decel değeri bu hızlanma % değerine ayarlanacaktır" - #~ msgid "Maximum acceleration for travel (M204 T)" #~ msgstr "Hareket için maksimum hızlanma (M204 T)" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 5eb7391a94..75325c195c 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -20,7 +20,7 @@ msgstr "" "X-Crowdin-File-ID: 13\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "Малювання Підтримок" msgid "Alt + Mouse wheel" @@ -116,7 +116,7 @@ msgstr "Покласти на грань" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "Кількість філаменту перевищує максимальну кількість, яку підтримує " @@ -605,10 +605,10 @@ msgstr "Показати каркас" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "Не можна застосовувати під час попереднього перегляду процесу." -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "Операція вже скасовується. Зачекайте кілька секунд." msgid "Face recognition" @@ -799,7 +799,7 @@ msgid "Change Text Type" msgstr "Змінити тип тексту" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "Перейменувати стиль(%1%) для тиснення тексту" msgid "Name can't be empty." @@ -1020,8 +1020,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "Не вдається завантажити точно такий самий шрифт(\"%1%\"). Програма вибрала " "схожий шрифт(\"%2%\"). Ви повинні встановити шрифт, щоб дозволити " @@ -1153,7 +1153,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "Фігура позначена як невидима (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "Заливка фігури (%1%) не підтримується: %2%." @@ -1328,7 +1328,7 @@ msgid "Measure" msgstr "Виміряти" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "" "Підтвердіть коефіцієнт вибуху = 1 і, будь ласка, виберіть принаймні один " "об’єкт" @@ -1388,13 +1388,13 @@ msgstr "" "Особливість 1 скинута, \n" "Особливість 2 тепер особливість 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "Попередження: будь ласка, виберіть характеристику площини." -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "Попередження: будь ласка, виберіть характеристику точки або кола." -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "Попередження: будь ласка, виберіть дві різні сітки." msgid "Copy to clipboard" @@ -1418,7 +1418,7 @@ msgstr "Паралельний" msgid "Center coincidence" msgstr "Співпадіння центрів" -msgid "Featue 1" +msgid "Feature 1" msgstr "Особливість 1" msgid "Reverse rotation" @@ -1472,7 +1472,7 @@ msgstr "" "розпізнані." msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "OrcaSlicer завершить роботу через брак пам'яті. Можливо, це помилка. Ми " @@ -1606,7 +1606,7 @@ msgstr "Відкрити проєкт" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "" "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, " "перш ніж її можна буде використовувати у звичайному режимі" @@ -1818,7 +1818,7 @@ msgstr "«Струнне пекло» Orca" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1915,16 +1915,16 @@ msgstr "Промивати у підтримки об'єкта" msgid "Edit in Parameter Table" msgstr "Редагування таблиці параметрів" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "Перетворити розміри з дюймів" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "Відновити розміри в дюйми" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "Перетворити з метричної" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "Відновити в метричну" msgid "Assemble" @@ -2187,7 +2187,7 @@ msgstr "" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2204,7 +2204,7 @@ msgstr "Видалити всі з'єднання" msgid "Deleting the last solid part is not allowed." msgstr "Видалення останньої твердотільного частини не допускається." -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "Цільова модель єдина і не може бути поділена на частини." msgid "Assembly" @@ -2247,13 +2247,13 @@ msgid "Selection conflicts" msgstr "Конфлікти у виборі" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "" "Якщо перший вибраний елемент є об'єктом, другий також має бути об'єктом." msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "" "Якщо перший обраний елемент є частиною, другий має бути частиноютого ж\n" "об'єкту." @@ -2322,7 +2322,7 @@ msgstr "" "одну клітинку можна скопіювати лише в одну або декілька клітинок у тому " "самому стовпці" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "копіювання кількох клітинок не підтримується" msgid "Outside" @@ -2583,8 +2583,8 @@ msgid "Edit" msgstr "Редагувати" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "Всі вибрані об'єкти знаходяться на заблокованій пластині,\n" "Ми не можемо виконати автоматичне впорядкування цих об'єктів." @@ -2593,8 +2593,8 @@ msgid "No arrangeable objects are selected." msgstr "Не вибрано жодного доступного для впорядкування об'єкта." msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "" "Ця пластина заблокована,\n" "Ми не можемо зробити автоматичне впорядкування на цій пластині." @@ -2634,15 +2634,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "Всі вибрані об'єкти знаходяться на заблокованій пластині,\n" "Ми не можемо робити автоорієнтацію на цих об'єктах." msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "Ця пластина заблокована,\n" "Ми не можемо зробити автоорієнтацію на цій пластині." @@ -2698,7 +2698,7 @@ msgid "Cloud service connection failed. Please try again." msgstr "" "Не вдалося підключитися до хмарного сервісу. Будь ласка, спробуйте ще раз." -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "Файл друку не знайдено, наріжте ще раз." msgid "" @@ -2726,7 +2726,7 @@ msgstr "" "Розмір файлу друку занадто великий. Будь ласка, зменште розмір файлу і " "спробуйте ще раз." -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "" "Файл друку не знайдено; будь ласка, знову наріжте його і відправте для друку." @@ -2767,10 +2767,12 @@ msgstr "" msgid "An SD card needs to be inserted before printing via LAN." msgstr "Перед друком через локальну мережу необхідно вставити картку SD." -msgid "Sending gcode file over LAN" +#, fuzzy +msgid "Sending G-code file over LAN" msgstr "Надсилання файлу gcode по локальній мережі" -msgid "Sending gcode file to sdcard" +#, fuzzy +msgid "Sending G-code file to SD card" msgstr "Надсилання файлу gcode на карту SD" #, c-format, boost-format @@ -2818,10 +2820,10 @@ msgstr "Завантаження" msgid "Download failed" msgstr "Помилка завантаження" -msgid "Cancelled" +msgid "Canceled" msgstr "Скасовано" -msgid "Install successfully." +msgid "Installed successfully" msgstr "Успішне встановлення." msgid "Installing" @@ -2891,9 +2893,6 @@ msgstr "Підтвердити" msgid "Close" msgstr "Закрити" -msgid "Colour" -msgstr "Колір" - msgid "" "Nozzle\n" "Temperature" @@ -3056,8 +3055,8 @@ msgstr "Поточна вологість AMS" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "Будь ласка, змініть осушувач, коли він стає занадто вологим. Індикатор може " @@ -3066,7 +3065,7 @@ msgstr "" "низькі температури також сповільнюють процес." msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "" "Налаштуйте, який слот AMS слід використовувати для нитки, яка " "використовується в завдання на друк" @@ -3087,7 +3086,7 @@ msgid "Print using materials mounted on the back of the case" msgstr "" "Друк із використанням матеріалів, закріплених на задній частині корпусу" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "Друк філаментами в ams" msgid "Print with filaments mounted on the back of the chassis" @@ -3114,7 +3113,7 @@ msgstr "" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -3143,7 +3142,7 @@ msgstr "" "Bambu Lab. Це займає близько 20 секунд." msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "Примітка: якщо під час друку вставляється нова пластикова нитка, AMS " @@ -3162,8 +3161,8 @@ msgstr "Оновити дані при увімкненні принтера" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "AMS автоматично зчитує інформацію про вставлений філамент. Це займе близько " "1 хвилини. У процесі зчитування крутиться котушка." @@ -3193,8 +3192,8 @@ msgid "AMS filament backup" msgstr "Резервування матеріалу AMS" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "" "AMS перейде на іншу котушку з тими самими властивостями автоматично, коли " "поточний філамент закінчиться" @@ -3261,7 +3260,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "Збережіть проект і перезапустіть програму." -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "Обробка G-коду з попереднього файлу..." msgid "Slicing complete" @@ -3345,12 +3344,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "Файл G-коду експортується до %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "Невідома помилка під час експорту G-коду." -#, boost-format +#, fuzzy, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3528,7 +3527,7 @@ msgstr "Використовуйте AMS" msgid "Select Printers" msgstr "Вибрати принтери" -msgid "Ams Status" +msgid "AMS Status" msgstr "Статус AMS" msgid "Printing Options" @@ -3550,7 +3549,7 @@ msgid "Send to" msgstr "Відправити на" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "" "друкувати одночасно (це залежить від того, скільки пристроїв можуть " @@ -3560,7 +3559,7 @@ msgid "Wait" msgstr "Чекайте" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "" "хвилин на кожну партію. (Це залежить від того, скільки часу потрібно на " "нагрівання)." @@ -3658,9 +3657,10 @@ msgstr "Виберіть файл STL для імпорту моделі сто msgid "Bed Shape" msgstr "Форма столу" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "" "Мінімально рекомендована температура менше 190 градусів або максимально " "рекомендована температура більше 300 градусів.\n" @@ -3687,8 +3687,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "" "Рекомендована температура сопла для цього типу нитки становить [%d, %d] " "градусів Цельсія" @@ -3702,9 +3702,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "Поточна температура камери вища, ніж безпечна температура матеріалу, це може " "призвести до розм’якшення матеріалу та його забивання. Максимально безпечна " @@ -3770,7 +3770,7 @@ msgstr "" "\"Забезпечити товщину вертикальної оболонки\" встановлено значення \"Всі\"." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3835,11 +3835,11 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Но принтери з кінематикою I3 не будуть писати таймлапс." msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" -"Змінити ці налаштування автоматично? \n" +"Змінити ці налаштування автоматично?\n" "Так – змінити ці налаштування та автоматично включити режим спіральна ваза\n" "Ні - цього разу відмовитися від використання режиму спіральна ваза" @@ -3894,7 +3894,7 @@ msgstr "Друк припинено користувачем" msgid "Pause of front cover falling" msgstr "Пауза під час падіння передньої кришки з голови" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "Калібрування мікролідаром" msgid "Calibrating extrusion flow" @@ -3930,7 +3930,7 @@ msgstr "Пауза через помилку контролю температу msgid "Cooling chamber" msgstr "Охолодження камери" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "Друк припинено G-кодом, вставленим користувачем" msgid "Motor noise showoff" @@ -3974,7 +3974,7 @@ msgstr "Не вдалося оновити." msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "Поточна температура камери або цільова температура камери перевищує 45℃. Щоб " @@ -3982,8 +3982,8 @@ msgstr "" "низької температури (PLA/PETG/TPU)." msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "Філамент низької температури (PLA/PETG/TPU) завантажено в екструдер. Щоб " @@ -3992,14 +3992,14 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "Якщо ви встановите температуру камери нижче 40℃, контроль температури камери " "не буде активований, і цільова температура камери автоматично буде " "встановлена на 0℃." -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "Не вдалося запустити завдання друку" msgid "" @@ -4012,7 +4012,7 @@ msgstr "Поточна величина калібрування потоку н msgid "Selected diameter and machine diameter do not match" msgstr "Обраний діаметр і діаметр профілю принтера не відповідають один одному" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "Не вдалося згенерувати калібрувальний G-код" msgid "Calibration error" @@ -4025,14 +4025,14 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "Bambu PET-CF/PA6-CF не підтримується AMS." msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "" "Вологий PVA стає гнучким і може застрягти всередині AMS, будь ласка, " "обережно висушіть його перед використанням." msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "" "Філаменти CF/GF є жорсткими і крихкими, їх легко можна зламати або вони " @@ -4048,7 +4048,7 @@ msgstr "Редагування користувацького G-коду (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "Вбудовані заповнювачі (Двічі клацніть елемент, щоб додати до G-коду)" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "Пошук G-коду в заповнювачах" msgid "Add selected placeholder to G-code" @@ -4107,7 +4107,7 @@ msgid "parameter name" msgstr "ім'я параметра" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s не може бути відсотком" #, c-format, boost-format @@ -4198,7 +4198,7 @@ msgstr "Швидкість вентилятора: " msgid "Temperature: " msgstr "Температура: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "Завантаження G-кодів" msgid "Generating geometry vertex data" @@ -4312,10 +4312,7 @@ msgstr "Друк" msgid "Printer" msgstr "Принтер" -msgid "Custom g-code" -msgstr "Користувацький g-код" - -msgid "ToolChange" +msgid "Tool Change" msgstr "Зміна інструменту" msgid "Time Estimation" @@ -4441,8 +4438,11 @@ msgstr "Розташувати вздовж осі Y" msgid "Add plate" msgstr "Додати пластину" -msgid "Auto orient" -msgstr "Автоорієнтація" +msgid "Auto orient all/selected objects" +msgstr "Автоорієнтація всі/вибрані об'єкти" + +msgid "Auto orient all objects on current plate" +msgstr "Автоорієнтація всі об'єкти на поточній пластині" msgid "Arrange all objects" msgstr "Впорядкувати всі об'єкти" @@ -4465,8 +4465,8 @@ msgstr "Вибрати пластину" msgid "Assembly Return" msgstr "Повернення збірки" -msgid "return" -msgstr "повернення" +msgid "Return" +msgstr "Повернення" msgid "Paint Toolbar" msgstr "Панель інструментів малювання" @@ -4492,28 +4492,28 @@ msgstr "Об'єм:" msgid "Size:" msgstr "Розмір:" -#, boost-format +#, fuzzy, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "Виявлено конфлікти шляхів gcode на рівні %d, z = %.2lf мм. Будь ласка \n" "розділити конфліктуючі об'єкти далі (%s <-> %s)." -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "Об'єкт виходить за межі пластини." msgid "A G-code path goes beyond the max print height." msgstr "Шлях G-коду виходить за максимально допустиму висоту друку." -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "Шлях G-коду виходить за межі пластини." -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "Відображається лише редагований об'єкт." msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4593,7 +4593,7 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "Підключити принтер (локальна мережа)" msgid "Please input the printer access code:" @@ -4893,19 +4893,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "Показати вікно G-коду" -msgid "Show g-code window in Preview scene" -msgstr "Показати вікно g-коду у сцені попереднього перегляду" +msgid "Show G-code window in Preview scene." +msgstr "Показати вікно G-коду у сцені попереднього перегляду" msgid "Show 3D Navigator" msgstr "Показати 3D-навігатор" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "Показати 3D-навігатор у сцені підготовки та попереднього перегляду" msgid "Reset Window Layout" @@ -4917,19 +4917,19 @@ msgstr "Скидання до стандартного вигляду вікна msgid "Show &Labels" msgstr "Показати &Ярлики" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "Показати мітки об'єктів у 3D-сцені" msgid "Show &Overhang" msgstr "Показати &Виступ" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "Показати підсвічування виступу об'єкта у 3D сцені" msgid "Show Selected Outline (beta)" msgstr "Показати контур виділеного (бета)" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "Показувати контур навколо виділеного об'єкта у 3D сцені" msgid "Preferences" @@ -5115,13 +5115,13 @@ msgid "Filament Settings" msgstr "Налаштування Філаменту" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"Ви хочете синхронізувати свої особисті дані з Bambu Cloud? \n" +"Ви хочете синхронізувати свої особисті дані з Bambu Cloud?\n" "Він містить таку інформацію:\n" "1. Передустановки процесу\n" "2. Передустановки філаменту\n" @@ -5155,7 +5155,7 @@ msgstr "" msgid "Printer camera is malfunctioning." msgstr "Камера принтера несправна." -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "" "Виникла проблема. Будь ласка, оновіть прошивку принтера і спробуйте знову." @@ -5176,7 +5176,7 @@ msgstr "" "Підключення не вдалося. Будь ласка, перевірте мережу та спробуйте ще раз" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "" "Будь ласка, перевірте мережу та спробуйте ще раз. Якщо проблема " @@ -5344,8 +5344,8 @@ msgid "Failed to parse model information." msgstr "Не вдалося розібрати інформацію про модель." msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" "Файл .gcode.3mf не містить даних G-коду. Будь ласка, розріжте його за " "допомогою Orca Slicer і експортуйте новий файл .gcode.3mf." @@ -5539,9 +5539,9 @@ msgstr "Шар: %s" msgid "Layer: %d/%d" msgstr "Шар: %d/%d" +#, fuzzy msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "" "Будь ласка, нагрійте насадку до понад 170 градусів перед завантаженням або " "вивантаженням філаменту." @@ -5552,7 +5552,7 @@ msgstr "Ще розвантажити" msgid "Still load" msgstr "Ще завантажити" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "Будь ласка, виберіть слот AMS перед калібруванням" msgid "" @@ -5601,9 +5601,6 @@ msgstr "Підтвердити" msgid "Please click on the star first." msgstr "Будь ласка, спочатку клацніть на зірку." -msgid "InFo" -msgstr "Інформація" - msgid "Get oss config failed." msgstr "Не вдалося отримати конфігурацію OSS." @@ -5622,7 +5619,7 @@ msgstr " Помилка при спробі завантажити конфіг msgid " No corresponding storage bucket\n" msgstr " Відсутній відповідний сховищний контейнер\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " Не може бути відкрито\n" msgid "" @@ -5649,7 +5646,7 @@ msgid "obtaining instance_id failed\n" msgstr "помилка отримання instance_id\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5664,7 +5661,7 @@ msgstr "текст помилки: " msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5672,7 +5669,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "" "Деякі з ваших зображень не вдалося завантажити. Бажаєте перейти на веб-" "сторінку для оцінки?" @@ -5682,7 +5679,7 @@ msgstr "Ви можете вибрати до 16 зображень." msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "Для того щоб поставити позитивний рейтинг (4 або 5 зірок), потрібно \n" "мати принаймні один успішний запис про друк з цим профілем друку." @@ -5727,7 +5724,7 @@ msgid "Newer 3mf version" msgstr "Нова версія 3mf" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "" "Версія 3mf-файлу знаходиться в стадії бета-тестування і є новішою за поточну " @@ -5845,7 +5842,7 @@ msgstr[3] "" #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d завантажено як частину обрізаного об'єкта." msgstr[1] "%1$d завантажено як частини обрізаних об'єктів" msgstr[2] "%1$d завантажено як частини обрізаних об'єктів" @@ -5872,7 +5869,7 @@ msgstr "Помилка:" msgid "Warning:" msgstr "Попередження:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "Експорт успішно." msgid "Model file downloaded." @@ -5890,11 +5887,12 @@ msgstr " Натисніть тут, щоб встановити його." msgid "WARNING:" msgstr "ПОПЕРЕДЖЕННЯ:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "Вашій моделі потрібна підтримка! Увімкніть допоміжний матеріал." -msgid "Gcode path overlap" -msgstr "Перекриття шляху Gcode" +#, fuzzy +msgid "G-code path overlap" +msgstr "Перекриття шляху G-code" msgid "Support painting" msgstr "Підтримка малювання" @@ -6138,7 +6136,7 @@ msgstr "Ви хочете зберегти зміни в \\%1%\\?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "" "Успішно змонтовано. Тепер пристрій %s(%s) можна безпечно видалити з " @@ -6198,8 +6196,8 @@ msgstr "Завантажити 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "Версія 3mf %s новіша, ніж версія %s %s, знайдено наступні ключі:" msgid "You'd better upgrade your software.\n" @@ -6219,27 +6217,28 @@ msgstr "У 3mf знайдено неприпустимі значення:" msgid "Please correct them in the param tabs" msgstr "Будь ласка, виправте їх у вкладках параметрів" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "" "У файлі 3mf знаходяться наступні змінені G-коди в налаштуваннях філаменту " "або принтера:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "" "Будь ласка, підтвердьте, що ці змінені G-коди безпечні і не призведуть до " "пошкодження пристрою!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "Змінені G-коди" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "" "У файлі 3mf містяться наступні налаштовані параметри філаменту або принтера:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "" "Будь ласка, підтвердьте, що G-коди в цих налаштованих параметрах безпечні і " @@ -6301,8 +6300,8 @@ msgid "The file does not contain any geometry data." msgstr "Файл не містить геометричних даних." msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "" "Ваш об'єкт здається занадто великим. Ви хочете зменшити його, щоб він " "відповідав розміру?\n" @@ -6411,7 +6410,7 @@ msgstr "" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "Режим тільки попереднього перегляду:\n" "Завантажений файл містить лише gcode, не вдається увійти на сторінку " @@ -6448,7 +6447,7 @@ msgstr "підготувати файл 3mf..." msgid "Download failed, unknown file format." msgstr "Не вдалося завантажити, невідомий формат файлу." -msgid "downloading project ..." +msgid "downloading project..." msgstr "завантажую проект..." msgid "Download failed, File size exception." @@ -6487,7 +6486,8 @@ msgstr "Імпорт SLА-архіву" msgid "The selected file" msgstr "Вибраний файл" -msgid "does not contain valid gcode." +#, fuzzy +msgid "does not contain valid G-code." msgstr "не містить дійсний gcode." msgid "Error occurs while loading G-code file" @@ -6533,10 +6533,10 @@ msgstr "Водночас можна відкрити лише один файл msgid "G-code loading" msgstr "Завантаження G-коду" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "Файли G-коду не можна завантажувати разом із моделями!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "Неможливо додати моделі у режимі попереднього перегляду!" msgid "All objects will be removed, continue?" @@ -6700,8 +6700,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" @@ -6860,6 +6860,12 @@ msgstr "" "Якщо увімкнено, використовуватиметься вільна камера. Якщо вимкнено, " "використовуватиметься камера з обмеженими можливостями." +msgid "Swap pan and rotate mouse buttons" +msgstr "Поміняти кнопки миші для панорамування й обертання" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "Якщо ввімкнено, змінює місцями функції панорамування та обертання між лівою та правою кнопками миші." + msgid "Reverse mouse zoom" msgstr "Зворотне масштабування мишкою" @@ -6907,7 +6913,7 @@ msgstr "" "Якщо увімкнено, Orca запам'ятовує та автоматично перемикає конфігурацію " "нитки/процесу для кожного принтера." -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "" "Керування кількома пристроями (набуває чинності після перезапуску Orca)." @@ -6927,7 +6933,7 @@ msgstr "Автоматично впорядкувати об'єкти пласт msgid "Network" msgstr "Мережа" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "" "Автоматична синхронізація користувацьких профілів (принтер/філамент/процес)" @@ -7005,7 +7011,7 @@ msgstr "Максимальна кількість останніх проект msgid "Clear my choice on the unsaved projects." msgstr "Очистити мій вибір для незбережених проектів." -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "Немає попереджень при завантаженні файлу 3MF із зміненими G-кодами" msgid "Auto-Backup" @@ -7122,10 +7128,10 @@ msgstr "кнопка збереження налагодження" msgid "save debug settings" msgstr "зберегти налаштування налагодження" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "Налаштування налагодження успішно збережено!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "Перемкніть хмарне середовище, будь ласка, увійдіть знову!" msgid "System presets" @@ -7140,10 +7146,10 @@ msgstr "Несумісні пресети" msgid "AMS filaments" msgstr "Філамент AMS" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "Натисніть, щоб вибрати колір філаменту" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "Будь ласка, виберіть колір філаменту" msgid "Add/Remove presets" @@ -7161,7 +7167,7 @@ msgstr "Додати/видалити філаменти" msgid "Add/Remove materials" msgstr "Додати/видалити матеріали" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "Вибрати/Вилучити принтери (системні профілі)" msgid "Create printer" @@ -7233,14 +7239,14 @@ msgstr "Завантаження 3mf" msgid "Jump to model publish web page" msgstr "Перейти на веб-сторінку публікації моделі" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "" "Примітка. Підготовка може тривати кілька хвилин. Будь ласка, будьте терплячі." msgid "Publish" msgstr "Публікувати" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "Публікація скасована" msgid "Slicing Plate 1" @@ -7265,7 +7271,7 @@ msgstr "Налаштування проекту всередині" msgid "Name is unavailable." msgstr "Ім'я недоступне." -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "Перезаписування системного профілю заборонено" #, boost-format @@ -7273,10 +7279,12 @@ msgid "Preset \"%1%\" already exists." msgstr "Предустановка \\%1%\\ вже існує." #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "Предустановка \\%1%\\ вже існує і несумісна з поточним принтером." -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "Зверніть увагу, що дія збереження замінить цей пресет" msgid "The name cannot be the same as a preset alias name." @@ -7494,7 +7502,7 @@ msgid "Please check the following:" msgstr "Будь ласка, перевірте таке:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7530,7 +7538,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "" "Друк високотемпературного матеріалу (%s матеріал) з %s може призвести до " @@ -7646,7 +7654,7 @@ msgstr "Вхід не вдається. Будь ласка, перевірте msgid "Log in printer" msgstr "Вхід до принтера" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "Ви хочете увійти до цього принтера з поточним обліковим записом?" msgid "Check the reason" @@ -7659,10 +7667,10 @@ msgid "Terms and Conditions" msgstr "Умови використання" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "Дякуємо за покупку пристрою Bambu Lab. Перед використанням вашого пристрою " @@ -7692,7 +7700,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7750,7 +7758,7 @@ msgstr "" "установки." msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "Для плавного таймлапсу потребується Підготовча вежа. Без Підготовчої вежі на " @@ -7758,7 +7766,7 @@ msgstr "" "вежу?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "Для плавного таймлапсу потребується підготовча вежа. Без підготовчої вежі в " @@ -7768,7 +7776,7 @@ msgid "Still print by object?" msgstr "Все одно друкувати кожен об'єкт окремо?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7779,11 +7787,11 @@ msgstr "" "прямокутний візерунок та вимкнена незалежна висота шару підтримки" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" -"Змінити ці налаштування автоматично? \n" +"Змінити ці налаштування автоматично?\n" "Так - Змінити ці налаштування автоматично\n" "Ні - Не змінювати ці настройки для мене" @@ -7808,13 +7816,13 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "Висота шару перевищує ліміт у Налаштуваннях принтера -> Екструдер -> Ліміти " "висоти шару, це може призвести до проблем з якістю друку." -msgid "Adjust to the set range automatically? \n" -msgstr "Автоматично налаштувати на встановлений діапазон? \n" +msgid "Adjust to the set range automatically?\n" +msgstr "Автоматично налаштувати на встановлений діапазон?\n" msgid "Adjust" msgstr "Налаштувати" @@ -7824,8 +7832,8 @@ msgstr "Ігнорувати" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "Експериментальна функція: Втягування та відрізання філаменту на більшій " @@ -7835,9 +7843,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "Експериментальна функція: Втягування та відрізання філаменту на більшій " "відстані під час зміни філаменту для мінімізації промивання. Хоча це може " @@ -8090,8 +8098,8 @@ msgid "Cool Plate (SuperTack)" msgstr "Холодна пластина (SuperTack)" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "Температура столу при встановленій холодній пластині. Значення 0 означає що " "філамент не підтримує друк на Холодній Пластині SuperTack" @@ -8100,29 +8108,29 @@ msgid "Cool Plate" msgstr "Холодна пластина" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Температура шару при встановленій охолодній пластині. Значення 0 означає, що " "філамент\n" "не підтримує друк на Холодному столі" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "Текстурована Холодна Пластина" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "Температура столу при встановленій холодній пластині. Значення 0 означає що " "філамент не підтримує друк на Холодній Пластині SuperTack" -msgid "Engineering plate" -msgstr "Інженерна пластина" +msgid "Engineering Plate" +msgstr "Інженерна Пластина" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "" "Температура стола при встановленій інженерній плиті. Значення 0 означає \n" "Філамент не підтримує друк на інженерній пластині" @@ -8131,9 +8139,9 @@ msgid "Smooth PEI Plate / High Temp Plate" msgstr "Гладка ПЕІ пластина / Високотемпературна пластина" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "Температура столу, коли встановлена Гладка ПЕІ пластина / Високотемпературна " "пластина. Значення 0 означає, що філамент не підтримує друк на Гладкій ПЕІ " @@ -8143,8 +8151,8 @@ msgid "Textured PEI Plate" msgstr "Текстурована PEI пластина" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "Температура шару під час встановлення пластини Текстурована PEI пластина. " "Значення 0 означає Філамент не підтримує друк на Текстурованій PEI пластині" @@ -8207,13 +8215,13 @@ msgstr "G-код кінця філаменту" msgid "Wipe tower parameters" msgstr "Параметри вежі протирання" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "Параметри зміни інструменту в одно-екструдерному ММ-принтері" msgid "Ramming settings" msgstr "Налаштування раммінгу" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "Параметри заміни інструменту в багатоекструдерних MM-принтерах" msgid "Dependencies" @@ -8225,7 +8233,7 @@ msgstr "Залежності профілю" msgid "Printable space" msgstr "Місце для друку" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "Надано некоректне значення для параметру %1%: %2%" @@ -8248,7 +8256,7 @@ msgstr "Адаптивна сітка стола" msgid "Accessory" msgstr "Аксесуари" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "G-code машини" msgid "Machine start G-code" @@ -8266,7 +8274,7 @@ msgstr "G-code перед зміною шару" msgid "Layer change G-code" msgstr "G-code Зміни шару" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "G-код для часової зйомки" msgid "Change filament G-code" @@ -8361,7 +8369,7 @@ msgstr "" "За цим принтером прикріплено %d налаштувань філаменту та %d налаштувань " "процесу. Ці налаштування будуть видалені, якщо принтер буде видалено." -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "" "Налаштування, які успадковуються іншими налаштуваннями, не можуть бути " "видалені!" @@ -8386,7 +8394,7 @@ msgstr[2] "Наступні стилі також будуть видалені. msgstr[3] "" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" @@ -8607,7 +8615,7 @@ msgstr "Доступна нова версія" msgid "Configuration update" msgstr "Оновлення конфігурації" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "Доступний новий пакет конфігурації, чи хочете ви встановити його?" msgid "Description:" @@ -8616,13 +8624,13 @@ msgstr "Опис:" msgid "Configuration incompatible" msgstr "Несумісність конфігурації" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "пакет конфігурації несумісний із поточною програмою." #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "Пакет конфігурації несумісний із поточною програмою.\n" "%s оновить пакет конфігурації, інакше він не зможе запуститися" @@ -8631,7 +8639,7 @@ msgstr "" msgid "Exit %s" msgstr "Вихід %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "пакет конфігурації несумісний з поточним APP." msgid "Configuration updates" @@ -8684,18 +8692,18 @@ msgid "Map Filament" msgstr "Відображення філаменту" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "Примітка: Колір вже вибрано. Ви можете вибрати ОК \n" -" щоб продовжити або вручну відкоригувати його." +"щоб продовжити або вручну відкоригувати його." msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "Попередження: Кількість новостворених та \n" -" поточних екструдерів перевищує 16." +"поточних екструдерів перевищує 16." msgid "Ramming customization" msgstr "Налаштування раммінгу" @@ -8813,7 +8821,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" "Вашій системі бракує кодеків H.264 для GStreamer, які необхідні для " @@ -8884,13 +8892,16 @@ msgid "Shift+R" msgstr "" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "Автоматично орієнтує вибрані об'єкти або всі об'єкти. Якщо вибрано об'єкти, " "він просто орієнтує обрані. В іншому випадку він будеОрієнтувати всі об'єкти " -"на поточному диску." +"на поточному проєкт." + +msgid "Auto orients all objects on the active plate." +msgstr "Автоматично орієнтує всі об'єкти на поточному диску." msgid "Shift+Tab" msgstr "" @@ -9000,8 +9011,11 @@ msgstr "Поворот Gizmo" msgid "Gizmo cut" msgstr "Виріз Gizmo" -msgid "Gizmo Place face on bed" -msgstr "Gizmo Покласти грань на стіл" +msgid "Gizmo place face on bed" +msgstr "Покласти грань на стіл Gizmo" + +msgid "Gizmo mesh boolean" +msgstr "Булеві операції Gizmo" msgid "Gizmo SLA support points" msgstr "Точки підтримки Gizmo SL" @@ -9009,8 +9023,17 @@ msgstr "Точки підтримки Gizmo SL" msgid "Gizmo FDM paint-on seam" msgstr "Швид, що фарбується Gizmo FDM" -msgid "Gizmo Text emboss / engrave" -msgstr "Gizmo Текстове тиснення / гравіювання" +msgid "Gizmo text emboss/engrave" +msgstr "Текстове тиснення/гравіювання Gizmo" + +msgid "Gizmo measure" +msgstr "виміряти Gizmo" + +msgid "Gizmo assemble" +msgstr "Зібрати Gizmo" + +msgid "Gizmo brim ears" +msgstr "Краєчки Gizmo" msgid "Zoom in" msgstr "Приблизити" @@ -9051,8 +9074,8 @@ msgstr "" msgid "Set extruder number for the objects and parts" msgstr "Встановіть номер екструдера для об'єктів та деталей" -msgid "Delete objects, parts, modifiers " -msgstr "Видалення об'єктів, частин, модифікаторів " +msgid "Delete objects, parts, modifiers" +msgstr "Видалення об'єктів, частин, модифікаторів" msgid "Select the object/part and press space to change the name" msgstr "Виберіть об'єкт/деталь і натисніть пробіл, щоб змінити назву" @@ -9081,8 +9104,8 @@ msgstr "Горизонтальний повзунок - Перемістити msgid "On/Off one layer mode of the vertical slider" msgstr "Увімкнення/вимкнення одношарового режиму вертикального повзунка" -msgid "On/Off g-code window" -msgstr "Увімкнення/вимкнення вікна g-коду" +msgid "On/Off G-code window" +msgstr "Увімкнення/вимкнення вікна G-коду" msgid "Move slider 5x faster" msgstr "Переміщення повзунка в 5 разів швидше" @@ -9100,7 +9123,7 @@ msgid "Release Note" msgstr "Примітка до випуску" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "версія %s інформація про оновлення:" msgid "Network plug-in update" @@ -9113,7 +9136,7 @@ msgstr "" "Slicer." #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "Доступний новий мережевий плагін (%s), чи хочете ви встановити його?" msgid "New version of Orca Slicer" @@ -9131,10 +9154,10 @@ msgstr "продовжити" msgid "Resume Printing" msgstr "Відновити друк" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "Відновлення друку (прийнятно дефекти)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "Відновлення друку (проблема вирішена)" msgid "Stop Printing" @@ -9258,10 +9281,10 @@ msgstr "Остання версія" msgid "Updating" msgstr "Оновлення" -msgid "Updating failed" +msgid "Update failed" msgstr "Оновлення не вдалося" -msgid "Updating successful" +msgid "Update successful" msgstr "Успішне оновлення" msgid "" @@ -9389,10 +9412,10 @@ msgstr "" "Переконайтесь, що немає зіткнення." msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" -"Не вдалося згенерувати g-код для неприпустимого G-коду користувача. \n" +"Не вдалося згенерувати g-код для неприпустимого G-коду користувача.\n" "\n" msgid "Please check the custom G-code or use the default custom G-code." @@ -9441,7 +9464,7 @@ msgid "Multiple" msgstr "Кілька" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "" "Не вдалося обчислити ширину лінії %1%. Неможливо отримати значення \"%2%\" " @@ -9579,9 +9602,9 @@ msgstr "" " знаходиться надто близько до зони відчуження, що призведе до зіткнень.\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "Не можна друкувати кілька ниток, які мають значну різницю в температурі " "разом. В іншому випадку екструдер та сопло можуть бути заблоковані або " @@ -9680,22 +9703,23 @@ msgstr "" "Підготовча вежа не підтримується при включеній адаптивній висоті шару. Для " "цього потрібно, щоб усі об'єкти мали однакову висоту шару." -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "Підготовча вежа вимагає, щоб «опорний зазор» був крадений висотою шару" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "Підготовча вежа вимагає, щоб усі об'єкти мали однакову висоту шару" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "" "Підготовча вежа вимагає, щоб усі об'єкти друкувалися на однаковій кількості " "шарів підкладки" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9707,7 +9731,7 @@ msgstr "" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "" "Підготовча вежа підтримується лише в тому випадку, якщо всі об'єкти мають " "однакову змінну висоту шару" @@ -9761,7 +9785,7 @@ msgstr "" "Засоби підтримки використовуються, але підтримка не включена.Увімкніть " "підтримку." -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "Висота шару не може перевищувати діаметр сопла" msgid "" @@ -9890,8 +9914,8 @@ msgid "Elephant foot compensation" msgstr "Компенсація слонової стопи" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "" "Зменшення початкового шару на робочій пластині для компенсації ефекту " "слонової стопи" @@ -9914,7 +9938,7 @@ msgstr "шари" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "" "Висота нарізки для кожного шару. Найменша висота шару означає більш точний " "друк, але більше часу на друк" @@ -9922,13 +9946,13 @@ msgstr "" msgid "Printable height" msgstr "Висота друку" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "Максимальна висота друку, яка обмежена механізмом принтера" msgid "Preferred orientation" msgstr "Бажана орієнтація" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "Автоматичне орієнтування stl за віссю Z під час першого імпорту" msgid "Printer preset names" @@ -9937,7 +9961,7 @@ msgstr "Імена налаштувань принтера" msgid "Use 3rd-party print host" msgstr "Використовувати сторонній хост для друку" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "Дозволяє керувати принтером BambuLab через сторонні хости друку" msgid "Hostname, IP or URL" @@ -9961,7 +9985,7 @@ msgid "Device UI" msgstr "Інтерфейс користувача" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "" "Вкажіть URL інтерфейсу користувача пристрою, якщо він не збігається з " "print_host" @@ -9977,7 +10001,7 @@ msgstr "" "повинно утримувати \n" "API-ключ або пароль, необхідний для автентифікації." -msgid "Name of the printer" +msgid "Name of the printer." msgstr "Назва принтера" msgid "HTTPS CA File" @@ -10010,7 +10034,7 @@ msgstr "" "відключення від мережі точки розповсюдження. Можна увімкнути цю опцію для " "підписання сертифікатів під час невдалого підключення." -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "Назви налаштувань, пов'язаних з фізичним принтером" msgid "Authorization Type" @@ -10022,22 +10046,23 @@ msgstr "Ключ API" msgid "HTTP digest" msgstr "HTTP-дайджест" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "Уникати перетину стінок" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "" "Об'їжджати та уникати проїзду через стінку, що може призвести до утворенню " "плям на поверхні" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "Уникати перетину стінки - Максимальна довжина об'їзду" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "Максимальна відстань об'їзду для уникнення перетину стінки. Не об'їжджати, " "якщо відстань об'їзду більша, ніж це значення. Довжина об'їзду може бути " @@ -10051,8 +10076,8 @@ msgid "Other layers" msgstr "Інші шари" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "" "Температура столу для всіх шарів, крім першого. Значення 0 означає, що " "філамент не підтримує друк на Холодній Пластині" @@ -10061,29 +10086,29 @@ msgid "°C" msgstr "" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "" "Температура столу для всіх шарів, крім першого. Значення 0 означає, що " "філамент не підтримує друк на Текстурованій Холодній Пластині" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "" "Температура столу для всіх шарів, крім першого. Значення 0 означає, що " "філамент не підтримує друк на Інженерній Пластині" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "" "Температура столу для всіх шарів, крім першого. Значення 0 означає, що " "філамент не підтримує друк на Високотемпературній Пластині" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "" "Температура столу для всіх шарів, крім першого. Значення 0 означає, що " "філамент не підтримує друк на Текстурованій Пластині PEI" @@ -10095,62 +10120,56 @@ msgid "Initial layer bed temperature" msgstr "Температура першого шару" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" "Температура столу першого шару. Значення 0 означає, що філамент не підтримує " "друк на Холодній Пластині SuperTack" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "" "Температура столу першого шару. Значення 0 означає, що філамент не підтримує " "друк на Холодній Пластині" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "" "Температура столу першого шару. Значення 0 означає, що філамент не підтримує " "друк на Текстурованій Холодній Пластині" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "" "Температура столу першого шару. Значення 0 означає, що філамент не підтримує " "друк на Інженерній Пластині" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "" "Температура столу першого шару. Значення 0 означає, що філамент не підтримує " "друк на Високотемпературній Пластині" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "" "Температура столу першого шару. Значення 0 означає, що філамент не підтримує " "друк на Текстурованій Пластині PEI" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "Типи ліжок, які підтримує принтер" msgid "Smooth Cool Plate" msgstr "Гладка Холодна Пластина" -msgid "Engineering Plate" -msgstr "Інженерна Пластина" - msgid "Smooth High Temp Plate" msgstr "Гладка Високотемпературна Пластина" -msgid "Textured Cool Plate" -msgstr "Текстурована Холодна Пластина" - msgid "First layer print sequence" msgstr "Послідовність друку першого шару" @@ -10163,7 +10182,7 @@ msgstr "Кількість шарів для друку в іншій послі msgid "Other layers filament sequence" msgstr "Послідовність філаменту для інших шарів" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "Типи ліжок, які підтримує принтер" msgid "Bottom shell layers" @@ -10172,7 +10191,7 @@ msgstr "Шари нижньої оболонки" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "Це кількість суцільних шарів нижньої оболонки, включаючи шар нижньої " "поверхні. Якщо отримана товщина виявиться меншою за товщину нижньої " @@ -10186,7 +10205,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "Якщо під час нарізання загальна товщина шарів нижньої оболонки виявиться " "меншою за це значення, буде додано більше суцільних нижніх шарів. Це " @@ -10207,22 +10226,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" "Увімкнення заповнення проміжків для вибраних суцільних поверхонь. Мінімальну " "довжину проміжку, що буде заповнена, можна контролювати за допомогою " @@ -10379,9 +10398,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -10403,8 +10422,8 @@ msgid "Bridge flow ratio" msgstr "Коефіцієнт потоку мостів" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -10429,7 +10448,7 @@ msgid "" "object's flow ratio." msgstr "" "Це значення визначає товщину внутрішнього мостового шару. Це перший шар над " -"розрідженим заповненням. \n" +"розрідженим заповненням.\n" "Зменште це значення трохи (наприклад 0.9) щоб покращити якість поверхні над " "розрідженим заповненням.\n" "\n" @@ -10442,7 +10461,7 @@ msgstr "Коефіцієнт потоку верхньої поверхні" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -10458,7 +10477,7 @@ msgid "Bottom surface flow ratio" msgstr "Коефіцієнт потоку нижньої поверхні" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -10484,8 +10503,8 @@ msgid "Only one wall on top surfaces" msgstr "Тільки одна стінка на верхніх поверхнях" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "" "Використовуйте лише одну стінку на плоскій верхній поверхні, щоб надати " "більше місця для верхнього заповнення" @@ -10518,7 +10537,7 @@ msgstr "Тільки одна стінка на першому шарі" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "" "Використовувати лише одну стінку на першому шарі, щоб надати більше місця " "структурі нижнього заповнення" @@ -10558,7 +10577,7 @@ msgid "Reverse only internal perimeters" msgstr "Реверс тільки внутрішніх периметрах" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -10590,9 +10609,9 @@ msgstr "Мости на цекованих отворах" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "Ця опція створює перемички для зенкованих отворів, що дозволяє друкувати їх " "без підтримки. Доступні наступні режими\n" @@ -10629,13 +10648,13 @@ msgstr "" msgid "Classic mode" msgstr "Класичний режим" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "Увімкнути цей параметр для використання класичного режиму" msgid "Slow down for overhang" msgstr "Сповільнюватись для нависань" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "" "Увімкнути цей параметр для уповільнення друку при різних кутів нависань" @@ -10645,11 +10664,11 @@ msgstr "Уповільнення для нависаючих периметрі #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10690,7 +10709,7 @@ msgid "External" msgstr "Зовнішні" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10718,7 +10737,7 @@ msgstr "" msgid "Brim width" msgstr "Ширина кайми" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "Відстань від моделі до останньої зовнішньої лінії кайми" msgid "Brim type" @@ -10739,7 +10758,7 @@ msgstr "Зазор між каймою та об'єктом" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "" "Зазор між першою внутрішньою лінією кайми та об'єктом може сприяти легшому " "відокремленню кайми" @@ -10754,12 +10773,12 @@ msgid "Brim ear max angle" msgstr "Максимальний кут вушка кайми" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "Максимальний кут, за якого з'являється вушко кайми.\n" -"Якщо встановлено на 0, кайма не буде створена. \n" +"Якщо встановлено на 0, кайма не буде створена.\n" "Якщо встановлено ~180, то кайма буде створена на всіх ділянках, окрім прямих." msgid "Brim ear detection radius" @@ -10768,7 +10787,7 @@ msgstr "Радіус виявлення вушка кайма" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "Геометрія буде оброблена перед детектуванням гострих кутів. Цей параметр " "вказує мінімальну довжину відхилення для обробки.\n" @@ -10807,7 +10826,7 @@ msgstr "" "друку. Якщо цей вираз оцінюється як Правда, цей профіль вважається сумісним " "з активним профілем друку." -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "Послідовність друку, шар за шаром або об'єкт за об'єктом" msgid "By layer" @@ -10819,7 +10838,7 @@ msgstr "Кожен об'єкт окремо" msgid "Intra-layer order" msgstr "Внутрішній порядок шарів" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "Друк замовлення в один шар" msgid "As object list" @@ -10832,7 +10851,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "Увімкніть цю опцію, щоб уповільнити швидкість друку та зробити кінцевий час " "шару не коротше порога часу шару в \"Max fan speed threshold\", щоб шар міг " @@ -10844,7 +10863,7 @@ msgstr "Звичайний друк" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "" "Прискорення за умовчанням як для звичайного друку, так і для переміщення за " "виключенням першого шару" @@ -10852,13 +10871,13 @@ msgstr "" msgid "Default filament profile" msgstr "Профіль стандартного філаменту" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "Профіль стандартного філаменту при перемиканні на цей профіль машини" msgid "Default process profile" msgstr "Профіль за промовчанням" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "Профіль за промовчанням при перемиканні на цей профіль машини" msgid "Activate air filtration" @@ -10872,21 +10891,21 @@ msgid "Fan speed" msgstr "Швидкість вентилятора" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "" "Швидкість вентилятора відсмоктування під час друку. Ця швидкість перезапише " "швидкість у користувацькому G-коді філаменту" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "Швидкість витяжного вентилятора після завершення друку" msgid "No cooling for the first" msgstr "Не охолоджувати перші" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "Вимкнути всі вентилятори охолодження для певної кількості перших шарів. " "Вентилятор охолодження першого шару зазвичай вимкнений, щоб покращити " @@ -10896,8 +10915,8 @@ msgid "Don't support bridges" msgstr "Не підтримувати мости" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "Не підтримуйте всю площу мосту, тому що підтримка буде дуже великою.Міст\n" "зазвичай можна друкувати безпосередньо без підтримки, якщо не дуже довго" @@ -10945,20 +10964,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -11011,56 +11030,44 @@ msgstr "Відфільтровувати маленькі внутрішні м msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "Ця опція може допомогти зменшити утворення ефект зморщування верхнього шару " "на верхніх поверхнях у моделях із сильним нахилом або вигнутими формами.\n" -"\n" "За замовчуванням малі внутрішні мости відфільтровуються, і внутрішнє " "суцільне заповнення друкується безпосередньо поверх розрідженого заповнення. " "У більшості випадків це працює добре, прискорюючи друк без значного " "погіршення якості верхньої поверхні.\n" -"\n" "Однак у моделях із сильним нахилом або вигнутими формами, особливо якщо " "використовується занадто низька щільність розрідженого заповнення, це може " "призвести до загортання незакріпленого суцільного заповнення, викликаючи " "зморщування.\n" -"\n" "Увімкнення обмеженої фільтрації або її відключення дозволить друкувати " "внутрішні шари мостів поверх злегка незакріпленого внутрішнього суцільного " "заповнення. Нижче наведені параметри контролю чутливості фільтрації, тобто " "вони визначають, де створюватимуться внутрішні мости.\n" -"\n" "1. Фільтрація - увімкнення цієї опції. Це поведінка за замовчуванням, яка " "добре працює в більшості випадків.\n" -"\n" "2. Обмежена фільтрація - створює внутрішні мости на сильно нахилених " "поверхнях, уникаючи зайвих мостів. Це добре підходить для складних моделей.\n" -"\n" "3. Без фільтрації - створює внутрішні мости на кожному потенційному " "внутрішньому нависанні. Цей параметр корисний для моделей із сильно " "нахиленою верхньою поверхнею, однак у більшості випадків створює занадто " @@ -11090,20 +11097,20 @@ msgstr "" msgid "End G-code" msgstr "Завершальний G-code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "Завершальний G-code, коли закінчити весь друк" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "Між G-кодами об’єктів" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." msgstr "" "Вставити G-код між об’єктами. Цей параметр буде врахований лише тоді, коли " "ви друкуєте свої моделі по об’єктах" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "Завершальний G-code, коли закінчите друк цієї нитки" msgid "Ensure vertical shell thickness" @@ -11137,7 +11144,7 @@ msgstr "Помірно" msgid "Top surface pattern" msgstr "Шаблон верхньої поверхні" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "Шаблон ліній заповнення верхньої поверхні" msgid "Concentric" @@ -11167,7 +11174,7 @@ msgstr "Спіральна октограма" msgid "Bottom surface pattern" msgstr "Шаблон нижньої поверхні" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "Шаблон ліній заповнення нижньої поверхні, крім заповнення мостів" msgid "Internal solid infill pattern" @@ -11215,7 +11222,7 @@ msgid "Small perimeters threshold" msgstr "Поріг малих периметрів" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" "При цьому встановлюється поріг для невеликої довжини периметра. Порігове за " "замовчуванням - 0 мм" @@ -11224,7 +11231,7 @@ msgid "Walls printing order" msgstr "Послідовність друку стінок" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -11238,7 +11245,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -11247,7 +11254,7 @@ msgid "" "\n" " " msgstr "" -"Послідовність друку внутрішніх (inner) та зовнішніх (outer) стін. \n" +"Послідовність друку внутрішніх (inner) та зовнішніх (outer) стін.\n" "\n" "Використовуйте внутрішню/зовнішню для найкращих виступів. Це пов'язано з " "тим, що стіни, які виступають, можуть прилипати до сусіднього периметра під " @@ -11263,7 +11270,7 @@ msgstr "" "щонайменше 3 стіни, оскільки спочатку друкуються внутрішні стіни, починаючи " "з 3-го периметра, потім зовнішній периметр і, нарешті, перший внутрішній " "периметр. У більшості випадків цей параметр рекомендується використовувати " -"замість параметра Зовнішній/Внутрішній. \n" +"замість параметра Зовнішній/Внутрішній.\n" "\n" "Використовуйте опцію Зовнішня/Внутрішня для отримання такої ж якості " "зовнішньої стіни і точності розмірів, як і в опції Внутрішня/Зовнішня/" @@ -11431,7 +11438,7 @@ msgstr "" msgid "Extruder Color" msgstr "Колір екструдера" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "Використовується лише як візуальна допомога в інтерфейсі користувача" msgid "Extruder offset" @@ -11440,12 +11447,13 @@ msgstr "Зміщення екструдера" msgid "Flow ratio" msgstr "Коефіцієнт потоку" +#, fuzzy msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "Матеріал може мати об'ємну зміну після перемикання між розплавленим станом " "та кристалічним станом. Це налаштування пропорційно змінює весь екструзійний " @@ -11453,12 +11461,13 @@ msgstr "" "0,95 до 1,05. Можливо, ви можете налаштувати це значення, щоб отримати " "хорошу плоску поверхню, коли є невелике переповнення або недолив" +#, fuzzy msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -11483,7 +11492,7 @@ msgstr "" "Включити випередження тиску, результат автоматичного калібрування буде " "перезаписано після увімкнення." -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "" "Випередження тиску (Klipper) або Коефіцієнт лінійного випередження (Marlin)" @@ -11551,19 +11560,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" "Додайте набори значень корекції тиску (PA), об'ємних швидкостей подачі та " "прискорень, при яких вони були виміряні, розділені комами. Один набір " @@ -11590,8 +11598,7 @@ msgstr "" "друкуєте і з меншим прискоренням, тим ширший діапазон допустимих значень PA. " "Якщо різниця не помітна, використовуйте значення PA із швидшого тесту.\n" "3. Введіть трійки значень PA, Flow і Acceleration у це текстове поле та " -"збережіть профіль філамента.\n" -"\n" +"збережіть профіль філамента." msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)" @@ -11611,9 +11618,9 @@ msgid "Pressure advance for bridges" msgstr "Випередження тиску для мостів" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -11636,8 +11643,9 @@ msgid "Keep fan always on" msgstr "Тримати вентилятор завжди увімкненим" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "Якщо увімкнути цей параметр, вентилятор охолодження деталі ніколи не " "будезупинятиметься і працюватиме\n" @@ -11650,24 +11658,20 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "Якщо увімкнено, цей параметр гарантуватиме, що зовнішні периметри не " "сповільнюються для дотримання мінімального часу шару. Це особливо корисно в " "наступних випадках:\n" -"\n" "1. Для запобігання змінам блиску під час друку глянцевими філаментами\n" "2. Щоб уникнути змін у швидкості друку зовнішніх стінок, які можуть " "спричинити незначні дефекти, схожі на Z-ефект\n" "3. Щоб уникнути друку на швидкостях, які спричиняють VFAs (дрібні артефакти) " -"на зовнішніх стінках\n" -"\n" +"на зовнішніх стінках" msgid "Layer time" msgstr "Час шару" @@ -11675,7 +11679,7 @@ msgstr "Час шару" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "Вентилятор охолодження деталі буде включений для шарів, розрахунковий " "часяких менше цього значення. Швидкість вентилятора інтерполюється між " @@ -11707,7 +11711,7 @@ msgstr "" msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "Це налаштування визначає, скільки обсягу нитки може бути розплавлено та " "екструдовано за секунду. Швидкість друку обмежена максимальною об'ємною " @@ -11723,7 +11727,7 @@ msgstr "Час завантаження філаменту" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Час завантаження нового філамента при його зміні. Зазвичай застосовується " "для одноекструдерних принтерів з підтримкою багатоматеріального друку. Для " @@ -11736,7 +11740,7 @@ msgstr "Час вивантаження філаменту" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "Час вивантаження старого філаменту під час зміни філаменту. Зазвичай " "застосовується для одноекструдерних багатоматеріальних машин. Для змінників " @@ -11749,16 +11753,17 @@ msgstr "" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "Час, необхідний для перемикання інструментів. Зазвичай застосовується для " "змінників інструментів або багатофункціональних машин. Для одноекструдерних " "машин з підтримкою кількох матеріалів зазвичай становить 0. Використовується " "лише для статистики" +#, fuzzy msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "" "Діаметр філаменту використовується для розрахунку екструзії в gcode, тому " "він важливий і має бути точним" @@ -11831,7 +11836,7 @@ msgid "Unloading speed" msgstr "Швидкість вивантаження" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "" "Швидкість, яка використовується для видавлення філаменту на вежі протирання " @@ -11850,8 +11855,8 @@ msgid "Delay after unloading" msgstr "Затримка після виведення" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "Час очікування після виведення філаменту. Може допомогти отримати надійну " @@ -11878,7 +11883,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Відстань штампування, виміряна від центру охолоджувальної трубки" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11933,7 +11938,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "Виконати накат при використанні багатофункціонального принтера (тобто, коли " "в налаштуваннях принтера знято прапорець з опції \"Мультиматеріал для одного " @@ -11944,39 +11949,39 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "Об'єм накату багатофункціонального інструменту" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "Об'єм, який потрібно виштовхнути перед зміною інструменту." msgid "Multi-tool ramming flow" msgstr "Багатоінструментальний потік накату" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "Потік використовується для накату нитки перед зміною інструменту." msgid "Density" msgstr "Щільність" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "Щільність філаменту. Тільки для статистики" msgid "g/cm³" msgstr "г/см³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "Тип матеріалу філаменту" msgid "Soluble material" msgstr "Розчинний матеріал" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "Розчинний матеріал зазвичай використовується для друку підтримки" msgid "Support material" msgstr "Матеріал підтримки" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "Допоміжний матеріал зазвичай використовується для друку підтримки" msgid "Softening temperature" @@ -11984,8 +11989,8 @@ msgstr "Температура розм'якшення" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "Матеріал м’якшує при цій температурі, тому, коли температура столу рівна або " "вища за цей показник, настійно рекомендується відкрити передні двері та/або " @@ -11994,7 +11999,7 @@ msgstr "" msgid "Price" msgstr "Ціна" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "Ціна філаменту. Тільки для статистики" msgid "money/kg" @@ -12003,7 +12008,7 @@ msgstr "грн/кг" msgid "Vendor" msgstr "Виробник" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "Виробник філаменту. Для показу, тільки для відображення" msgid "(Undefined)" @@ -12014,7 +12019,7 @@ msgstr "Напрямок часткового заповнення" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Кут для часткового заповнення, який контролює початок або основний напрямок " "лінії" @@ -12024,7 +12029,7 @@ msgstr "Напрямок cуцільного заповнення" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "" "Кут шаблону суцільного заповнення, який контролює початок або основний " "напрямок лінії" @@ -12041,7 +12046,7 @@ msgstr "Щільність часткового заповнення" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" "Щільність внутрішнього часткового заповнення, 100% перетворює все часткове " "заповнення на суцільне заповнення, і буде застосовано шаблон внутрішнього " @@ -12050,7 +12055,7 @@ msgstr "" msgid "Sparse infill pattern" msgstr "Шаблон часткового заповнення" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "Шаблон ліній внутрішнього часткового заповнення" msgid "Grid" @@ -12123,7 +12128,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -12155,7 +12160,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -12174,23 +12179,23 @@ msgstr "" msgid "0 (Simple connect)" msgstr "0 (просте підключення)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "Прискорення зовнішніх периметрів" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "Прискорення внутрішніх периметрів" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "Прискорення холостого руху" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "" "Прискорення заповнення верхньої поверхні. Використання меншого значенняможе " "покращити якість верхньої поверхні" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "" "Прискорення зовнішнього периметра. Використання меншого значення може " "поліпшити якість" @@ -12223,7 +12228,7 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "" "Прискорення першого шару. Використання меншого значення може покращити " "прилипання до робочої пластини" @@ -12231,7 +12236,7 @@ msgstr "" msgid "Enable accel_to_decel" msgstr "Увімкнути прискорення до уповільнення" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "" "Max \"прискорення до уповільнення\" для Klipper буде скориговано автоматично" @@ -12240,25 +12245,25 @@ msgstr "прискорення до уповільнення" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "Klipper-ів max_accel_to_decel буде скориговано на цей %% прискорення" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "Ривок зовнішніх периметрів" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "Ривок внутрішніх периметрів" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "Ривок для верхньої поверхні" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "Ривок для заповнення" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "Ривок для першого шару" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "Ривок для переміщення" msgid "" @@ -12273,24 +12278,24 @@ msgstr "Висота першого шару" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "" "Висота першого шару. Невелике збільшення висоти першого шару може покращити " "прилипання до робочої пластини" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "Швидкість першого шару, за винятком зони суцільного заповнення" msgid "Initial layer infill" msgstr "Заповнення першого шару" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "Швидкість зони суцільного заповнення першого шару" msgid "Initial layer travel speed" msgstr "Швидкість переміщення першого шару" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "Швидкість переміщення першого шару" msgid "Number of slow layers" @@ -12306,7 +12311,7 @@ msgstr "" msgid "Initial layer nozzle temperature" msgstr "Температура сопла першого шару" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "" "Температура сопла для друку першого шару під час використання цього філаменту" @@ -12335,7 +12340,7 @@ msgstr "Швидкість вентилятора під час друку пі msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -12369,7 +12374,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "" "Випадкове тремтіння під час друку зовнішнього периметра, так що поверхня " "була шорсткої. Цей параметр керує нечіткою оболонкою" @@ -12388,7 +12393,7 @@ msgstr "Товщина Шорсткої Поверхні" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "" "Ширина, в межах якої відбувається тремтіння. Небажано бути нижчеширини лінії " "зовнішнього периметра" @@ -12398,21 +12403,21 @@ msgstr "Відстань між точками Шорсткої Поверхні msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "" "Середня відстань між випадковими точками, введеними на кожному відрізкулінії" msgid "Apply fuzzy skin to first layer" msgstr "Застосувати Шорстку Поверхню до першого шару" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "Чи потрібно застосовувати Шорстку Поверхню до першого шару" msgid "Fuzzy skin noise type" msgstr "Тип шуму Шорсткої Поверхні" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -12493,7 +12498,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "" "Швидкість заповнення зазору. Зазор зазвичай має неправильну ширину лінії та " "має друкуватися повільніше" @@ -12515,7 +12520,7 @@ msgstr "Дугові траекторії" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -12524,7 +12529,7 @@ msgid "" "to line segments by the firmware." msgstr "" "Увімкніть цю опцію, щоб отримати файл G-коду з ходами G2 і G3. Допуск на " -"припасування такий самий, як і роздільна здатність. \n" +"припасування такий самий, як і роздільна здатність.\n" "\n" "Примітка: Для машин з кліперним керуванням цю опцію рекомендується вимкнути. " "Klipper не використовує команди дуги, оскільки вони знову розбиваються " @@ -12535,7 +12540,8 @@ msgstr "" msgid "Add line number" msgstr "Додати номер рядка" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "" "Ця опція використовується для додавання номера рядка (Nx) на початку " "кожногорядки G-Code" @@ -12545,7 +12551,7 @@ msgstr "Сканувати перший шар" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "" "Увімкнення цього параметра дозволяє камері на принтері перевіряти " "якістьпершого шару" @@ -12555,7 +12561,7 @@ msgstr "Тип сопла" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "" "Металевий матеріал сопла. Це визначає зносостійкість сопла та який тип нитки " "можна друкувати" @@ -12588,7 +12594,7 @@ msgstr "" msgid "Printer structure" msgstr "Структура принтера" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "Фізична структура та компоненти пристрою для друку" msgid "CoreXY" @@ -12618,15 +12624,16 @@ msgstr "" "Увімкніть цю опцію, якщо принтер має вентилятор охолодження допоміжної " "частини. Команда G-коду: M106 P2 S(0-255)." +#, fuzzy msgid "" "Start the fan this number of seconds earlier than its target start time (you " "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "Запустіть вентилятор на таку кількість секунд раніше за цільовий час початку " @@ -12666,7 +12673,7 @@ msgstr "" msgid "Time cost" msgstr "Вартість часу" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "Вартість друку за годину" msgid "money/h" @@ -12695,7 +12702,7 @@ msgstr "" msgid "G-code flavor" msgstr "Тип G-коду" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "З яким gcode сумісний принтер" msgid "Klipper" @@ -12704,14 +12711,14 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "Принтер модифікований гранулами" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" "Увімкніть цей параметр, якщо ваш принтер використовує гранули, а не філамент" msgid "Support multi bed types" msgstr "Підтримка різних типів поверхонь стола" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "" "Увімкніть цю опцію, якщо ви хочете використовувати кілька типів поверхонь " "стола" @@ -12720,7 +12727,7 @@ msgid "Label objects" msgstr "Маркувати об'єкти" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -12734,8 +12741,8 @@ msgstr "" msgid "Exclude objects" msgstr "Виключити об'єкт" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" -msgstr "Увімкнути цей параметр для додавання команди ВИКЛЮЧИТИ ОБ'ЄКТ у g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." +msgstr "Увімкнути цей параметр для додавання команди ВИКЛЮЧИТИ ОБ'ЄКТ у G-code" msgid "Verbose G-code" msgstr "Докладний G-код" @@ -12764,7 +12771,7 @@ msgid "Infill combination - Max layer height" msgstr "Комбінація заповнення - Максимальна висота шару" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -12824,7 +12831,7 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "Площа верхнього суцільного заповнення злегка збільшується, щоб накладатися " "на стінку для кращого зчеплення та зменшення прогалин у місцях прилягання " @@ -12832,13 +12839,13 @@ msgstr "" "мінімізації таких прогалин. Значення у відсотках відносно ширини лінії " "часткового заповнення" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "Швидкість внутрішнього часткового заповнення" msgid "Inherits profile" msgstr "Успадковує профіль" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "Назва батьківського профілю" msgid "Interface shells" @@ -12847,7 +12854,7 @@ msgstr "Інтерфейсні оболонки" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "Примусове створення твердих оболонок між сусідніми матеріалами/об'ємами. " "Корисна для друку кількома екструдерами напівпрозорими матеріалами або " @@ -12865,7 +12872,7 @@ msgstr "Глибина взаємного взаємодії сегментов msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "Глибина зчеплення сегментованої області. Буде ігноруватися, якщо " @@ -12956,7 +12963,7 @@ msgstr "Весь суцільний шар" msgid "Ironing Pattern" msgstr "Шаблон прасування" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "Шаблон, який буде використовуватися під час прасування" msgid "Ironing flow" @@ -12964,7 +12971,7 @@ msgstr "Плавний потік" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "" "Кількість матеріалу, що видавлюється під час розглажування. Щодо " "потокунормальної висоти шару. Надто високе значення призводить до " @@ -12973,7 +12980,7 @@ msgstr "" msgid "Ironing line spacing" msgstr "Крок лінії розглажування" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "Відстань між лініями розглажування" msgid "Ironing inset" @@ -12981,7 +12988,7 @@ msgstr "Вставка прасування" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" "Відстань до збереження від країв. Значення 0 встановлює її рівною половині " "діаметра сопла" @@ -12989,7 +12996,7 @@ msgstr "" msgid "Ironing speed" msgstr "Швидкість розглажування" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "Швидкість друку прасувальних ліній" msgid "Ironing angle" @@ -13002,7 +13009,7 @@ msgstr "" "Прасування виконується під кутом. Від'ємне число вимикає цю функцію і " "використовує метод за замовчуванням." -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "Ця частина gcode вставляється при кожній зміні шару після підйому z" msgid "Supports silent mode" @@ -13010,7 +13017,7 @@ msgstr "Підтримує безшумний режим" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "" "Чи підтримує машина безшумний режим, у якому машина використовує " "меншеприскорення для друку" @@ -13023,26 +13030,27 @@ msgstr "Обмеження машини" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "Якщо увімкнено, ліміти машини будуть виводитися у файл G-коду.\n" "Цей параметр буде проігноровано, якщо у параметрах g-коду встановлено " "значення Klipper." +#, fuzzy msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "Цей G-код буде використовуватися як код для друку паузи.Користувач може " "вставити паузу G-коду в gcode viewer" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "Цей G-код буде використовуватися як код користувача" msgid "Small area flow compensation (beta)" msgstr "Компенсація потоку на малих площах (бета)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "Увімкніть компенсацію потоку для невеликих ділянок заповнення" msgid "Flow Compensation Model" @@ -13158,14 +13166,14 @@ msgstr "Максимальне прискорення для втягуванн msgid "Maximum acceleration for travel" msgstr "Максимальне прискорення руху" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "" "Максимальне прискорення для пересування (M204 T), застосовується лише до " "Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "Швидкість вентилятора охолодження деталі може бути збільшена, якщо " "увімкненоавтоматичне охолодження. Це максимальне обмеження швидкості " @@ -13175,8 +13183,8 @@ msgid "Max" msgstr "Макс" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "" "Найбільша висота шару, що друкується, для екструдера. Використовуваний tp " "обмежує максимальну висоту шару при включенні адаптивної висоти шару" @@ -13190,23 +13198,23 @@ msgid "" "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -13222,7 +13230,7 @@ msgstr "" "дозволені більші зміни швидкості екструзії, що призводить до швидшого " "переходу від однієї швидкості до іншої.\n" "\n" -"Значення 0 вимикає цю функцію. \n" +"Значення 0 вимикає цю функцію.\n" "\n" "Для високошвидкісних, високопродуктивних принтерів з прямим приводом " "(наприклад, Bambu lab або Voron) це значення зазвичай не потрібне. Однак " @@ -13234,7 +13242,7 @@ msgstr "" "\n" "Для повільніших принтерів без попереднього випередження тиску значення має " "бути значно нижчим. Значення 10-15 мм3/с2 є хорошою відправною точкою для " -"екструдерів з прямим приводом і 5-10 мм3/с2 для екструдерів типу Боудена. \n" +"екструдерів з прямим приводом і 5-10 мм3/с2 для екструдерів типу Боудена.\n" "\n" "Ця функція відома як \"Вирівнювач тиску\" в слайсерах Prusa.\n" "\n" @@ -13246,13 +13254,14 @@ msgstr "мм³/с²" msgid "Smoothing segment length" msgstr "Довжина сегмента згладжування" +#, fuzzy msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -13279,7 +13288,7 @@ msgstr "" "швидкості на зовнішньо видимих нависаннях, без впливу на швидкість друку " "елементів, які не будуть видимі для користувача." -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "Мінімальна швидкість вентилятора охолодження деталі" msgid "" @@ -13299,8 +13308,8 @@ msgid "Min" msgstr "Мін" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "" "Найнижча висота шару, що друкується, для екструдера. Використовуваний tp " "обмежує мінімальну висоту шару при включенні адаптивної висоти шару" @@ -13343,7 +13352,7 @@ msgstr "" msgid "Nozzle volume" msgstr "Об'єм сопла" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "Об'єм сопла між різцем та кінцем сопла" msgid "Cooling tube position" @@ -13389,7 +13398,7 @@ msgstr "Додаткова відстань заведення" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "Якщо встановлено на нуль, відстань, на яку філамент переміщується з " @@ -13409,7 +13418,7 @@ msgstr "Зменшити втягування заповнення" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "Повністю відключає втягування при переміщенні в зоні заповнення. При цьому " "витікання не буде помітно. Це може зменшити час втягування складної моделі " @@ -13425,7 +13434,7 @@ msgstr "" msgid "Filename format" msgstr "Формат імені файлу" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "" "Користувач може самостійно визначити ім'я файлу проекту під час експорту" @@ -13452,7 +13461,7 @@ msgstr "Зробити нависання можливими для друку - msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "Максимальна площа отвору в основі моделі перед заповненням його конічним " "матеріалом. Значення 0 заповнює всі отвори в основі моделі." @@ -13482,10 +13491,10 @@ msgstr "" "Ширина лінії внутрішньої стінки. Якщо виражається у %, вона буде розрахована " "по діаметру сопла." -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "Швидкість внутрішнього периметра" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "Кількість стінок кожного шару" msgid "Alternate extra wall" @@ -13493,20 +13502,20 @@ msgstr "Чергувати додаткову стінку" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" "Цей параметр додає додаткову стінку до кожного другого шару. Таким чином, " "заповнення затискається вертикально між стінками, що призводить до більш " -"міцних відбитків. \n" +"міцних відбитків.\n" "\n" "Якщо цей параметр увімкнено, параметр Забезпечити вертикальну товщину " -"оболонки потрібно вимкнути. \n" +"оболонки потрібно вимкнути.\n" "\n" "Використання блискавичної заливки разом з цією опцією не рекомендується, " "оскільки кількість заливки, до якої можна прикріпити додаткові периметри, " @@ -13543,26 +13552,26 @@ msgstr "Варіант принтера" msgid "Raft contact Z distance" msgstr "Відстань Z контакту підкладки" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "" "Зазор Z між об'єктом та підкладкою. Ігнорується для розчинного інтерфейсу" msgid "Raft expansion" msgstr "Розширення підкладки" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "Розширити всі шари підкладки в площині XY" msgid "Initial layer density" msgstr "Початкова щільність шару" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "Щільність першого шару підкладки або підтримки" msgid "Initial layer expansion" msgstr "Розширення початкового шару" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "" "Розширити перший шар підкладки або підтримки, щоб покращити прилипання до " "робочої поверхні" @@ -13572,15 +13581,16 @@ msgstr "Кількість шарів підкладки" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "Об'єкт буде піднятий такою кількістю опорних шарів. Використовуйте цю " "функцію, щоб уникнути обтікання під час друку ABS" +#, fuzzy msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "Контур G-коду генерується після спрощення контуру моделей, щоб уникнути " "надмірної кількості точок і ліній G-коду. Менші значення означають вищу " @@ -13591,7 +13601,7 @@ msgstr "Поріг відстані в дорозі" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "" "Втягувати тільки в тому випадку, якщо відстань переміщення перевищує цей " "поріг" @@ -13600,14 +13610,14 @@ msgid "Retract amount before wipe" msgstr "Обсяг втягування перед протиранням" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "" "Довжина швидкого втягування перед протиранням, відносно довжини втягування" msgid "Retract when change layer" msgstr "Втягування при зміні шару" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "Примусове втягування при зміні шару" msgid "Retract on top layer" @@ -13615,7 +13625,7 @@ msgstr "Ретракт на верхньому шарі" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" "Примусове втягування на верхньому шарі. Вимкнення може запобігти засміченню " "на дуже повільних візерунках із малими переміщеннями, таких як крива " @@ -13632,12 +13642,12 @@ msgstr "" "витікання під час тривалого переміщення. Встановіть нуль, щоб відключити " "втягування" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "Довге втягування при відрізанні (експериментально)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -13650,8 +13660,8 @@ msgid "Retraction distance when cut" msgstr "Відстань втягування при відрізанні" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "" "Експериментальна функція. Відстань втягування перед відрізанням під час " "зміни філаменту" @@ -13662,29 +13672,29 @@ msgstr "Висота Z-підйому" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "Під час кожного втягування сопло трохи піднімається, щоб створити зазор між " "соплом та об’єктом друку. Це запобігає зіткненню сопла з об’єктом друку під " "час переміщення. Використання спіральної лінії підняття по осі Z може " "запобігти появі ниток" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Межа зниження Z-hop" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "Z-hop буде активуватися лише тоді, коли Z перевищує це значення і " "знаходиться нижче параметра “Верхня межа зниження Z”." -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Верхня межа зниження Z" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "Якщо це значення позитивне, то Z-hop буде діяти лише тоді, коли Z перевищує " "параметр “Межа зниження Z” і знаходиться нижче цього значення" @@ -13692,9 +13702,6 @@ msgstr "" msgid "Z-hop type" msgstr "Тип Z-підйому" -msgid "Z hop type" -msgstr "Тип Z-стрибка" - msgid "Slope" msgstr "Схил" @@ -13705,8 +13712,8 @@ msgid "Traveling angle" msgstr "Кут переміщення" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" "Кут переміщення для типів підйому Z Slope і Spiral. Встановлення значення " "90° призведе до звичайного підйому" @@ -13735,7 +13742,7 @@ msgid "On surfaces" msgstr "На поверхнях" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "Увімкнути поведінку стрибків Z. На цей параметр впливають попередні " @@ -13773,15 +13780,15 @@ msgstr "" msgid "Retraction Speed" msgstr "Швидкість ретракту" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "Швидкість ретракту" msgid "De-retraction Speed" msgstr "Швидкість компенсуючого ретракту" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "" "Швидкість перезарядки філпмента в екструдер. Нуль означає ту ж швидкість при " "ретракті" @@ -13804,14 +13811,14 @@ msgid "Disable set remaining print time" msgstr "Вимкнути опцію Час друку що залишився" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "" "Вимкнути генерацію M73: Встановити час друку, що залишився, у кінцевому gcode" msgid "Seam position" msgstr "Розташування шва" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Початкове положення для друку кожної частини зовнішнього периметра" msgid "Nearest" @@ -13906,7 +13913,7 @@ 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 " +"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 " @@ -13973,7 +13980,7 @@ msgid "Role base wipe speed" msgstr "Швидкість протирання залежно від типу" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -14000,7 +14007,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -14010,7 +14017,7 @@ msgstr "" "зовнішнього периметра під час друку з опцією друку стінок \"Зовнішній/" "внутрішній\" або \"Внутрішній/зовнішній/внутрішній\", втягування виконується " "злегка зсередини від початку зовнішнього периметра. Таким чином, будь-який " -"потенційний надлишок накату приховується від зовнішньої поверхні. \n" +"потенційний надлишок накату приховується від зовнішньої поверхні.\n" "\n" "Це корисно під час друку із зовнішнім/внутрішнім або внутрішнім/зовнішнім/" "внутрішнім друком стінок, оскільки в цих режимах, найімовірніше, зовнішній " @@ -14021,9 +14028,9 @@ msgstr "Швидкість протирання" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "Швидкість протирання визначається налаштуванням швидкості, зазначеної в " "данійконфігурації. Якщо це значення виражено у відсотках (наприклад, 80%), " @@ -14049,7 +14056,7 @@ msgstr "" msgid "Skirt height" msgstr "Висота спідниці" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Скільки буде шарів спідниці. Зазвичай лише один шар" msgid "Single loop draft shield" @@ -14067,7 +14074,7 @@ msgstr "Захисний екран" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -14077,7 +14084,7 @@ msgid "" msgstr "" "Захисний екран буде корисним для захисту друку ABS або ASA від викривлення " "та відлипання від столу в наслідок протягу повітря. Зазвичай він потрібен " -"для відкритих принтерів, які не мають закритої камери. \n" +"для відкритих принтерів, які не мають закритої камери.\n" "\n" "Увімкнено = Спідниця буде тої ж висоти що і найвищий об'єкт друку. Інакше " "буде застосовано параметр \"Висота спідниці\"\n" @@ -14107,7 +14114,7 @@ msgstr "Роздільна" msgid "Skirt loops" msgstr "Кількість контурів спідниці" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Кількість контурів для спідниці. Нуль означає відключення спідниці" msgid "Skirt speed" @@ -14125,22 +14132,23 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "Мінімальна довжина подачі філаменту у мм при друці спідниці. Нуль означає, " "що ця функція буде вимкнена.\n" "\n" "Значення більше нуля доречно використовувати, якщо принтер налаштований без " -"підготовчої лінії. \n" +"підготовчої лінії.\n" "Остаточна кількість контурів не враховується при упорядкуванні або перевірці " "відстані об'єктів. Збільшіть кількість контурів у такому разі." msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "Швидкість друку в експортованому gcode буде уповільнена, коли розрахунковий " "час шару менше цього значення, щоб отримати найкраще охолодження для цих " @@ -14151,7 +14159,7 @@ msgstr "Мінімальний поріг часткового заповнен msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "" "Ділянки часткового заповнення, менші за порогове значення, замінюються " "внутрішнім суцільним заповненням" @@ -14169,14 +14177,14 @@ msgstr "" "Ширина лінії внутрішнього суцільного заповнення. Якщо виражена у %, вона " "буде розрахована по діаметру сопла." -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "" "Швидкість внутрішнього твердого заповнення, а не верхньої та нижньої поверхні" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "Перехід спіраллю згладжує рух z зовнішнього контуру. І перетворює " "твердотільна модель в одностінний друк із суцільними нижніми шарами.Кінічна " @@ -14187,7 +14195,7 @@ msgstr "Плавна спіраль" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "Плавна спіраль згладжує переміщення по X та Y, що призводить до відсутності " "видимого шва, навіть у напрямках XY на стінах, які не є вертикальними" @@ -14198,7 +14206,7 @@ msgstr "Максимальне згладжування XY" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" msgid "Spiral starting flow ratio" @@ -14258,8 +14266,8 @@ msgstr "Зміна температури" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "Різниця температури, яка застосовується, коли екструдер не активний. " "Значення не використовується, якщо в налаштуваннях філаменту параметр " @@ -14277,7 +14285,7 @@ msgstr "" "Щоб зменшити час очікування після зміни інструмента, Orca може попередньо " "нагрівати наступний інструмент, поки поточний ще використовується. Цей " "параметр визначає час у секундах для попереднього нагрівання наступного " -"інструмента. \n" +"інструмента.\n" "\n" "Orca вставить команду M104 для завчасного нагрівання інструмента." @@ -14285,7 +14293,7 @@ msgid "Preheat steps" msgstr "Кроки підігріву" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "Вставляє кілька команд попереднього нагріву (наприклад, M104.1). Корисно " @@ -14294,16 +14302,16 @@ msgstr "" msgid "Start G-code" msgstr "Стартовий G-code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "Стартовий G-code під час запуску всієї печатки" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "Стартовий G-code при запуску друку цим філаментом" msgid "Single Extruder Multi Material" msgstr "Мульти-матеріальний (ММ) друк з одним екструдером" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "Використовувати одне сопло для друку декількома філаментами" msgid "Manual Filament Change" @@ -14324,18 +14332,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "Очищати на підготовчій вежі" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "Очистити від залишків філаменту на підготовчій вежі" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "Увімкнути накат нитки" msgid "No sparse layers (beta)" msgstr "Без розріджених шарів (бета)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -14407,9 +14415,9 @@ msgid "Enable support generation." msgstr "Увімкнути генерацію підтримки." msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "Normal (auto) і Tree (auto) використовуються для автоматичного створення " "підтримок. Якщо вибрано Normal (manual) або Tree (manual), будуть " @@ -14430,7 +14438,7 @@ msgstr "Дерево (ручні)" msgid "Support/object xy distance" msgstr "Підтримка/об'єкт XY відстань" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "Контролює відстань по XY між об’єктом та його опорою" msgid "Support/object first layer gap" @@ -14450,7 +14458,7 @@ msgstr "" msgid "On build plate only" msgstr "Тільки на робочій пластині" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "Не створюйте опору на поверхні моделі лише від столу" msgid "Support critical regions only" @@ -14472,13 +14480,13 @@ msgstr "Видалити невеликі виступи, які, можливо msgid "Top Z distance" msgstr "Верхня відстань Z" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "Зазор осі z між верхом підтримки та об'єктом" msgid "Bottom Z distance" msgstr "Нижня відстань Z" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "Зазор осі z між низом підтримки та об'єктом" msgid "Support/raft base" @@ -14486,7 +14494,7 @@ msgstr "База підтримки/підкладки" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "Філамент для друку підтримок та підкладки. «За замовчуванням» означає " "відсутність конкретного філаменту для підтримок та використання поточного " @@ -14521,7 +14529,7 @@ msgstr "Інтерфейс підтримки/підкладки" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" "Філамент для друку підтримки. «За замовчуванням» означає відсутність " "конкретного філаменту для друку підтримки, і використовується поточний " @@ -14530,13 +14538,13 @@ msgstr "" msgid "Top interface layers" msgstr "Верхній шар підтримки" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "Кількість верхніх шарів підтримки" msgid "Bottom interface layers" msgstr "Нижні шари підтримки" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "Кількість шарів інтерфейсу на дні" msgid "Same as top" @@ -14545,23 +14553,23 @@ msgstr "Так само, як вище" msgid "Top interface spacing" msgstr "Відстань між верхніми інтерфейсами" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "Відстань між лініями підтримки. Нуль означає суцільну підтримку" msgid "Bottom interface spacing" msgstr "Інтервал нижнього шару підтримки" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "" "Відстань між нижніми інтерфейсними лініями. Нуль означає суцільнийінтерфейс" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "Швидкість друку підтримки" msgid "Base pattern" msgstr "Основний шаблон" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "Лінія підтримки" msgid "Rectilinear grid" @@ -14576,7 +14584,7 @@ msgstr "Шаблон інтерфейсу" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "Шаблон підтримки. Шаблон за замовчуванням для нерозчинної підтримки - " "прямолінійний, у той час як шаблон за замовчуванням для розчинної підтримки- " @@ -14588,16 +14596,16 @@ msgstr "Прямолінійний черезрядковий" msgid "Base pattern spacing" msgstr "Інтервал основного шаблону" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "Відстань між лініями підтримки" msgid "Normal Support expansion" msgstr "Нормальне розширення підтримки" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Розширити (+) або зменшити (-) горизонтальний проліт підтримки" -msgid "Speed of support" +msgid "Speed of support." msgstr "Швидкість підтримки" msgid "" @@ -14640,7 +14648,7 @@ msgstr "Незалежна висота шарів підтримки" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "Опорний шар використовує висоту шару, що не залежить від шару об'єкта. Це " @@ -14671,8 +14679,8 @@ msgid "Tree support branch angle" msgstr "Кут гілки опори дерева" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "Цей параметр визначає максимальний кут нависань, який допускається для гілки " @@ -14719,8 +14727,8 @@ msgid "Adaptive layer height" msgstr "Адаптивна ширина шару" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "" "Включення цієї опції означає, що висота шару підтримки дерева, за " "виключенням першого, буде розрахована автоматично " @@ -14730,7 +14738,7 @@ msgstr "Автоматична ширина кайми" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "" "Увімкнення цієї опції означає, що ширина кайми для деревоподібної підтримки " "буде розрахована автоматично" @@ -14738,7 +14746,7 @@ msgstr "" msgid "Tree support brim width" msgstr "Ширина кайми деревоподібної підтримки" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "Відстань від гілки дерева до останньої зовнішньої лінії кайми" msgid "Tip Diameter" @@ -14784,7 +14792,7 @@ msgstr "Підтримка дерева із заповненням" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "" "Цей параметр визначає, чи слід додавати заповнення всередині " "великихПорожнини підтримки дерева" @@ -14798,7 +14806,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -14822,13 +14830,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -14854,7 +14862,7 @@ msgstr "" "якщо ви хочете керувати прогрівом камери у макросі запуску друку за " "відсутності активного нагрівача камери." -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "Температура сопла для шарів після першого" msgid "Detect thin wall" @@ -14862,20 +14870,20 @@ msgstr "Виявлення тонкої стінки" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "Виявляти тонкі стінки, товщина яких менше ніж ширина двох ліній і " "використовувати лише одну лінію для друку. Можуть бути надруковані не дуже " "добре, оскільки вони не являються замкнутим контуром" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "" "Цей gcode вставляється при зміні філаменту, включаючи команду T для запуску " "зміни інструменту" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "Цей gcode вставляється, коли змінюється роль екструзії" msgid "" @@ -14885,7 +14893,7 @@ msgstr "" "Ширина лінії для верхніх поверхонь. Якщо виражено у %, вона буде розрахована " "по діаметру сопла." -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "Швидкість суцільного заповнення верхньої поверхні" msgid "Top shell layers" @@ -14894,7 +14902,7 @@ msgstr "Шари верхньої оболонки" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "Це кількість суцільних шарів верхньої оболонки, включаючи верхнійповерхневий " "шар. Якщо товщина, розрахована за цим значенням, меншатовщини верхньої " @@ -14911,7 +14919,7 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "Кількість верхніх суцільних шарів збільшується при розрізанні, якщо товщина, " "обчислена шарами верхньої оболонки, тонша за це значення. Це дозволяє " @@ -14919,15 +14927,16 @@ msgstr "" "налаштування вимкнено і товщина верхньої оболонки повністюобмежена верхніми " "шарами оболонки" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "Швидкість переміщення, яка є швидше і без екструзії" msgid "Wipe while retracting" msgstr "Протирати під час втягування" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "Переміщуйте насадку по останньому шляху видавлювання при збиранні для " "очищеннявитеклого матеріалу на насадці. Це може мінімізувати великий " @@ -14938,20 +14947,20 @@ msgstr "Протяжність протирання" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." msgstr "" "Опишіть, як довго сопло буде рухатися вздовж останньої траєкторії під час " -"втягування. \n" +"втягування.\n" "\n" "Залежно від тривалості операції витирання, швидкості та тривалості " -"втягування екструдера/нитки, може знадобитися рух накату для нитки. \n" +"втягування екструдера/нитки, може знадобитися рух накату для нитки.\n" "\n" "Якщо встановити значення у параметрі \"Кількість втягування перед " "витиранням\" нижче, надлишкове втягування буде виконано перед витиранням, " @@ -14985,7 +14994,7 @@ msgstr "Об'єм підготовки" msgid "The volume of material to prime extruder on tower." msgstr "Об'єм матеріалу для підготовки екструдера на вежі." -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "Ширина підготовчої вежі" msgid "Wipe tower rotation angle" @@ -15021,7 +15030,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -15091,8 +15100,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "Цей об'єкт буде використаний для очищення сопла після зміни філаменту для " "економії філаменту та зменшення часу друку. В результаті кольори об'єктів " @@ -15128,9 +15137,9 @@ msgid "Idle temperature" msgstr "Температура очікування" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "Температура сопла, коли інструмент наразі не використовується в " "багатоголових налаштуваннях. Використовується лише тоді, коли у параметрах " @@ -15140,10 +15149,12 @@ msgstr "" msgid "X-Y hole compensation" msgstr "Компенсація отвору XY" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "Отвори об'єкта будуть вирощені або стиснуті в площині XY на задане Значення. " "Позитивне значення робить отвори більше. Негативне значення робить отвори " @@ -15153,11 +15164,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Компенсація контуру XY" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "Контур об'єкта буде збільшено або зменшено у площині XY на задане Значення. " "Позитивне значення робить контур більше. Негативне Зменшення контуру. Ця " @@ -15216,7 +15228,7 @@ msgstr "Формат мініатюр G-коду" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "" "Формат мініатюр G-коду: PNG для найкращої якості, JPG для найменшого " "розміру, QOI для прошивок з низьким об'ємом пам'яті" @@ -15225,10 +15237,10 @@ msgid "Use relative E distances" msgstr "Використовуйте відносні відстані E екструдера" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "Відносна екструзія рекомендується при використанні опції \"label_objects\". " "Деякі екструдери працюють краще, якщо ця опція не включена (режим абсолютної " @@ -15238,7 +15250,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "Класичний генератор стін виробляє стіни з постійною шириною екструзії, а для " "дуже тонких ділянок використовується заповнення прогалин. Двигун Arachne " @@ -15253,7 +15265,7 @@ msgstr "Довжина переходу до периметру" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "При переході між різними числами периметрів, коли деталь стає тонше, для " "поділу або з'єднання сегментів периметрів виділяєтьсяпевна кількість " @@ -15269,7 +15281,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "Запобігання переходу назад і вперед між однією додатковою стінкою та однієї " "менше. Це поле розширює діапазон ширини видавлювання до [Мінімальна ширина " @@ -15287,7 +15299,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "Коли створювати переходи між парним та непарним числом периметрів. Форма " "Клина з кутом більше цього параметра не буде мати переходів, і периметри Не " @@ -15300,7 +15312,7 @@ msgstr "Лічильник розподілу за периметрами" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "Кількість периметрів, що відраховується від центру, яким потрібно розкидати " "варіацію. Нижчі значення означають, що зовнішні периметри не змінюються по " @@ -15311,14 +15323,10 @@ msgstr "Мінімальний розмір об'єкта" msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" -"Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the minimum " -"feature size will be widened to the minimum wall width. It's expressed as a " -"percentage over nozzle diameter" msgid "Minimum wall length" msgstr "Мінімальна довжина стінок" @@ -15355,7 +15363,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "Ширина периметра, яка замінить тонкі елементи (відповідно до Мінімальним " "розміром елемента) моделі. Якщо мінімальна ширина периметра менше товщини " @@ -15366,9 +15374,9 @@ msgid "Detect narrow internal solid infill" msgstr "Виявлення вузького внутрішнього суцільного заповнення" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "Ця опція автоматично визначає вузькі ділянки внутрішню суцільного " "заповнення. Якщо цей параметр увімкнено, для ділянки буде застосовано " @@ -15402,7 +15410,7 @@ msgstr "Експортувати дані нарізки у папку." msgid "Load slicing data" msgstr "Завантажити дані про нарізку" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "Завантажити кешовані дані нарізки з каталогу" msgid "Export STL" @@ -15414,7 +15422,7 @@ msgstr "Експортувати об'єкти як єдиний STL." msgid "Export multiple STLs" msgstr "Експортувати декілька STL" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "Експортувати об'єкти як декілька STL у папку" msgid "Slice" @@ -15437,14 +15445,14 @@ msgstr "Перевірка зворотної сумісності принте msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" "Перевірити, чи поточний принтер сумісний із попередніми моделями у списку" msgid "Load default filaments" msgstr "Завантажити стандартні філаменти" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "Завантажити перший філамент як стандартний для тих, що не завантажені" msgid "Minimum save" @@ -15468,7 +15476,8 @@ msgstr "максимальний час нарізки на стіл у секу msgid "No check" msgstr "Без перевірки" -msgid "Do not run any validity checks, such as gcode path conflicts check." +#, fuzzy +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "" "Не виконуйте перевірки дійсності, наприклад, перевірку конфліктів шляхуgcode." @@ -15502,17 +15511,17 @@ msgstr "Упорядкувати параметри" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "Параметри упорядкування: 0-disable, 1-enable, інші-auto" -msgid "Repetions count" +msgid "Repetition count" msgstr "Кількість повторень" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "Кількість повторень всієї моделі" msgid "Ensure on bed" msgstr "Переконайтеся, що на столі" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "" "Підніміть об'єкт над ліжком, коли він частково знаходиться під ним. За " "замовчуванням вимкнено" @@ -15527,7 +15536,7 @@ msgstr "" msgid "Convert Unit" msgstr "Перетворити одиницю виміру" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "Перетворення одиниць моделі" msgid "Orient Options" @@ -15545,63 +15554,63 @@ msgstr "Обертати навколо осі Y" msgid "Rotation angle around the Y axis in degrees." msgstr "Кут обертання навколо осі Y у градусах." -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "Масштабуйте модель за допомогою плаваючого коефіцієнта" msgid "Load General Settings" msgstr "Завантажити загальні налаштування" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "Завантажити налаштування процесу/машини із зазначеного файлу" msgid "Load Filament Settings" msgstr "Завантажити налаштування філаменту" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "Завантажити налаштування філаменту із зазначеного списку файлів" msgid "Skip Objects" msgstr "Пропустити об'єкти" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "Пропустити деякі об'єкти в цьому принті" msgid "Clone Objects" msgstr "Клонувати об'єкти" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "Клонувати об'єкти в списку завантаження" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "Завантажити список збірок" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "Завантажити список збірок об'єктів з файлу конфігурації" msgid "Data directory" @@ -15634,13 +15643,15 @@ msgstr "" msgid "Enable timelapse for print" msgstr "Увімкнути таймлапс для друку" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "Якщо ввімкнено, це нарізання враховуватиме використання таймлапсу" -msgid "Load custom gcode" +#, fuzzy +msgid "Load custom G-code" msgstr "Завантажити користувацький gcode" -msgid "Load custom gcode from json" +#, fuzzy +msgid "Load custom G-code from json." msgstr "Завантажити користувацький код з json" msgid "Load filament ids" @@ -15649,33 +15660,34 @@ msgstr "Завантажувати id філаментів" msgid "Load filament ids for each object" msgstr "Завантажувати id філаментів для кожного об'єкта" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "Дозволити декілька кольорів на одній пластині" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" "Якщо ввімкнено, розташування дозволить використовувати кілька кольорів на " "одній платформі" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "Дозволити обертання під час розташування" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "Якщо ввімкнено, буде дозволено обертання під час розташування об'єкта" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "Уникати області калібрування екструзії під час розташування моделей" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" "Якщо ввімкнено, розташування моделей уникатиме області калібрування екструзії" -msgid "Skip modified gcodes in 3mf" +#, fuzzy +msgid "Skip modified G-code in 3mf" msgstr "Пропустити змінені gcodes в 3mf" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -15702,13 +15714,13 @@ msgstr "список значень метаданих" msgid "metadata value list added into 3mf" msgstr "список значень метаданих додано в 3mf" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "Дозволити нарізання 3mf в новішій версії" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "Поточний Z-стрибок" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "Містить Z-стрибок, присутній на початку користувацького блоку G-коду." msgid "" @@ -15809,10 +15821,10 @@ msgid "Total filament volume extruded per extruder during the entire print." msgstr "" "Загальний об'єм філаменту, екструдованого одним екструдером за весь друк." -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "Повні зміни інструменту" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "Кількість замін під час друку." msgid "Total volume" @@ -16051,7 +16063,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "Компенсація розміру XY об'єкта не буде використовуватись, оскільки він також " "забарвлений кольором.\n" @@ -16077,9 +16089,6 @@ msgstr "" "Невідомий формат файлу: вхідний файл повинен мати розширення .3mf " "або .zip.amf." -msgid "Canceled" -msgstr "Скасовано" - msgid "load_obj: failed to parse" msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат" @@ -16184,7 +16193,7 @@ msgid "The name cannot be empty." msgstr "Ім’я не може бути порожнім." #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "Обраний пресет: %s не знайдено." msgid "The name cannot be the same as the system preset name." @@ -16218,13 +16227,13 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "Цей тип машини може зберігати лише 16 результатів історії на сопло. Ви " "можете видалити існуючі історичні результати та потім розпочати " "калібрування. Або ви можете продовжити калібрування, але ви не зможете " -"створювати нові історичні результати калібрування. \n" +"створювати нові історичні результати калібрування.\n" "Ви все ще хочете продовжити калібрування?" msgid "Connecting to printer..." @@ -16233,7 +16242,7 @@ msgstr "Підключення до принтера…" msgid "The failed test result has been dropped." msgstr "Неуспішний результат тесту було відхилено." -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "Результат калібрування динаміки потоку було збережено в принтері" #, c-format, boost-format @@ -16260,10 +16269,10 @@ msgstr "Внутрішня помилка" msgid "Please select at least one filament for calibration" msgstr "Будь ласка, виберіть принаймні один матеріал для калібрування" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "Результат калібрування потоку було збережено до профілю" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "" "Результат калібрування максимальної об’ємної швидкості було збережено в " "налаштування попередньо заданого значення" @@ -16276,10 +16285,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "Зараз у нас є можливість автоматичної калібрації для різних філаментів, яка " "є повністю автоматизованою, і результат буде збережено в принтері для " @@ -16340,12 +16349,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "Після використання калібрування Flow Dynamics можуть все ще виникати деякі " "проблеми з екструзією, такі як:\n" @@ -16466,7 +16475,7 @@ msgstr "Ім’я не може перевищувати 40 символів." msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "" "Тільки один із результатів з однаковою назвою буде збережено. Ви впевнені, " "що хочете перезаписати інші результати?" @@ -16520,9 +16529,6 @@ msgstr "Пропустити калібрування2" msgid "flow ratio : %s " msgstr "коєфіцієнт потоку : %s " -msgid "Please choose a block with smoothest top surface" -msgstr "Будь ласка, виберіть блок з найгладшою верхньою поверхнею" - msgid "Please choose a block with smoothest top surface." msgstr "Будь ласка, виберіть блок з найгладшою верхньою поверхнею." @@ -16568,7 +16574,7 @@ msgstr "Філамент для калібрування" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "Поради щодо матеріалу для калібрування: \n" "- Матеріали, які можуть використовувати однакову температуру гарячого ліжка\n" @@ -16829,7 +16835,7 @@ msgstr "Кінцева довжина ретракту: " msgid "mm/mm" msgstr "мм/мм" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "Надіслання G-коду на хост друку" msgid "Upload to Printer Host with the following filename:" @@ -16878,7 +16884,7 @@ msgstr "Скасувати вибране" msgid "Show error message" msgstr "Показати повідомлення про помилку" -msgid "Enqueued" +msgid "Queued" msgstr "У черзі" msgid "Uploading" @@ -16968,14 +16974,14 @@ msgstr "Версія системи:" msgid "DNS Server:" msgstr "DNS-сервер:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "Перевірте OrcaSlicer на (GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "Перевірте OrcaSlicer (GitHub):" -msgid "Test Bing.com" -msgstr "Tест Bing.com" +msgid "Test bing.com" +msgstr "Tест bing.com" msgid "Test bing.com:" msgstr "Tест bing.com:" @@ -17041,7 +17047,7 @@ msgstr "" "виробника." msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "" "“Bambu” або “Generic” не може бути використано як виробник для власних " "налаштувань філаменту." @@ -17065,7 +17071,7 @@ msgstr "" "Усі введені значення в полі власного виробника або серійного номера є " "пробіли. Будь ласка, введіть щось інше." -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "Виробник не може бути числом. Будь ласка, введіть ще раз." msgid "" @@ -17076,11 +17082,11 @@ msgstr "" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" -"Назва філаменту %s, яку ви створили, вже існує. \n" +"Назва філаменту %s, яку ви створили, вже існує.\n" "Якщо ви продовжите створення, новий набір параметрів буде відображений з " "повною назвою. Хочете продовжити?" @@ -17096,8 +17102,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "Ми б перейменували попередні налаштування на «Вибраний вами серійний " "@принтер постачальника».\n" @@ -17125,7 +17131,7 @@ msgstr "Імпорт набору параметрів" msgid "Create Type" msgstr "Тип" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "Модель не знайдено. Будь ласка, перевиберіть виробника." msgid "Select Model" @@ -17170,16 +17176,16 @@ msgstr "" "Виникла помилка під час визначення розміру файлу, будь ласка, імпортуйте " "знову." -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "Шлях до налаштувань не знайдено. Будь ласка, перевиберіть виробника." msgid "The printer model was not found, please reselect." msgstr "Модель принтера не було знайдено. Будь ласка, перевиберіть її." -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "Діаметр сопла не знайдено. Будь ласка, перевиберіть його." -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "Налаштування принтера не знайдено. Будь ласка, перевиберіть його." msgid "Printer Preset" @@ -17243,7 +17249,7 @@ msgstr "Створення налаштувань філаменту не вда msgid "Create process presets failed. As follows:\n" msgstr "Створення налаштувань процесу не вдалося. Ось докладніше:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "Виробника не знайдено, будь ласка, перевиберіть." msgid "Current vendor has no models, please reselect." @@ -17278,10 +17284,10 @@ msgstr "" "Ви ще не вибрали принтер, для якого потрібно замінити сопло. Будь ласка, " "оберіть." -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "Створення принтера успішно завершено" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "Створення філаменту успішно завершено" msgid "Printer Created" @@ -17302,7 +17308,7 @@ msgid "" "them carefully." msgstr "" "Будь ласка, перейдіть до налаштувань філаменту, щоб відредагувати свої " -"налаштування, якщо потрібно. \n" +"налаштування, якщо потрібно.\n" "Зверніть увагу, що температура насадки, температура гарячого ліжка і " "максимальна об’ємна швидкість мають значний вплив на якість друку. Будь " "ласка, встановіть їх обережно." @@ -17312,7 +17318,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -17372,14 +17378,14 @@ msgstr "" "створення." msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "Принтер і всі нитки та налаштування процесу, які належать принтеру.\n" "Ними можна ділитись з іншими." msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "Налаштування філаменту користувача \n" @@ -17448,7 +17454,7 @@ msgstr "" "Примітка: Якщо єдиний пресет під цим філаментом буде видалений, то філамент " "також буде видалений після виходу з діалогового вікна." -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "" "Налаштування, що успадковуються іншими налаштуваннями, не можуть бути " "видалені" @@ -17476,12 +17482,12 @@ msgid "Delete Filament" msgstr "Видалити Філамент" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "Всі набори параметрів філаменту, що належать до цього філаменту, будуть " -"видалені. \n" +"видалені.\n" "Якщо ви використовуєте цей філамент на своєму принтері, будь ласка, скиньте " "інформацію про філамент для цього слоту." @@ -17612,16 +17618,16 @@ msgstr "Не вдалося підключитися до принтерів, п msgid "Mismatched type of print host: %s" msgstr "Невідповідність типу принт-сервера: %s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "З’єднання з AstroBox працює коректно." msgid "Could not connect to AstroBox" msgstr "Не вдалося з’єднатися з AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "Примітка: Для AstroBox потрібна версія щонайменше 1.1.0." -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "З’єднання з Duet працює коректно." msgid "Could not connect to Duet" @@ -17639,7 +17645,7 @@ msgstr "Не вдалося отримати ресурси для створе msgid "Upload not enabled on FlashAir card." msgstr "Завантаження не активовано на картці FlashAir." -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "З’єднання з FlashAir працює коректно, і завантаження активовано." msgid "Could not connect to FlashAir" @@ -17652,28 +17658,28 @@ msgstr "" "Примітка: Для FlashAir потрібна прошивка версії 2.00.02 або новіша з " "активованою функцією завантаження." -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "З’єднання з MKS працює коректно." msgid "Could not connect to MKS" msgstr "Не вдалося підключитися до MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "Підключення до OctoPrint працює правильно." msgid "Could not connect to OctoPrint" msgstr "Не вдалося підключитися до OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "Примітка. Потрібна версія OctoPrint не нижче 1.1.0." -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Підключення до Prusa SL1 / SL1S працює правильно." msgid "Could not connect to Prusa SLA" msgstr "Не вдалося підключитися до Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "Підключення до PrusaLink працює коректно." msgid "Could not connect to PrusaLink" @@ -17699,19 +17705,19 @@ msgstr "" "Відбулася помилка завантаження. За адресою %1% не знайдено відповідного " "сховища." -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "Підключення до Prusa Connect працює коректно." msgid "Could not connect to Prusa Connect" msgstr "Не вдалося підключитися до Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "Підключення до Repetier працює правильно." msgid "Could not connect to Repetier" msgstr "Не вдалося підключитися до Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "Примітка: потрібна версія Repetier принаймні 0.90.0." #, boost-format @@ -17743,8 +17749,8 @@ msgstr "" "Помилка: “%2%”" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "Він має малу висоту шару, що призводить до майже непомітних ліній " "шаруватості та високої якості друку. Він підходить для більшості загальних " @@ -17752,8 +17758,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "Порівняно з типовим профілем для насадки 0,2 мм, він має менші швидкості і " "прискорення, а також розріджену структуру наповнення у вигляді гіроїда. " @@ -17762,8 +17768,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "Порівняно з типовим профілем для насадки 0,2 мм, він має трохи більшу висоту " "шару, що призводить до майже непомітних ліній шаруватості та трохи коротший " @@ -17771,8 +17777,7 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "Порівняно з типовим профілем для насадки 0,2 мм, він має більшу висоту шару, " "що призводить до слабко видимих ліній шаруватості, але при цьому друкується " @@ -17780,8 +17785,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "Порівняно з типовим профілем для насадки 0,2 мм, це має меншу висоту шару, і " "результатом є майже невидимі лінії шару та вища якість друку, але коротший " @@ -17790,8 +17795,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Порівняно з типовим профілем для насадки 0,2 мм, цей профіль має меншу " "кількість ліній шарування, менші швидкості і прискорення, і розріджене " @@ -17800,9 +17805,9 @@ msgstr "" "довший час друку." msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,2 мм, цей профіль має " "меншу висоту шару, що призводить до мінімальних ліній шарування та вищої " @@ -17811,8 +17816,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "Порівняно з типовим профілем для насадки 0,2 мм, цей профіль має меншу " "кількість ліній шарування, менші швидкості та прискорення, а також " @@ -17821,16 +17826,16 @@ msgstr "" "збільшує час друку." msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "Він має загальну висоту шару та призводить до загальних ліній шарування і " "якості друку. Він підходить для більшості загальних випадків друку." msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "більше кількість обводок стін та вищу щільність розрідженого наповнювача. " @@ -17839,8 +17844,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "більшу висоту шару, що призводить до більш помітних ліній шарування та " @@ -17848,8 +17853,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "більшу висоту шару, що призводить до більш помітних ліній шарування та " @@ -17857,8 +17862,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "меншу висоту шару, що призводить до менш помітних ліній шарування та вищої " @@ -17867,8 +17872,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "меншу висоту шару, менші швидкості і прискорення, а також розріджений " @@ -17878,8 +17883,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "меншу висоту шару, що призводить до майже непомітних ліній шарування та " @@ -17888,8 +17893,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "меншу висоту шару, менші швидкості та прискорення, а також розріджений " @@ -17898,24 +17903,23 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "Порівняно з типовим профілем для насадки діаметром 0,4 мм, цей профіль має " "меншу висоту шару, що призводить до майже непомітних ліній шарування, але " "також збільшує час друку." msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "Він має велику висоту шару, що призводить до видимих ліній шарування і " "звичайної якості друку та часу друку." msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "Порівняно з типовим профілем з 0,6 мм сопла, він має більше стінних петель і " "вищу щільність розрідженого наповнювача. Таким чином, він забезпечує більшу " @@ -17923,8 +17927,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "Порівняно з типовим профілем з 0,6 мм сопла, він має більшу висоту шару, що " "призводить до більш помітних ліній шару та нижчої якості друку, але " @@ -17932,8 +17936,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "Порівняно з типовим профілем з 0,6 мм сопла, він має більшу висоту шару, що " "призводить до набагато більш помітних ліній шару та значно нижчої якості " @@ -17941,8 +17945,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "Порівняно з типовим профілем з 0,6 мм сопла, він має меншу висоту шару, що " "призводить до менш помітних ліній шару і трохи вищої якості друку, але " @@ -17950,24 +17954,24 @@ msgstr "" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "Порівняно з типовим профілем з 0,6 мм сопла, він має меншу висоту шару, що " "призводить до менш помітних ліній шару та вищої якості друку, але більш " "тривалого часу друку." msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "Він має дуже велику висоту шару, що призводить до дуже помітних ліній шару, " "низької якості друку і загального часу друку." msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має більшу висоту " "шару, що призводить до дуже помітних ліній шару і значно нижчої якості " @@ -17975,8 +17979,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має набагато " "більшу висоту шару, що призводить до надзвичайно помітних ліній шару і " @@ -17985,9 +17989,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має трохи меншу " "висоту шару, що призводить до трохи менше, але все ще помітних ліній шару і " @@ -17995,8 +17998,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "Порівняно з типовим профілем для сопла 0,8 мм, цей профіль має меншу висоту " "шару, що призводить до менше, але все ще помітних ліній шару і трохи вищої " @@ -18025,7 +18028,7 @@ msgstr "" "Обліковий запис SimplyPrint не пов’язано. Щоб налаштувати його, перейдіть до " "параметрів підключення." -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "Підключення до Flashforge працює правильно." msgid "Could not connect to Flashforge" @@ -18040,7 +18043,7 @@ msgstr "Надайте необхідні дозволи під час авто msgid "Something unexpected happened when trying to log in, please try again." msgstr "Під час спроби входу трапилося щось несподіване. Повторіть спробу." -msgid "User cancelled." +msgid "User canceled." msgstr "Користувача скасовано." msgid "Head diameter" @@ -18071,8 +18074,8 @@ msgid "Adjust section view" msgstr "Налаштувати вид секції" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "" "Попередження: Тип краєчка не встановлено на “пофарбований”, краєчки не " "матимуть ефекту!" @@ -18168,11 +18171,11 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "Як використовувати комбінації клавіш\n" "Чи знаєте ви, що Orca Slicer пропонує широкий спектр комбінацій клавіш для " -"роботи з 3D-сценами." +"роботи з 3D-сценами?" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -18215,7 +18218,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "Автоматичне впорядкування\n" "Чи знаєте ви, що можна автоматично розташувати всі об'єкти в проєкті?" @@ -18224,7 +18227,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "Автоорієнтація\n" "Чи знаєте ви, що можна повертати об'єкти в оптимальну орієнтацію для друку " @@ -18404,7 +18407,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "Кайма для кращого прилипання\n" @@ -18415,7 +18418,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "Встановлення параметрів для кількох об'єктів\n" "Чи знаєте ви, що можна встановити параметри нарізки для всіх " @@ -18432,7 +18435,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "Промивати в підтримки/об'єкти/заповнення\n" @@ -18449,13 +18452,14 @@ msgstr "" "Чи знаєте ви, що для підвищення міцності моделі можна використовувати " "більшепериметрів та вищу щільність заповнення?" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "Коли потрібно друкувати з відкритими дверцятами принтера\n" "Чи знаєте ви, що відкриття дверцят принтера може знизити ймовірність " @@ -18468,9 +18472,9 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "Уникнення деформації\n" "Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як " "ABS, відповідне підвищення температури гарячого ліжка може зменшити " -"ймовірність деформації." +"ймовірність деформації?" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index c982049ace..13d5f78cfe 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -17,7 +17,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.2.2\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "支撑绘制" msgid "Alt + Mouse wheel" @@ -113,7 +113,7 @@ msgstr "选择底面" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "" "耗材丝数量超过涂色工具支持的最大值,仅前%1%个耗材丝可在涂色工具中使用。" @@ -590,10 +590,10 @@ msgstr "显示线框" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "处理预览的过程中无法应用。" -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "操作已在取消中,请等待片刻。" msgid "Face recognition" @@ -781,7 +781,7 @@ msgid "Change Text Type" msgstr "更改文本类型" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "重命名浮雕文本的样式(%1%)" msgid "Name can't be empty." @@ -998,8 +998,8 @@ msgstr "" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "不能加载完全相同的字体(\"%1%\")。应用程序选择了一种类似的字体(\"%2%\")。你" "必须为启用编辑文本指定字体。" @@ -1126,7 +1126,7 @@ msgstr "" msgid "Shape is marked as invisible (%1%)." msgstr "形状已被标记为不可见 (%1%)." -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "形状填充(%1%)包含不受支持的:%2%。" @@ -1298,7 +1298,7 @@ msgid "Measure" msgstr "测量" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "请确保爆炸比例为1,且至少选择一个对象" msgid "Please select at least one object." @@ -1354,13 +1354,13 @@ msgid "" "feature 2 has been feature 1" msgstr "特征1已经被重置,特征2变成特征1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "警告:请选择面特征。" -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "警告:请选择点或圆特征。" -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "警告:请选择两个不同的网格。" msgid "Copy to clipboard" @@ -1384,7 +1384,7 @@ msgstr "平行" msgid "Center coincidence" msgstr "中心重合" -msgid "Featue 1" +msgid "Feature 1" msgstr "特征1" msgid "Reverse rotation" @@ -1436,7 +1436,7 @@ msgid "" msgstr "配置文件“%1%”已被加载,但部分数值未被识别。" msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" "系统内存耗尽,OrcaSlicer 即将终止运行。这可能是个缺陷,希望您可以报告此问题," @@ -1564,7 +1564,7 @@ msgstr "打开项目" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "逆戟鲸版本过低,需要更新到最新版本方可正常使用" msgid "Privacy Policy Update" @@ -1769,7 +1769,7 @@ msgstr "Orca拉丝地狱" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1867,16 +1867,16 @@ msgstr "冲刷到对象的支撑" msgid "Edit in Parameter Table" msgstr "在参数表格中编辑" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "从英寸转换" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "恢复到英寸" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "从米转换" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "恢复到米" msgid "Assemble" @@ -2122,7 +2122,7 @@ msgstr "为保证切割关系,您可以将所有关联对象的连接件一起 msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2137,7 +2137,7 @@ msgstr "删除所有连接件" msgid "Deleting the last solid part is not allowed." msgstr "不允许删除对象的最后一个实体零件。" -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "目标对象仅包含一个零件,无法被拆分。" msgid "Assembly" @@ -2180,12 +2180,12 @@ msgid "Selection conflicts" msgstr "选择冲突" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "如果第一个选择的是对象,那么第二个选择的也必须是对象。" msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "如果第一个选择的是零件,那么第二个选择的也必须是同一个对象中的零件。" msgid "The type of the last solid object part is not to be changed." @@ -2244,7 +2244,7 @@ msgstr "数值错误。" msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "一个单元格仅能被复制到同一列的一个或多个单元格" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "不支持多个单元格的复制" msgid "Outside" @@ -2502,8 +2502,8 @@ msgid "Edit" msgstr "编辑" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "所有选中的对象都处于被锁定的盘上,\n" "无法对这些对象做自动摆盘。" @@ -2512,8 +2512,8 @@ msgid "No arrangeable objects are selected." msgstr "没有可摆盘的对象被选中。" msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "该盘处于锁定状态,无法对其进行自动摆盘。" msgid "Arranging..." @@ -2546,15 +2546,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "所有选中的对象都处于被锁定的盘上,\n" "无法对这些对象做自动朝向。" msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "该盘处于锁定状态,\n" "无法对其进行自动朝向。" @@ -2607,7 +2607,7 @@ msgstr "上传任务超时,请排查网络状态后重试。" msgid "Cloud service connection failed. Please try again." msgstr "云服务连接失败,请重试" -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "未找到打印文件,请重新切片。" msgid "" @@ -2630,7 +2630,7 @@ msgid "" "again." msgstr "打印文件的大小过大,请调整文件大小后重试。" -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "未找到打印文件,请重新切片后再发送打印。" msgid "" @@ -2667,10 +2667,12 @@ msgstr "已成功发送。将自动跳转到%ss中的下一页。" msgid "An SD card needs to be inserted before printing via LAN." msgstr "需要插入SD卡后方可发送局域网打印" -msgid "Sending gcode file over LAN" +#, fuzzy +msgid "Sending G-code file over LAN" msgstr "通过局域网发送gcode文件" -msgid "Sending gcode file to sdcard" +#, fuzzy +msgid "Sending G-code file to SD card" msgstr "发送gcode文件到sd卡" #, c-format, boost-format @@ -2715,10 +2717,10 @@ msgstr "下载中" msgid "Download failed" msgstr "下载失败" -msgid "Cancelled" +msgid "Canceled" msgstr "已取消" -msgid "Install successfully." +msgid "Installed successfully" msgstr "安装成功。" msgid "Installing" @@ -2783,9 +2785,6 @@ msgstr "确定" msgid "Close" msgstr "关闭" -msgid "Colour" -msgstr "颜色" - msgid "" "Nozzle\n" "Temperature" @@ -2941,15 +2940,15 @@ msgstr "当前AMS湿度" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "当干燥剂过于潮湿时,请及时更换。以下几种情况下,指示器可能无法准确反映情况:盖子" "打开或干燥剂包被替换时。干燥剂需要数小时吸收潮气,低温也会延缓该过程。" msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "配置当前打印任务应使用哪个AMS槽位" msgid "Filament used in this print job" @@ -2967,7 +2966,7 @@ msgstr "不启用AMS" msgid "Print using materials mounted on the back of the case" msgstr "使用安装在机箱背面的材料进行打印" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "采用AMS里的材料打印" msgid "Print with filaments mounted on the back of the chassis" @@ -2990,7 +2989,7 @@ msgstr "AMS耗材备份未启用,请在AMS设置中启用。" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -3017,7 +3016,7 @@ msgstr "" "秒。" msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." msgstr "" "注意:如果是在打印过程中插入新的耗材丝,AMS会在打印结束后自动读取此耗材丝信" @@ -3035,8 +3034,8 @@ msgstr "开机时检测" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "每次开机时,AMS将会自动读取其所插入的耗材信息(读取过程会转料卷)。需要花时大约" "1分钟。" @@ -3062,8 +3061,8 @@ msgid "AMS filament backup" msgstr "AMS材料备份" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "AMS料材丝耗尽后将自动切换到属性完全相同的耗材丝" msgid "Air Printing Detection" @@ -3116,7 +3115,7 @@ msgstr "" msgid "Please save project and restart the program." msgstr "请保存项目并重启程序。" -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "从之前的文件加载G代码..." msgid "Slicing complete" @@ -3198,12 +3197,12 @@ msgstr "" msgid "G-code file exported to %1%" msgstr "G 代码文件导出到 %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "导出G-code文件发生未知错误。" -#, boost-format +#, fuzzy, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" @@ -3377,7 +3376,7 @@ msgstr "使用AMS" msgid "Select Printers" msgstr "选择打印机" -msgid "Ams Status" +msgid "AMS Status" msgstr "AMS状态" msgid "Printing Options" @@ -3399,7 +3398,7 @@ msgid "Send to" msgstr "发送至" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "打印机在同一时间。(这取决于有多少设备可以接受同时加热。)" @@ -3407,7 +3406,7 @@ msgid "Wait" msgstr "等待" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "分钟发送一次。(这取决于完成加热需要多长时间。)" msgid "Send" @@ -3499,9 +3498,10 @@ msgstr "选择 STL 文件来导入床模型:" msgid "Bed Shape" msgstr "热床形状" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "建议最低温度低于 190 度或建议最高温度高于 300 度。\n" msgid "" @@ -3523,8 +3523,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "该耗材的推荐喷嘴温度是[%d, %d]摄氏度" msgid "" @@ -3536,9 +3536,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "当前腔体温度高于材料的安全温度,这可能导致材料软化和堵塞。该材料的最高安全温" "度为 %d。" @@ -3594,7 +3594,7 @@ msgid "" msgstr "“交替添加额外”与“确保垂直外壳厚度”的”全部“选项不兼容。" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3655,7 +3655,7 @@ msgid " But machines with I3 structure will not generate timelapse videos." msgstr "但是使用I3结构的机器将不会生成延时视频。" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3714,7 +3714,7 @@ msgstr "用户暂停" msgid "Pause of front cover falling" msgstr "工具头前盖掉落暂停" -msgid "Calibrating the micro lida" +msgid "Calibrating the micro lidar" msgstr "轮廓仪激光标定" msgid "Calibrating extrusion flow" @@ -3750,7 +3750,7 @@ msgstr "暂停,由于仓温控制错误" msgid "Cooling chamber" msgstr "冷却仓温" -msgid "Paused by the Gcode inserted by user" +msgid "Paused by the G-code inserted by user" msgstr "暂停,由于用户插入的Gcode" msgid "Motor noise showoff" @@ -3794,15 +3794,15 @@ msgstr "更新失败。" msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" "当前仓温或目标仓温超过45℃为了避免挤出机堵塞,低温耗材(PLA/PETG/TPU)不允许被" "装入。" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "低温耗材(PLA/PETG/TPU)被装入挤出机中。为了避免挤出机堵塞,不允许将仓温设置" @@ -3810,12 +3810,12 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "当您将仓温设置在40℃以下时,仓温控制将不会激活。目标仓温将自动设置为0℃。" -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "发起打印任务失败" msgid "" @@ -3828,7 +3828,7 @@ msgstr "当前流量校准参数无效" msgid "Selected diameter and machine diameter do not match" msgstr "选择的直径和机器直径不匹配" -msgid "Failed to generate cali gcode" +msgid "Failed to generate cali G-code" msgstr "生成校准gcode失败" msgid "Calibration error" @@ -3841,12 +3841,12 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "AMS不支持Bambu PET-CF/PA6-CF。" msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "潮湿的PVA会变得柔软并粘在AMS内,请在使用前注意干燥。" msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "CF/GF耗材丝丝又硬又脆,在AMS中很容易断裂或卡住,请谨慎使用。" @@ -3860,7 +3860,7 @@ msgstr "编辑自定义G-code (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "" -msgid "Search gcode placeholders" +msgid "Search G-code placeholders" msgstr "" msgid "Add selected placeholder to G-code" @@ -3919,7 +3919,7 @@ msgid "parameter name" msgstr "参数名称" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s 不可以是百分比" #, c-format, boost-format @@ -4007,7 +4007,7 @@ msgstr "风扇速度: " msgid "Temperature: " msgstr "温度: " -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "正在加载G-code" msgid "Generating geometry vertex data" @@ -4121,10 +4121,7 @@ msgstr "打印" msgid "Printer" msgstr "打印机" -msgid "Custom g-code" -msgstr "" - -msgid "ToolChange" +msgid "Tool Change" msgstr "" msgid "Time Estimation" @@ -4251,8 +4248,11 @@ msgstr "对齐到Y轴" msgid "Add plate" msgstr "添加新盘" -msgid "Auto orient" -msgstr "自动朝向" +msgid "Auto orient all/selected objects" +msgstr "自动定位所有/选定的对象" + +msgid "Auto orient all objects on current plate" +msgstr "自动调整当前板上的所有对象" msgid "Arrange all objects" msgstr "全局整理" @@ -4275,7 +4275,7 @@ msgstr "选择盘" msgid "Assembly Return" msgstr "退出装配体视图" -msgid "return" +msgid "Return" msgstr "返回" msgid "Paint Toolbar" @@ -4302,28 +4302,28 @@ msgstr "体积:" msgid "Size:" msgstr "尺寸:" -#, boost-format +#, fuzzy, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "发现gcode路径在层%d,高为%.2lf mm处的冲突。请将有冲突的对象分离得更远(%s <-> " "%s)。" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "检测到有对象放在盘的边界上。" msgid "A G-code path goes beyond the max print height." msgstr "检测出超出打印高度的G-code路径。" -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "检测超出热床边界的G-code路径。" -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "只有正在编辑的对象是可见的。" msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4401,7 +4401,7 @@ msgstr "" msgid "1080p" msgstr "" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "连接打印机(局域网)" msgid "Please input the printer access code:" @@ -4701,19 +4701,19 @@ msgstr "" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "" msgid "Show &G-code Window" msgstr "显示G-code窗口" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "显示G-code窗口" msgid "Show 3D Navigator" msgstr "显示3D导航器" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "显示3D导航器" msgid "Reset Window Layout" @@ -4725,19 +4725,19 @@ msgstr "重置为默认窗口布局" msgid "Show &Labels" msgstr "显示名称" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "在3D场景中显示对象名称" msgid "Show &Overhang" msgstr "显示悬空高亮" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "在3D场景中显示悬空高亮" msgid "Show Selected Outline (beta)" msgstr "" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "" msgid "Preferences" @@ -4905,7 +4905,7 @@ msgid "Filament Settings" msgstr "打印丝设置" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" @@ -4940,7 +4940,7 @@ msgstr "打印机正在忙于下载,请等下载完成后再尝试。" msgid "Printer camera is malfunctioning." msgstr "打印机摄像头异常。" -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "出现了一些问题。请更新打印机固件后重试。" msgid "" @@ -4957,7 +4957,7 @@ msgid "Connection Failed. Please check the network and try again" msgstr "链接失败。请检查网络后重试" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." msgstr "检查网络后重试。如仍未恢复,可重启或更新打印机。" @@ -5105,8 +5105,8 @@ msgid "Failed to parse model information." msgstr "解析模型信息失败。" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" ".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新" "的.gcode.3mf文件。" @@ -5295,8 +5295,7 @@ msgid "Layer: %d/%d" msgstr "层: %d/%d" msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "请在进料或退料前把喷嘴升温到170℃以上。" msgid "Still unload" @@ -5305,7 +5304,7 @@ msgstr "继续退料" msgid "Still load" msgstr "继续进料" -msgid "Please select an AMS slot before calibration" +msgid "Please select an AMS slot before calibration." msgstr "请先选择一个AMS槽位后进行标定" msgid "" @@ -5352,9 +5351,6 @@ msgstr "提交" msgid "Please click on the star first." msgstr "请先点击星星。" -msgid "InFo" -msgstr "信息" - msgid "Get oss config failed." msgstr "获取oss配置失败。" @@ -5373,7 +5369,7 @@ msgstr "上传配置解析失败\n" msgid " No corresponding storage bucket\n" msgstr "没有相应的存储桶\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr "无法打开\n" msgid "" @@ -5395,7 +5391,7 @@ msgid "obtaining instance_id failed\n" msgstr "获取instance_id失败\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" @@ -5409,7 +5405,7 @@ msgstr "错误消息:" msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" @@ -5417,7 +5413,7 @@ msgstr "" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" +"webpage to give a rating?" msgstr "您的一些图像上传失败。您是否想要重定向到评分网页?" msgid "You can select up to 16 images." @@ -5425,7 +5421,7 @@ msgstr "您最多可以选择16张图像。" msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "此打印配置文件至少需要一个成功的打印记录 \n" "才能给出好评(4星或5星)。" @@ -5470,7 +5466,7 @@ msgid "Newer 3mf version" msgstr "较新的3mf版本" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "3mf文件版本处于Beta测试阶段,比当前OrcaSlicer版本更新。" @@ -5574,7 +5570,7 @@ msgstr[0] "%1$d对象有涂色。" #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d对象加载为一个切割对象的子部件" msgid "ERROR" @@ -5598,7 +5594,7 @@ msgstr "错误:" msgid "Warning:" msgstr "警告:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "导出成功." msgid "Model file downloaded." @@ -5616,10 +5612,11 @@ msgstr "点击此处安装" msgid "WARNING:" msgstr "警告:" -msgid "Your model needs support ! Please make support material enable." +msgid "Your model needs support! Please enable support material." msgstr "你的模型需要支撑才能打印。请开启材料支撑选项。" -msgid "Gcode path overlap" +#, fuzzy +msgid "G-code path overlap" msgstr "Gcode路径有重叠" msgid "Support painting" @@ -5850,7 +5847,7 @@ msgstr "是否保存修改到“%1%”?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "卸载成功。设备%s(%s)现在可能安全地从电脑移除。" @@ -5903,8 +5900,8 @@ msgstr "加载3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "该3mf的版本%s比%s的版本%s新,发现以下参数键值无法识别:" msgid "You'd better upgrade your software.\n" @@ -5922,22 +5919,23 @@ msgstr "在3mf文件中发现无效值:" msgid "Please correct them in the param tabs" msgstr "请在参数页更正它们" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "该3mf文件中的材料或者打印机预设包含以下修改过的G-codes:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "请确认这些修改过的G-codes是否安全,以防止对机器造成任何损坏!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "修改过的G-codes" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "该3MF文件包含以下自定义的材料或打印机预设:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "请确认这些预设中的G-codes是否安全,以防止对机器造成任何损坏!" @@ -5995,8 +5993,8 @@ msgid "The file does not contain any geometry data." msgstr "此文件不包含任何几何数据。" msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "对象看起来太大,希望将对象自动缩小以适应热床吗?" msgid "Object too large" @@ -6100,7 +6098,7 @@ msgstr "未检测到网络插件。网络相关功能不可用。" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "仅预览模式:\n" "被加载的文件仅包含G-Code,不支持进入准备页面" @@ -6132,7 +6130,7 @@ msgstr "正在准备3mf文件..." msgid "Download failed, unknown file format." msgstr "下载失败,未知文件格式。" -msgid "downloading project ..." +msgid "downloading project..." msgstr "项目下载中..." msgid "Download failed, File size exception." @@ -6169,7 +6167,7 @@ msgstr "导入 SLA 存档" msgid "The selected file" msgstr "已选择的文件" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "不包含有效的G-code文件。" msgid "Error occurs while loading G-code file" @@ -6211,10 +6209,10 @@ msgstr "只能同时打开一个G-code文件。" msgid "G-code loading" msgstr "正在加载G-code文件" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-code文件不能和模型一起加载" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "在预览模式不允许添加模型" msgid "All objects will be removed, continue?" @@ -6366,8 +6364,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" "热床 %d:%s不建议被用于打印%s(%s)材料。如果你依然想打印,请设置耗材对应的热" @@ -6404,19 +6402,19 @@ msgid "Choose Download Directory" msgstr "选择下载文件夹" msgid "Associate" -msgstr "" +msgstr "相关的" msgid "with OrcaSlicer so that Orca can open models from" msgstr "" msgid "Current Association: " -msgstr "" +msgstr "当前相关项" msgid "Current Instance" -msgstr "" +msgstr "当前实例" msgid "Current Instance Path: " -msgstr "" +msgstr "当前实例路径" msgid "General Settings" msgstr "通用设置" @@ -6521,6 +6519,12 @@ msgstr "使用自由视角" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "如果启用,使用自由视角。如果未启用,使用约束视角。" +msgid "Swap pan and rotate mouse buttons" +msgstr "交换鼠标按钮的平移与旋转功能" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "启用后,将左键和右键的平移与旋转功能对调" + msgid "Reverse mouse zoom" msgstr "反转鼠标缩放" @@ -6560,7 +6564,7 @@ msgid "" "each printer automatically." msgstr "如果启用,Orca会自动记录并切换您不同打印机之间的耗材配置与打印参数。" -msgid "Multi-device Management(Take effect after restarting Orca)." +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." msgstr "多设备管理 (重启Orca后生效)" msgid "" @@ -6577,7 +6581,7 @@ msgstr "" msgid "Network" msgstr "网络" -msgid "Auto sync user presets(Printer/Filament/Process)" +msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "同步用户预设(打印机/耗材丝/工艺)" msgid "User Sync" @@ -6620,22 +6624,22 @@ msgid "Associate URLs to OrcaSlicer" msgstr "" msgid "Load All" -msgstr "" +msgstr "加载全部" msgid "Ask When Relevant" -msgstr "" +msgstr "当相关时查询" msgid "Always Ask" -msgstr "" +msgstr "总是提问" msgid "Load Geometry Only" -msgstr "" +msgstr "仅加载几何形状" msgid "Load Behaviour" -msgstr "" +msgstr "加载 交互项" msgid "Should printer/filament/process settings be loaded when opening a .3mf?" -msgstr "" +msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开" msgid "Maximum recent projects" msgstr "近期项目的最大数量" @@ -6646,7 +6650,7 @@ msgstr "近期项目的最大计数" msgid "Clear my choice on the unsaved projects." msgstr "清除我对未保存的项目的选择。" -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "加载具有修改的 G-Code 的 3MF 时不会出现警告" msgid "Auto-Backup" @@ -6761,10 +6765,10 @@ msgstr "保存" msgid "save debug settings" msgstr "保存调试设置" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "DEBUG模式生效!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "切换云环境,请重新登录!" msgid "System presets" @@ -6779,10 +6783,10 @@ msgstr "不兼容的预设" msgid "AMS filaments" msgstr "AMS 打印丝" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "点击设置材料颜色" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "请选择材料颜色" msgid "Add/Remove presets" @@ -6800,7 +6804,7 @@ msgstr "添加/删除材料" msgid "Add/Remove materials" msgstr "添加/删除材料" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "选择/移除打印机(系统预设)" msgid "Create printer" @@ -6872,13 +6876,13 @@ msgstr "正在上传3mf" msgid "Jump to model publish web page" msgstr "跳转到发布页面" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "提示:发布前需要一些准备时间,请耐心等待。" msgid "Publish" msgstr "发布" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "发布已取消" msgid "Slicing Plate 1" @@ -6903,7 +6907,7 @@ msgstr "项目预设" msgid "Name is unavailable." msgstr "名称不可用。" -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "不允许覆盖系统预设" #, boost-format @@ -6911,10 +6915,12 @@ msgid "Preset \"%1%\" already exists." msgstr "预设“%1%”已存在。" #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "预设“%1%”已存在,并且和当前打印机不兼容。" -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "请注意这个预设会在保存过程中被替换" msgid "The name cannot be the same as a preset alias name." @@ -7115,7 +7121,7 @@ msgid "Please check the following:" msgstr "请检查以下内容:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" @@ -7148,7 +7154,7 @@ msgstr "" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "用%s打印高温材料(%s材料)可能会导致喷嘴损坏" @@ -7254,7 +7260,7 @@ msgstr "登录失败,请检查Pin码。" msgid "Log in printer" msgstr "登录打印机" -msgid "Would you like to log in this printer with current account?" +msgid "Would you like to log in to this printer with the current account?" msgstr "你想使用当前账号登录这台打印机吗?" msgid "Check the reason" @@ -7267,10 +7273,10 @@ msgid "Terms and Conditions" msgstr "用户使用协议" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" "感谢您购买Bambu Lab设备,使用Bambu Lab设备前,请阅读一下条款,单击同意使用您" @@ -7297,7 +7303,7 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " @@ -7346,14 +7352,14 @@ msgid "Click to reset all settings to the last saved preset." msgstr "点击以将所有设置还原到最后一次保存的版本。" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" "平滑模式的延时摄影需要擦料塔,否则打印件上可能会有瑕疵。您确定要关闭擦料塔" "吗?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" "平滑模式的延时摄影需要擦料塔,否则打印件上可能会有瑕疵。您想打开擦料塔吗?" @@ -7362,7 +7368,7 @@ msgid "Still print by object?" msgstr "仍然按对象打印吗?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7371,7 +7377,7 @@ msgstr "" "0顶层z距离,0接触层间距,交叠直线图案,并且禁用独立支撑层高" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7399,11 +7405,11 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "层高超出了打印机设置->挤出机->层高限制中的范围,这可能导致打印质量问题。" -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "是否自动调整到范围内?\n" msgid "Adjust" @@ -7414,8 +7420,8 @@ msgstr "忽略" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "实验性选项。在更换耗材丝时,将耗材丝回抽一段距离后再切断以最小化冲刷。虽然这" @@ -7423,9 +7429,9 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "实验性选项。在更换耗材丝时,将耗材丝回抽一段距离后再切断以最小化冲刷。虽然这" "可以显著减少冲刷,但也可能增加喷嘴堵塞或其他打印问题的风险。请配合打印机最新" @@ -7659,42 +7665,42 @@ msgid "Cool Plate (SuperTack)" msgstr "" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" msgid "Cool Plate" msgstr "低温打印热床" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "安装低温打印热床时的热床温度。0值表示这个耗材丝不支持低温打印热床" -msgid "Textured Cool plate" -msgstr "纹理低温打印热床" +msgid "Textured Cool Plate" +msgstr "纹理的低温打印床" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "安装纹理低温打印热床时的热床温度。0值表示这个耗材丝不支持纹理低温打印热床" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "工程材料热床" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "安装工程材料热床时的热床温度。0值表示这个耗材丝不支持工程材料热床" msgid "Smooth PEI Plate / High Temp Plate" msgstr "光滑PEI板/高温板" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "使用光滑PEI热床或高温打印热床时的床温。值0表示耗材不支持在光滑PEI热床或高温打" "印热床上打印" @@ -7703,8 +7709,8 @@ msgid "Textured PEI Plate" msgstr "纹理PEI热床" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "安装纹理PEI热床时的热床温度。0值表示这个耗材丝不支持纹理PEI热床" msgid "Volumetric speed limitation" @@ -7760,13 +7766,13 @@ msgstr "耗材丝结束G-code" msgid "Wipe tower parameters" msgstr "色塔参数" -msgid "Toolchange parameters with single extruder MM printers" +msgid "Tool change parameters with single extruder MM printers" msgstr "单挤出机多材料打印机的换色参数" msgid "Ramming settings" msgstr "尖端成型设置" -msgid "Toolchange parameters with multi extruder MM printers" +msgid "Tool change parameters with multi extruder MM printers" msgstr "多挤出机多材料打印机的换色参数" msgid "Dependencies" @@ -7778,7 +7784,7 @@ msgstr "配置依赖" msgid "Printable space" msgstr "可打印区域" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "" @@ -7801,7 +7807,7 @@ msgstr "自适应网床" msgid "Accessory" msgstr "配件" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "打印机G-code" msgid "Machine start G-code" @@ -7819,7 +7825,7 @@ msgstr "换层前G-code" msgid "Layer change G-code" msgstr "换层G-code" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "延时摄影G-code" msgid "Change filament G-code" @@ -7910,7 +7916,7 @@ msgstr "" "该打印机下已关联 %d 个材料预设与 %d 个工艺预设。如删除该打印机,材料与工艺预" "设将一并删除。" -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "不能删除被其他预设继承的预设!" msgid "The following presets inherit this preset." @@ -7927,7 +7933,7 @@ msgid_plural "Following presets will be deleted too." msgstr[0] "下列预设将被一起删除。" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" @@ -8131,7 +8137,7 @@ msgstr "发现新版本" msgid "Configuration update" msgstr "配置更新" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "新的配置包可用,您需要安装吗?" msgid "Description:" @@ -8140,13 +8146,13 @@ msgstr "描述:" msgid "Configuration incompatible" msgstr "配置不兼容" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "配置包和当前的应用程序不兼容。" #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "配置包和当前的应用程序不兼容。\n" "%s会更新配置包,否则无法正常启动" @@ -8155,7 +8161,7 @@ msgstr "" msgid "Exit %s" msgstr "退出 %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "配置包与当前APP不兼容。" msgid "Configuration updates" @@ -8208,15 +8214,15 @@ msgid "Map Filament" msgstr "匹配耗材丝" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" "注意:颜色已经选好了,您可以选中确认 \n" " 继续或手动修改它。" msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." +"Warning: The count of newly added and \n" +"current extruders exceeds 16." msgstr "" "警告:新增追加耗材丝数量 \n" " 和已有耗材丝数量超过了16." @@ -8324,7 +8330,7 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" @@ -8392,12 +8398,16 @@ msgid "Shift+R" msgstr "" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" "自动调整选定零件/所有零件的方向,\n" -"有选定零件时调整选定零件的朝向,没有选择零件时调整当前盘所有零件的朝向" +"有选定零件时调整选定零件的朝向,\n" +"没有选择零件时调整当项目所有零件的朝向" + +msgid "Auto orients all objects on the active plate." +msgstr "自动调整活动板上的所有物体的方向。" msgid "Shift+Tab" msgstr "" @@ -8507,17 +8517,29 @@ msgstr "旋转物件" msgid "Gizmo cut" msgstr "剪切物件" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "选择底面" +msgid "Gizmo mesh boolean" +msgstr "线框网格布尔操作" + msgid "Gizmo SLA support points" msgstr "SLA支撑点" msgid "Gizmo FDM paint-on seam" msgstr "FDM涂装接缝" -msgid "Gizmo Text emboss / engrave" -msgstr "Gizmo文本浮雕/雕刻" +msgid "Gizmo text emboss/engrave" +msgstr "线框文本浮雕/雕刻" + +msgid "Gizmo measure" +msgstr "线框测量" + +msgid "Gizmo assemble" +msgstr "线框组合" + +msgid "Gizmo brim ears" +msgstr "线框耳状帽檐" msgid "Zoom in" msgstr "放大" @@ -8558,7 +8580,7 @@ msgstr "" msgid "Set extruder number for the objects and parts" msgstr "设置对象、零件使用的挤出机编号" -msgid "Delete objects, parts, modifiers " +msgid "Delete objects, parts, modifiers" msgstr "删除对象、零件、修改器" msgid "Select the object/part and press space to change the name" @@ -8588,8 +8610,8 @@ msgstr "水平滑动条 - 向右移动一步" msgid "On/Off one layer mode of the vertical slider" msgstr "开启/关闭垂直滑动条的单层模式" -msgid "On/Off g-code window" -msgstr "开启/关闭g-code窗口" +msgid "On/Off G-code window" +msgstr "开启/关闭G-code窗口" msgid "Move slider 5x faster" msgstr "5倍速移动滑动条" @@ -8607,7 +8629,7 @@ msgid "Release Note" msgstr "更新说明" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "版本 %s 更新信息" msgid "Network plug-in update" @@ -8618,7 +8640,7 @@ msgid "" msgstr "点击\"确定\",将在Orca Slicer下次启动之后自动升级网络插件" #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" msgstr "新的网络插件(%s) 可用,您是否需要安装它?" msgid "New version of Orca Slicer" @@ -8636,10 +8658,10 @@ msgstr "继续" msgid "Resume Printing" msgstr "继续打印" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "继续打印(缺陷可接受)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "继续打印(问题已解决)" msgid "Stop Printing" @@ -8757,10 +8779,10 @@ msgstr "最新版本" msgid "Updating" msgstr "更新中" -msgid "Updating failed" +msgid "Update failed" msgstr "更新失败" -msgid "Updating successful" +msgid "Update successful" msgstr "更新成功" msgid "" @@ -8878,7 +8900,7 @@ msgid "" msgstr "你的指纹非常接近启动区域。确保没有碰撞。" msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "由于错误的自定义G-code,G-code生成失败。\n" @@ -8928,7 +8950,7 @@ msgid "Multiple" msgstr "多个" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "计算 %1%的线宽失败。无法获得 \"%2%\" 的值" msgid "" @@ -9058,9 +9080,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr "离不可打印区域太近,会发生碰撞。\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "不能将温度差异过大的材料一起打印。否则挤出机和喷嘴在打印中可能被堵塞或损坏" @@ -9139,20 +9161,21 @@ msgid "" "requires that all objects have the same layer height." msgstr "不支持在可变层高开启时使用擦拭塔。它要求所有对象拥有相同的层高。" -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "擦拭塔要求”支撑间隙“为层高的整数倍。" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "擦拭塔要求各个对象拥有同样的层高。" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "擦拭塔要求各个对象使用同样的筏层数量。" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" msgid "" @@ -9162,7 +9185,7 @@ msgstr "擦拭塔要求各个对象拥有同样的层高。" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "各个对象的层高存在差异,无法启用擦料塔" msgid "" @@ -9205,7 +9228,7 @@ msgid "" "Support enforcers are used but support is not enabled. Please enable support." msgstr "使用了支撑添加器但没有打开支撑。请打开支撑。" -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "层高不能超过喷嘴直径" msgid "" @@ -9317,8 +9340,8 @@ msgid "Elephant foot compensation" msgstr "象脚补偿" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "将首层收缩用于补偿象脚效应" msgid "Elephant foot compensation layers" @@ -9336,19 +9359,19 @@ msgstr "层" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "每一层的切片高度。越小的层高意味着更高的精度和更长的打印时间。" msgid "Printable height" msgstr "可打印高度" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "由打印机结构约束的最大可打印高度" msgid "Preferred orientation" msgstr "零件朝向偏好" -msgid "Automatically orient stls on the Z-axis upon initial import" +msgid "Automatically orient stls on the Z-axis upon initial import." msgstr "导入模型时自动旋转到指定的朝向" msgid "Printer preset names" @@ -9357,7 +9380,7 @@ msgstr "打印机预设名" msgid "Use 3rd-party print host" msgstr "启用第三方网络连接" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "允许通过第三方网络连接控制BambuLab的打印机" msgid "Hostname, IP or URL" @@ -9378,7 +9401,7 @@ msgid "Device UI" msgstr "设备用户界面" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "如果打印机的设备用户界面的URL不同,请在此指定。" msgid "API Key / Password" @@ -9391,7 +9414,7 @@ msgstr "" "Orca Slicer可以将G-code文件上传到打印机主机。此字段应包含用于身份验证的API密" "钥或密码。" -msgid "Name of the printer" +msgid "Name of the printer." msgstr "打印机名称" msgid "HTTPS CA File" @@ -9422,7 +9445,7 @@ msgstr "" "在缺少或离线分发点的情况下忽略HTTPS证书吊销检查。如果连接失败,可以启用此选项" "来处理自签名证书。" -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "与物理打印机相关的预设名称" msgid "Authorization Type" @@ -9434,20 +9457,21 @@ msgstr "API秘钥" msgid "HTTP digest" msgstr "HTTP摘要" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "避免跨越外墙" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "空驶时绕过外墙以避免在模型外观面产生斑点" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "避免跨越外墙-最大绕行长度" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "避免跨越外墙时的最大绕行距离。当绕行距离比这个数值大时,此次空驶不绕行。绕行" "距离可表达为绝对值,或者相对直线空驶长度的百分比(例如50%)。0表示禁用" @@ -9459,31 +9483,31 @@ msgid "Other layers" msgstr "其它层" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "非首层热床温度。0值表示这个耗材丝不支持低温打印热床" msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "非首层热床温度。0值表示这个耗材丝不支持纹理低温打印热床" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "非首层热床温度。0值表示这个耗材丝不支持工程材料热床" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "非首层热床温度。0值表示这个耗材丝不支持高温打印热床" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "非首层热床温度。0值表示这个耗材丝不支持纹理PEI热床" msgid "Initial layer" @@ -9493,50 +9517,44 @@ msgid "Initial layer bed temperature" msgstr "首层床温" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "首层热床温度。0值表示这个耗材丝不支持低温打印热床" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "首层热床温度。0值表示这个耗材丝不支持纹理低温打印热床" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "首层热床温度。0值表示这个耗材丝不支持工程材料热床" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "首层热床温度。0值表示这个耗材丝不支持高温打印热床" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "首层热床温度。0值表示这个耗材丝不支持纹理PEI热床" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "打印机所支持的热床类型" msgid "Smooth Cool Plate" msgstr "光滑的低温打印床" -msgid "Engineering Plate" -msgstr "工程材料热床" - msgid "Smooth High Temp Plate" msgstr "光滑高温打印热床" -msgid "Textured Cool Plate" -msgstr "纹理的低温打印床" - msgid "First layer print sequence" msgstr "第一层打印顺序" @@ -9549,7 +9567,7 @@ msgstr "其他层的打印顺序数量" msgid "Other layers filament sequence" msgstr "其他层的耗材打印顺序" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "在每次换层抬升z高度之前插入这段G-code" msgid "Bottom shell layers" @@ -9558,7 +9576,7 @@ msgstr "底部壳体层数" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "底部壳体实心层层数,包括底面。当由该层数计算的厚度小于底部壳体厚度,切片时会" "增加底部壳体的层数" @@ -9571,7 +9589,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "如果由底部壳体层数算出的厚度小于这个数值,那么切片时将自动增加底部壳体层数。" "这能够避免当层高很小时,底部壳体过薄。0表示关闭这个设置,同时底部壳体的厚度完" @@ -9590,22 +9608,22 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" msgid "Everywhere" @@ -9716,9 +9734,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -9736,8 +9754,8 @@ msgid "Bridge flow ratio" msgstr "桥接流量" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -9761,7 +9779,7 @@ msgstr "顶部表面流量比例" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -9771,7 +9789,7 @@ msgid "Bottom surface flow ratio" msgstr "底部表面流量比例" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -9789,8 +9807,8 @@ msgid "Only one wall on top surfaces" msgstr "顶面单层墙" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "顶面只使用单层墙,从而更多的空间能够使用顶部填充图案" msgid "One wall threshold" @@ -9818,7 +9836,7 @@ msgstr "首层仅单层墙" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "首层只使用单层墙,从而更多的空间能够使用底部填充图案" msgid "Extra perimeters on overhangs" @@ -9852,7 +9870,7 @@ msgid "Reverse only internal perimeters" msgstr "仅反转内部墙壁" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -9880,9 +9898,9 @@ msgstr "沉孔搭桥" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" "此选项为沉孔创建搭桥,使其可以在无支撑的情况下打印。可用的模式包括:\n" "1. 无:不创建搭桥。\n" @@ -9916,13 +9934,13 @@ msgstr "" msgid "Classic mode" msgstr "经典模式" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "启用此选项以使用经典模式" msgid "Slow down for overhang" msgstr "悬垂降速" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "启用此选项将降低不同悬垂程度的走线的打印速度" msgid "Slow down for curled perimeters" @@ -9931,11 +9949,11 @@ msgstr "翘边降速" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -9956,7 +9974,7 @@ msgid "External" msgstr "外部" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -9975,7 +9993,7 @@ msgstr "" msgid "Brim width" msgstr "Brim宽度" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "从模型到最外圈brim走线的距离" msgid "Brim type" @@ -9995,7 +10013,7 @@ msgstr "Brim与模型的间隙" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "在brim和模型之间设置间隙,能够让brim更容易剥离" msgid "Brim ears" @@ -10008,8 +10026,8 @@ msgid "Brim ear max angle" msgstr "圆盘最大角度" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "让圆盘出现的最大角度。\n" @@ -10022,7 +10040,7 @@ msgstr "圆盘检测半径" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "在检测尖锐角度之前,几何形状将被简化。此参数表示简化的最小偏差长度。\n" "设为0以停用" @@ -10058,7 +10076,7 @@ msgstr "" "使用活动打印配置文件的配置值的布尔表达式。如果此表达式计算为 true,则此配置文" "件将被视为与活动打印配置文件兼容。" -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "打印顺序,逐层打印或者逐件打印" msgid "By layer" @@ -10070,7 +10088,7 @@ msgstr "逐件" msgid "Intra-layer order" msgstr "层内打印顺序" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "同一层内的打印顺序" msgid "As object list" @@ -10083,7 +10101,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "勾选这个选项,将降低打印速度,使得最终的层打印时间不小于\"最大风扇速度阈值" "\"里的层时间阈值,从而使得该层获得更久的冷却。这能够改善尖顶和小细节的冷却效" @@ -10094,19 +10112,19 @@ msgstr "普通打印" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "除首层之外的默认的打印和空驶的加速度" msgid "Default filament profile" msgstr "默认耗材配置" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "该机器配置的默认耗材配置" msgid "Default process profile" msgstr "默认切片配置" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "该机器的默认切片配置" msgid "Activate air filtration" @@ -10118,20 +10136,21 @@ msgstr "启用空气过滤/排气风扇。G-code命令:M106 P3 S(0-255)" msgid "Fan speed" msgstr "风扇速度" +#, fuzzy msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "打印过程中排气风扇的速度。此速度将覆盖耗材丝自定义gcode中的速度" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "打印完成后排气风扇的速度" msgid "No cooling for the first" msgstr "关闭冷却对前" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "对开始的一些层关闭所有的部件冷却风扇。通常关闭首层冷却用来获得更好的热床粘接" @@ -10139,8 +10158,8 @@ msgid "Don't support bridges" msgstr "不支撑桥接" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "不对整个桥接面进行支撑,否则支撑体会很大。不是很长的桥接通常可以无支撑直接打" "印。" @@ -10186,20 +10205,20 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" @@ -10222,31 +10241,25 @@ msgstr "过滤掉小的内部桥接" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" msgid "Filter" @@ -10272,18 +10285,18 @@ msgstr "" msgid "End G-code" msgstr "结尾G-code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "所有打印结束时的结尾G-code" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "对象之间Gcode" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" -msgstr "在对象之间插入 Gcode。此参数仅在逐个打印模型物体时生效。" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." +msgstr "在对象之间插入 G-code。此参数仅在逐个打印模型物体时生效。" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "结束使用该耗材打印时的结尾G-code" msgid "Ensure vertical shell thickness" @@ -10316,7 +10329,7 @@ msgstr "适量" msgid "Top surface pattern" msgstr "顶面图案" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "顶面填充的走线图案" msgid "Concentric" @@ -10346,7 +10359,7 @@ msgstr "八角螺旋" msgid "Bottom surface pattern" msgstr "底面图案" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "除了桥接外的底面填充的走线图案" msgid "Internal solid infill pattern" @@ -10386,14 +10399,14 @@ msgid "Small perimeters threshold" msgstr "微小部位周长阈值" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "这将设置微小部位周长的阈值。默认阈值为0mm" msgid "Walls printing order" msgstr "墙顺序" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10407,7 +10420,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10565,7 +10578,7 @@ msgstr "此选项决定了自适应网床网格区域在XY方向上应扩展的 msgid "Extruder Color" msgstr "挤出机颜色" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "只作为界面上的可视化辅助" msgid "Extruder offset" @@ -10575,22 +10588,22 @@ msgid "Flow ratio" msgstr "流量比例" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "材料经过融化后凝固可能会产生体积差异。这个设置会等比例改变所有挤出走线的挤出" "量。推荐的范围为0.95到1.05。发现大平层模型的顶面有轻微的缺料或多料时,或许可" "以尝试微调这个参数。" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -10604,7 +10617,7 @@ msgid "" "enabled." msgstr "启用压力提前,一旦启用会覆盖自动检测的结果" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "压力提前(Klipper)或者线性提前(Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -10651,19 +10664,18 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" msgid "Enable adaptive pressure advance for overhangs (beta)" @@ -10680,9 +10692,9 @@ msgid "Pressure advance for bridges" msgstr "为搭桥启用压力提前" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." @@ -10697,8 +10709,9 @@ msgid "Keep fan always on" msgstr "保持风扇常开" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "如果勾选这个选项,部件冷却风扇将永远不会停止,并且会至少运行在最小风扇转速值" "以减少风扇的启停频次" @@ -10710,21 +10723,17 @@ msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "如果启用,此设置将确保外墙不会为了满足最小层时间而减速。这在以下情况下特别有" "帮助:\n" -"\n" "1. 避免在打印光滑耗材时改变光泽\n" "2. 避免改变外墙速度,可能会产生轻微的墙壁伪影,看起来像z条纹\n" -"3. 避免以会在外墙上产生VFAs(细微伪影)的速度打印\n" -"\n" +"3. 避免以会在外墙上产生VFAs(细微伪影)的速度打印" msgid "Layer time" msgstr "层时间" @@ -10732,7 +10741,7 @@ msgstr "层时间" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "当层预估打印时间小于该数值时,部件冷却风扇将会被开启。风扇转速将根据层打印时" "间在最大和最小风扇转速之间插值获得" @@ -10760,7 +10769,7 @@ msgstr "打印此材料的所需的最小喷嘴硬度。零值表示不检查喷 msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "这个设置表示在1秒内能够融化和挤出的耗材丝体积。打印速度会受到最大体积速度的限" "制,防止设置过高和不合理的速度。不允许设置为0。" @@ -10774,7 +10783,7 @@ msgstr "加载耗材丝的时间" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Filament unload time" @@ -10783,7 +10792,7 @@ msgstr "卸载耗材丝的时间" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" msgid "Tool change time" @@ -10792,12 +10801,12 @@ msgstr "换工具头所需时间" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "耗材丝直径被用于计算G-code文件中的挤出量。因此很重要,应尽可能精确。" msgid "Pellet flow coefficient" @@ -10858,7 +10867,7 @@ msgid "Unloading speed" msgstr "卸载速度" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "用于擦拭塔卸载耗材的速度(不影响尖端成型之后初始部分的速度)。" @@ -10873,8 +10882,8 @@ msgid "Delay after unloading" msgstr "卸载后延迟" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "耗材丝卸载后等待的时间。有助于柔性材料(收缩到原始尺寸需更多的时间)以获得可" @@ -10898,7 +10907,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "从冷却管中心测量的尖端成型距离" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -10946,7 +10955,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "多色打印机执行尖端成型时(即,当打印机设置中的单挤出机多材料未选中时)。选中" "时,在换色之前,会迅速挤出少量耗材丝到擦拭塔上。此选项仅在启用擦拭塔时使用。" @@ -10954,39 +10963,39 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "多色尖端成型体积" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "换色前尖端成型的体积" msgid "Multi-tool ramming flow" msgstr "多色尖端成型流量" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "换色前耗材尖端成型的流量" msgid "Density" msgstr "密度" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "耗材丝的密度。只用于统计信息。" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "耗材丝的材料类型" msgid "Soluble material" msgstr "可溶性材料" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "可溶性材料通常用于打印支撑和支撑面" msgid "Support material" msgstr "支撑材料" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "支撑材料通常用于打印支撑体和支撑接触面" msgid "Softening temperature" @@ -10994,8 +11003,8 @@ msgstr "软化温度" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "材料在这个温度下会软化,因此当热床温度等于或高于这个温度时,强烈建议打开前门" "和/或去除上玻璃以避免堵塞。" @@ -11003,7 +11012,7 @@ msgstr "" msgid "Price" msgstr "价格" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "耗材丝的价格。只用于统计信息。" msgid "money/kg" @@ -11012,7 +11021,7 @@ msgstr "money/kg" msgid "Vendor" msgstr "供应商" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "打印耗材的供应商。仅用于展示。" msgid "(Undefined)" @@ -11023,7 +11032,7 @@ msgstr "稀疏填充方向" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "稀疏填充图案的角度,决定走线的开始或整体方向。" msgid "Solid infill direction" @@ -11031,7 +11040,7 @@ msgstr "实心填充方向" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "实心填充图案的角度,决定走线的开始或整体方向。" msgid "Rotate solid infill direction" @@ -11046,13 +11055,13 @@ msgstr "稀疏填充密度" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" msgid "Sparse infill pattern" msgstr "稀疏填充图案" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "内部稀疏填充的走线图案" msgid "Grid" @@ -11121,7 +11130,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -11148,7 +11157,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11160,21 +11169,21 @@ msgstr "" msgid "0 (Simple connect)" msgstr "0(简单连接)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "外墙的加速度。它通常使用比内壁速度慢的加速度,以获得更好的质量" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "内圈墙加速度,使用较低值可以改善质量。" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "空驶加速度" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "顶面填充的加速度。使用较低值可能会改善顶面质量" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "外墙加速度。使用较小的值可以提高质量。" msgid "" @@ -11203,13 +11212,13 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "首层加速度。使用较低值可以改善和构建板的粘接。" msgid "Enable accel_to_decel" msgstr "启用制动速度" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Klipper的max_accel_to_decel将被自动调整" msgid "accel_to_decel" @@ -11217,25 +11226,25 @@ msgstr "制动速度" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "Klipper的max_accel_to_decel将被调整为该加速度的百分比" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "外墙抖动值" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "内墙抖动值" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "顶面抖动值" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "填充抖动" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "首层抖动值" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "空驶抖动值" msgid "" @@ -11248,22 +11257,22 @@ msgstr "首层层高" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "首层层高" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "首层除实心填充之外的其他部分的打印速度" msgid "Initial layer infill" msgstr "首层填充" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "首层实心填充的打印速度" msgid "Initial layer travel speed" msgstr "首层空驶速度" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "首层空驶速度" msgid "Number of slow layers" @@ -11277,7 +11286,7 @@ msgstr "减慢前几层的打印速度。打印速度会逐渐加速到满速" msgid "Initial layer nozzle temperature" msgstr "首层打印温度" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "打印首层时的喷嘴温度" msgid "Full fan speed at layer" @@ -11302,7 +11311,7 @@ msgstr "支撐接触面风扇" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11331,7 +11340,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "打印外墙时随机抖动,使外表面产生绒效果。这个设置决定适用的位置。" msgid "Contour" @@ -11348,7 +11357,7 @@ msgstr "绒毛表面厚度" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "产生绒毛的抖动的宽度。建议小于外圈墙的线宽。" msgid "Fuzzy skin point distance" @@ -11356,20 +11365,20 @@ msgstr "绒毛表面点间距" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "产生绒毛表面时,插入的随机点之间的平均距离" msgid "Apply fuzzy skin to first layer" msgstr "绒毛表面应用至首层" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "是否在第一层应用绒毛效果" msgid "Fuzzy skin noise type" msgstr "绒毛噪声类型" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11438,7 +11447,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "填缝的速度。缝隙通常有不一致的线宽,应改用较慢速度打印。" msgid "Precise Z height" @@ -11457,7 +11466,7 @@ msgstr "圆弧拟合" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11475,7 +11484,8 @@ msgstr "" msgid "Add line number" msgstr "标注行号" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." msgstr "启用该设置,G-code的每一行的开头会增加Nx标注行号。" msgid "Scan first layer" @@ -11483,7 +11493,7 @@ msgstr "首层扫描" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "开启这个设置将打开打印机上的摄像头用于检查首层打印质量。" msgid "Nozzle type" @@ -11491,7 +11501,7 @@ msgstr "喷嘴类型" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "喷嘴的金属材料。这将决定喷嘴的耐磨性,以及可打印材料的种类" msgid "Undefine" @@ -11520,7 +11530,7 @@ msgstr "洛氏硬度" msgid "Printer structure" msgstr "打印机结构" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "打印设备的物理结构和组件" msgid "CoreXY" @@ -11551,10 +11561,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" @@ -11580,7 +11590,7 @@ msgstr "" msgid "Time cost" msgstr "时间花费" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "打印机每小时的成本" msgid "money/h" @@ -11607,7 +11617,7 @@ msgstr "" msgid "G-code flavor" msgstr "G-code风格" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "打印机兼容的G-code风格'" msgid "Klipper" @@ -11616,20 +11626,20 @@ msgstr "" msgid "Pellet Modded Printer" msgstr "" -msgid "Enable this option if your printer uses pellets instead of filaments" +msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "" msgid "Support multi bed types" msgstr "支持多种打印床类型" -msgid "Enable this option if you want to use multiple bed types" +msgid "Enable this option if you want to use multiple bed types." msgstr "如果要使用多种打印床类型,请启用此选项" msgid "Label objects" msgstr "标注模型" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11641,7 +11651,8 @@ msgstr "" msgid "Exclude objects" msgstr "对象排除" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +#, fuzzy +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "开启此选项以支持对象排除" msgid "Verbose G-code" @@ -11668,7 +11679,7 @@ msgid "Infill combination - Max layer height" msgstr "" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11708,19 +11719,19 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "顶部实心填充区域略微扩大,以便与墙壁重叠,以获得更好的粘合,并减少顶部填充与" "墙壁相接处的小孔出现。25-30%的值是一个很好的起点,可以减少小孔的出现。百分比" "值相对于稀疏填充的线宽" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "内部稀疏填充的打印速度" msgid "Inherits profile" msgstr "继承配置文件" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "父配置名称" msgid "Interface shells" @@ -11729,7 +11740,7 @@ msgstr "接触面外壳" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "强制在相邻材料/体积之间生成实心壳。适用于使用半透明材料或手动可溶性支撑材料的" "多挤出机打印" @@ -11746,7 +11757,7 @@ msgstr "分割区域的交错深度" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" @@ -11820,7 +11831,7 @@ msgstr "所有实心层" msgid "Ironing Pattern" msgstr "熨烫模式" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "熨烫时将使用的图案" msgid "Ironing flow" @@ -11828,13 +11839,13 @@ msgstr "熨烫流量" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "熨烫时相对正常层高流量的材料量。过高的数值将会导致表面材料过挤出。" msgid "Ironing line spacing" msgstr "熨烫间距" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "熨烫走线的间距" msgid "Ironing inset" @@ -11842,13 +11853,13 @@ msgstr "熨烫内缩" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "" msgid "Ironing speed" msgstr "熨烫速度" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "熨烫的打印速度" msgid "Ironing angle" @@ -11859,7 +11870,7 @@ msgid "" "uses the default method." msgstr "熨烫的角度。设为负值将禁用此功能并使用默认方法。" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "在每次换层抬升Z高度之后插入这段G-code。" msgid "Supports silent mode" @@ -11867,7 +11878,7 @@ msgstr "支持静音模式" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "机器是否支持使用低加速度打印的静音模式。" msgid "Emit limits to G-code" @@ -11878,23 +11889,23 @@ msgstr "机器限制" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" "如果启用,机器限制将写入到G-code文件。\n" "如果G-code风格设置为Klipper,则此选项将被忽略。" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "该G-code用于暂停打印。您可以在gcode预览中插入暂停G-code" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "该G-code是定制化指令" msgid "Small area flow compensation (beta)" msgstr "小区域填充流量补偿(试验)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "启用小区域填充的流量补偿" msgid "Flow Compensation Model" @@ -12008,12 +12019,12 @@ msgstr "回抽最大加速度(M204 R)" msgid "Maximum acceleration for travel" msgstr "空驶最大加速度" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "最大空驶加速度(M204 T),仅适用于Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "启用自动冷却时,可能会提高部件冷却风扇的转速。这是部件冷却风扇的最大速度限制" @@ -12021,36 +12032,37 @@ msgid "Max" msgstr "最大" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "挤出头最大可打印的层高。用于限制开启自适应层高时的最大层高。" msgid "Extrusion rate smoothing" msgstr "平滑挤出率" +#, fuzzy msgid "" "This parameter smooths out sudden extrusion rate changes that happen when " "the printer transitions from printing a high flow (high speed/larger width) " "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12069,7 +12081,7 @@ msgstr "" "够的平滑,以帮助压力提前实现更平滑的流量过渡。\n" "\n" "对于没有压力提前的较慢打印机,该值应该设置得非常低。对于近程挤出机来说10-15 " -"mm3/s2是一个很好值的起点,而对于远程挤出机来说是5-10 mm3/s2。\n" +"mm³/s²是一个很好值的起点,而对于远程挤出机来说是5-10 mm³/s²。\n" "\n" "这个功能在Prusa切片机中被称为压力均衡器。\n" "\n" @@ -12083,11 +12095,11 @@ msgstr "平滑段长度" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12102,7 +12114,7 @@ msgid "" "not be visible to the user." msgstr "" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "部件冷却风扇的最小转速" msgid "" @@ -12120,8 +12132,8 @@ msgid "Min" msgstr "最小" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "挤出头最小可打印的层高。用于限制开启自适应层高时的最小层高。" msgid "Min print speed" @@ -12155,7 +12167,7 @@ msgstr "Orca Slicer可以将G-code文件上传到打印机主机。此字段必 msgid "Nozzle volume" msgstr "喷嘴内腔体积" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "从切刀位置到喷嘴尖端的内腔体积" msgid "Cooling tube position" @@ -12196,7 +12208,7 @@ msgstr "额外加载距离" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "当设置为零时,耗材的加载移动与卸载移动的距离相同。如果为正,加载比卸载长。如" @@ -12214,7 +12226,7 @@ msgstr "减小填充回抽" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "当空驶完全在填充区域内时不触发回抽。这意味着即使漏料也是不可见的。对于复杂模" "型,该设置能够减少回抽次数以及打印时长,但是会造成G-code生成变慢" @@ -12227,7 +12239,7 @@ msgstr "此选项将降低非活动挤出机的温度,以防止渗出。" msgid "Filename format" msgstr "文件名格式" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "用户可以自定义导出项目文件的名称。" msgid "Make overhangs printable" @@ -12252,7 +12264,7 @@ msgstr "最大孔洞面积" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "模型底部的孔洞在被圆锥形材料填充前所允许的最大面积。值为0将填充模型底部的所有" "孔洞。" @@ -12278,10 +12290,10 @@ msgid "" "nozzle diameter." msgstr "内墙的线宽。如果以%表示,它将基于喷嘴直径来计算。" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "内圈墙打印速度" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "每一层的外墙" msgid "Alternate extra wall" @@ -12289,10 +12301,10 @@ msgstr "交替添加额外内墙" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." @@ -12334,25 +12346,25 @@ msgstr "打印机变种" msgid "Raft contact Z distance" msgstr "筏层Z间距" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "模型和筏层之间的Z间隙" msgid "Raft expansion" msgstr "筏层扩展" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "在XY平面扩展所有筏层" msgid "Initial layer density" msgstr "首层密度" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "筏和支撑的首层密度" msgid "Initial layer expansion" msgstr "首层扩展" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "扩展筏和支撑的首层可以改善和热床的粘接。" msgid "Raft layers" @@ -12360,14 +12372,14 @@ msgstr "筏层" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "模型会在相应层数的支撑上抬高进行打印。使用该功能通常用于打印ABS时翘曲。" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "为了避免G-code文件中过密集的点和走线,G-code走线通常是在简化模型的外轮廓之后" "生成。越小的数值代表更高的分辨率,同时需要更长的切片时间。" @@ -12377,20 +12389,20 @@ msgstr "空驶距离阈值" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "只在空驶距离大于该数值时触发回抽。" msgid "Retract amount before wipe" msgstr "擦拭前的回抽量" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "擦拭之前的回抽长度,用总回抽长度的百分比表示。" msgid "Retract when change layer" msgstr "换层时回抽" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "强制在换层时回抽。" msgid "Retract on top layer" @@ -12398,7 +12410,7 @@ msgstr "顶层回抽" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" msgid "Retraction Length" @@ -12411,12 +12423,12 @@ msgstr "" "挤出机中的一些材料会被拉回特定长度,避免空驶较长时材料渗出。设置为0表示关闭回" "抽。" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "切料时回抽(实验)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -12427,8 +12439,8 @@ msgid "Retraction distance when cut" msgstr "切料回抽距离" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "实验性选项。在更换耗材丝时,切断前的回抽长度" msgid "Z-hop height" @@ -12437,33 +12449,30 @@ msgstr "Z抬升高度" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "回抽完成之后,喷嘴轻微抬升,和打印件之间产生一定间隙。这能够避免空驶时喷嘴和" "打印件剐蹭和碰撞。使用螺旋线抬升z能够减少拉丝。" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Z抬升下边界" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "只有当Z高于此值且低于参数(Z抬升上边界)时,Z抬升才会生效" -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Z抬升上边界" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "如果该值为正,则Z抬升仅在Z高于参数(Z抬升下边界)且低于该值时才会生效" msgid "Z-hop type" msgstr "Z抬升类型" -msgid "Z hop type" -msgstr "抬Z类型" - msgid "Slope" msgstr "梯形" @@ -12474,8 +12483,8 @@ msgid "Traveling angle" msgstr "空驶抬高角度" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "" msgid "Only lift Z above" @@ -12498,7 +12507,7 @@ msgid "On surfaces" msgstr "仅表面抬Z" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "强制Z抬升行为。此设置受上述设置的影响(仅在高度以下抬Z/仅在高度以上抬Z)。" @@ -12531,15 +12540,15 @@ msgstr "当换色后回抽被补偿时,挤出机将推入额外数量的耗材 msgid "Retraction Speed" msgstr "回抽速度" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "回抽速度" msgid "De-retraction Speed" msgstr "装填速度" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "耗材丝装填的速度,0表示和回抽速度一致。" msgid "Use firmware retraction" @@ -12559,13 +12568,13 @@ msgid "Disable set remaining print time" msgstr "禁用M73剩余打印时间" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" +"Disable generating of the M73: Set remaining print time in the final G-code." msgstr "在最终生成的G-code中禁用M73命令:设置剩余打印时间" msgid "Seam position" msgstr "接缝位置" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "开始打印外墙的位置" msgid "Nearest" @@ -12645,7 +12654,7 @@ 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 " +"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 " @@ -12705,7 +12714,7 @@ msgid "Role base wipe speed" msgstr "自动擦拭速度" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" @@ -12730,7 +12739,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -12747,9 +12756,9 @@ msgstr "擦拭速度" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "擦拭速度是根据此配置中指定的速度设置确定的。如果该值以百分比形式表示(例如" "80%),则将根据上方的移动速度设置进行计算。该参数的默认值为80%。" @@ -12771,7 +12780,7 @@ msgstr "从模型中心到skirt起始点的角度。0是最右边的位置,逆 msgid "Skirt height" msgstr "Skirt高度" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "skirt有多少层。通常只有一层" msgid "Single loop draft shield" @@ -12789,7 +12798,7 @@ msgstr "风挡" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -12824,7 +12833,7 @@ msgstr "按对象" msgid "Skirt loops" msgstr "Skirt圈数" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "skirt的圈数。0表示关闭skirt。" msgid "Skirt speed" @@ -12836,19 +12845,26 @@ msgstr "skirt速度,单位为mm/s。0表示使用默认的层挤出速度。" msgid "Skirt minimum extrusion length" msgstr "Skirt最小挤出长度" +#, fuzzy msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" +"打印skirt时的最小挤出长度,单位为mm。0表示关闭此功能。\n" +"\n" +"如果打印机没有设置擦嘴线,建议启用。\n" +"自动排版或者打印件间距检查时并不会把圈数放入计算中,如遇问题请酌情考虑增加" +"圈数。" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "当层预估打印时间小于这个数值时,打印速度将会降低,从而获得更好的冷却效果。" @@ -12857,7 +12873,7 @@ msgstr "稀疏填充最小阈值" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "小于这个阈值的稀疏填充区域将会被内部实心填充替代。" msgid "Solid infill" @@ -12871,13 +12887,13 @@ msgid "" "computed over the nozzle diameter." msgstr "内部实心填充的线宽。如果以%表示,它将基于喷嘴直径来计算。" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "内部实心填充的速度,不是顶面和底面。" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "沿着对象的外轮廓螺旋上升,将实体模型转变为只有底面实心层和侧面单层墙壁的打" "印。最后生成的打印件没有接缝。" @@ -12887,7 +12903,7 @@ msgstr "光滑螺旋模式" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "光滑螺旋模式平滑X和Y轴移动,从而在所有方向上都没有可见的接缝,即使在不垂直的" "墙壁上也是如此。" @@ -12898,7 +12914,7 @@ msgstr "最大XY平滑阈值" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "在XY平面上移动点的最大距离,以尝试实现平滑的螺旋。如果以%表示,它将基于喷嘴直" "径来计算。" @@ -12948,8 +12964,8 @@ msgstr "软化温度" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" msgid "Preheat time" @@ -12966,23 +12982,23 @@ msgid "Preheat steps" msgstr "" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" msgid "Start G-code" msgstr "起始G-code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "整个打印开始前的起始G-code" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "开始使用这个耗材丝打印的起始G-code" msgid "Single Extruder Multi Material" msgstr "单挤出机多材料" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "使用单喷嘴打印多耗材" msgid "Manual Filament Change" @@ -13002,18 +13018,18 @@ msgstr "" msgid "Purge in prime tower" msgstr "冲刷进擦拭塔" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "冲刷剩余的耗材丝进入擦拭塔" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "启用耗材尖端成型" msgid "No sparse layers (beta)" msgstr "无稀疏层 (实验)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" @@ -13076,11 +13092,14 @@ msgstr "开启支撑" msgid "Enable support generation." msgstr "开启支撑生成。" +#, fuzzy msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" +"普通(自动)和树状(自动)用于自动生成支撑体。如果选择普通(手动)或树状" +"(手动),仅会在支撑强制面上生成支撑。" msgid "Normal (auto)" msgstr "普通(自动)" @@ -13097,7 +13116,7 @@ msgstr "树状(手动)" msgid "Support/object xy distance" msgstr "支撑/模型xy间距" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "模型和支撑之间XY分离距离" msgid "Support/object first layer gap" @@ -13115,7 +13134,7 @@ msgstr "设置支撑图案在水平面的旋转角度。" msgid "On build plate only" msgstr "仅在构建板生成" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "不在模型表面上生成支撑,只在热床上生成。" msgid "Support critical regions only" @@ -13135,13 +13154,13 @@ msgstr "移除可能并不需要支撑的小悬空。" msgid "Top Z distance" msgstr "顶部Z距离" -msgid "The z gap between the top support interface and object" +msgid "The Z gap between the top support interface and object." msgstr "支撑顶部和模型之间的z间隙" msgid "Bottom Z distance" msgstr "底部Z距离" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "支撑生成于模型表面时,支撑面底部和模型之间的z间隙" msgid "Support/raft base" @@ -13149,7 +13168,7 @@ msgstr "支撑/筏层主体" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" "打印支撑主体和筏层的耗材丝。\"缺省\"代表不指定特定的耗材丝,并使用当前耗材" @@ -13177,19 +13196,19 @@ msgstr "支撑/筏层界面" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "打印支撑接触面的耗材丝。\"缺省\"代表不指定特定的耗材丝,并使用当前耗材" msgid "Top interface layers" msgstr "顶部接触面层数" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "顶部接触面层数" msgid "Bottom interface layers" msgstr "底部接触面层数" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "底部界面层的数量" msgid "Same as top" @@ -13198,22 +13217,22 @@ msgstr "和顶部相同" msgid "Top interface spacing" msgstr "顶部接触面线距" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "接触面的线距。0代表实心接触面。" msgid "Bottom interface spacing" msgstr "底部接触面线距" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "底部接触面走线的线距。0表示实心接触面。" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "支撑面速度" msgid "Base pattern" msgstr "支撑主体图案" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "支撑走线图案" msgid "Rectilinear grid" @@ -13228,7 +13247,7 @@ msgstr "支撑面图案" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "支撑接触面的走线图案。非可溶支撑接触面的缺省图案为直线,可溶支撑接触面的缺省" "图案为同心。" @@ -13239,16 +13258,16 @@ msgstr "交叠的直线" msgid "Base pattern spacing" msgstr "主体图案线距" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "支撑线距" msgid "Normal Support expansion" msgstr "普通支撑拓展" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "在水平方向对普通支撑进行拓展(+)或收缩(-)" -msgid "Speed of support" +msgid "Speed of support." msgstr "支撑打印速度" msgid "" @@ -13289,7 +13308,7 @@ msgstr "支撑独立层高" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "支撑层使用与对象层独立的层高。这是为了支持自定义z-gap并且节省打印时间。当擦料" @@ -13316,8 +13335,8 @@ msgid "Tree support branch angle" msgstr "树状支撑分支角度" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "此设置确定了允许树状支撑的最大悬垂角度。如果角度增加,可以更水平地打印分支," @@ -13360,8 +13379,8 @@ msgid "Adaptive layer height" msgstr "自适应层高" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "启用此选项将自动计算(除第一层外)树状支撑的层高。" msgid "Auto brim width" @@ -13369,13 +13388,13 @@ msgstr "自动裙边宽度" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "启用此选项意味着树状支撑的裙边宽度将自动计算自动计算" msgid "Tree support brim width" msgstr "树状支撑裙边宽度" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "从树状支撑分支到最外层裙边线的距离" msgid "Tip Diameter" @@ -13418,7 +13437,7 @@ msgstr "树状支撑生成填充" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "这个设置决定是否为树状支撑内部的空腔生成填充。" msgid "Activate temperature control" @@ -13430,7 +13449,7 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " @@ -13445,13 +13464,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13460,7 +13479,7 @@ msgid "" "heater is installed." msgstr "" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "除首层外的其它层的喷嘴温度" msgid "Detect thin wall" @@ -13468,17 +13487,17 @@ msgstr "检查薄壁" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "检查无法容纳两条走线的薄壁。使用单条走线打印。可能会打地不是很好,因为走线不" "再闭合。" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "换料时插入的G-code,包括T命令。" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "当挤出类型改变时会插入此G-code" msgid "" @@ -13486,7 +13505,7 @@ msgid "" "the nozzle diameter." msgstr "顶面的线宽。如果以%表示,它将基于喷嘴直径来计算。" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "顶面实心填充的速度" msgid "Top shell layers" @@ -13495,7 +13514,7 @@ msgstr "顶部壳体层数" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "顶部壳体实心层层数,包括顶面。当由该层数计算的厚度小于顶部壳体厚度,切片时会" "增加顶部壳体的层数" @@ -13511,21 +13530,22 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "如果由顶部壳体层数算出的厚度小于这个数值,那么切片时将自动增加顶部壳体层数。" "这能够避免当层高很小时,顶部壳体过薄。0表示关闭这个设置,同时顶部壳体的厚度完" "全由顶部壳体层数决定" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "空驶的速度。空驶是无挤出量的快速移动。" msgid "Wipe while retracting" msgstr "回抽时擦拭" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "当回抽时,让喷嘴沿着前面的走线方向继续移动,清除掉喷嘴上的漏料。这能够避免空" "驶结束打印新的区域时产生斑点。" @@ -13535,11 +13555,11 @@ msgstr "擦拭距离" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13577,7 +13597,7 @@ msgstr "清理量" msgid "The volume of material to prime extruder on tower." msgstr "擦拭塔上的清理量" -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "擦拭塔宽度" msgid "Wipe tower rotation angle" @@ -13611,7 +13631,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -13670,8 +13690,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "换料后的过渡料会被用来打印这个对象。这样可以减少材料浪费和缩短打印时间,但是" "这个对象的外观会是混色的。该功能只有在启用料塔的时候才生效。" @@ -13701,18 +13721,20 @@ msgid "Idle temperature" msgstr "待机温度" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" msgid "X-Y hole compensation" msgstr "X-Y 孔洞尺寸补偿" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "垂直的孔洞的尺寸将在X-Y方向收缩或拓展特定值。正值代表扩大孔洞。负值代表缩小孔" "洞。这个功能通常在模型有装配问题时微调尺寸" @@ -13720,11 +13742,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y 外轮廓尺寸补偿" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "模型外轮廓的尺寸将在X-Y方向收缩或拓展特定值。正值代表扩大。负值代表缩小。这个" "功能通常在模型有装配问题时微调尺寸" @@ -13778,23 +13801,23 @@ msgstr "G-code缩略图的格式" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "G-Code 缩略图格式: PNG 质量最佳,JPG 尺寸最小,QOI 用于低内存固件" msgid "Use relative E distances" msgstr "使用相对E距离" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "经典墙生成器产生的墙走线具有一致的挤出宽度,对狭窄区域使用填缝。Arachne引擎则" "产生变线宽的墙走线" @@ -13808,7 +13831,7 @@ msgstr "墙过渡长度" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "当零件逐渐变薄导致墙的层数发生变化时,需要在过渡段分配一定的空间来分割和连接" "墙走线。参数值表示为相对于喷嘴直径的百分比" @@ -13823,7 +13846,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "防止特定厚度变化规律的局部在多一层墙和少一层墙之间来回转换。这个参数将挤压宽" "度的范围扩大到[墙最小宽度-参数值, 2*墙最小宽度+参数值]。增大参数可以减少转换" @@ -13838,7 +13861,7 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" "何时在偶数和奇数墙层数之间创建过渡段。角度大于这个阈值的楔形将不创建过渡段," "并且不会在楔形中心打印墙走线以填补剩余空间。减小这个数值能减少中心墙走线的数" @@ -13849,7 +13872,7 @@ msgstr "墙分布计数" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "从中心开始计算的墙层数,线宽变化需要分布在这些墙走线上。较低的数值意味着外墙" "宽度更不易被改变" @@ -13857,11 +13880,12 @@ msgstr "" msgid "Minimum feature size" msgstr "最小特征尺寸" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "薄壁特征的最小厚度。比这个数值还薄的特征将不被打印,而比最小特征厚度还厚的特" "征将被加宽到墙最小宽度。参数值表示为相对喷嘴直径的百分比" @@ -13903,7 +13927,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "用于替换模型细小特征(根据最小特征尺寸)的墙线宽。如果墙最小线宽小于最小特征" "的厚度,则墙将变得和特征本身一样厚。参数值表示为相对喷嘴直径的百分比" @@ -13912,9 +13936,9 @@ msgid "Detect narrow internal solid infill" msgstr "识别狭窄内部实心填充" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "此选项用于自动识别内部狭窄的实心填充。开启后,将对狭窄实心区域使用同心填充加" "快打印速度。否则使用默认的直线填充。" @@ -13946,7 +13970,7 @@ msgstr "导出切片数据到目录" msgid "Load slicing data" msgstr "导入切片数据" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "从目录导入缓存的切片数据" msgid "Export STL" @@ -13958,7 +13982,7 @@ msgstr "" msgid "Export multiple STLs" msgstr "" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "" msgid "Slice" @@ -13981,13 +14005,13 @@ msgstr "" msgid "" "check whether current machine downward compatible with the machines in the " -"list" +"list." msgstr "" msgid "Load default filaments" msgstr "加载默认打印材料" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "加载第一个打印材料为默认材料" msgid "Minimum save" @@ -14011,7 +14035,8 @@ msgstr "每个盘的最大切片时间(秒)。" msgid "No check" msgstr "不要检查" -msgid "Do not run any validity checks, such as gcode path conflicts check." +#, fuzzy +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "不要运行任何有效性检查,如gcode路径冲突检查。" msgid "Normative check" @@ -14044,17 +14069,17 @@ msgstr "摆放选项" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "摆放选项:0-关闭,1-开启,其他-自动" -msgid "Repetions count" +msgid "Repetition count" msgstr "重复次数" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "整个模型的重复次数" msgid "Ensure on bed" msgstr "确保在热床上" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" +"Lift the object above the bed when it is partially below. Disabled by default." msgstr "当物体部分位于热床的下方时,将其提升到热床的上方。默认情况下禁用" msgid "" @@ -14066,7 +14091,7 @@ msgstr "" msgid "Convert Unit" msgstr "转换单位" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "转换模型的单位" msgid "Orient Options" @@ -14084,63 +14109,63 @@ msgstr "绕Y旋转" msgid "Rotation angle around the Y axis in degrees." msgstr "绕Y轴的旋转角度(以度为单位)" -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "根据因子缩放模型" msgid "Load General Settings" msgstr "加载通用设置" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "从指定文件加载工艺/打印机设置" msgid "Load Filament Settings" msgstr "加载耗材丝设置" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "从指定文件加载耗材丝设置" msgid "Skip Objects" msgstr "零件跳过" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "打印过程中跳过一些零件" msgid "Clone Objects" msgstr "" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "在使用最新设置时加载最新的进程/机器设置" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "在使用最新设置时,从指定的文件中加载最新的进程/机器设置。" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." msgstr "" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "" msgid "Load assemble list" msgstr "" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "" msgid "Data directory" @@ -14173,13 +14198,13 @@ msgstr "" msgid "Enable timelapse for print" msgstr "" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "加载自定义G-code" -msgid "Load custom gcode from json" +msgid "Load custom G-code from json." msgstr "从json文件加载自定义G-code" msgid "Load filament ids" @@ -14188,30 +14213,30 @@ msgstr "" msgid "Load filament ids for each object" msgstr "" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "" -msgid "Avoid extrusion calibrate region when doing arrange" +msgid "Avoid extrusion calibrate region when arranging" msgstr "" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." msgstr "" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "" msgid "MakerLab name" @@ -14238,13 +14263,13 @@ msgstr "" msgid "metadata value list added into 3mf" msgstr "" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "" -msgid "Current z-hop" +msgid "Current Z-hop" msgstr "" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "" msgid "" @@ -14328,10 +14353,10 @@ msgstr "" msgid "Total filament volume extruded per extruder during the entire print." msgstr "" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "" msgid "Total volume" @@ -14551,7 +14576,7 @@ msgstr "" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "对象的XY尺寸补偿不会生效,因为在此对象上做过涂色操作。\n" "XY尺寸补偿不能与涂色功能一起使用。" @@ -14572,9 +14597,6 @@ msgstr "无法读取提供的文件,因为该文件为空。" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "未知的文件格式。输入文件的扩展名必须为.3mf或.zip .amf。" -msgid "Canceled" -msgstr "已取消" - msgid "load_obj: failed to parse" msgstr "加载对象:无法分析" @@ -14676,7 +14698,7 @@ msgid "The name cannot be empty." msgstr "名称不能为空。" #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "未找到选定的预设:%s。" msgid "The name cannot be the same as the system preset name." @@ -14708,7 +14730,7 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" "该机型每个喷嘴最多只能保存16个历史结果。您可以删除先已有历史结果再开始校准。" @@ -14720,7 +14742,7 @@ msgstr "正在连接打印机..." msgid "The failed test result has been dropped." msgstr "测试失败的结果已被删除。" -msgid "Flow Dynamics Calibration result has been saved to the printer" +msgid "Flow Dynamics Calibration result has been saved to the printer." msgstr "动态流量校准的结果已保存至打印机。" #, c-format, boost-format @@ -14744,10 +14766,10 @@ msgstr "内部错误" msgid "Please select at least one filament for calibration" msgstr "请至少选择一种材料进行校准。" -msgid "Flow rate calibration result has been saved to preset" +msgid "Flow rate calibration result has been saved to preset." msgstr "流量比例校准结果已保存到预设" -msgid "Max volumetric speed calibration result has been saved to preset" +msgid "Max volumetric speed calibration result has been saved to preset." msgstr "最大体积速度校准结果已保存到预设值" msgid "When do you need Flow Dynamics Calibration" @@ -14758,10 +14780,10 @@ msgid "" "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" "我们现在已经为不同的打印材料添加了自动校准功能,该功能是完全自动化的,并且结" "果将保存在打印机中以供将来使用。您只需要在以下有限情况下进行校准:\n" @@ -14811,12 +14833,12 @@ msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" "使用流量动态校准后,仍可能出现一些挤出问题,例如:\n" "1. 过度挤出:打印物体上有过多的材料,形成凸起或小球,或者层次看起来比预期的厚" @@ -14915,7 +14937,7 @@ msgstr "名称不能超过40个字符。" msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "相同名称的结果只会保存一个。您确定要覆盖其他结果吗?" msgid "Please find the best line on your plate" @@ -14967,9 +14989,6 @@ msgstr "跳过校准2" msgid "flow ratio : %s " msgstr "流量比:%s " -msgid "Please choose a block with smoothest top surface" -msgstr "请选择顶部表面最光滑的块" - msgid "Please choose a block with smoothest top surface." msgstr "请选择顶部表面最光滑的块。" @@ -15011,7 +15030,7 @@ msgstr "校准用耗材" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" "校准材料提示:\n" "-可以共享相同热床温度的材料\n" @@ -15272,7 +15291,7 @@ msgstr "结束回抽长度" msgid "mm/mm" msgstr "" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "将G-Code发送到打印机" msgid "Upload to Printer Host with the following filename:" @@ -15319,7 +15338,7 @@ msgstr "取消选中" msgid "Show error message" msgstr "显示错误信息" -msgid "Enqueued" +msgid "Queued" msgstr "已加入队列" msgid "Uploading" @@ -15408,13 +15427,13 @@ msgstr "系统版本:" msgid "DNS Server:" msgstr "DNS服务:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "测试逆戟鲸项目网站(GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "测试逆戟鲸项目网站(GitHub)" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "测试 Bing.com" msgid "Test bing.com:" @@ -15478,7 +15497,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "未输入自定义供应商,请输入自定义供应商。" msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "“Bambu”或者“Generic”不能用于自定义材料的厂商" msgid "Filament type is not selected, please reselect type." @@ -15495,7 +15514,7 @@ msgstr "材料的供应商或系列输入中可能包含转义字符。请删除 msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "自定义供应商或系列中的所有输入都是空格。请重新输入。" -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "自定义供应商不能是数字。请重新输入。" msgid "" @@ -15504,7 +15523,7 @@ msgstr "您还没有选择打印机或预设。请至少选择一个。" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -15523,8 +15542,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "我们将会把预设重命名为“供应商类型名 @ 您选择的打印机”\n" "如果您希望为更多打印机添加预设,请前往打印机选择页面" @@ -15550,7 +15569,7 @@ msgstr "导入预设" msgid "Create Type" msgstr "创建类型" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "该模型未找到,请重新选择供应商。" msgid "Select Model" @@ -15593,16 +15612,16 @@ msgstr "文件超过 %d MB,请重新导入。" msgid "Exception in obtaining file size, please import again." msgstr "获取文件大小异常,请重新导入。" -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "预设路径未找到,请重新选择供应商。" msgid "The printer model was not found, please reselect." msgstr "未找到打印机型号,请重新选择。" -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "未找到喷嘴直径,请重新选择。" -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "打印机预设未找到,请重新选择。" msgid "Printer Preset" @@ -15659,7 +15678,7 @@ msgstr "创建材料预设失败。如下:\n" msgid "Create process presets failed. As follows:\n" msgstr "创建工艺预设失败。如下:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "供应商未找到,请重新选择。" msgid "Current vendor has no models, please reselect." @@ -15686,10 +15705,10 @@ msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "您尚未选择要更换喷嘴的打印机,请进行选择。" -msgid "Create Printer Successful" +msgid "Printer Created Successfully" msgstr "创建打印机成功" -msgid "Create Filament Successful" +msgid "Filament Created Successfully" msgstr "创建材料成功" msgid "Printer Created" @@ -15715,7 +15734,7 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" @@ -15771,14 +15790,14 @@ msgstr "" "如果不清除,将会在文件夹名后添加时间后缀,您可以在创建后进行修改。" msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "打印机和属于打印机的所有的材料和工艺预设。\n" "能与他人分享。" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "用户材料预设集。\n" @@ -15836,7 +15855,7 @@ msgid "" msgstr "" "注意:如果在该材料下仅有的预设被删除,那么在退出对话框后该材料将被删除。" -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "被其他预设继承的预设不能被删除。" msgid "The following presets inherits this preset." @@ -15859,7 +15878,7 @@ msgid "Delete Filament" msgstr "删除材料" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" @@ -15979,16 +15998,16 @@ msgstr "连接到通过打印主机连接的打印机失败。" msgid "Mismatched type of print host: %s" msgstr "打印主机的类型不匹配:%s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "与 AstroBox 的连接正常。" msgid "Could not connect to AstroBox" msgstr "无法连接到 AstroBox。" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "请注意,需要至少 AstroBox 版本 1.1.0。" -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "成功连接到 Duet 控制器。" msgid "Could not connect to Duet" @@ -16006,7 +16025,7 @@ msgstr "无法获取资源以创建新连接。" msgid "Upload not enabled on FlashAir card." msgstr "FlashAir卡未启用上传。" -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "FlashAir连接正常,并启用了上传。" msgid "Could not connect to FlashAir" @@ -16017,28 +16036,28 @@ msgid "" "is required." msgstr "需要 FlashAir 固件版本为 2.00.02 或更高,并激活上传功能。" -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "MKS的连接正常。" msgid "Could not connect to MKS" msgstr "无法连接到MKS。" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "成功连接到 OctoPrint。" msgid "Could not connect to OctoPrint" msgstr "无法连接到OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "注意:至少需要 OctoPrint 版本 1.1.0。" -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "与 Prusa SL1 / SL1S 的连接正常。" msgid "Could not connect to Prusa SLA" msgstr "无法连接到 Prusa SLA。" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "连接到 PrusaLink 的连接正常。" msgid "Could not connect to PrusaLink" @@ -16062,19 +16081,19 @@ msgstr "%1%:没有可用空间" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "上载失败。在%1%找不到合适的存储。" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "与Prusa Connect的连接工作正常。" msgid "Could not connect to Prusa Connect" msgstr "无法连接到Prusa connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "与 Repetier 的连接正常。" msgid "Could not connect to Repetier" msgstr "无法连接到Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "注意:需要 Repetier 版本至少为 0.90.0。" #, boost-format @@ -16102,36 +16121,35 @@ msgid "" msgstr "主机打印机的枚举失败。消息体:\"%1%\"错误:\"%2%\"" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "0.2 mm 喷嘴的默认参数,层高小,层纹不明显,打印质量高,适合大部分常规打印场" "景。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "此为高质量参数,相比于此喷嘴的默认参数,打印速度、加速度较低,稀疏填充图案为" "螺旋体,打印质量更高,但耗时更长。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "相比于此喷嘴的默认参数,层高较大,层纹不明显,打印耗时稍短。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "相比于此喷嘴的默认参数,层高较大,层纹稍显现,打印耗时较短。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,几乎不显层纹,打印质量较高,但打印耗时较" "长。" @@ -16139,16 +16157,16 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" "填充图案为螺旋体,几乎不显层纹,打印质量非常高,但打印耗时很长。" msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,几乎不显层纹,打印质量较高,但打印耗时较" "长。" @@ -16156,47 +16174,47 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" "填充图案为螺旋体,几乎不显层纹,打印质量非常高,但打印耗时很长。" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "0.4 mm 喷嘴的默认参数,层高常规,层纹一般,打印质量常规,适合大部分常规打印场" "景。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "此为强度参数,相比于此喷嘴的默认参数,墙层数较大,稀疏填充密度较高,打印件的" "强度更高,但耗材用量更大,耗时更长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "相比于此喷嘴的默认参数,层高较大,层纹较明显,打印质量较低,部分模型的打印耗" "时稍短。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "相比于此喷嘴的默认参数,层高较大,层纹较明显,打印质量较低,部分模型的打印耗" "时较短。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量较高,但打印耗时较" "长。" @@ -16204,16 +16222,16 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" "填充图案为螺旋体,层纹较不明显,打印质量较高,但打印耗时很长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹更不明显,打印质量较高,但打印耗时较" "长。" @@ -16221,101 +16239,99 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "此为高质量参数,相比于此喷嘴的默认参数,层高较小,打印速度、加速度较低,稀疏" "填充图案为螺旋体,层纹更不明显,打印质量很高,但打印耗时很长。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹更不明显,打印质量较高,但打印耗时较" "长。" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "" "0.6 mm 喷嘴的默认参数,层高较大,层纹明显,打印质量一般,打印耗时一般。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "此为强度参数,相比于此喷嘴的默认参数,墙层数较大,稀疏填充密度较高,打印件的" "强度更高,但耗材用量更大,耗时更长。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "相比于此喷嘴的默认参数,层高较大,层纹较明显,打印质量较低,部分模型的打印耗" "时较短。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "相比于此喷嘴的默认参数,层高较大,层纹很明显,打印质量较低,部分模型的打印耗" "时较短。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量稍微较高,部分模型的" "打印耗时较长。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量较高,部分模型的打印" "耗时较长。" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "0.8 mm 喷嘴的默认参数,层高较大,层纹很明显,打印质量低,打印耗时一般。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "相比于此喷嘴的默认参数,层高更大,层纹非常明显,打印质量较低,部分模型的打印" "耗时较短。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "相比于此喷嘴的默认参数,层高较大,层纹非常明显,打印质量较低,部分模型的打印" "耗时较短。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量稍微较高,部分模型的" "打印耗时较长。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "相比于此喷嘴的默认参数,层高较小,层纹较不明显,打印质量较高,部分模型的打印" "耗时较长。" @@ -16341,7 +16357,7 @@ msgstr "未知错误" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "尚未连接到SimplyPrint账户,前往连接选项来进行配置。" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "与Flashforge的连接工作正常。" msgid "Could not connect to Flashforge" @@ -16356,7 +16372,7 @@ msgstr "在您为此应用程序进行授权时,请允许所需的权限。" msgid "Something unexpected happened when trying to log in, please try again." msgstr "在尝试登录时发生了异常,请重试。" -msgid "User cancelled." +msgid "User canceled." msgstr "用户已取消。" msgid "Head diameter" @@ -16387,18 +16403,18 @@ msgid "Adjust section view" msgstr "调整剖面视图" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "警告:Brim类型未设置为绘制模式,耳状Brim将不会生效!" msgid "Set the brim type to \"painted\"" msgstr "将Brim类型设置为绘制模式" msgid " invalid brim ears" -msgstr "个无效耳状Brim" +msgstr "个无效耳状帽檐" msgid "Brim Ears" -msgstr "耳状Brim" +msgstr "耳状帽檐" msgid "Please select single object." msgstr "请选中单个对象。" @@ -16478,7 +16494,7 @@ msgstr "" msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "如何使用键盘快捷键\n" "您知道吗?Orca Slicer提供了广泛的键盘快捷键和3D场景操作。" @@ -16521,7 +16537,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "自动摆盘\n" "您知道吗?您可以自动排列项目中的所有对象。" @@ -16530,7 +16546,7 @@ msgstr "" msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "自动朝向\n" "您知道吗,您只需单击鼠标,即可将对象旋转到适合的打印方向。" @@ -16695,7 +16711,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "使用Brim\n" @@ -16705,7 +16721,7 @@ msgstr "" msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "为多个对象设置参数\n" "您知道吗,可以同时为所有选定对象设置切片参数。" @@ -16721,7 +16737,7 @@ msgstr "" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "冲刷到支持/对象/填充中\n" @@ -16736,13 +16752,14 @@ msgstr "" "提高强度\n" "你知道吗?你可以使用更多的墙层数和更高的疏散填充密度来提高模型的强度。" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "什么时候需要打开机箱门打印\n" "您知道吗?在较高腔温下打印低温耗材,打开机箱门可以减少挤出机/热端堵塞的概率。" @@ -16753,7 +16770,7 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "避免翘曲\n" "您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。" @@ -16916,14 +16933,6 @@ msgstr "" #~ "在您启用“降低打印速度 以得到更好的冷却”选项时最小的打印速度,以尝试保持上" #~ "方设置的最小层时间。" -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "普通(自动)和树状(自动)用于自动生成支撑体。如果选择普通(手动)或树状" -#~ "(手动),仅会在支撑强制面上生成支撑。" - #~ msgid "ShiftLeft mouse button" #~ msgstr "Shift + 鼠标左键" @@ -16937,13 +16946,10 @@ msgstr "" #~ msgid "Orca Slicer " #~ msgstr "逆戟鲸切片" -#~ msgid "Cool plate" -#~ msgstr "低温打印热床" - #~ msgid "Lift Z Enforcement" #~ msgstr "强化抬Z策略" -#~ msgid "Z hop when retract" +#~ msgid "Z-hop when retract" #~ msgstr "回抽时抬升Z" #~ msgid "Reverse on odd" @@ -16963,7 +16969,7 @@ msgstr "" #~ "这个设置也可以帮助减少零件变形,因为零件墙壁的应力减少了。" #~ msgid "" -#~ "Apply the reverse perimeters logic only on internal perimeters. \n" +#~ "Apply the reverse perimeters logic only on internal perimeters.\n" #~ "\n" #~ "This setting greatly reduces part stresses as they are now distributed in " #~ "alternating directions. This should reduce part warping while also " @@ -17011,44 +17017,20 @@ msgstr "" #~ "\n" #~ "如果启用了螺旋花瓶模式,此选项将被禁用。" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line.\n" -#~ "Final number of loops is not taling into account whlie arranging or " -#~ "validating objects distance. Increase loop number in such case." -#~ msgstr "" -#~ "打印skirt时的最小挤出长度,单位为mm。0表示关闭此功能。\n" -#~ "\n" -#~ "如果打印机没有设置擦嘴线,建议启用。\n" -#~ "自动排版或者打印件间距检查时并不会把圈数放入计算中,如遇问题请酌情考虑增加" -#~ "圈数。" - #~ msgid "" #~ "While printing by Object, the extruder may collide skirt.\n" #~ "Thus, reset the skirt layer to 1 to avoid that." #~ msgstr "逐件打印时,挤出机可能与裙边碰撞。因此将裙边的层数重置为1。" -#~ msgid "" -#~ "The geometry will be decimated before dectecting sharp angles. This " -#~ "parameter indicates the minimum length of the deviation for the " -#~ "decimation.\n" -#~ "0 to deactivate" -#~ msgstr "" -#~ "在检测尖锐角度之前,几何形状将被简化。此参数表示简化的最小偏差长度。\n" -#~ "设为0以停用" - #~ msgid "" #~ "Start the fan this number of seconds earlier than its target start time " #~ "(you can use fractional seconds). It assumes infinite acceleration for " #~ "this time estimation, and will only take into account G1 and G0 moves " #~ "(arc fitting is unsupported).\n" -#~ "It won't move fan commands from custom gcodes (they act as a sort of " +#~ "It won't move fan commands from custom G-code (they act as a sort of " #~ "'barrier').\n" -#~ "It won't move fan comands into the start gcode if the 'only custom start " -#~ "gcode' is activated.\n" +#~ "It won't move fan comands into the start G-code if the 'only custom start " +#~ "G-code' is activated.\n" #~ "Use 0 to deactivate." #~ msgstr "" #~ "把风扇启动指令往前移动指定时间以补偿风扇的启动时间。目前支支持G1 G0指令\n" @@ -17057,7 +17039,7 @@ msgstr "" #~ msgid "" #~ "A draft shield is useful to protect an ABS or ASA print from warping and " #~ "detaching from print bed due to wind draft. It is usually needed only " -#~ "with open frame printers, i.e. without an enclosure. \n" +#~ "with open frame printers, i.e. without an enclosure.\n" #~ "\n" #~ "Options:\n" #~ "Enabled = skirt is as tall as the highest printed object.\n" @@ -17081,17 +17063,6 @@ msgstr "" #~ msgid "Limited" #~ msgstr "限制" -#~ msgid "" -#~ "Minimum filament extrusion length in mm when printing the skirt. Zero " -#~ "means this feature is disabled.\n" -#~ "\n" -#~ "Using a non zero value is useful if the printer is set up to print " -#~ "without a prime line." -#~ msgstr "" -#~ "打印skirt时的最小挤出长度,单位为mm。0表示关闭此功能。\n" -#~ "\n" -#~ "如果打印机设置为不使用擦拭塔,使用非零值是有用的。" - #~ msgid "Don't filter out small internal bridges (beta)" #~ msgstr "保留细微内部桥接(试验)" @@ -17102,7 +17073,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -17146,7 +17117,7 @@ msgstr "" #~ msgstr "耗材收缩率" #~ msgid "" -#~ "Decrease this value slightly(for example 0.9) to reduce the amount of " +#~ "Decrease this value slightly (for example 0.9) to reduce the amount of " #~ "material for bridge, to improve sag" #~ msgstr "稍微减小这个数值(比如0.9)可以减小桥接的材料量,来改善下垂。" @@ -17173,11 +17144,11 @@ msgstr "" #~ "内部桥接的速度。如果该值以百分比表示,则将根据桥接速度进行计算。默认值为" #~ "150%。" -#~ msgid "Time to load new filament when switch filament. For statistics only" +#~ msgid "Time to load new filament when switch filament. For statistics only." #~ msgstr "切换耗材丝时,加载新耗材丝所需的时间。只用于统计信息。" #~ msgid "" -#~ "Time to unload old filament when switch filament. For statistics only" +#~ "Time to unload old filament when switch filament. For statistics only." #~ msgstr "切换耗材丝时,卸载旧的耗材丝所需时间。只用于统计信息。" #~ msgid "" @@ -17211,8 +17182,8 @@ msgstr "" #~ msgid "" #~ "Higher chamber temperature can help suppress or reduce warping and " #~ "potentially lead to higher interlayer bonding strength for high " -#~ "temperature materials like ABS, ASA, PC, PA and so on.At the same time, " -#~ "the air filtration of ABS and ASA will get worse.While for PLA, PETG, " +#~ "temperature materials like ABS, ASA, PC, PA and so on. At the same time, " +#~ "the air filtration of ABS and ASA will get worse. While for PLA, PETG, " #~ "TPU, PVA and other low temperature materials,the actual chamber " #~ "temperature should not be high to avoid cloggings, so 0 which stands for " #~ "turning off is highly recommended" @@ -17238,9 +17209,6 @@ msgstr "" #~ msgid "Wipe tower extruder" #~ msgstr "擦拭塔挤出机" -#~ msgid "V" -#~ msgstr "V" - #~ msgid "Export &Configs" #~ msgstr "导出预设" @@ -17309,7 +17277,7 @@ msgstr "" #~ "也会减慢这一过程。在此期间,指示器的数值可能并不准确。" #~ msgid "" -#~ "Note: if new filament is inserted during printing, the AMS will not " +#~ "Note: if new filament is inserted during printing, the AMS will not " #~ "automatically read any information until printing is completed." #~ msgstr "" #~ "注意:如果是在打印过程中插入新的耗材丝,AMS会在打印结束后自动读取此耗材丝" @@ -17326,7 +17294,7 @@ msgstr "" #~ msgstr "初始化失败(没有摄像头)" #~ msgid "" -#~ "Printer is busy downloading, Please wait for the downloading to finish." +#~ "Printer is busy downloading, please wait for the download to finish." #~ msgstr "打印机正忙于下载,请等待下载完成。" #~ msgid "Initialize failed (Not supported on the current printer version)!" @@ -17368,13 +17336,13 @@ msgstr "" #, boost-format #~ msgid "" -#~ "You have changed some settings of preset \"%1%\". \n" +#~ "You have changed some settings of preset \"%1%\".\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "您已经更改了预设 \"%1%\",是否在切换后要保留这些更改的预设参数?" #~ msgid "" -#~ "You have changed some preset settings. \n" +#~ "You have changed some preset settings.\n" #~ "Would you like to keep these changed settings (new value) after switching " #~ "preset?" #~ msgstr "您已经更改了预设参数,是否在切换后要保留这些更改的预设参数?" @@ -17463,24 +17431,13 @@ msgstr "" #~ "thickness (top+bottom solid layers)" #~ msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)" -#~ msgid " " -#~ msgstr " " - #~ msgid "Text-Rotate" #~ msgstr "旋转文字" #~ msgid "Configuration package updated to " #~ msgstr "配置包已更新到" -#~ msgid "" -#~ "We would rename the presets as \"Vendor Type Serial @printer you " -#~ "selected\". \n" -#~ "To add preset for more prinetrs, Please go to printer selection" -#~ msgstr "" -#~ "我们会将预设重命名为“供应商 类型 系列 @您选择的打印机”。\n" -#~ "要为更多的打印机添加预设,请前往打印机选择。" - -#~ msgid "The Config can not be loaded." +#~ msgid "The Config cannot be loaded." #~ msgstr "配置无法加载。" #~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only." @@ -17514,7 +17471,7 @@ msgstr "" #~ msgstr "个连接件穿透了模型" #~ msgid "" -#~ "Invalid state. \n" +#~ "Invalid state.\n" #~ "No one part is selected for keep after cut" #~ msgstr "" #~ "无效状态。\n" @@ -17593,14 +17550,14 @@ msgstr "" #~ "是 - 自动切换到直线图案\n" #~ "否 - 自动将密度重置为默认的非100%值" -#~ msgid "Please heat the nozzle to above 170 degree before loading filament." +#~ msgid "Please heat the nozzle to above 170°C before loading filament." #~ msgstr "请在进料前把喷嘴升温到170℃" -#~ msgid "Show g-code window" -#~ msgstr "显示g-code窗口" +#~ msgid "Show G-code window" +#~ msgstr "显示G-code窗口" -#~ msgid "If enabled, g-code window will be displayed." -#~ msgstr "如果启用,将显示g-code窗口。" +#~ msgid "If enabled, G-code window will be displayed." +#~ msgstr "如果启用,将显示G-code窗口。" #, c-format #~ msgid "Density of internal sparse infill, 100% means solid throughout" @@ -17697,7 +17654,7 @@ msgstr "" #~ msgstr "绕X轴的旋转角度(以度为单位)。" #, boost-format -#~ msgid "The selected preset: %1% is not found." +#~ msgid "The selected preset: %1% was not found." #~ msgstr "未找到选定的预设:%1%。" #~ msgid "" @@ -17721,7 +17678,7 @@ msgstr "" #~ msgid "" #~ "OrcaSlicer configuration file may be corrupted and is not abled to be " -#~ "parsed.Please delete the file and try again." +#~ "parsed. Please delete the file and try again." #~ msgstr "" #~ "OrcaSlicer 配置文件可能已损坏而无法解析。请删除此文件并重新启动" #~ "OrcaSlicer。" @@ -17737,7 +17694,7 @@ msgstr "" #~ msgid "" #~ "There are currently no identical spare consumables available, and " -#~ "automatic replenishment is currently not possible. \n" +#~ "automatic replenishment is currently not possible.\n" #~ "(Currently supporting automatic supply of consumables with the same " #~ "brand, material type, and color)" #~ msgstr "" @@ -17804,8 +17761,8 @@ msgstr "" #, c-format, boost-format #~ msgid "" #~ "Bed temperature of other layer is lower than bed temperature of initial " -#~ "layer for more than %d degree centigrade.\n" -#~ "This may cause model broken free from build plate during printing" +#~ "layer for more than %d degrees Celsius.\n" +#~ "This may cause model broken free from build plate during printing." #~ msgstr "" #~ "其它层的热床温度比首层热床温度低太多,超过了%d 摄氏度。\n" #~ "这可能导致打印中模型从热床脱落" @@ -17848,8 +17805,8 @@ msgstr "" #~ msgstr "高温打印热床" #~ msgid "" -#~ "Bed temperature when high temperature plate is installed. Value 0 means " -#~ "the filament does not support to print on the High Temp Plate" +#~ "Bed temperature when high temperature plate is installed. A value of 0 " +#~ "means the filament does not support printing on the High Temp Plate" #~ msgstr "安装高温打印热床时的热床温度。0值表示这个耗材丝不支持高温打印热床" #~ msgid "Internal bridge support thickness" @@ -17857,9 +17814,9 @@ msgstr "" #~ msgid "" #~ "If enabled, support loops will be generated under the contours of " -#~ "internal bridges.These support loops could prevent internal bridges from " +#~ "internal bridges. These support loops could prevent internal bridges from " #~ "extruding over the air and improve the top surface quality, especially " -#~ "when the sparse infill density is low.This value determines the thickness " +#~ "when the sparse infill density is low. This value determines the thickness " #~ "of the support loops. 0 means disable this feature" #~ msgstr "" #~ "如果开启,逆戟鲸切片会沿着内部桥接的边沿在其下方生成支撑轮廓。这些支撑轮廓" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index ba1cdbe715..bd9ee60a19 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -3,14 +3,15 @@ # FIRST Translator Jiang Yue , 2019. # REVISED lin-ycv , 2024. # REVISED Shuwn Hsu, 2024. +# REVISED Enfeng Tsao, 2025. # msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-03-16 22:32+0800\n" -"PO-Revision-Date: 2025-01-11 10:54+0800\n" -"Last-Translator: Shuwn Hsu\n" +"PO-Revision-Date: 2025-03-27 19:32+0800\n" +"Last-Translator: 5idereal \n" "Language-Team: \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" @@ -19,7 +20,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.5\n" -msgid "Supports Painting" +msgid "Support Painting" msgstr "支撐筆刷" msgid "Alt + Mouse wheel" @@ -115,7 +116,7 @@ msgstr "選擇底面" #, boost-format msgid "" -"Filament count exceeds the maximum number that painting tool supports. only " +"Filament count exceeds the maximum number that painting tool supports. Only " "the first %1% filaments will be available in painting tool." msgstr "線材數量超過上色工具支援的最大值,僅前 %1% 個線材可在上色工具中使用。" @@ -527,7 +528,7 @@ msgid "Cut by Plane" msgstr "用平面分割" msgid "non-manifold edges be caused by cut tool, do you want to fix it now?" -msgstr "切科後產生非流形邊,是否要修復?" +msgstr "切科後產生非流形邊,是否要修復?" msgid "Repairing model object" msgstr "修復模型物件" @@ -591,10 +592,10 @@ msgstr "顯示線框" msgid "%1%" msgstr "%1%" -msgid "Can't apply when process preview." +msgid "Can't apply when processing preview." msgstr "處理預覽的過程中無法套用。" -msgid "Operation already cancelling. Please wait few seconds." +msgid "Operation already cancelling. Please wait a few seconds." msgstr "操作已在取消中,請稍後。" msgid "Face recognition" @@ -715,7 +716,7 @@ msgid "Default font" msgstr "預設字型" msgid "Advanced" -msgstr "高級" +msgstr "進階" msgid "" "The text cannot be written using the selected font. Please try choosing a " @@ -744,7 +745,7 @@ msgid "Too small, enlarged font height inside text input." msgstr "太小,已增大文字輸入框內的字體高度。" msgid "Text doesn't show current horizontal alignment." -msgstr "文字未呈現當前的水平對齊狀態。" +msgstr "文字未呈現目前的水平對齊狀態。" msgid "Revert font changes." msgstr "還原字體設定變更。" @@ -763,7 +764,7 @@ msgid "Click to change text into object part." msgstr "點擊將文字轉換為物件部分。" msgid "You can't change a type of the last solid part of the object." -msgstr "你無法變更模型最後一個實體部分的類型。" +msgstr "您無法變更模型最後一個實體部分的類型。" msgctxt "EmbossOperation" msgid "Cut" @@ -782,7 +783,7 @@ msgid "Change Text Type" msgstr "更改文字類型" #, boost-format -msgid "Rename style(%1%) for embossing text" +msgid "Rename style (%1%) for embossing text" msgstr "重新命名浮雕文字樣式 (%1%)" msgid "Name can't be empty." @@ -804,7 +805,7 @@ msgid "Can't rename temporary style." msgstr "無法更改臨時樣式名稱。" msgid "First Add style to list." -msgstr "首先將樣式添加到列表中。" +msgstr "首先將樣式新增到列表中。" #, boost-format msgid "Save %1% style" @@ -836,7 +837,7 @@ msgstr "無法刪除僅存的樣式。" #, boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" -msgstr "你確定要永久移除「%1%」樣式嗎?" +msgstr "您確定要永久移除「%1%」樣式嗎?" #, boost-format msgid "Delete \"%1%\" style." @@ -856,7 +857,7 @@ msgstr "已修改樣式「%1%」" #, boost-format msgid "Current style is \"%1%\"" -msgstr "當前樣式為「%1%」" +msgstr "目前樣式為「%1%」" #, boost-format msgid "" @@ -864,9 +865,9 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" -"將樣式更改為「%1%」會捨棄當前的樣式修改。\n" +"將樣式更改為「%1%」會捨棄目前的樣式修改。\n" "\n" -"你確定要繼續嗎?" +"您確定要繼續嗎?" msgid "Not valid style." msgstr "無效的樣式。" @@ -1000,8 +1001,8 @@ msgstr "字型 「%1%」 無法使用,請選擇其他字型。" #, boost-format msgid "" -"Can't load exactly same font(\"%1%\"). Application selected a similar " -"one(\"%2%\"). You have to specify font for enable edit text." +"Can't load exactly same font (\"%1%\"). Application selected a similar " +"one (\"%2%\"). You have to specify font for enable edit text." msgstr "" "無法加載完全相同的字體「%1%」。已自動選擇相似的字體「%2%」。若要啟用文字編" "輯,請指定字體。" @@ -1128,7 +1129,7 @@ msgstr "最終形狀包含自相交或多個具有相同座標的點。" msgid "Shape is marked as invisible (%1%)." msgstr "形狀被標記為隱形 (%1%)。" -#. TRN: The first placeholder is shape identifier, the second one is text describing the problem. +#. TRN: The first placeholder is shape identifier, the second is text describing the problem. #, boost-format msgid "Fill of shape (%1%) contains unsupported: %2%." msgstr "形狀 (%1%) 的填充包含不支援的內容:%2%。" @@ -1168,8 +1169,8 @@ msgid "" "Do NOT save local path to 3MF file.\n" "Also disables 'reload from disk' option." msgstr "" -"不要將本地路徑保存到 3MF 文件中。\n" -"同時禁用「從磁碟重新載入」選項。" +"不要將本地路徑保存到 3MF 檔案中。\n" +"同時停用「從硬碟重新載入」選項。" #. TRN: An menu option to convert the SVG into an unmodifiable model part. msgid "Bake" @@ -1247,11 +1248,11 @@ msgstr "副檔名必須為「.svg」 ,但選擇的是 %1%" #, boost-format msgid "Nano SVG parser can't load from file (%1%)." -msgstr "Nano SVG 解析器無法載入文件 (%1%)。" +msgstr "Nano SVG 解析器無法載入檔案 (%1%)。" #, boost-format msgid "SVG file does NOT contain a single path to be embossed (%1%)." -msgstr "SVG 文件無要浮雕的路徑 (%1%)。" +msgstr "SVG 檔案無要浮雕的路徑 (%1%)。" msgid "No feature" msgstr "沒有特徵" @@ -1302,7 +1303,7 @@ msgid "Measure" msgstr "測量" msgid "" -"Please confirm explosion ratio = 1,and please select at least one object" +"Please confirm explosion ratio = 1, and please select at least one object." msgstr "請確認爆炸比例設為 1,並至少選擇一個物件" msgid "Please select at least one object." @@ -1356,13 +1357,13 @@ msgstr "" "特徵 1 已重設,\n" "特徵 2 已變為特徵 1" -msgid "Warning:please select Plane's feature." +msgid "Warning: please select Plane's feature." msgstr "警告:請選擇平面的特徵。" -msgid "Warning:please select Point's or Circle's feature." +msgid "Warning: please select Point's or Circle's feature." msgstr "警告:請選擇點或圓的特徵。" -msgid "Warning:please select two different mesh." +msgid "Warning: please select two different meshes." msgstr "警告:請選擇兩個不同的網格。" msgid "Copy to clipboard" @@ -1386,7 +1387,7 @@ msgstr "平行" msgid "Center coincidence" msgstr "中心重合" -msgid "Featue 1" +msgid "Feature 1" msgstr "特徵 1" msgid "Reverse rotation" @@ -1438,10 +1439,10 @@ msgid "" msgstr "設定檔「%1%」 已被載入,但部分數值無法識別。" msgid "" -"OrcaSlicer will terminate because of running out of memory.It may be a bug. " +"OrcaSlicer will terminate because of running out of memory. It may be a bug. " "It will be appreciated if you report the issue to our team." msgstr "" -"系統記憶體耗盡,Orca Slicer 即將停止並且結束。這可能是個錯誤,希望你可以回報" +"系統記憶體耗盡,Orca Slicer 即將停止並且結束。這可能是個錯誤,希望您可以回報" "此問題,我們非常感激。" msgid "Fatal error" @@ -1451,7 +1452,7 @@ msgid "" "OrcaSlicer will terminate because of a localization error. It will be " "appreciated if you report the specific scenario this issue happened." msgstr "" -"遇到語系本地化錯誤,Orca Slicer 即將停止並且結束。希望你可以回報發生此問題的" +"遇到語系本地化錯誤,Orca Slicer 即將停止並且結束。希望您可以回報發生此問題的" "具體狀況,我們非常感激。" msgid "Critical error" @@ -1465,7 +1466,7 @@ msgid "Untitled" msgstr "未命名" msgid "Downloading Bambu Network Plug-in" -msgstr "正在下載 Bambu 網路插件" +msgstr "正在下載 Bambu 網路外掛程式" msgid "Login information expired. Please login again." msgstr "登入資訊已過期。請重新登入。" @@ -1522,7 +1523,7 @@ msgid "" "not be affected." msgstr "" "OrcaSlicer 的組態檔案可能已損壞,無法解析。\n" -"OrcaSlicer 已嘗試重新創建組態檔案。\n" +"OrcaSlicer 已嘗試重新建立組態檔案。\n" "請注意,應用程式設定將會丟失,但機臺組態設定不會受到影響。" msgid "Rebuild" @@ -1555,7 +1556,7 @@ msgstr "部分預設已被修改。" msgid "" "You can keep the modified presets to the new project, discard or save " "changes as new presets." -msgstr "你可以保留尚未儲存修改的預設應用到新項目中,或者選擇忽略。" +msgstr "您可以保留尚未儲存修改的預設套用到新項目中,或者選擇忽略。" msgid "User logged out" msgstr "使用者登出" @@ -1568,7 +1569,7 @@ msgstr "打開專案項目" msgid "" "The version of Orca Slicer is too low and needs to be updated to the latest " -"version before it can be used normally" +"version before it can be used normally." msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用" msgid "Privacy Policy Update" @@ -1577,10 +1578,10 @@ msgstr "隱私協議更新" msgid "" "The number of user presets cached in the cloud has exceeded the upper limit, " "newly created user presets can only be used locally." -msgstr "雲端儲存的用戶預設數量已超過上限,新的用戶預設僅能在本地使用。" +msgstr "雲端儲存的使用者預設數量已超過上限,新的使用者預設僅能在本地使用。" msgid "Sync user presets" -msgstr "同步用戶預設" +msgstr "同步使用者預設" msgid "Loading user preset" msgstr "正在載入使用者預設" @@ -1773,7 +1774,7 @@ msgstr "Orca 拉絲測試" msgid "" "This model features text embossment on the top surface. For optimal results, " -"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 " +"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 " "for the 'Only One Wall on Top Surfaces' to work best.\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" @@ -1815,16 +1816,16 @@ msgid "Fix model" msgstr "修復模型" msgid "Export as one STL" -msgstr "匯出為一個STL" +msgstr "匯出為單一 STL" msgid "Export as STLs" -msgstr "匯出為STLs" +msgstr "匯出為 STLs" msgid "Reload from disk" msgstr "從硬碟重新載入" msgid "Reload the selected parts from disk" -msgstr "從磁碟重新載入選中的零件" +msgstr "從硬碟重新載入選中的零件" msgid "Replace with STL" msgstr "替換為 STL" @@ -1869,16 +1870,16 @@ msgstr "將換料的廢料使用在物件的支撐" msgid "Edit in Parameter Table" msgstr "在參數表格中編輯" -msgid "Convert from inch" +msgid "Convert from inches" msgstr "從英寸轉換" -msgid "Restore to inch" +msgid "Restore to inches" msgstr "恢復到英寸" -msgid "Convert from meter" +msgid "Convert from meters" msgstr "從公尺轉換" -msgid "Restore to meter" +msgid "Restore to meters" msgstr "恢復到公尺" msgid "Assemble" @@ -1924,10 +1925,10 @@ msgid "Ability to change text, font, size, ..." msgstr "編輯文字、字型、尺寸..." msgid "Edit SVG" -msgstr "編輯SVG" +msgstr "編輯 SVG" msgid "Change SVG source file, projection, size, ..." -msgstr "更改SVG來源、投影、尺寸..." +msgstr "更改 SVG 來源、投影、尺寸..." msgid "Invalidate cut info" msgstr "解除切割關係" @@ -2092,7 +2093,7 @@ msgid "Error!" msgstr "錯誤!" msgid "Failed to get the model data in the current file." -msgstr "取得目前檔案中的模型數據失敗。" +msgstr "取得目前檔案中的模型資料失敗。" msgid "Generic" msgstr "一般" @@ -2120,11 +2121,11 @@ msgstr "刪除的負體積屬於切割物件的一部分" msgid "" "To save cut correspondence you can delete all connectors from all related " "objects." -msgstr "為保證切割關係,你可以將所有關聯物件的連接件一起刪除。" +msgstr "為保證切割關係,您可以將所有關聯物件的連接件一起刪除。" msgid "" "This action will break a cut correspondence.\n" -"After that model consistency can't be guaranteed .\n" +"After that model consistency can't be guaranteed.\n" "\n" "To manipulate with solid parts or negative volumes you have to invalidate " "cut information first." @@ -2140,7 +2141,7 @@ msgstr "刪除所有連接件" msgid "Deleting the last solid part is not allowed." msgstr "不允許刪除物件的最後一個實體零件。" -msgid "The target object contains only one part and can not be split." +msgid "The target object contains only one part and cannot be split." msgstr "目標物件僅包含一個零件,無法被拆分。" msgid "Assembly" @@ -2183,12 +2184,12 @@ msgid "Selection conflicts" msgstr "選擇衝突" msgid "" -"If first selected item is an object, the second one should also be object." +"If the first selected item is an object, the second should also be an object." msgstr "如果第一個選擇的是物件,那麼第二個選擇的也必須是物件。" msgid "" -"If first selected item is a part, the second one should be part in the same " -"object." +"If the first selected item is a part, the second should be a part in the " +"same object." msgstr "如果第一個選擇的是零件,那麼第二個選擇的也必須是同一個物件中的零件。" msgid "The type of the last solid object part is not to be changed." @@ -2247,7 +2248,7 @@ msgstr "數值錯誤。" msgid "one cell can only be copied to one or multiple cells in the same column" msgstr "一個單元格僅能被複製到同一列的一個或多個單元格" -msgid "multiple cells copy is not supported" +msgid "Copying multiple cells is not supported." msgstr "不支援多個單元格的複製" msgid "Outside" @@ -2341,7 +2342,7 @@ msgid "Enter Custom G-code used on current layer:" msgstr "輸入當層使用的自訂 G-code:" msgid "Jump to Layer" -msgstr "轉換到層" +msgstr "跳至層" msgid "Please enter the layer number" msgstr "請輸入層數" @@ -2455,16 +2456,16 @@ msgid "Retry" msgstr "重試" msgid "Calibrating AMS..." -msgstr "正在校準 AMS..." +msgstr "正在校正 AMS..." msgid "A problem occurred during calibration. Click to view the solution." -msgstr "校準過程遇到問題。點擊查看解決方案。" +msgstr "校正過程遇到問題。點擊查看解決方案。" msgid "Calibrate again" -msgstr "重新校準" +msgstr "重新校正" msgid "Cancel calibration" -msgstr "取消校準" +msgstr "取消校正" msgid "Idling..." msgstr "閒置..." @@ -2505,8 +2506,8 @@ msgid "Edit" msgstr "編輯" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-arrange on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-arrange these objects." msgstr "" "選定的物件都位於鎖定的列印板上,\n" "無法對其進行自動排列。" @@ -2515,8 +2516,8 @@ msgid "No arrangeable objects are selected." msgstr "未選擇欲排列的物件象。" msgid "" -"This plate is locked,\n" -"We can not do auto-arrange on this plate." +"This plate is locked.\n" +"Cannot auto-arrange on this plate." msgstr "該列印板處於鎖定狀態,無法執行自動排列。" msgid "Arranging..." @@ -2549,15 +2550,15 @@ msgstr "" "%s" msgid "" -"All the selected objects are on the locked plate,\n" -"We can not do auto-orient on these objects." +"All the selected objects are on a locked plate.\n" +"Cannot auto-orient these objects." msgstr "" "所有選中的物件都處於被鎖定的列印板上,\n" "無法對這些物件做自動轉向。" msgid "" -"This plate is locked,\n" -"We can not do auto-orient on this plate." +"This plate is locked.\n" +"Cannot auto-orient on this plate." msgstr "" "該列印板處於鎖定狀態,\n" "無法對其進行自動轉向。" @@ -2610,7 +2611,7 @@ msgstr "上傳任務逾時,請排查網路狀態後重試。" msgid "Cloud service connection failed. Please try again." msgstr "雲端服務連接失敗,請重試。" -msgid "Print file not found. please slice again." +msgid "Print file not found. Please slice again." msgstr "未找到列印檔案,請重新切片。" msgid "" @@ -2633,7 +2634,7 @@ msgid "" "again." msgstr "列印檔案過大,請調整檔案大小後重試。" -msgid "Print file not found, Please slice it again and send it for printing." +msgid "Print file not found, please slice it again and send it for printing." msgstr "未找到列印檔案,請重新切片後再傳送列印。" msgid "" @@ -2661,19 +2662,21 @@ msgstr "正在傳送列印設定" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the device page in %ss" -msgstr "已傳送完成,即將自動轉換到設備頁面(%s秒)" +msgstr "已傳送完成,即將自動跳至設備頁面(%s秒)" #, c-format, boost-format msgid "Successfully sent. Will automatically jump to the next page in %ss" -msgstr "已成功傳送。將自動轉換到 %ss 中的下一頁" +msgstr "已成功傳送。將自動跳至 %ss 中的下一頁" msgid "An SD card needs to be inserted before printing via LAN." msgstr "透過區域網路列印之前需要插入 SD 記憶卡。" -msgid "Sending gcode file over LAN" +#, fuzzy +msgid "Sending G-code file over LAN" msgstr "透過區域網路傳送 gcode 檔案" -msgid "Sending gcode file to sdcard" +#, fuzzy +msgid "Sending G-code file to SD card" msgstr "傳送 gcode 檔案到 SD 記憶卡" #, c-format, boost-format @@ -2705,10 +2708,10 @@ msgid "" msgstr "匯入的 SLA 存檔不包含任何預設。目前的 SLA 預設被用作備用選項。" msgid "You cannot load SLA project with a multi-part object on the bed" -msgstr "你無法在列印板上載入包含多部分物件的 SLA 項目" +msgstr "您無法在列印板上載入包含多部分物件的 SLA 項目" msgid "Please check your object list before preset changing." -msgstr "請在更改預設之前檢查你的物件清單。" +msgstr "請在更改預設之前檢查您的物件清單。" msgid "Attention!" msgstr "注意!" @@ -2719,10 +2722,10 @@ msgstr "下載中" msgid "Download failed" msgstr "下載失敗" -msgid "Cancelled" +msgid "Canceled" msgstr "已取消" -msgid "Install successfully." +msgid "Installed successfully" msgstr "安裝成功。" msgid "Installing" @@ -2773,7 +2776,7 @@ msgstr "PrusaSlicer 最初是基於 Alessandro Ranellucci 的 Slic3r。" msgid "" "Slic3r was created by Alessandro Ranellucci with the help of many other " "contributors." -msgstr "Slic3r 由 Alessandro Ranellucci 在其他眾多貢獻者的幫助下創建。" +msgstr "Slic3r 由 Alessandro Ranellucci 在其他眾多貢獻者的幫助下建立。" msgid "Version" msgstr "版本" @@ -2787,9 +2790,6 @@ msgstr "確定" msgid "Close" msgstr "關閉" -msgid "Colour" -msgstr "顏色" - msgid "" "Nozzle\n" "Temperature" @@ -2811,7 +2811,7 @@ msgid "SN" msgstr "序號" msgid "Factors of Flow Dynamics Calibration" -msgstr "動態流量係數校準" +msgstr "動態流量係數校正" msgid "PA Profile" msgstr "PA 設定檔" @@ -2829,10 +2829,10 @@ msgid "Setting Virtual slot information while printing is not supported" msgstr "不支援在列印時設定虛擬槽位資訊" msgid "Are you sure you want to clear the filament information?" -msgstr "你確定要清除線材資訊嗎?" +msgstr "您確定要清除線材資訊嗎?" msgid "You need to select the material type and color first." -msgstr "你需要先選擇線材類型和顏色。" +msgstr "您需要先選擇線材類型和顏色。" #, c-format, boost-format msgid "Please input a valid value (K in %.1f~%.1f)" @@ -2849,14 +2849,14 @@ msgid "Custom Color" msgstr "自訂顏色" msgid "Dynamic flow calibration" -msgstr "動態流量校準" +msgstr "動態流量校正" msgid "" "The nozzle temp and max volumetric speed will affect the calibration " "results. Please fill in the same values as the actual printing. They can be " "auto-filled by selecting a filament preset." msgstr "" -"噴嘴溫度和最大體積速度會影響到校準結果,請填寫與實際列印相同的數值。可通過選" +"噴嘴溫度和最大體積速度會影響到校正結果,請填寫與實際列印相同的數值。可通過選" "擇已有的材料預設來自動填寫。" msgid "Nozzle Diameter" @@ -2894,7 +2894,7 @@ msgid "" "hot bed like the picture below, and fill the value on its left side into the " "factor K input box." msgstr "" -"校準完成。如下圖中的範例,請在你的熱床上找到最均勻完整的擠出線,並將其左側的" +"校正完成。如下圖中的範例,請在您的熱床上找到最均勻完整的擠出線,並將其左側的" "數值填入係數 K 欄位。" msgid "Save" @@ -2908,17 +2908,17 @@ msgstr "範例" #, c-format, boost-format msgid "Calibrating... %d%%" -msgstr "校準中... %d%%" +msgstr "校正中... %d%%" msgid "Calibration completed" -msgstr "校準已完成" +msgstr "校正已完成" #, c-format, boost-format msgid "%s does not support %s" msgstr "%s 不支援 %s" msgid "Dynamic flow Calibration" -msgstr "動態流量校準" +msgstr "動態流量校正" msgid "Step" msgstr "步驟" @@ -2947,15 +2947,15 @@ msgstr "目前 AMS 濕度" msgid "" "Please change the desiccant when it is too wet. The indicator may not " -"represent accurately in following cases : when the lid is open or the " -"desiccant pack is changed. it take hours to absorb the moisture, low " +"represent accurately in following cases: when the lid is open or the " +"desiccant pack is changed. It take hours to absorb the moisture, and low " "temperatures also slow down the process." msgstr "" "當乾燥劑過濕時,請更換乾燥劑。在以下情況下,指示器可能無法準確顯示:當蓋子打" "開或更換乾燥劑包時。吸收濕氣需要數小時,低溫會進一步減緩此過程。" msgid "" -"Config which AMS slot should be used for a filament used in the print job" +"Configure which AMS slot should be used for a filament used in the print job." msgstr "設定列印作業中所使用的線材應使用哪個 AMS 槽" msgid "Filament used in this print job" @@ -2973,7 +2973,7 @@ msgstr "不使用 AMS" msgid "Print using materials mounted on the back of the case" msgstr "使用安裝在機箱背面的線材進行列印" -msgid "Print with filaments in ams" +msgid "Print with filaments in AMS" msgstr "使用 AMS 裡的線材列印" msgid "Print with filaments mounted on the back of the chassis" @@ -2996,7 +2996,7 @@ msgstr "AMS 線材備份功能尚未啟用,請在 AMS 設定中開啟。" msgid "" "If there are two identical filaments in AMS, AMS filament backup will be " -"enabled. \n" +"enabled.\n" "(Currently supporting automatic supply of consumables with the same brand, " "material type, and color)" msgstr "" @@ -3023,15 +3023,15 @@ msgstr "" "20秒。" msgid "" -"Note: if a new filament is inserted during printing, the AMS will not " +"Note: if a new filament is inserted during printing, the AMS will not " "automatically read any information until printing is completed." -msgstr "備註: 若在列印過程中插入新的線材,AMS會等到列印完成才會讀取線材資訊。" +msgstr "備註:若在列印過程中插入新的線材,AMS 會等到列印完成才會讀取線材資訊。" msgid "" "When inserting a new filament, the AMS will not automatically read its " "information, leaving it blank for you to enter manually." msgstr "" -"在插入一卷新線材時,AMS 將不會自動讀取線材資訊,預留一個空的線材資訊等待你手" +"在插入一卷新線材時,AMS 將不會自動讀取線材資訊,預留一個空的線材資訊等待您手" "動輸入。" msgid "Power on update" @@ -3039,8 +3039,8 @@ msgstr "開機時偵測" msgid "" "The AMS will automatically read the information of inserted filament on " -"start-up. It will take about 1 minute.The reading process will roll filament " -"spools." +"start-up. It will take about 1 minute. The reading process will roll the " +"filament spools." msgstr "" "每次開機時,AMS 將會自動讀取有插入的線材資訊(讀取過程會轉動線卷)。需要花費" "大約1分鐘。" @@ -3065,8 +3065,8 @@ msgid "AMS filament backup" msgstr "AMS 備用線材" msgid "" -"AMS will continue to another spool with the same properties of filament " -"automatically when current filament runs out" +"AMS will continue to another spool with matching filament properties " +"automatically when current filament runs out." msgstr "AMS 線材耗盡後將自動切換到屬性完全相同的線材" msgid "Air Printing Detection" @@ -3081,17 +3081,17 @@ msgid "File" msgstr "檔案" msgid "Calibration" -msgstr "校準" +msgstr "校正" msgid "" "Failed to download the plug-in. Please check your firewall settings and vpn " "software, check and retry." -msgstr "插件下載失敗。請檢查你的防火牆設定和 VPN 軟體,檢查後重試。" +msgstr "外掛程式下載失敗。請檢查您的防火牆設定和 VPN 軟體,檢查後重試。" msgid "" "Failed to install the plug-in. Please check whether it is blocked or deleted " "by anti-virus software." -msgstr "插件安裝失敗。請檢查是否被防毒軟體阻擋或刪除。" +msgstr "外掛程式安裝失敗。請檢查是否被防毒軟體阻擋或刪除。" msgid "click here to see more info" msgstr "點擊這裡查看更多資訊" @@ -3119,14 +3119,14 @@ msgstr "發生了致命錯誤:「%1%」" msgid "Please save project and restart the program." msgstr "請儲存專案項目並重啟程式。" -msgid "Processing G-Code from Previous file..." +msgid "Processing G-code from Previous file..." msgstr "從之前的檔案載入 G-Code..." msgid "Slicing complete" msgstr "切片完成" msgid "Access violation" -msgstr "非法訪問" +msgstr "非法存取" msgid "Illegal instruction" msgstr "非法指令" @@ -3186,7 +3186,7 @@ msgid "" "Copying of the temporary G-code has finished but the original code at %1% " "couldn't be opened during copy check. The output G-code is at %2%.tmp." msgstr "" -"臨時 G-code 的 複製已完成,但原始 G-code 因 %1% 在複製檢查期間無法打開。輸出 " +"臨時 G-code 的複製已完成,但原始 G-code 因 %1% 在複製檢查期間無法打開。輸出 " "G-code 為%2%.tmp。" #, boost-format @@ -3194,25 +3194,25 @@ msgid "" "Copying of the temporary G-code has finished but the exported code couldn't " "be opened during copy check. The output G-code is at %1%.tmp." msgstr "" -"臨時 G-code 的複制已完成,但匯出的 G-code 無法在復製檢查過程中打開。輸出 G-" +"臨時 G-code 的複製已完成,但匯出的 G-code 無法在複製檢查過程中打開。輸出 G-" "code 為 %1%.tmp。" #, boost-format msgid "G-code file exported to %1%" msgstr "G-code 檔案已匯出為 %1%" -msgid "Unknown error when export G-code." +msgid "Unknown error when exporting G-code." msgstr "匯出 G-code 檔案發生未知錯誤。" #, boost-format msgid "" -"Failed to save gcode file.\n" +"Failed to save G-code file.\n" "Error message: %1%.\n" "Source file %2%." msgstr "" "無法儲存 G-code 檔案。\n" "錯誤資訊:%1%。\n" -"原始檔 %2%." +"原始檔 %2%。" msgid "Copying of the temporary G-code to the output G-code failed" msgstr "將臨時 G-Code 複製到輸出 G-Code 失敗" @@ -3380,8 +3380,8 @@ msgstr "使用AMS" msgid "Select Printers" msgstr "選擇列印設備" -msgid "Ams Status" -msgstr "AMS狀態" +msgid "AMS Status" +msgstr "AMS 狀態" msgid "Printing Options" msgstr "列印選項" @@ -3393,7 +3393,7 @@ msgid "Timelapse" msgstr "縮時攝影" msgid "Flow Dynamic Calibration" -msgstr "動態流量校準" +msgstr "動態流量校正" msgid "Send Options" msgstr "傳送選項" @@ -3402,7 +3402,7 @@ msgid "Send to" msgstr "傳送到" msgid "" -"printers at the same time.(It depends on how many devices can undergo " +"printers at the same time. (It depends on how many devices can undergo " "heating at the same time.)" msgstr "可同時運行的列印機數量。(取決於能同時加熱的設備數量而定。)" @@ -3410,7 +3410,7 @@ msgid "Wait" msgstr "等待" msgid "" -"minute each batch.(It depends on how long it takes to complete the heating.)" +"minute each batch. (It depends on how long it takes to complete the heating.)" msgstr "每批次需要的分鐘數。(具體取決於加熱完成所需的時間。)" msgid "Send" @@ -3487,7 +3487,7 @@ msgid "Error! Invalid model" msgstr "錯誤!無效模型" msgid "The selected file contains no geometry." -msgstr "所選檔案不包含任何幾何數據。" +msgstr "所選檔案不包含任何幾何資料。" msgid "" "The selected file contains several disjoint areas. This is not supported." @@ -3502,9 +3502,10 @@ msgstr "選擇 STL 檔案來匯入熱床模型:" msgid "Bed Shape" msgstr "熱床形狀" +#, fuzzy msgid "" -"The recommended minimum temperature is less than 190 degree or the " -"recommended maximum temperature is greater than 300 degree.\n" +"The recommended minimum temperature is less than 190°C or the " +"recommended maximum temperature is greater than 300°C.\n" msgstr "推薦的最小溫度低於 190 度或推薦的最大溫度高於 300 度。\n" msgid "" @@ -3526,8 +3527,8 @@ msgstr "" #, c-format, boost-format msgid "" -"Recommended nozzle temperature of this filament type is [%d, %d] degree " -"centigrade" +"The recommended nozzle temperature for this filament type is [%d, %d] " +"degrees Celsius." msgstr "該線材的推薦噴嘴溫度是攝氏 [%d, %d] 度" msgid "" @@ -3539,9 +3540,9 @@ msgstr "" #, c-format, boost-format msgid "" -"Current chamber temperature is higher than the material's safe " -"temperature,it may result in material softening and clogging.The maximum " -"safe temperature for the material is %d" +"Current chamber temperature is higher than the material's safe temperature, " +"this may result in material softening and clogging. The maximum safe " +"temperature for the material is %d" msgstr "" "目前列印設備內部溫度高於線材的安全溫度,可能會導致線材軟化和堵塞。線材的最高" "安全溫度為:%d" @@ -3565,8 +3566,8 @@ msgid "" "\n" "The first layer height will be reset to 0.2." msgstr "" -"0為無效的首層層高值。\n" -"將被重設為0.2。" +"0 為無效的首層層高值。\n" +"將被重設為 0.2。" msgid "" "This setting is only used for model size tunning with small value in some " @@ -3600,7 +3601,7 @@ msgid "" msgstr "當確保垂直外殼厚度設為『全部』時,交錯額外牆壁效果不佳。" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change ensure vertical shell thickness to Moderate and enable " "alternate extra wall\n" "No - Don't use alternate extra wall" @@ -3658,10 +3659,10 @@ msgstr "" "填充密度為 0、縮時攝影模式為傳統。" msgid " But machines with I3 structure will not generate timelapse videos." -msgstr " 但採用 I3 結構的機器無法生成延時影片。" +msgstr " 但採用 I3 結構的機器無法產生延時影片。" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings and enable spiral mode automatically\n" "No - Give up using spiral mode this time" msgstr "" @@ -3691,7 +3692,7 @@ msgid "Heating hotend" msgstr "加熱熱端" msgid "Calibrating extrusion" -msgstr "校準擠出補償" +msgstr "校正擠出補償" msgid "Scanning bed surface" msgstr "掃描熱床" @@ -3703,7 +3704,7 @@ msgid "Identifying build plate type" msgstr "識別列印板類型" msgid "Calibrating Micro Lidar" -msgstr "校準微型雷射雷達" +msgstr "校正微型雷射雷達" msgid "Homing toolhead" msgstr "工具頭回到起始點" @@ -3720,11 +3721,11 @@ msgstr "使用者暫停列印" msgid "Pause of front cover falling" msgstr "工具頭前蓋掉落暫停列印" -msgid "Calibrating the micro lida" -msgstr "校準微型雷射雷達" +msgid "Calibrating the micro lidar" +msgstr "校正微型雷射雷達" msgid "Calibrating extrusion flow" -msgstr "校準擠出流量" +msgstr "校正擠出流量" msgid "Paused due to nozzle temperature malfunction" msgstr "暫停:噴嘴溫度異常" @@ -3742,7 +3743,7 @@ msgid "Filament loading" msgstr "進料中" msgid "Motor noise calibration" -msgstr "電機噪音校準" +msgstr "電機噪音校正" msgid "Paused due to AMS lost" msgstr "由於 AMS 遺失而暫停" @@ -3756,8 +3757,8 @@ msgstr "暫停:列印設備內部溫度控制錯誤" msgid "Cooling chamber" msgstr "列印設備內部溫度冷卻中" -msgid "Paused by the Gcode inserted by user" -msgstr "使用者插入的 Gcode 導致暫停" +msgid "Paused by the G-code inserted by user" +msgstr "使用者插入的 G-code 導致暫停" msgid "Motor noise showoff" msgstr "電機噪音" @@ -3800,15 +3801,15 @@ msgstr "更新失敗。" msgid "" "The current chamber temperature or the target chamber temperature exceeds " -"45℃.In order to avoid extruder clogging,low temperature filament(PLA/PETG/" +"45℃. In order to avoid extruder clogging, low temperature filament (PLA/PETG/" "TPU) is not allowed to be loaded." msgstr "" -"當前或目標機箱溫度超過 45℃。為避免擠出機堵塞,不允許裝載低溫耗材(PLA/PETG/" +"目前或目標機箱溫度超過 45℃。為避免擠出機堵塞,不允許裝載低溫耗材(PLA/PETG/" "TPU)。" msgid "" -"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder.In order to " -"avoid extruder clogging,it is not allowed to set the chamber temperature " +"Low temperature filament (PLA/PETG/TPU) is loaded in the extruder. In order " +"to avoid extruder clogging, it is not allowed to set the chamber temperature " "above 45℃." msgstr "" "擠出機中已裝載低溫耗材(PLA/PETG/TPU)。為避免擠出機堵塞,機箱溫度不可設定超" @@ -3816,30 +3817,30 @@ msgstr "" msgid "" "When you set the chamber temperature below 40℃, the chamber temperature " -"control will not be activated. And the target chamber temperature will " +"control will not be activated, and the target chamber temperature will " "automatically be set to 0℃." msgstr "" "當機箱溫度設置低於 40℃時,機箱溫度控制將不會啟動,並且目標機箱溫度將自動設為 " "0℃。" -msgid "Failed to start printing job" +msgid "Failed to start print job" msgstr "無法啟動列印作業" msgid "" "This calibration does not support the currently selected nozzle diameter" -msgstr "校準不支援目前選擇的噴嘴直徑" +msgstr "校正不支援目前選擇的噴嘴直徑" msgid "Current flowrate cali param is invalid" -msgstr "目前流量校準參數無效" +msgstr "目前流量校正參數無效" msgid "Selected diameter and machine diameter do not match" msgstr "所選噴嘴直徑與設備不匹配" -msgid "Failed to generate cali gcode" -msgstr "產生校準代碼失敗" +msgid "Failed to generate cali G-code" +msgstr "產生校正代碼失敗" msgid "Calibration error" -msgstr "校準錯誤" +msgstr "校正錯誤" msgid "TPU is not supported by AMS." msgstr "AMS 不支援 TPU 線材。" @@ -3848,12 +3849,12 @@ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." msgstr "AMS 不支援 Bambu PET-CF/PA6-CF。" msgid "" -"Damp PVA will become flexible and get stuck inside AMS,please take care to " +"Damp PVA will become flexible and get stuck inside AMS, please take care to " "dry it before use." msgstr "潮濕的 PVA 會變得柔軟並黏在 AMS 內,請在使用前注意乾燥。" msgid "" -"CF/GF filaments are hard and brittle, It's easy to break or get stuck in " +"CF/GF filaments are hard and brittle, it's easy to break or get stuck in " "AMS, please use with caution." msgstr "含 CF/GF 線材又硬又脆,在 AMS 中很容易斷裂或卡住,請謹慎使用。" @@ -3867,8 +3868,8 @@ msgstr "編輯自訂 GOCDE(%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" msgstr "內建占位符(雙點擊加入GCODE)" -msgid "Search gcode placeholders" -msgstr "收尋GOCDE內的占位符" +msgid "Search G-code placeholders" +msgstr "搜尋 GCODE 內的占位符" msgid "Add selected placeholder to G-code" msgstr "將占位符加到GCODE" @@ -3889,7 +3890,7 @@ msgid "Slicing State" msgstr "切片狀態" msgid "Print Statistics" -msgstr "列印數據" +msgstr "列印統計資料" msgid "Objects Info" msgstr "物件資訊" @@ -3917,7 +3918,7 @@ msgid "Filament settings" msgstr "線材設定" msgid "SLA Materials settings" -msgstr "SLA材料設定" +msgstr "SLA 材料設定" msgid "Printer settings" msgstr "列印設備設定" @@ -3926,7 +3927,7 @@ msgid "parameter name" msgstr "參數名稱" #, c-format, boost-format -msgid "%s can't be percentage" +msgid "%s can't be a percentage" msgstr "%s 不可以是百分比" #, c-format, boost-format @@ -4014,17 +4015,17 @@ msgstr "風扇速度:" msgid "Temperature: " msgstr "溫度:" -msgid "Loading G-codes" +msgid "Loading G-code" msgstr "載入 G-code 中" msgid "Generating geometry vertex data" -msgstr "正在產生幾何頂點數據" +msgstr "正在產生幾何頂點資料" msgid "Generating geometry index data" -msgstr "正在產生幾何索引數據" +msgstr "正在產生幾何索引資料" msgid "Statistics of All Plates" -msgstr "所有列印板數據" +msgstr "所有列印板統計資料" msgid "Display" msgstr "顯示" @@ -4128,11 +4129,8 @@ msgstr "列印" msgid "Printer" msgstr "列印設備" -msgid "Custom g-code" -msgstr "自定義 g-code" - -msgid "ToolChange" -msgstr "ToolChange" +msgid "Tool Change" +msgstr "" msgid "Time Estimation" msgstr "時間預估" @@ -4250,7 +4248,7 @@ msgid "Allow multiple materials on same plate" msgstr "允許同一列印板中包含多種材料" msgid "Avoid extrusion calibration region" -msgstr "避開擠出校準區域" +msgstr "避開擠出校正區域" msgid "Align to Y axis" msgstr "與 Y 軸對齊" @@ -4258,8 +4256,11 @@ msgstr "與 Y 軸對齊" msgid "Add plate" msgstr "新增列印板" -msgid "Auto orient" -msgstr "自動定向" +msgid "Auto orient all/selected objects" +msgstr "自动定位所有/选定的对象" + +msgid "Auto orient all objects on current plate" +msgstr "自动调整当前板上的所有对象" msgid "Arrange all objects" msgstr "全域整理" @@ -4282,7 +4283,7 @@ msgstr "選擇列印板" msgid "Assembly Return" msgstr "退出組裝視角" -msgid "return" +msgid "Return" msgstr "返回" msgid "Paint Toolbar" @@ -4309,28 +4310,28 @@ msgstr "體積:" msgid "Size:" msgstr "尺寸:" -#, boost-format +#, fuzzy, boost-format msgid "" -"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please " +"Conflicts of G-code paths have been found at layer %d, z = %.2lf mm. Please " "separate the conflicted objects farther (%s <-> %s)." msgstr "" "發現 gcode 路徑在 %d 層,高為 %.2lf mm 處的衝突。請將有衝突的物件分離得更遠" "(%s <-> %s)。" -msgid "An object is layed over the boundary of plate." +msgid "An object is laid over the plate boundaries." msgstr "偵測到有物件放在列印板的邊界上。" msgid "A G-code path goes beyond the max print height." msgstr "偵測到超出列印高度的 G-code 路徑。" -msgid "A G-code path goes beyond the boundary of plate." +msgid "A G-code path goes beyond the plate boundaries." msgstr "偵測到超出熱床邊界的 G-code 路徑。" -msgid "Only the object being edit is visible." +msgid "Only the object being edited is visible." msgstr "只有正在編輯的物件是可見的。" msgid "" -"An object is laid over the boundary of plate or exceeds the height limit.\n" +"An object is laid over the plate boundaries or exceeds the height limit.\n" "Please solve the problem by moving it totally on or off the plate, and " "confirming that the height is within the build volume." msgstr "" @@ -4338,10 +4339,10 @@ msgstr "" "請將其完全移動到列印板內或列印板外,並確認高度在列印空間範圍以內來解決問題。" msgid "Calibration step selection" -msgstr "校準步驟選擇" +msgstr "校正步驟選擇" msgid "Micro lidar calibration" -msgstr "微型雷射雷達校準" +msgstr "微型雷射雷達校正" msgid "Bed leveling" msgstr "熱床調平" @@ -4353,27 +4354,27 @@ msgid "Motor noise cancellation" msgstr "電機噪音消除" msgid "Calibration program" -msgstr "校準程序" +msgstr "校正程序" msgid "" "The calibration program detects the status of your device automatically to " "minimize deviation.\n" "It keeps the device performing optimally." msgstr "" -"校準程序會自動檢測設備狀態以最小化偏差。\n" +"校正程序會自動檢測設備狀態以最小化偏差。\n" "它確保設備保持最佳性能。" msgid "Calibration Flow" -msgstr "校準流程" +msgstr "校正流程" msgid "Start Calibration" -msgstr "開始校準" +msgstr "開始校正" msgid "Completed" msgstr "已完成" msgid "Calibrating" -msgstr "校準中" +msgstr "校正中" msgid "No step selected" msgstr "未選擇任何步驟" @@ -4408,17 +4409,17 @@ msgstr "720p" msgid "1080p" msgstr "1080p" -msgid "ConnectPrinter(LAN)" +msgid "Connect Printer (LAN)" msgstr "連接列印設備(區域網路)" msgid "Please input the printer access code:" -msgstr "請輸入列印設備訪問碼:" +msgstr "請輸入列印設備存取碼:" msgid "" "You can find it in \"Settings > Network > Connection code\"\n" "on the printer, as shown in the figure:" msgstr "" -"你可以在列印設備「設置->網路->連接->訪問碼」\n" +"您可以在列印設備「設置->網路->連接->存取碼」\n" "查看,如下圖所示:" msgid "Invalid input." @@ -4455,7 +4456,7 @@ msgid "No" msgstr "否" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "將會被關閉以建立新模型,是否繼續?" +msgstr "將會被關閉以建立新模型,是否繼續?" msgid "Slice plate" msgstr "切片單一列印板" @@ -4513,7 +4514,7 @@ msgid "Download Models" msgstr "下載模型" msgid "Default View" -msgstr "默認視圖" +msgstr "預設視圖" #. TRN To be shown in the main menu View->Top msgid "Top" @@ -4708,19 +4709,19 @@ msgstr "自動視角調整" msgid "" "Automatically switch between orthographic and perspective when changing from " -"top/bottom/side views" +"top/bottom/side views." msgstr "在切換至上、下或側視圖時,會自動在正投影和透視視圖之間切換" msgid "Show &G-code Window" msgstr "顯示 G-code" -msgid "Show g-code window in Preview scene" +msgid "Show G-code window in Preview scene." msgstr "在預覽分頁中顯示 G-code 視窗" msgid "Show 3D Navigator" msgstr "顯示 3D 導覽器" -msgid "Show 3D navigator in Prepare and Preview scene" +msgid "Show 3D navigator in Prepare and Preview scene." msgstr "在準備與預覽分頁中顯示 3D 導覽器" msgid "Reset Window Layout" @@ -4732,19 +4733,19 @@ msgstr "恢復預設視窗配置" msgid "Show &Labels" msgstr "顯示名稱" -msgid "Show object labels in 3D scene" +msgid "Show object labels in 3D scene." msgstr "在 3D 場景中顯示物件名稱" msgid "Show &Overhang" msgstr "凸顯懸空" -msgid "Show object overhang highlight in 3D scene" +msgid "Show object overhang highlight in 3D scene." msgstr "在 3D 場景中凸顯懸空" msgid "Show Selected Outline (beta)" msgstr "顯示選取輪廓(實驗性)" -msgid "Show outline around selected object in 3D scene" +msgid "Show outline around selected object in 3D scene." msgstr "在 3D 場景中顯示選定物件的輪廓" msgid "Preferences" @@ -4754,7 +4755,7 @@ msgid "Help" msgstr "幫助" msgid "Temperature Calibration" -msgstr "溫度校準" +msgstr "溫度校正" msgid "Pass 1" msgstr "粗調" @@ -4806,10 +4807,10 @@ msgid "Tutorial" msgstr "教學" msgid "Calibration help" -msgstr "校準幫助" +msgstr "校正幫助" msgid "More calibrations" -msgstr "更多校準" +msgstr "更多校正" msgid "&Open G-code" msgstr "打開 G-code" @@ -4818,10 +4819,10 @@ msgid "Open a G-code file" msgstr "打開 G-code 檔案" msgid "Re&load from Disk" -msgstr "從磁碟重新載入" +msgstr "從硬碟重新載入" msgid "Reload the plater from disk" -msgstr "從磁碟重新載入" +msgstr "從硬碟重新載入" msgid "Export &Toolpaths as OBJ" msgstr "將工具路徑匯出為 OBJ 格式" @@ -4897,7 +4898,7 @@ msgid "" "the configs." msgstr "" "\n" -"提示:在匯入設定之前,請確保已添加對應的列印設備。" +"提示:在匯入設定之前,請確保已新增對應的列印設備。" msgid "Import result" msgstr "匯入結果" @@ -4912,13 +4913,13 @@ msgid "Filament Settings" msgstr "線材設定" msgid "" -"Do you want to synchronize your personal data from Bambu Cloud? \n" +"Do you want to synchronize your personal data from Bambu Cloud?\n" "It contains the following information:\n" "1. The Process presets\n" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"從 Bambu 雲端同步你的個人數據嗎?\n" +"從 Bambu 雲端同步您的個人資料嗎?\n" "包含以下資訊:\n" "1. 列印參數設定\n" "2. 線材設定\n" @@ -4947,7 +4948,7 @@ msgstr "列印機目前正忙於下載。請待下載完成後再試一次。" msgid "Printer camera is malfunctioning." msgstr "列印設備攝影機故障。" -msgid "Problem occurred. Please update the printer firmware and try again." +msgid "A problem occurred. Please update the printer firmware and try again." msgstr "發生問題。請更新列印設備韌體後再試一次。" msgid "" @@ -4964,9 +4965,9 @@ msgid "Connection Failed. Please check the network and try again" msgstr "連線失敗。請檢查網路並重試" msgid "" -"Please check the network and try again, You can restart or update the " +"Please check the network and try again. You can restart or update the " "printer if the issue persists." -msgstr "請檢查網路並重試。如果問題持續,你可以重新啟動或更新列印設備。" +msgstr "請檢查網路並重試。如果問題持續,您可以重新啟動或更新列印設備。" msgid "The printer has been logged out and cannot connect." msgstr "列印設備已登出,無法連接。" @@ -4982,7 +4983,7 @@ msgid "" "Do you want to install them?" msgstr "" "執行此功能需要「虛擬攝影機工具包」!\n" -"你要安裝它們嗎?" +"您要安裝它們嗎?" msgid "Downloading Virtual Camera Tools" msgstr "正在下載虛擬攝影機工具包..." @@ -5105,20 +5106,20 @@ msgid "Delete file" msgstr "刪除檔案" msgid "Fetching model information..." -msgstr "正在獲取模型資訊..." +msgstr "正在取得模型資訊..." msgid "Failed to fetch model information from printer." -msgstr "無法從列印設備獲取模型資訊。" +msgstr "無法從列印設備取得模型資訊。" msgid "Failed to parse model information." msgstr "解析模型資訊失敗。" msgid "" -"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer " -"and export a new .gcode.3mf file." +"The .gcode.3mf file contains no G-code data. Please slice it with Orca " +"Slicer and export a new .gcode.3mf file." msgstr "" -".gcode.3mf 檔案中不包含 G-code 數據。請使用 Orca Slicer 進行切片並匯出新" -"的 .gcode.3mf 檔案。" +".gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer 進行切片並匯出新的 ." +"gcode.3mf 檔案。" #, c-format, boost-format msgid "File '%s' was lost! Please download it again." @@ -5226,12 +5227,12 @@ msgid "" msgstr "已經完成了 MakeWorld 模型的列印,但評論資料同步失敗。" msgid "How do you like this printing file?" -msgstr "你覺得這個列印檔案怎麼樣?" +msgstr "您覺得這個列印檔案怎麼樣?" msgid "" "(The model has already been rated. Your rating will overwrite the previous " "rating.)" -msgstr "(此模型已被評價。你的評價將覆蓋先前的評價。)" +msgstr "(此模型已被評價。您的評價將覆蓋先前的評價。)" msgid "Rate" msgstr "速率" @@ -5305,9 +5306,9 @@ msgstr "%s 層" msgid "Layer: %d/%d" msgstr "%d/%d 層" +#, fuzzy msgid "" -"Please heat the nozzle to above 170 degree before loading or unloading " -"filament." +"Please heat the nozzle to above 170°C before loading or unloading filament." msgstr "請在上料或退料之前將噴嘴加熱至 170 度以上。" msgid "Still unload" @@ -5316,8 +5317,8 @@ msgstr "繼續退料" msgid "Still load" msgstr "繼續進料" -msgid "Please select an AMS slot before calibration" -msgstr "請先選擇一個 AMS 槽位後進行校準" +msgid "Please select an AMS slot before calibration." +msgstr "請先選擇一個 AMS 槽位後進行校正" msgid "" "Cannot read filament info: the filament is loaded to the tool head,please " @@ -5363,9 +5364,6 @@ msgstr "送出" msgid "Please click on the star first." msgstr "請先點擊星星數量。" -msgid "InFo" -msgstr "資訊" - msgid "Get oss config failed." msgstr "取得 oss 設定失敗。" @@ -5384,7 +5382,7 @@ msgstr " 上傳設定檔失敗\n" msgid " No corresponding storage bucket\n" msgstr " 沒有對應的儲存區\n" -msgid " can not be opened\n" +msgid " cannot be opened\n" msgstr " 無法開啟\n" msgid "" @@ -5408,11 +5406,11 @@ msgid "obtaining instance_id failed\n" msgstr "取得 instance_id 失敗\n" msgid "" -"Your comment result cannot be uploaded due to some reasons. As follows:\n" +"Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" -"由於某些原因,你的評論結果無法上傳。如下:\n" +"由於某些原因,您的評論結果無法上傳。如下:\n" "\n" " 錯誤代碼: " @@ -5422,23 +5420,23 @@ msgstr "錯誤訊息:" msgid "" "\n" "\n" -"Would you like to redirect to the webpage for rating?" +"Would you like to redirect to the webpage to give a rating?" msgstr "" "\n" "\n" -"你想要跳轉到網頁給予評分嗎?" +"您想要跳轉到網頁給予評分嗎?" msgid "" "Some of your images failed to upload. Would you like to redirect to the " -"webpage for rating?" -msgstr "你的部分圖片上傳失敗。 要重定導向評價網頁嗎?" +"webpage to give a rating?" +msgstr "您的部分圖片上傳失敗。 要重定導向評價網頁嗎?" msgid "You can select up to 16 images." -msgstr "你最多可以選擇 16 張圖片。" +msgstr "您最多可以選擇 16 張圖片。" msgid "" "At least one successful print record of this print profile is required \n" -"to give a positive rating(4 or 5stars)." +"to give a positive rating (4 or 5 stars)." msgstr "" "若要給予正面評價(4 或 5 星),\n" "必須至少有一個此列印設定檔的成功列印記錄。" @@ -5483,12 +5481,12 @@ msgid "Newer 3mf version" msgstr "較新的 3mf 版本" msgid "" -"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " +"The 3mf file version is in Beta and it is newer than the current OrcaSlicer " "version." msgstr "該 3mf 檔案版本為測試版,並且較目前的 OrcaSlicer 版本更新。" msgid "If you would like to try Orca Slicer Beta, you may click to" -msgstr "如果你想嘗試 Orca Slicer 測試版,可以點擊以下載到" +msgstr "如果您想嘗試 Orca Slicer 測試版,可以點擊以下載到" msgid "Download Beta Version" msgstr "下載測試版" @@ -5497,7 +5495,7 @@ msgid "The 3mf file version is newer than the current Orca Slicer version." msgstr "該 3mf 檔案版本較目前的 Orca Slicer 版本更新。" msgid "Update your Orca Slicer could enable all functionality in the 3mf file." -msgstr "更新你的 Orca Slicer 以啟用 3mf 檔案中的所有功能。" +msgstr "更新您的 Orca Slicer 以啟用 3mf 檔案中的所有功能。" msgid "Current Version: " msgstr "目前版本:" @@ -5546,7 +5544,7 @@ msgid "Undo integration was successful." msgstr "整合取消成功。" msgid "New network plug-in available." -msgstr "網路插件有可用的更新。" +msgstr "網路外掛程式有可用的更新。" msgid "Details" msgstr "詳細" @@ -5587,7 +5585,7 @@ msgstr[0] "%1$d 物件有上色。" #, c-format, boost-format msgid "%1$d object was loaded as a part of cut object." -msgid_plural "%1$d objects were loaded as parts of cut object" +msgid_plural "%1$d objects were loaded as parts of cut object." msgstr[0] "%1$d 物件載入為一個切割物件的子零件。" msgid "ERROR" @@ -5603,7 +5601,7 @@ msgid "Cancel upload" msgstr "取消上傳" msgid "Jump to" -msgstr "轉換到" +msgstr "跳至" msgid "Error:" msgstr "錯誤:" @@ -5611,7 +5609,7 @@ msgstr "錯誤:" msgid "Warning:" msgstr "警告:" -msgid "Export successfully." +msgid "Exported successfully" msgstr "匯出成功。" msgid "Model file downloaded." @@ -5629,11 +5627,12 @@ msgstr "點擊此處安裝。" msgid "WARNING:" msgstr "警告:" -msgid "Your model needs support ! Please make support material enable." -msgstr "你的模型需要支撐才能列印。請開啟支撐選項。" +msgid "Your model needs support! Please enable support material." +msgstr "您的模型需要支撐才能列印。請開啟支撐選項。" -msgid "Gcode path overlap" -msgstr "Gcode 路徑有重疊" +#, fuzzy +msgid "G-code path overlap" +msgstr "G-code 路徑有重疊" msgid "Support painting" msgstr "支撐繪製" @@ -5653,10 +5652,10 @@ msgstr "範圍" msgid "" "The application cannot run normally because OpenGL version is lower than " "2.0.\n" -msgstr "應用程式無法正常運行,因為 OpenGL 的版本低於 2.0。\n" +msgstr "應用程式無法正常執行,因為 OpenGL 的版本低於 2.0。\n" msgid "Please upgrade your graphics card driver." -msgstr "請升級你的顯示卡驅動。" +msgstr "請升級您的顯示卡驅動程式。" msgid "Unsupported OpenGL version" msgstr "不支援的 OpenGL 版本" @@ -5732,7 +5731,7 @@ msgid "Objects" msgstr "物件" msgid "Advance" -msgstr "高級" +msgstr "進階" msgid "Compare presets" msgstr "比較設定" @@ -5841,7 +5840,7 @@ msgstr "" msgid "" "Already did a synchronization, do you want to sync only changes or resync " "all?" -msgstr "已經同步過,你希望僅同步改變的線材還是重新同步所有線材?" +msgstr "已經同步過,您希望僅同步改變的線材還是重新同步所有線材?" msgid "Sync" msgstr "僅同步改變的" @@ -5866,7 +5865,7 @@ msgstr "是否儲存變更到「%1%」?" #, c-format, boost-format msgid "" -"Successfully unmounted. The device %s(%s) can now be safely removed from the " +"Successfully unmounted. The device %s (%s) can now be safely removed from the " "computer." msgstr "卸載成功。設備 %s(%s) 現在可以安全移除。" @@ -5912,25 +5911,25 @@ msgid "Loading file: %s" msgstr "載入檔案:%s" msgid "The 3mf is not supported by OrcaSlicer, load geometry data only." -msgstr "該 3mf 檔案不是來自 Orca Slicer,將只載入幾何數據。" +msgstr "該 3mf 檔案不是來自 Orca Slicer,將只載入幾何資料。" msgid "Load 3mf" msgstr "載入 3mf" #, c-format, boost-format msgid "" -"The 3mf's version %s is newer than %s's version %s, Found following keys " -"unrecognized:" +"The 3mf's version %s is newer than %s's version %s, found following " +"unrecognized keys:" msgstr "該 3mf 的版本 %s 比 %s 的版本 %s 新,以下參數值無法識別:" msgid "You'd better upgrade your software.\n" -msgstr "建議升級你的軟體版本。\n" +msgstr "建議升級您的軟體版本。\n" #, c-format, boost-format msgid "" "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your " "software." -msgstr "該 3mf 的版本 %s 比 %s 的版本 %s 要新,建議升級你的軟體。" +msgstr "該 3mf 的版本 %s 比 %s 的版本 %s 要新,建議升級您的軟體。" msgid "Invalid values found in the 3mf:" msgstr "在 3mf 檔案中發現無效值:" @@ -5938,22 +5937,23 @@ msgstr "在 3mf 檔案中發現無效值:" msgid "Please correct them in the param tabs" msgstr "請在參數設定頁更正它們" -msgid "The 3mf has following modified G-codes in filament or printer presets:" +msgid "" +"The 3mf has the following modified G-code in filament or printer presets:" msgstr "該 3mf 檔案在耗材或列印機預設中具有以下修改過的 GCODE:" msgid "" -"Please confirm that these modified G-codes are safe to prevent any damage to " -"the machine!" +"Please confirm that all modified G-code is safe to prevent any damage to the " +"machine!" msgstr "請確認這些修改過的 GCODE 是安全的,以防止對機器造成任何損壞!" -msgid "Modified G-codes" +msgid "Modified G-code" msgstr "已修改的 GCODE" -msgid "The 3mf has following customized filament or printer presets:" +msgid "The 3mf has the following customized filament or printer presets:" msgstr "該 3mf 檔案具有以下自訂的耗材或列印機預設:" msgid "" -"Please confirm that the G-codes within these presets are safe to prevent any " +"Please confirm that the G-code within these presets is safe to prevent any " "damage to the machine!" msgstr "請確認這些預設中的 G-code 是安全的,以防止對機器造成損壞!" @@ -5984,7 +5984,7 @@ msgid "" "The object from file %s is too small, and maybe in meters or inches.\n" " Do you want to scale to millimeters?" msgstr "" -"文件 %s 中的物件太小,可能以公尺(M)或英吋(Inches)為單位。\n" +"檔案 %s 中的物件太小,可能以公尺(M)或英吋(Inches)為單位。\n" "是否要轉換成毫米(mm)?" msgid "Object too small" @@ -6008,11 +6008,11 @@ msgid "Object with multiple parts was detected" msgstr "偵測到多零件物件" msgid "The file does not contain any geometry data." -msgstr "此檔案不包含任何幾何數據。" +msgstr "此檔案不包含任何幾何資料。" msgid "" -"Your object appears to be too large, Do you want to scale it down to fit the " -"heat bed automatically?" +"Your object appears to be too large, do you want to scale it down to fit the " +"print bed automatically?" msgstr "物件看起來太大,希望將物件自動縮小以適應列印板嗎?" msgid "Object too large" @@ -6049,7 +6049,7 @@ msgid "" "This action will break a cut correspondence.\n" "After that model consistency can't be guaranteed." msgstr "" -"你正在嘗試刪除一個屬於切割物件的部分。\n" +"您正在嘗試刪除一個屬於切割物件的部分。\n" "此操作將破壞切割對應關係。\n" "模型的一致性可能無法保證。" @@ -6099,7 +6099,7 @@ msgid "warnings" msgstr "警告" msgid "Invalid data" -msgstr "無效數據" +msgstr "無效資料" msgid "Slicing Canceled" msgstr "切片已取消" @@ -6113,17 +6113,17 @@ msgstr "請解決切片錯誤後再重新發布。" msgid "" "Network Plug-in is not detected. Network related features are unavailable." -msgstr "未偵測到網路插件。網路相關功能不可用。" +msgstr "未偵測到網路外掛程式。網路相關功能不可用。" msgid "" "Preview only mode:\n" -"The loaded file contains gcode only, Can not enter the Prepare page" +"The loaded file contains G-code only, cannot enter the Prepare page." msgstr "" "僅預覽模式:\n" "被載入的檔案僅包含 G-Code,不支援進入準備頁面" msgid "You can keep the modified presets to the new project or discard them" -msgstr "你可以將修改後的預設檔保留到新專案項目中或者忽略這些修改" +msgstr "您可以將修改後的預設檔保留到新專案項目中或者忽略這些修改" msgid "Creating a new project" msgstr "建立新專案" @@ -6150,7 +6150,7 @@ msgstr "正在準備 3mf 檔案..." msgid "Download failed, unknown file format." msgstr "下載失敗,未知的檔案格式。" -msgid "downloading project ..." +msgid "downloading project..." msgstr "專案項目下載中..." msgid "Download failed, File size exception." @@ -6170,13 +6170,13 @@ msgstr "資訊:" msgid "" "No accelerations provided for calibration. Use default acceleration value " -msgstr "未提供校準所需的加速度,將使用預設加速度值 " +msgstr "未提供校正所需的加速度,將使用預設加速度值 " msgid "mm/s²" msgstr "mm/s²" msgid "No speeds provided for calibration. Use default optimal speed " -msgstr "未提供校準所需的速度,將使用預設最佳速度 " +msgstr "未提供校正所需的速度,將使用預設最佳速度 " msgid "mm/s" msgstr "mm/s" @@ -6187,7 +6187,7 @@ msgstr "匯入 SLA 存檔" msgid "The selected file" msgstr "已選擇的檔案" -msgid "does not contain valid gcode." +msgid "does not contain valid G-code." msgstr "不包含有效的 G-code 檔案。" msgid "Error occurs while loading G-code file" @@ -6217,7 +6217,7 @@ msgid "Open as project" msgstr "作為專案項目打開" msgid "Import geometry only" -msgstr "僅匯入模型數據" +msgstr "僅匯入模型資料" msgid "" "This option can be changed later in preferences, under 'Load Behaviour'." @@ -6229,10 +6229,10 @@ msgstr "只能同時打開一個 G-code 檔案。" msgid "G-code loading" msgstr "正在載入 G-code 檔案" -msgid "G-code files can not be loaded with models together!" +msgid "G-code files cannot be loaded with models together!" msgstr "G-code 檔案不能和模型一起載入!" -msgid "Can not add models when in preview mode!" +msgid "Cannot add models when in preview mode!" msgstr "在預覽模式不允許增加模型!" msgid "All objects will be removed, continue?" @@ -6272,7 +6272,7 @@ msgid "" "Unable to perform boolean operation on model meshes. Only positive parts " "will be kept. You may fix the meshes and try again." msgstr "" -"無法對模型網格執行布林運算。只有正向部分會被保留。你可以修正網格後再試一次。" +"無法對模型網格執行布林運算。只有正向部分會被保留。您可以修正網格後再試一次。" #, boost-format msgid "Reason: part \"%1%\" is empty." @@ -6300,7 +6300,7 @@ msgid "" "3MF file?\n" "If you hit 'NO', all SVGs in the project will not be editable any more." msgstr "" -"你確定要將原始 SVG 檔案及其本地路徑儲存到 3MF 檔案中嗎?\n" +"您確定要將原始 SVG 檔案及其本地路徑儲存到 3MF 檔案中嗎?\n" "如果選擇『否』,專案中的所有 SVG 將不再可編輯。" msgid "Private protection" @@ -6329,7 +6329,7 @@ msgid "Custom supports and color painting were removed before repairing." msgstr "自訂的支撐和上色在模型修復之前被清除了。" msgid "Optimize Rotation" -msgstr "優化旋轉" +msgstr "最佳化旋轉" msgid "Invalid number" msgstr "無效數字" @@ -6385,11 +6385,11 @@ msgstr "" #, c-format, boost-format msgid "" -"Plate %d: %s is not suggested to be used to print filament %s(%s). If you " -"still want to do this printing, please set this filament's bed temperature " +"Plate %d: %s is not suggested to be used to print filament %s (%s). If you " +"still want to do this print job, please set this filament's bed temperature " "to non-zero." msgstr "" -"列印板 %d:%s 不建議用於列印 %s(%s)線材。如果你仍想執行此列印,請將該線材的" +"列印板 %d:%s 不建議用於列印 %s(%s)線材。如果您仍想執行此列印,請將該線材的" "熱床溫度設為非零值。" msgid "Switching the language requires application restart.\n" @@ -6402,13 +6402,13 @@ msgid "Language selection" msgstr "語言選擇" msgid "Switching application language while some presets are modified." -msgstr "在切換應用語言之前發現某些參數預設有更改。" +msgstr "在切換應用程式語言之前發現某些參數預設有更改。" msgid "Changing application language" msgstr "正在為應用程式切換語言" msgid "Changing the region will log out your account.\n" -msgstr "修改區域會自動登出你的帳號。\n" +msgstr "修改區域會自動登出您的帳號。\n" msgid "Region selection" msgstr "區域選擇" @@ -6429,13 +6429,13 @@ msgid "with OrcaSlicer so that Orca can open models from" msgstr "與 OrcaSlicer 關聯,以便 Orca 可以從中打開模型" msgid "Current Association: " -msgstr "當前關聯:" +msgstr "目前關聯:" msgid "Current Instance" -msgstr "當前實例" +msgstr "目前實例" msgid "Current Instance Path: " -msgstr "當前實例路徑:" +msgstr "目前實例路徑:" msgid "General Settings" msgstr "一般設定" @@ -6465,11 +6465,11 @@ msgid "" "This stops the transmission of data to Bambu's cloud services. Users who " "don't use BBL machines or use LAN mode only can safely turn on this function." msgstr "" -"這會停止數據傳輸到 Bambu 的雲端服務。使用者如果不使用 Bambu 機台或僅使用區域" +"這會停止資料傳輸到 Bambu 的雲端服務。使用者如果不使用 Bambu 機台或僅使用區域" "網路模式,可以安全地啟用此功能。" msgid "Enable network plugin" -msgstr "啟用網路插件" +msgstr "啟用網路外掛程式" msgid "Check for stable updates only" msgstr "僅檢查穩定版更新" @@ -6491,15 +6491,15 @@ msgid "" "it is allowed to run multiple instances of same app from the command line. " "In such case this settings will allow only one instance." msgstr "" -"在 OSX 上,預設情況下總是只有一個應用程式實例在運行。但是卻允許從命令視窗執行" -"同一應用程式的多個實例。當你設定了這個設定後將只允許一個實例執行。" +"在 OSX 上,預設情況下總是只有一個應用程式實例在執行。但是卻允許從命令視窗執行" +"同一應用程式的多個實例。當您設定了這個設定後將只允許一個實例執行。" msgid "" "If this is enabled, when starting OrcaSlicer and another instance of the " "same OrcaSlicer is already running, that instance will be reactivated " "instead." msgstr "" -"啟用後,嘗試開起 OrcaSlicer 時若有另一個 OrcaSlicer 程序已在運行時,已在運行" +"啟用後,嘗試開起 OrcaSlicer 時若有另一個 OrcaSlicer 程序已在執行時,已在執行" "的程序會被重新啟動。" msgid "Home" @@ -6540,6 +6540,12 @@ msgstr "使用自由鏡頭" msgid "If enabled, use free camera. If not enabled, use constrained camera." msgstr "如果啟用,則使用自由鏡頭。若未啟用,則使用受限鏡頭。" +msgid "Swap pan and rotate mouse buttons" +msgstr "交换鼠标按钮的平移与旋转功能" + +msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." +msgstr "启用后,将左键和右键的平移与旋转功能对调" + msgid "Reverse mouse zoom" msgstr "反轉滑鼠滾輪縮放方向" @@ -6577,10 +6583,10 @@ msgstr "記住機臺設定" msgid "" "If enabled, Orca will remember and switch filament/process configuration for " "each printer automatically." -msgstr "啟用後,Orca會記住且自動切換各機臺線材與列印設定。" +msgstr "啟用後,Orca 會記住且自動切換各機臺線材與列印設定。" -msgid "Multi-device Management(Take effect after restarting Orca)." -msgstr "多臺設備管理 (需重開Orca)" +msgid "Multi-device Management (Take effect after restarting Orca Slicer)." +msgstr "多臺設備管理 (需重開 Orca)" msgid "" "With this option enabled, you can send a task to multiple devices at the " @@ -6596,8 +6602,8 @@ msgstr "物件複製後自動排列列印板" msgid "Network" msgstr "網路" -msgid "Auto sync user presets(Printer/Filament/Process)" -msgstr "自動同步用戶預設(列印設備/線材/列印品質參數)" +msgid "Auto sync user presets (Printer/Filament/Process)" +msgstr "自動同步使用者預設(列印設備/線材/列印品質參數)" msgid "User Sync" msgstr "使用者同步" @@ -6648,7 +6654,7 @@ msgid "Always Ask" msgstr "總是詢問" msgid "Load Geometry Only" -msgstr "僅載入幾何數據" +msgstr "僅載入幾何資料" msgid "Load Behaviour" msgstr "載入方式" @@ -6665,7 +6671,7 @@ msgstr "近期專案項目的最大統計" msgid "Clear my choice on the unsaved projects." msgstr "清除我對未儲存專案項目的選擇。" -msgid "No warnings when loading 3MF with modified G-codes" +msgid "No warnings when loading 3MF with modified G-code" msgstr "載入包含修改過 G-code 的 3MF 時不顯示警告" msgid "Auto-Backup" @@ -6780,10 +6786,10 @@ msgstr "儲存" msgid "save debug settings" msgstr "儲存除錯設定" -msgid "DEBUG settings have saved successfully!" +msgid "DEBUG settings have been saved successfully!" msgstr "除錯模式生效!" -msgid "Switch cloud environment, Please login again!" +msgid "Cloud environment switched, please login again!" msgstr "切換雲端環境,請重新登入!" msgid "System presets" @@ -6798,10 +6804,10 @@ msgstr "不相容的預設" msgid "AMS filaments" msgstr "AMS 線材" -msgid "Click to pick filament color" +msgid "Click to select filament color" msgstr "點擊設定線材顏色" -msgid "Please choose the filament colour" +msgid "Please choose the filament color" msgstr "請選擇線材顏色" msgid "Add/Remove presets" @@ -6819,17 +6825,17 @@ msgstr "新增/刪除線材" msgid "Add/Remove materials" msgstr "新增/刪除材料" -msgid "Select/Remove printers(system presets)" +msgid "Select/Remove printers (system presets)" msgstr "選擇/移除機台(系統預設)" msgid "Create printer" -msgstr "創建機臺" +msgstr "建立機臺" msgid "The selected preset is null!" msgstr "選擇的預設為空!" msgid "End" -msgstr "End" +msgstr "" msgid "Customize" msgstr "自訂" @@ -6880,7 +6886,7 @@ msgid "Log Out" msgstr "登出" msgid "Slice all plate to obtain time and filament estimation" -msgstr "正在切片以獲取切片資訊和預估列印時間" +msgstr "正在切片以取得切片資訊和預估列印時間" msgid "Packing project data into 3mf file" msgstr "正在將專案資料打包到 3mf 檔案中" @@ -6891,13 +6897,13 @@ msgstr "正在上傳 3mf" msgid "Jump to model publish web page" msgstr "發布頁面" -msgid "Note: The preparation may takes several minutes. Please be patient." +msgid "Note: The preparation may take several minutes. Please be patient." msgstr "提示:發布前需要一些準備時間,請耐心等待。" msgid "Publish" msgstr "發布" -msgid "Publish was cancelled" +msgid "Publish was canceled" msgstr "發布已取消" msgid "Slicing Plate 1" @@ -6907,7 +6913,7 @@ msgid "Packing data to 3mf" msgstr "將資料打包至 3mf" msgid "Jump to webpage" -msgstr "轉換到網頁" +msgstr "跳至網頁" #, c-format, boost-format msgid "Save %s as" @@ -6922,7 +6928,7 @@ msgstr "項目預設" msgid "Name is unavailable." msgstr "名稱不可用。" -msgid "Overwrite a system profile is not allowed" +msgid "Overwriting a system profile is not allowed." msgstr "不允許覆蓋系統預設" #, boost-format @@ -6930,10 +6936,12 @@ msgid "Preset \"%1%\" already exists." msgstr "預設「%1%」已存在。" #, boost-format -msgid "Preset \"%1%\" already exists and is incompatible with current printer." +msgid "" +"Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "預設「%1%」已存在,並且和目前列印設備不相容。" -msgid "Please note that saving action will replace this preset" +#, fuzzy +msgid "Please note that saving will overwrite this preset." msgstr "請注意這個預設會在儲存過程中被替換" msgid "The name cannot be the same as a preset alias name." @@ -6985,7 +6993,7 @@ msgid "Online" msgstr "在線" msgid "Input access code" -msgstr "輸入訪問碼" +msgstr "輸入存取碼" msgid "Can't find my devices?" msgstr "無法找到我的設備?" @@ -7018,7 +7026,7 @@ msgid "Send print job to" msgstr "傳送列印作業至" msgid "Flow Dynamics Calibration" -msgstr "動態流量校準" +msgstr "動態流量校正" msgid "Click here if you can't connect to the printer" msgstr "如果無法連接到列印設備,請按一下此處" @@ -7067,7 +7075,7 @@ msgid "" "Filaments to AMS slots mappings have been established. You can click a " "filament above to change its mapping AMS slot" msgstr "" -"線材與 AMS 槽位的映射關係已設定完成。你可以點擊上方的線材來更改其對應的 AMS " +"線材與 AMS 槽位的映射關係已設定完成。您可以點擊上方的線材來更改其對應的 AMS " "槽位" msgid "" @@ -7136,11 +7144,11 @@ msgid "Please check the following:" msgstr "請檢查以下內容:" msgid "" -"The printer type selected when generating G-Code is not consistent with the " +"The printer type selected when generating G-code is not consistent with the " "currently selected printer. It is recommended that you use the same printer " "type for slicing." msgstr "" -"產生 G-code 時選擇的列印設備類型與目前選擇的列印設備不一致。建議你使用相同的" +"產生 G-code 時選擇的列印設備類型與目前選擇的列印設備不一致。建議您使用相同的" "列印設備類型進行切片。" msgid "" @@ -7164,12 +7172,12 @@ msgid "" "If you changed your nozzle lately, please go to Device > Printer Parts to " "change settings." msgstr "" -"切片文件中的噴嘴直徑與記憶中的噴嘴不一致。如果你最近更換了噴嘴,請前往「設備 " +"切片檔案中的噴嘴直徑與記憶中的噴嘴不一致。如果您最近更換了噴嘴,請前往「設備 " "> 列印機部件」更新設定。" #, c-format, boost-format msgid "" -"Printing high temperature material(%s material) with %s may cause nozzle " +"Printing high temperature material (%s material) with %s may cause nozzle " "damage" msgstr "使用 %s 列印高溫材料(%s 材料)可能會導致噴嘴損壞" @@ -7178,7 +7186,7 @@ msgstr "請排除上述錯誤,否則無法繼續列印。" msgid "" "Please click the confirm button if you still want to proceed with printing." -msgstr "如果你仍然想繼續列印,請滑鼠左鍵點擊『確定』按鈕。" +msgstr "如果您仍然想繼續列印,請滑鼠左鍵點擊『確定』按鈕。" msgid "" "Connecting to the printer. Unable to cancel during the connection process." @@ -7187,10 +7195,10 @@ msgstr "正在連接列印設備。連接過程中無法取消。" msgid "" "Caution to use! Flow calibration on Textured PEI Plate may fail due to the " "scattered surface." -msgstr "小心使用!紋理 PEI 板 上的流量校準可能會因表面光線散射而失敗。" +msgstr "小心使用!紋理 PEI 板 上的流量校正可能會因表面光線散射而失敗。" msgid "Automatic flow calibration using Micro Lidar" -msgstr "使用 Micro Lidar 進行自動流量校準" +msgstr "使用 Micro Lidar 進行自動流量校正" msgid "Modifying the device name" msgstr "修改列印設備名稱" @@ -7235,10 +7243,10 @@ msgid "Failed to publish login request" msgstr "請求登陸失敗" msgid "Get ticket from device timeout" -msgstr "從設備獲取票證超時" +msgstr "從設備取得票證超時" msgid "Get ticket from server timeout" -msgstr "從伺服器獲取票證超時" +msgstr "從伺服器取得票證超時" msgid "Failed to post ticket to server" msgstr "將票證提交到伺服器失敗" @@ -7277,8 +7285,8 @@ msgstr "登入失敗。請檢查 Pin碼。" msgid "Log in printer" msgstr "登入列印設備" -msgid "Would you like to log in this printer with current account?" -msgstr "你想使用目前帳號登入這台列印設備嗎?" +msgid "Would you like to log in to this printer with the current account?" +msgstr "您想使用目前帳號登入這台列印設備嗎?" msgid "Check the reason" msgstr "查看原因" @@ -7290,15 +7298,15 @@ msgid "Terms and Conditions" msgstr "使用者協議" msgid "" -"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab " -"device, please read the terms and conditions.By clicking to agree to use " +"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab " +"device, please read the terms and conditions. By clicking to agree to use " "your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of " -"Use(collectively, the \"Terms\"). If you do not comply with or agree to the " +"Use (collectively, the \"Terms\"). If you do not comply with or agree to the " "Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services." msgstr "" -"感謝你購買 Bambu Lab 設備。在使用 Bambu Lab 設備之前,請先閱讀條款與條件。點" -"擊同意使用 Bambu Lab 設備,即表示你同意遵守隱私政策與使用條款(以下統稱「條" -"款」)。若你不同意或無法遵守 Bambu Lab 隱私政策,請勿使用 Bambu Lab 的設備及" +"感謝您購買 Bambu Lab 設備。在使用 Bambu Lab 設備之前,請先閱讀條款與條件。點" +"擊同意使用 Bambu Lab 設備,即表示您同意遵守隱私政策與使用條款(以下統稱「條" +"款」)。若您不同意或無法遵守 Bambu Lab 隱私政策,請勿使用 Bambu Lab 的設備及" "服務。" msgid "and" @@ -7308,7 +7316,7 @@ msgid "Privacy Policy" msgstr "隱私協議" msgid "We ask for your help to improve everyone's printer" -msgstr "我們請求你的幫助來改善大家的列印設備" +msgstr "我們請求您的幫助來改善大家的列印設備" msgid "Statement about User Experience Improvement Program" msgstr "關於使用者體驗改善計劃的聲明" @@ -7321,18 +7329,18 @@ msgid "" "successes and failures of the vast number of prints by our users. We are " "training %s to be smarter by feeding them the real-world data. If you are " "willing, this service will access information from your error logs and usage " -"logs, which may include information described in Privacy Policy. We will " +"logs, which may include information described in Privacy Policy. We will " "not collect any Personal Data by which an individual can be identified " "directly or indirectly, including without limitation names, addresses, " "payment information, or phone numbers. By enabling this service, you agree " "to these terms and the statement about Privacy Policy." msgstr "" "在 3D 列印社群中,我們通過分享彼此的成功與失敗經驗來調整切片參數與設置。%s 也" -"採用了相同的原則,利用機器學習,透過用戶的大量列印成功與失敗數據來提升其性" -"能。我們正以實際應用數據來訓練 %s,使其變得更智能。如果你願意,這項服務將存取" -"你的錯誤日誌和使用日誌,其中可能包含隱私政策中提到的相關資訊。我們不會收集任" +"採用了相同的原則,利用機器學習,透過使用者的大量列印成功與失敗資料來提升其性" +"能。我們正以實際應用資料來訓練 %s,使其變得更智能。如果您願意,這項服務將存取" +"您的錯誤日誌和使用日誌,其中可能包含隱私政策中提到的相關資訊。我們不會收集任" "何可直接或間接識別個人身份的個人資料,包括但不限於姓名、地址、支付資訊或電話" -"號碼。啟用此服務即表示你同意這些條款及隱私政策聲明。" +"號碼。啟用此服務即表示您同意這些條款及隱私政策聲明。" msgid "Statement on User Experience Improvement Plan" msgstr "關於使用者體驗改善計劃的聲明" @@ -7344,7 +7352,7 @@ msgid "Log out printer" msgstr "登出列印設備" msgid "Would you like to log out the printer?" -msgstr "你想登出列印設備嗎?" +msgstr "您想登出列印設備嗎?" msgid "Please log in first." msgstr "請先登入。" @@ -7364,30 +7372,30 @@ msgid "Delete this preset" msgstr "刪除此預設" msgid "Search in preset" -msgstr "在預設中搜索" +msgstr "在預設中搜尋" msgid "Click to reset all settings to the last saved preset." msgstr "點擊以將所有設定還原到最後一次儲存的版本。" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A prime tower is required for smooth timelapse. There may be flaws on the " "model without prime tower. Are you sure you want to disable prime tower?" msgstr "" -"平滑模式的縮時錄影需要換料塔,否則列印物件上可能會有瑕疵。你是否要關閉換料" +"平滑模式的縮時錄影需要換料塔,否則列印物件上可能會有瑕疵。您是否要關閉換料" "塔?" msgid "" -"Prime tower is required for smooth timelapse. There may be flaws on the " +"A 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 "" -"平滑模式的縮時錄影需要換料塔,否則列印物件上可能會有瑕疵。你是否要啟用換料" +"平滑模式的縮時錄影需要換料塔,否則列印物件上可能會有瑕疵。您是否要啟用換料" "塔?" msgid "Still print by object?" msgstr "持續逐件列印?" msgid "" -"When using support material for the support interface, We recommend the " +"When using support material for the support interface, we recommend the " "following settings:\n" "0 top z distance, 0 interface spacing, interlaced rectilinear pattern and " "disable independent support layer height" @@ -7399,7 +7407,7 @@ msgstr "" "•停用獨立支撐層高" msgid "" -"Change these settings automatically? \n" +"Change these settings automatically?\n" "Yes - Change these settings automatically\n" "No - Do not change these settings for me" msgstr "" @@ -7412,11 +7420,11 @@ 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 "" -"啟用此選項將會改變模型形狀。如果你的列印需要精準的尺寸或屬於組裝件的一部分," -"請務必再次確認此幾何形狀的更改是否會影響你的列印。" +"啟用此選項將會改變模型形狀。如果您的列印需要精準的尺寸或屬於組裝件的一部分," +"請務必再次確認此幾何形狀的更改是否會影響您的列印。" msgid "Are you sure you want to enable this option?" -msgstr "你確定要啟用此選項嗎?" +msgstr "您確定要啟用此選項嗎?" msgid "" "Layer height is too small.\n" @@ -7427,11 +7435,11 @@ msgstr "" msgid "" "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer " -"height limits ,this may cause printing quality issues." +"height limits, this may cause printing quality issues." msgstr "" "層高超過了印表設備設定 -> 擠出機 -> 層高限制,這可能會導致列印品質問題。" -msgid "Adjust to the set range automatically? \n" +msgid "Adjust to the set range automatically?\n" msgstr "是否自動調整至設定範圍?\n" msgid "Adjust" @@ -7442,8 +7450,8 @@ msgstr "忽略" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " -"reduce flush, it may also elevate the risk of nozzle clogs or other " +"distance during filament changes to minimize flush. Although it can notably " +"reduce flush, it may also elevate the risk of nozzle clogs or other " "printing complications." msgstr "" "實驗性功能:在換線過程中以更大的距離收回並切斷線材,以減少沖洗量。儘管這可以" @@ -7451,12 +7459,12 @@ msgstr "" msgid "" "Experimental feature: Retracting and cutting off the filament at a greater " -"distance during filament changes to minimize flush.Although it can notably " +"distance during filament changes to minimize flush. Although it can notably " "reduce flush, it may also elevate the risk of nozzle clogs or other printing " -"complications.Please use with the latest printer firmware." +"complications. Please use with the latest printer firmware." msgstr "" "實驗性功能:在換線過程中以更大的距離收回並切斷線材,以減少沖洗量。儘管這可以" -"顯著減少沖洗,但也可能增加噴嘴堵塞或其他列印問題的風險。請搭配最新的打印機韌" +"顯著減少沖洗,但也可能增加噴嘴堵塞或其他列印問題的風險。請搭配最新的印表機韌" "體使用。" msgid "" @@ -7465,9 +7473,9 @@ msgid "" "by right-click the empty position of build plate and choose \"Add " "Primitive\"->\"Timelapse Wipe Tower\"." msgstr "" -"在錄製無工具頭縮時錄影影片時,建議添加一個「縮時錄影換料塔」\n" +"在錄製無工具頭縮時錄影影片時,建議新增一個「縮時錄影換料塔」\n" "可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來" -"進行添加。" +"進行新增。" msgid "" "A copy of the current system preset will be created, which will be detached " @@ -7476,7 +7484,7 @@ msgstr "將建立目前系統配置的副本,且該副本將與系統配置分 msgid "" "The current custom preset will be detached from the parent system preset." -msgstr "當前的自訂配置將與父系統配置分離不相關聯。" +msgstr "目前的自訂配置將與父系統配置分離不相關聯。" msgid "Modifications to the current profile will be saved." msgstr "目前設定檔的修改將會保存下來。" @@ -7688,8 +7696,8 @@ msgid "Cool Plate (SuperTack)" msgstr "低溫增穩列印板" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate SuperTack" +"Bed temperature when the Cool Plate Supertack is installed. A value of 0 " +"means the filament does not support printing on the Cool Plate SuperTack." msgstr "" "使用低溫增穩列印板時,熱床設定溫度其值為 0 ,表示該線材不適用於低溫增穩列印板" @@ -7697,34 +7705,34 @@ msgid "Cool Plate" msgstr "低溫列印板" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Cool Plate" +"Bed temperature when the Cool Plate is installed. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "使用低溫列印板時,熱床設定溫度其值為 0 ,表示該線材不適用於低溫列印板" -msgid "Textured Cool plate" +msgid "Textured Cool Plate" msgstr "低溫紋理列印板" msgid "" -"Bed temperature when cool plate is installed. Value 0 means the filament " -"does not support to print on the Textured Cool Plate" +"Bed temperature when the Textured Cool Plate is installed. A value of 0 " +"means the filament does not support printing on the Textured Cool Plate." msgstr "" "使用紋理低溫列印板時,熱床設定溫度其值為 0 ,表示該線材不適用於低溫紋理列印板" -msgid "Engineering plate" +msgid "Engineering Plate" msgstr "工程列印板" msgid "" -"Bed temperature when engineering plate is installed. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature when the Engineering Plate is installed. A value of 0 means " +"the filament does not support printing on the Engineering Plate." msgstr "使用工程列印板時,熱床設定溫度其值為 0 ,表示該線材不適用於工程列印板" msgid "Smooth PEI Plate / High Temp Plate" msgstr "平滑 PEI 列印板 / 高溫列印板" msgid "" -"Bed temperature when Smooth PEI Plate/High temperature plate is installed. " -"Value 0 means the filament does not support to print on the Smooth PEI Plate/" -"High Temp Plate" +"Bed temperature when the Smooth PEI Plate/High Temperature Plate is " +"installed. A value of 0 means the filament does not support printing on the " +"Smooth PEI Plate/High Temp Plate." msgstr "" "使用平滑 PEI 列印板 / 高溫列印板時,熱床設定溫度其值為 0 ,表示該線材不適用於" "平滑 PEI 列印板 / 高溫列印板" @@ -7733,8 +7741,8 @@ msgid "Textured PEI Plate" msgstr "紋理 PEI 列印板" msgid "" -"Bed temperature when Textured PEI Plate is installed. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature when the Textured PEI Plate is installed. A value of 0 means " +"the filament does not support printing on the Textured PEI Plate." msgstr "" "使用紋理 PEI 列印板時,熱床設定溫度其值為 0 ,表示該線材不適用於紋理 PEI 列印" "板" @@ -7792,14 +7800,14 @@ msgstr "線材結束 G-code" msgid "Wipe tower parameters" msgstr "換料塔參數" -msgid "Toolchange parameters with single extruder MM printers" -msgstr "適用於單擠出機多材料打印機的工具切換參數" +msgid "Tool change parameters with single extruder MM printers" +msgstr "適用於單擠出機多材料印表機的工具切換參數" msgid "Ramming settings" msgstr "尖端成型設定" -msgid "Toolchange parameters with multi extruder MM printers" -msgstr "適用於多擠出機多材料打印機的工具切換參數" +msgid "Tool change parameters with multi extruder MM printers" +msgstr "適用於多擠出機多材料印表機的工具切換參數" msgid "Dependencies" msgstr "相依項目" @@ -7810,7 +7818,7 @@ msgstr "設定檔相依項目" msgid "Printable space" msgstr "可列印區域" -#. TRN: First argument is parameter name, the second one is the value. +#. TRN: The first argument is the parameter's name; the second argument is its value. #, boost-format msgid "Invalid value provided for parameter %1%: %2%" msgstr "參數 %1% 的值無效:%2%" @@ -7833,7 +7841,7 @@ msgstr "自適應熱床網格" msgid "Accessory" msgstr "配件" -msgid "Machine gcode" +msgid "Machine G-code" msgstr "列印設備 G-code" msgid "Machine start G-code" @@ -7851,7 +7859,7 @@ msgstr "換層前 G-code" msgid "Layer change G-code" msgstr "換層 G-code" -msgid "Time lapse G-code" +msgid "Timelapse G-code" msgstr "縮時錄影 G-code" msgid "Change filament G-code" @@ -7895,7 +7903,7 @@ msgid "" msgstr "" "已選擇單噴頭多材料模式,\n" "所有噴頭的直徑必須相同。\n" -"你是否要將所有噴頭的直徑更改為第一噴頭的噴嘴直徑值?" +"您是否要將所有噴頭的直徑更改為第一噴頭的噴嘴直徑值?" msgid "Nozzle diameter" msgstr "噴嘴直徑" @@ -7910,7 +7918,7 @@ msgid "" "This is a single extruder multi-material printer, diameters of all extruders " "will be set to the new value. Do you want to proceed?" msgstr "" -"這是一台單噴頭多材料列印機,所有噴頭的直徑將被設置為新的值。你要繼續嗎?" +"這是一台單噴頭多材料列印機,所有噴頭的直徑將被設置為新的值。您要繼續嗎?" msgid "Layer height limits" msgstr "層高限制" @@ -7928,7 +7936,7 @@ msgid "" msgstr "" "當使用韌體回抽模式時,擦拭選項不可用。\n" "\n" -"是否需要禁用擦拭以啟用韌體回抽?" +"是否需要停用擦拭以啟用韌體回抽?" msgid "Firmware Retraction" msgstr "韌體回抽" @@ -7944,7 +7952,7 @@ msgstr "" "此列印設備含有 %d 線材預設和 %d 列印參數預設。若刪除此列印設備,這些預設將被" "刪除。" -msgid "Presets inherited by other presets can not be deleted!" +msgid "Presets inherited by other presets cannot be deleted!" msgstr "被其他預設繼承的預設無法刪除!" msgid "The following presets inherit this preset." @@ -7961,12 +7969,12 @@ msgid_plural "Following presets will be deleted too." msgstr[0] "以下預設將一起被刪除。" msgid "" -"Are you sure to delete the selected preset? \n" +"Are you sure to delete the selected preset?\n" "If the preset corresponds to a filament currently in use on your printer, " "please reset the filament information for that slot." msgstr "" -"你確定要刪除所選預設嗎?\n" -"如果該預設對應的是列印設備當前使用的線材,請重置該槽位的線材資訊。" +"您確定要刪除所選預設嗎?\n" +"如果該預設對應的是列印設備目前使用的線材,請重置該槽位的線材資訊。" #, boost-format msgid "Are you sure to %1% the selected preset?" @@ -8070,7 +8078,7 @@ msgid "" "You can save or discard the preset values you have modified." msgstr "" "\n" -"你可以儲存或放棄已修改的預設值。" +"您可以儲存或放棄已修改的預設值。" msgid "" "\n" @@ -8078,10 +8086,10 @@ msgid "" "transfer the values you have modified to the new preset." msgstr "" "\n" -"你可以儲存或放棄已修改的預設值,或選擇將修改的數值轉移到新的預設值。" +"您可以儲存或放棄已修改的預設值,或選擇將修改的數值轉移到新的預設值。" msgid "You have previously modified your settings." -msgstr "你之前已經對設定進行了修改。" +msgstr "您之前已經對設定進行了修改。" msgid "" "\n" @@ -8089,7 +8097,7 @@ msgid "" "the modified values to the new project" msgstr "" "\n" -"你可以放棄已修改的預設值,或選擇將修改的數值轉移到新專案中" +"您可以放棄已修改的預設值,或選擇將修改的數值轉移到新專案中" msgid "Extruders count" msgstr "擠出機數量" @@ -8108,7 +8116,7 @@ msgstr "選擇要比較的預設" msgid "" "You can only transfer to current active profile because it has been modified." -msgstr "因為當前的設定檔已被修改,你只能轉移到目前啟用的設定檔。" +msgstr "因為目前的設定檔已被修改,您只能轉移到目前啟用的設定檔。" msgid "" "Transfer the selected options from left preset to the right.\n" @@ -8167,7 +8175,7 @@ msgstr "發現新版本" msgid "Configuration update" msgstr "設定檔更新" -msgid "A new configuration package available, Do you want to install it?" +msgid "A new configuration package is available. Do you want to install it?" msgstr "有新的設定檔可用,是否要安裝?" msgid "Description:" @@ -8176,13 +8184,13 @@ msgstr "描述:" msgid "Configuration incompatible" msgstr "設定檔不相容" -msgid "the configuration package is incompatible with current application." +msgid "the configuration package is incompatible with the current application." msgstr "設定檔和目前的應用程式不相容。" #, c-format, boost-format msgid "" -"The configuration package is incompatible with current application.\n" -"%s will update the configuration package, Otherwise it won't be able to start" +"The configuration package is incompatible with the current application.\n" +"%s will update the configuration package to allow the application to start." msgstr "" "設定檔與目前的應用程式不相容。\n" "%s 將更新設定檔,否則應用程式將無法啟動" @@ -8191,7 +8199,7 @@ msgstr "" msgid "Exit %s" msgstr "退出 %s" -msgid "the Configuration package is incompatible with current APP." +msgid "the Configuration package is incompatible with the current APP." msgstr "設定檔與目前(手機應用程式)?不相容。" msgid "Configuration updates" @@ -8204,7 +8212,7 @@ msgid "The configuration is up to date." msgstr "目前設定檔已經是最新版本。" msgid "Obj file Import color" -msgstr "Obj 文件匯入顏色" +msgstr "Obj 檔案匯入顏色" msgid "Specify number of colors:" msgstr "指定顏色數量:" @@ -8217,7 +8225,7 @@ msgid "Recommended " msgstr "建議 " msgid "Current filament colors:" -msgstr "當前線材顏色:" +msgstr "目前線材顏色:" msgid "Quick set:" msgstr "快速設置:" @@ -8244,16 +8252,16 @@ msgid "Map Filament" msgstr "映射線材" msgid "" -"Note:The color has been selected, you can choose OK \n" -" to continue or manually adjust it." +"Note: The color has been selected, you can choose OK \n" +"to continue or manually adjust it." msgstr "" -"注意:顏色已選擇,你可以點擊確定繼續,\n" +"注意:顏色已選擇,您可以點擊確定繼續,\n" "或者手動進行調整。" msgid "" -"Waring:The count of newly added and \n" -" current extruders exceeds 16." -msgstr "警告:新增的擠出機量與當前擠出機總數超過 16。" +"Warning: The count of newly added and \n" +"current extruders exceeds 16." +msgstr "警告:新增的擠出機量與目前擠出機總數超過 16。" msgid "Ramming customization" msgstr "自訂尖端成型" @@ -8304,7 +8312,7 @@ msgid "" "Orca would re-calculate your flushing volumes every time the filaments color " "changed. You could disable the auto-calculate in Orca Slicer > Preferences" msgstr "" -"Orca 會在每次線材顏色變更時重新計算沖洗量。你可以在 Orca Slicer 的『偏好設" +"Orca 會在每次線材顏色變更時重新計算沖洗量。您可以在 Orca Slicer 的『偏好設" "置』中關閉自動計算功能" msgid "Flushing volume (mm³) for each filament pair." @@ -8340,7 +8348,7 @@ msgid "" "Windows Media Player is required for this task! Do you want to enable " "'Windows Media Player' for your operation system?" msgstr "" -"執行此設置需要 Windows Media Player!你是否要啟用 Windows Media Player?" +"執行此設置需要 Windows Media Player!您是否要啟用 Windows Media Player?" msgid "" "BambuSource has not correctly been registered for media playing! Press Yes " @@ -8362,15 +8370,15 @@ msgstr "" msgid "" "Your system is missing H.264 codecs for GStreamer, which are required to " -"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" +"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-" "libav packages, then restart Orca Slicer?)" msgstr "" -"你的系統缺少 GStreamer 的 H.264 編解碼器,這是播放影片所必需的。(請嘗試安裝 " +"您的系統缺少 GStreamer 的 H.264 編解碼器,這是播放影片所必需的。(請嘗試安裝 " "gstreamer1.0-plugins-bad 或 gstreamer1.0-libav 套件,然後重新啟動 Orca " "Slicer。)" msgid "Bambu Network plug-in not detected." -msgstr "未偵測到 Bambu 網路插件。" +msgstr "未偵測到 Bambu 網路外掛程式。" msgid "Click here to download it." msgstr "點擊下載。" @@ -8433,12 +8441,16 @@ msgid "Shift+R" msgstr "Shift+R" msgid "" -"Auto orientates selected objects or all objects.If there are selected " -"objects, it just orientates the selected ones.Otherwise, it will orientates " -"all objects in the current disk." +"Auto orients selected objects or all objects. If there are selected " +"objects, it just orients the selected ones. Otherwise, it will orient " +"all objects in the current project." msgstr "" -"自動調整選取零件/所有零件的方向,\n" -"有選取零件時調整選取零件的方向,沒有選取零件時調整目前列印板所有零件的方向。" +"自动调整选定零件/所有零件的方向,\n" +"有选定零件时调整选定零件的朝向,\n" +"没有选择零件时调整当项目所有零件的朝向" + +msgid "Auto orients all objects on the active plate." +msgstr "自动调整活动板上的所有物体的方向。" msgid "Shift+Tab" msgstr "Shift+Tab" @@ -8513,7 +8525,7 @@ msgid "keyboard 1-9: set filament for object/part" msgstr "按鍵 1~9:設定物件/零件的線材" msgid "Camera view - Default" -msgstr "攝影機視角 - 默認" +msgstr "攝影機視角 - 預設" msgid "Camera view - Top" msgstr "攝影機視角 - 頂部" @@ -8548,18 +8560,30 @@ msgstr "旋轉物件" msgid "Gizmo cut" msgstr "切割物件" -msgid "Gizmo Place face on bed" +msgid "Gizmo place face on bed" msgstr "選擇底面" +msgid "Gizmo mesh boolean" +msgstr "線框網格布林運算" + msgid "Gizmo SLA support points" msgstr "SLA 支撐點" msgid "Gizmo FDM paint-on seam" msgstr "FDM 塗裝接縫" -msgid "Gizmo Text emboss / engrave" +msgid "Gizmo text emboss/engrave" msgstr "浮雕/雕刻文字工具" +msgid "Gizmo measure" +msgstr "Gizmo " + +msgid "Gizmo assemble" +msgstr "Gizmo " + +msgid "Gizmo brim ears" +msgstr "Gizmo " + msgid "Zoom in" msgstr "放大" @@ -8599,7 +8623,7 @@ msgstr "浮雕" msgid "Set extruder number for the objects and parts" msgstr "設定物件、零件使用的擠出機編號" -msgid "Delete objects, parts, modifiers " +msgid "Delete objects, parts, modifiers" msgstr "刪除物件、零件、修改器" msgid "Select the object/part and press space to change the name" @@ -8629,7 +8653,7 @@ msgstr "水平滑動條 - 向右移動一步" msgid "On/Off one layer mode of the vertical slider" msgstr "開啟/關閉垂直滑動條的單層模式" -msgid "On/Off g-code window" +msgid "On/Off G-code window" msgstr "開啟/關閉 G-code 視窗" msgid "Move slider 5x faster" @@ -8648,19 +8672,19 @@ msgid "Release Note" msgstr "更新說明" #, c-format, boost-format -msgid "version %s update information :" +msgid "version %s update information:" msgstr "版本 %s 更新資訊:" msgid "Network plug-in update" -msgstr "網路插件升級" +msgstr "網路外掛程式升級" msgid "" "Click OK to update the Network plug-in when Orca Slicer launches next time." -msgstr "按下『確定』後,下次啟動 Orca Slicer 時會更新網路插件。" +msgstr "按下『確定』後,下次啟動 Orca Slicer 時會更新網路外掛程式。" #, c-format, boost-format -msgid "A new Network plug-in(%s) available, Do you want to install it?" -msgstr "新版的網路插件(%s)可用,是否要安裝?" +msgid "A new Network plug-in (%s) is available. Do you want to install it?" +msgstr "新版的網路外掛程式(%s)可用,是否要安裝?" msgid "New version of Orca Slicer" msgstr "新版本的 Orca Slicer" @@ -8677,10 +8701,10 @@ msgstr "繼續" msgid "Resume Printing" msgstr "繼續列印" -msgid "Resume Printing(defects acceptable)" +msgid "Resume Printing (defects acceptable)" msgstr "繼續列印 (瑕疵可接受)" -msgid "Resume Printing(problem solved)" +msgid "Resume Printing (problem solved)" msgstr "繼續列印 (問題排除了)" msgid "Stop Printing" @@ -8690,7 +8714,7 @@ msgid "Check Assistant" msgstr "檢查助手" msgid "Filament Extruded, Continue" -msgstr "線才擠出,繼續" +msgstr "線材擠出,繼續" msgid "Not Extruded Yet, Retry" msgstr "尚未擠出,重試" @@ -8733,7 +8757,7 @@ msgid "IP" msgstr "IP" msgid "Access Code" -msgstr "訪問碼" +msgstr "存取碼" msgid "Printer model" msgstr "列印設備型號" @@ -8742,7 +8766,7 @@ msgid "Printer name" msgstr "列印設備名稱" msgid "Where to find your printer's IP and Access Code?" -msgstr "在哪裡可以找到列印設備的 IP 和訪問碼?" +msgstr "在哪裡可以找到列印設備的 IP 和存取碼?" msgid "Connect" msgstr "連線" @@ -8757,7 +8781,7 @@ msgid "Failed to connect to printer." msgstr "無法連接到列印設備。" msgid "Failed to publish login request." -msgstr "登入請求發送失敗。" +msgstr "登入請求傳送失敗。" msgid "The printer has already been bound." msgstr "此印表機已綁定。" @@ -8799,10 +8823,10 @@ msgstr "最新版本" msgid "Updating" msgstr "更新中" -msgid "Updating failed" +msgid "Update failed" msgstr "更新失敗" -msgid "Updating successful" +msgid "Update successful" msgstr "更新成功" msgid "" @@ -8815,7 +8839,7 @@ msgid "" "continue. Do you want to update now? You can also update later from 'Upgrade " "firmware'." msgstr "" -"檢測到重要更新,必須執行後才能繼續列印。你要現在更新嗎?或者稍後可在『升級韌" +"檢測到重要更新,必須執行後才能繼續列印。您要現在更新嗎?或者稍後可在『升級韌" "體』中完成更新。" msgid "" @@ -8823,7 +8847,7 @@ msgid "" "printing. Do you want to update now? You can also update later on printer or " "update next time starting Orca." msgstr "" -"韌體版本異常,必須修復並更新後才能列印。你要現在更新嗎?也可以稍後在列印設備" +"韌體版本異常,必須修復並更新後才能列印。您要現在更新嗎?也可以稍後在列印設備" "上更新,或在下次啟動 Orca 時進行更新。" msgid "Extension Board" @@ -8917,10 +8941,10 @@ msgstr "沒有可列印的物件。可能是因為尺寸過小" msgid "" "Your print is very close to the priming regions. Make sure there is no " "collision." -msgstr "你的列印區域非常接近準備區域,請確認不會發生碰撞。" +msgstr "您的列印區域非常接近準備區域,請確認不會發生碰撞。" msgid "" -"Failed to generate gcode for invalid custom G-code.\n" +"Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" "錯誤的自訂 G-code 導致 G-code 產生失敗。\n" @@ -8970,7 +8994,7 @@ msgid "Multiple" msgstr "多個" #, boost-format -msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" " +msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " msgstr "計算 %1% 的線寬失敗。無法獲得「%2%」的值" msgid "" @@ -9006,7 +9030,7 @@ msgid "invalid header or corrupted" msgstr "無效檔案頭或檔案已損壞" msgid "unsupported multidisk" -msgstr "不支援多磁碟儲存" +msgstr "不支援多硬碟儲存" msgid "decompression failed" msgstr "解壓縮失敗或存檔已損壞" @@ -9100,9 +9124,9 @@ msgid " is too close to exclusion area, and collisions will be caused.\n" msgstr "離淨空區域太近,會發生碰撞。\n" msgid "" -"Can not print multiple filaments which have large difference of temperature " +"Cannot print multiple filaments which have large difference of temperature " "together. Otherwise, the extruder and nozzle may be blocked or damaged " -"during printing" +"during printing." msgstr "" "無法法同時列印溫度差異較大的多種線材,否則在列印過程中可能會造成擠出機或噴嘴" "堵塞甚至損壞" @@ -9146,7 +9170,7 @@ msgstr "物件 %1% 本身雖符合構建體積限制,但其最後一層超出 msgid "" "You might want to reduce the size of your model or change current print " "settings and retry." -msgstr "你可能想要減小模型的尺寸或更改目前的列印設定並重試。" +msgstr "您可能想要減小模型的尺寸或更改目前的列印設定並重試。" msgid "Variable layer height is not supported with Organic supports." msgstr "有機樹支撐不支持可變層高。" @@ -9185,20 +9209,21 @@ msgid "" "requires that all objects have the same layer height." msgstr "可變層高開啟時無法使用換料塔。它要求所有物件擁有相同的層高。" -msgid "The prime tower requires \"support gap\" to be multiple of layer height" +msgid "" +"The prime tower requires \"support gap\" to be multiple of layer height." msgstr "換料塔要求「支撐間隙」為層高的整數倍數" -msgid "The prime tower requires that all objects have the same layer heights" +msgid "The prime tower requires that all objects have the same layer heights." msgstr "換料塔要求各個物件擁有同樣的層高" msgid "" "The prime tower requires that all objects are printed over the same number " -"of raft layers" +"of raft layers." msgstr "換料塔要求各個物件使用同樣的筏層數量" msgid "" "The prime tower is only supported for multiple objects if they are printed " -"with the same support_top_z_distance" +"with the same support_top_z_distance." msgstr "" "只有當多個物件使用相同的支撐頂部 Z 距離 (support_top_z_distance) 列印時,才會" "支援換料塔" @@ -9210,7 +9235,7 @@ msgstr "換料塔要求各個物件擁有同樣的層高。" msgid "" "The prime tower is only supported if all objects have the same variable " -"layer height" +"layer height." msgstr "各個物件的層高存在差異,無法啟用換料塔" msgid "" @@ -9229,7 +9254,7 @@ msgid "" "support_interface_filament == 0), all nozzles have to be of the same " "diameter." msgstr "" -"使用不同噴嘴直徑的多個擠出機進行列印。如果支撐要使用當前的耗材列印" +"使用不同噴嘴直徑的多個擠出機進行列印。如果支撐要使用目前的耗材列印" "(support_filament == 0 或 support_interface_filament == 0),則所有噴嘴必須" "具有相同的直徑。" @@ -9256,7 +9281,7 @@ msgid "" "Support enforcers are used but support is not enabled. Please enable support." msgstr "使用支撐添加器但沒有打開支撐。請打開支撐。" -msgid "Layer height cannot exceed nozzle diameter" +msgid "Layer height cannot exceed nozzle diameter." msgstr "層高不能超過噴嘴直徑" msgid "" @@ -9294,9 +9319,9 @@ msgid "" "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" +"抖動設定已超過印表機的最大急動值(machine_max_jerk_x/machine_max_jerk_y)。\n" "Orca 將自動限制急動速度,以確保不超出列印設備的性能範圍。\n" -"如需更高速度,你可以在列印設備配置中調整最大急動值。" +"如需更高速度,您可以在列印設備配置中調整最大急動值。" msgid "" "The acceleration setting exceeds the printer's maximum acceleration " @@ -9308,7 +9333,7 @@ msgid "" msgstr "" "加速度設定已超過列印設備的最大加速度值 (machine_max_acceleration_travel)。\n" "Orca 將自動限制加速度,以確保不超出列印設備的性能範圍。\n" -"如需更高速度,你可以在列印設備配置中調整 machine_max_acceleration_extruding " +"如需更高速度,您可以在列印設備配置中調整 machine_max_acceleration_extruding " "值。" msgid "" @@ -9322,12 +9347,12 @@ msgstr "" "移動加速度設定已超過列印設備的最大移動加速度值" "(machine_max_acceleration_travel)。\n" "Orca 將自動限制移動加速度,以確保不超出列印設備的性能範圍。\n" -"如需更高速度,你可以在列印設備配置中調整 machine_max_acceleration_travel 值。" +"如需更高速度,您可以在列印設備配置中調整 machine_max_acceleration_travel 值。" msgid "" "Filament shrinkage will not be used because filament shrinkage for the used " "filaments differs significantly." -msgstr "線材收縮補償將被禁用,因為所使用的線材之間的收縮率差異過大。" +msgstr "線材收縮補償將被停用,因為所使用的線材之間的收縮率差異過大。" msgid "Generating skirt & brim" msgstr "正在產生 Skirt 和 Brim" @@ -9368,8 +9393,8 @@ msgid "Elephant foot compensation" msgstr "象腳補償" msgid "" -"Shrink the initial layer on build plate to compensate for elephant foot " -"effect" +"Shrinks the initial layer on build plate to compensate for elephant foot " +"effect." msgstr "將首層收縮用於補償象腳效應" msgid "Elephant foot compensation layers" @@ -9389,20 +9414,20 @@ msgstr "層" msgid "" "Slicing height for each layer. Smaller layer height means more accurate and " -"more printing time" +"more printing time." msgstr "每一層的切片高度。越小的層高意味著更高的精度和更長的列印時間" msgid "Printable height" msgstr "可列印高度" -msgid "Maximum printable height which is limited by mechanism of printer" +msgid "Maximum printable height which is limited by mechanism of printer." msgstr "受列印設備硬體限制的最大可列印高度" msgid "Preferred orientation" msgstr "首選方向" -msgid "Automatically orient stls on the Z-axis upon initial import" -msgstr "匯入STL時自動對齊Z軸" +msgid "Automatically orient stls on the Z-axis upon initial import." +msgstr "匯入 STL 時自動對齊 Z 軸" msgid "Printer preset names" msgstr "列印設備預設名稱" @@ -9410,7 +9435,7 @@ msgstr "列印設備預設名稱" msgid "Use 3rd-party print host" msgstr "啟用第三方列印主機" -msgid "Allow controlling BambuLab's printer through 3rd party print hosts" +msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "允許使用第三方列印主機控制 BambuLab 列印機" msgid "Hostname, IP or URL" @@ -9425,17 +9450,17 @@ msgid "" msgstr "" "Orca Slicer 可以將 G-code 檔案上傳到列印設備。此欄位應包含列印設備的主機名、" "IP 位址或 URL。啟用基本身份驗證的列印設備可以透過將使用者名稱和密碼放入以下格" -"式的URL中來訪問:https://username:password@your-octopi-address/" +"式的URL中來存取:https://username:password@your-octopi-address/" msgid "Device UI" msgstr "設備使用者界面" msgid "" -"Specify the URL of your device user interface if it's not same as print_host" +"Specify the URL of your device user interface if it's not same as print_host." msgstr "如果列印設備的使用者界面 URL 不同,請輸入在此" msgid "API Key / Password" -msgstr "API Key / 密碼" +msgstr "API 金鑰 / 密碼" msgid "" "Orca Slicer can upload G-code files to a printer host. This field should " @@ -9444,7 +9469,7 @@ msgstr "" "Orca slicer 可以將 G-code 檔案上傳到列印設備。此欄位應包含用於身份驗證的 API " "金鑰或密碼。" -msgid "Name of the printer" +msgid "Name of the printer." msgstr "列印設備名稱" msgid "HTTPS CA File" @@ -9465,17 +9490,17 @@ msgid "Password" msgstr "密碼" msgid "Ignore HTTPS certificate revocation checks" -msgstr "忽略 HTTPS憑證 吊銷檢查" +msgstr "忽略 HTTPS 憑證吊銷檢查" msgid "" "Ignore HTTPS certificate revocation checks in case of missing or offline " "distribution points. One may want to enable this option for self signed " "certificates if connection fails." msgstr "" -"在缺少或離線的情況下忽略 HTTPS憑證 吊銷檢查。如果連接失敗,可以啟用此選項來處" +"在缺少或離線的情況下忽略 HTTPS 憑證吊銷檢查。如果連接失敗,可以啟用此選項來處" "理自簽名憑證。" -msgid "Names of presets related to the physical printer" +msgid "Names of presets related to the physical printer." msgstr "與實體列印設備相關的預設名稱" msgid "Authorization Type" @@ -9485,22 +9510,23 @@ msgid "API key" msgstr "API 金鑰" msgid "HTTP digest" -msgstr "HTTP摘要" +msgstr "HTTP 摘要" -msgid "Avoid crossing wall" +msgid "Avoid crossing walls" msgstr "避免跨越外牆" -msgid "Detour and avoid to travel across wall which may cause blob on surface" +msgid "" +"Detour to avoid traveling across walls, which may cause blobs on the surface." msgstr "空駛時繞過外牆以避免在模型外觀表面產生斑點" -msgid "Avoid crossing wall - Max detour length" +msgid "Avoid crossing walls - Max detour length" msgstr "避免跨越外牆-最大繞行長度" msgid "" "Maximum detour distance for avoiding crossing wall. Don't detour if the " -"detour distance is large than this value. Detour length could be specified " +"detour distance is larger than this value. Detour length could be specified " "either as an absolute value or as percentage (for example 50%) of a direct " -"travel path. Zero to disable" +"travel path. Zero to disable." msgstr "" "避開穿越牆體時的最大繞行距離。若繞行距離超過此設定值,則不進行繞行。繞行距離" "可設為絕對值,或直接移動路徑的百分比(如 50%)。設為 0 以停用繞行功能" @@ -9512,31 +9538,31 @@ msgid "Other layers" msgstr "其它層" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Cool Plate." msgstr "首層之外各層的熱床溫度。值為 0 表示該線材不適用於低溫列印板" msgid "°C" msgstr "°C" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured Cool Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured Cool Plate." msgstr "首層之外各層的熱床溫度。值為 0 表示該線材不適用於低溫紋理列印板" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Engineering Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Engineering Plate." msgstr "首層之外各層的熱床溫度。值為 0 表示該線材不適用於工程列印板" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the High Temp Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the High Temp Plate." msgstr "首層之外各層的熱床溫度。值為 0 表示該線材不適用於高溫列印板" msgid "" -"Bed temperature for layers except the initial one. Value 0 means the " -"filament does not support to print on the Textured PEI Plate" +"Bed temperature for layers except the initial one. A value of 0 means the " +"filament does not support printing on the Textured PEI Plate." msgstr "首層之外各層的熱床溫度。值為 0 表示該線材不適用於紋理 PEI 列印板" msgid "Initial layer" @@ -9546,50 +9572,44 @@ msgid "Initial layer bed temperature" msgstr "首層床溫" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate SuperTack" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate SuperTack." msgstr "首層的列印床溫度。值為 0 表示該線材不適用於低溫增穩列印板" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Cool Plate." msgstr "首層的列印床溫度。值為 0 表示該線材不適用於低溫列印板" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured Cool Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured Cool Plate." msgstr "首層的列印床溫度。值為 0 表示該線材不適用於低溫紋理列印板" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Engineering Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Engineering Plate." msgstr "首層的列印床溫度。值為 0 表示該線材不適用於工程列印板" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the High Temp Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the High Temp Plate." msgstr "首層的列印床溫度。值為 0 表示該線材不適用於高溫列印板" msgid "" -"Bed temperature of the initial layer. Value 0 means the filament does not " -"support to print on the Textured PEI Plate" +"Bed temperature of the initial layer. A value of 0 means the filament does " +"not support printing on the Textured PEI Plate." msgstr "首層的列印床溫度。值為 0 表示該線材不適用於紋理 PEI 列印板" -msgid "Bed types supported by the printer" +msgid "Bed types supported by the printer." msgstr "列印設備所支援的列印板類型" msgid "Smooth Cool Plate" msgstr "低溫平滑列印板" -msgid "Engineering Plate" -msgstr "工程列印板" - msgid "Smooth High Temp Plate" msgstr "高溫平滑列印板" -msgid "Textured Cool Plate" -msgstr "低溫紋理列印板" - msgid "First layer print sequence" msgstr "首層列印順序" @@ -9602,7 +9622,7 @@ msgstr "其他層列印順序的次數" msgid "Other layers filament sequence" msgstr "其他層線材的列印順序" -msgid "This G-code is inserted at every layer change before lifting z" +msgid "This G-code is inserted at every layer change before the Z lift." msgstr "在每次換層抬升z高度之前插入這段 G-code" msgid "Bottom shell layers" @@ -9611,7 +9631,7 @@ msgstr "底部殼體層數" msgid "" "This is the number of solid layers of bottom shell, including the bottom " "surface layer. When the thickness calculated by this value is thinner than " -"bottom shell thickness, the bottom shell layers will be increased" +"bottom shell thickness, the bottom shell layers will be increased." msgstr "" "底部殼體實心層層數,包括底面。當由該層數計算的厚度小於底部殼體厚度,切片時會" "增加底部殼體的層數" @@ -9624,7 +9644,7 @@ msgid "" "calculated by bottom shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of bottom shell is absolutely determined by bottom " -"shell layers" +"shell layers." msgstr "" "如果由底部殼體層數算出的厚度小於這個數值,那麼切片時將自動增加底部殼體層數。" "這能夠避免當層高很小時,底部殼體過薄。0 表示關閉這個設定,同時底部殼體的厚度" @@ -9643,39 +9663,39 @@ msgid "" "for maximum strength\n" "2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces " "only, balancing print speed, reducing potential over extrusion in the solid " -"infill and making sure the top and bottom surfaces have no pin hole gaps\n" -"3. Nowhere: Disables gap fill for all solid infill areas. \n" +"infill and making sure the top and bottom surfaces have no pinhole gaps\n" +"3. Nowhere: Disables gap fill for all solid infill areas\n" "\n" "Note that if using the classic perimeter generator, gap fill may also be " "generated between perimeters, if a full width line cannot fit between them. " -"That perimeter gap fill is not controlled by this setting. \n" +"That perimeter gap fill is not controlled by this setting.\n" "\n" "If you would like all gap fill, including the classic perimeter generated " "one, removed, set the filter out tiny gaps value to a large number, like " -"999999. \n" +"999999.\n" "\n" "However this is not advised, as gap fill between perimeters is contributing " "to the model's strength. For models where excessive gap fill is generated " "between perimeters, a better option would be to switch to the arachne wall " "generator and use this option to control whether the cosmetic top and bottom " -"surface gap fill is generated" +"surface gap fill is generated." msgstr "" -"為選定的實心表面啟用間隙填充。你可以使用下方的『過濾微小間隙』選項來控制填充" +"為選定的實心表面啟用間隙填充。您可以使用下方的『過濾微小間隙』選項來控制填充" "的最小間隙長度。\n" "\n" "選項:\n" -"1. 所有區域:將間隙填充應用於頂部、底部和內部實心表面,以提升結構強度。\n" +"1. 所有區域:將間隙填充套用於頂部、底部和內部實心表面,以提升結構強度。\n" "2. 僅頂部和底部:僅在頂部和底部表面進行間隙填充,平衡列印速度,減少實心填充中" "的過度擠出,同時確保頂部和底部表面無針孔間隙。\n" -"3. 不填充:禁用所有實心填充區域的間隙填充。\n" +"3. 不填充:停用所有實心填充區域的間隙填充。\n" "\n" "請注意,若使用『經典』的牆產生器,當外牆之間無法容納完整寬度的線條時,間隙填" -"充仍可能生成。這類外牆間隙填充不受此設置控制。\n" +"充仍可能產生。這類外牆間隙填充不受此設置控制。\n" "如果希望移除所有間隙填充,包括『經典』的牆產生器間隙填充,可將『過濾微小間" "隙』設置為較大的數字(如 999999)。\n" "然而,不建議這麼做,因為外牆間的間隙填充能增強模型強度。若模型因外牆間隙填充" "過多而受影響,更好的解決方案是切換到『Arachne』牆產生器,並利用此選項控制是否" -"生成頂部和底部表面的美觀間隙填充" +"產生頂部和底部表面的美觀間隙填充" msgid "Everywhere" msgstr "全部" @@ -9785,9 +9805,9 @@ msgid "" "Controls the density (spacing) of internal bridge lines. 100% means solid " "bridge. Default is 100%.\n" "\n" -" Lower density internal bridges can help reduce top surface pillowing and " +"Lower density internal bridges can help reduce top surface pillowing and " "improve internal bridge reliability as there is more space for air to " -"circulate around the extruded bridge, improving its cooling speed. \n" +"circulate around the extruded bridge, improving its cooling speed.\n" "\n" "This option works particularly well when combined with the second internal " "bridge over infill option, further improving internal bridging structure " @@ -9798,15 +9818,15 @@ msgstr "" "降低內部橋接的密度有助於減少頂部表面的鼓起問題,並提升內部橋接的穩定性,因為" "較大的間距讓空氣更容易流通,加速冷卻效果。\n" "\n" -"此選項特別適用於「內部橋接覆蓋填充」功能,可進一步優化內部橋接結構,在擠出實" +"此選項特別適用於「內部橋接覆蓋填充」功能,可進一步改善內部橋接結構,在擠出實" "心填充前提供更穩固的支撐。" msgid "Bridge flow ratio" msgstr "橋接流量" msgid "" -"Decrease this value slightly(for example 0.9) to reduce the amount of " -"material for bridge, to improve sag. \n" +"Decrease this value slightly (for example 0.9) to reduce the amount of " +"material for bridge, to improve sag.\n" "\n" "The actual bridge flow used is calculated by multiplying this value with the " "filament flow ratio, and if set, the object's flow ratio." @@ -9840,7 +9860,7 @@ msgstr "頂部表面流量比例" msgid "" "This factor affects the amount of material for top solid infill. You can " -"decrease it slightly to have smooth surface finish. \n" +"decrease it slightly to have smooth surface finish.\n" "\n" "The actual top surface flow used is calculated by multiplying this value " "with the filament flow ratio, and if set, the object's flow ratio." @@ -9854,7 +9874,7 @@ msgid "Bottom surface flow ratio" msgstr "底部表面流量比例" msgid "" -"This factor affects the amount of material for bottom solid infill. \n" +"This factor affects the amount of material for bottom solid infill.\n" "\n" "The actual bottom solid infill flow used is calculated by multiplying this " "value with the filament flow ratio, and if set, the object's flow ratio." @@ -9876,8 +9896,8 @@ msgid "Only one wall on top surfaces" msgstr "頂面單層牆" msgid "" -"Use only one wall on flat top surface, to give more space to the top infill " -"pattern" +"Use only one wall on flat top surfaces, to give more space to the top infill " +"pattern." msgstr "頂面只使用單層牆,從而更多的空間能夠使用頂部填充圖案" msgid "One wall threshold" @@ -9905,7 +9925,7 @@ msgstr "首層僅單層牆" msgid "" "Use only one wall on first layer, to give more space to the bottom infill " -"pattern" +"pattern." msgstr "首層只使用單層牆,從而更多的空間能夠使用底部填充圖案" msgid "Extra perimeters on overhangs" @@ -9939,7 +9959,7 @@ msgid "Reverse only internal perimeters" msgstr "僅在內圍輪廓反向" msgid "" -"Apply the reverse perimeters logic only on internal perimeters. \n" +"Apply the reverse perimeters logic only on internal perimeters.\n" "\n" "This setting greatly reduces part stresses as they are now distributed in " "alternating directions. This should reduce part warping while also " @@ -9952,7 +9972,7 @@ msgid "" "Reverse Threshold to 0 so that all internal walls print in alternating " "directions on even layers irrespective of their overhang degree." msgstr "" -"僅在內圍輪廓應用反向邏輯。\n" +"僅在內圍輪廓套用反向邏輯。\n" "\n" "此設定可顯著減少零件應力,因為應力會以交替方向分佈。這有助於減少零件翹曲,同" "時保持外部牆面的品質。此功能對於易翹曲的材料(例如 ABS/ASA),以及彈性線材" @@ -9967,14 +9987,14 @@ msgstr "橋接沉孔" msgid "" "This option creates bridges for counterbore holes, allowing them to be " "printed without support. Available modes include:\n" -"1. None: No bridge is created.\n" -"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n" -"3. Sacrificial Layer: A full sacrificial bridge layer is created." +"1. None: No bridge is created\n" +"2. Partially Bridged: Only a part of the unsupported area will be bridged\n" +"3. Sacrificial Layer: A full sacrificial bridge layer is created" msgstr "" -"此選項為沉孔創建橋接,允許其在無支撐的情況下列印。可用模式包括:\n" -"1. 無:不創建任何橋接。\n" +"此選項為沉孔建立橋接,允許其在無支撐的情況下列印。可用模式包括:\n" +"1. 無:不建立任何橋接。\n" "2. 部分橋接:僅對未支撐區域的一部分進行橋接。\n" -"3. 犧牲層:創建一層完整的犧牲橋接層。" +"3. 犧牲層:建立一層完整的犧牲橋接層。" msgid "Partially bridged" msgstr "部分橋接" @@ -10004,13 +10024,13 @@ msgstr "" msgid "Classic mode" msgstr "經典模式" -msgid "Enable this option to use classic mode" +msgid "Enable this option to use classic mode." msgstr "開啟此選項以使用經典模式" msgid "Slow down for overhang" msgstr "懸空處降速" -msgid "Enable this option to slow printing down for different overhang degree" +msgid "Enable this option to slow printing down for different overhang degree." msgstr "打開這個選項將降低不同懸空程度的走線的列印速度" msgid "Slow down for curled perimeters" @@ -10019,11 +10039,11 @@ msgstr "翹邊處降速" #, no-c-format, no-boost-format msgid "" "Enable this option to slow down printing in areas where perimeters may have " -"curled upwards.For example, additional slowdown will be applied when " +"curled upwards. For example, additional slowdown will be applied when " "printing overhangs on sharp corners like the front of the Benchy hull, " "reducing curling which compounds over multiple layers.\n" "\n" -" It is generally recommended to have this option switched on unless your " +"It is generally recommended to have this option switched on unless your " "printer cooling is powerful enough or the print speed slow enough that " "perimeter curling does not happen. If printing with a high external " "perimeter speed, this parameter may introduce slight artifacts when slowing " @@ -10039,12 +10059,12 @@ msgstr "" "啟用此選項以在可能發生外牆翹起的區域減慢列印速度。例如,在列印懸空的尖銳角落" "(如 Benchy 船體前部)時,會額外減速,從而減少多層累積後的翹起。\n" "\n" -"一般建議啟用此選項,除非你的列印設備冷卻性能足夠強大,或者列印速度足夠慢,避" +"一般建議啟用此選項,除非您的列印設備冷卻性能足夠強大,或者列印速度足夠慢,避" "免發生外部周邊翹起。如果使用高外部周邊列印速度,此參數可能因列印速度差異過大" -"而導致輕微瑕疵。如果你注意到瑕疵,請確保壓力補償已正確調整。\n" +"而導致輕微瑕疵。如果您注意到瑕疵,請確保壓力補償已正確調整。\n" "\n" "注意:啟用此選項時,懸空外周邊會被視為懸空結構,即使該懸空外部周邊是橋接的一" -"部分,也會應用懸空速度。例如,當外牆 100% 懸空且下方無牆支撐時,將應用 100% " +"部分,也會套用懸空速度。例如,當外牆 100% 懸空且下方無牆支撐時,將套用 100% " "懸空速度。" msgid "mm/s or %" @@ -10054,7 +10074,7 @@ msgid "External" msgstr "外部" msgid "" -"Speed of the externally visible bridge extrusions. \n" +"Speed of the externally visible bridge extrusions.\n" "\n" "In addition, if Slow down for curled perimeters is disabled or Classic " "overhang mode is enabled, it will be the print speed of overhang walls that " @@ -10063,7 +10083,7 @@ msgid "" msgstr "" "外部可見橋接擠出的列印速度\n" "\n" -"如果禁用了『翹邊處降速』或啟用了『經典懸空模式』,則對支撐率低於 13% 的懸空牆" +"如果停用了『翹邊處降速』或啟用了『經典懸空模式』,則對支撐率低於 13% 的懸空牆" "(無論是橋接的一部分還是懸空結構)將使用該列印速度。" msgid "Internal" @@ -10079,7 +10099,7 @@ msgstr "" msgid "Brim width" msgstr "Brim 寬度" -msgid "Distance from model to the outermost brim line" +msgid "Distance from model to the outermost brim line." msgstr "從模型到 Brim 最外圈的距離" msgid "Brim type" @@ -10099,7 +10119,7 @@ msgstr "Brim 與模型的間隙" msgid "" "A gap between innermost brim line and object can make brim be removed more " -"easily" +"easily." msgstr "在 Brim 和模型之間設定間隙,能夠讓 Brim 更容易拆除" msgid "Brim ears" @@ -10112,8 +10132,8 @@ msgid "Brim ear max angle" msgstr "耳狀 Brim 最大角度" msgid "" -"Maximum angle to let a brim ear appear. \n" -"If set to 0, no brim will be created. \n" +"Maximum angle to let a brim ear appear.\n" +"If set to 0, no brim will be created.\n" "If set to ~180, brim will be created on everything but straight sections." msgstr "" "讓耳狀 Brim 出現的最大角度。\n" @@ -10126,7 +10146,7 @@ msgstr "耳狀 Brim 偵測半徑" msgid "" "The geometry will be decimated before detecting sharp angles. This parameter " "indicates the minimum length of the deviation for the decimation.\n" -"0 to deactivate" +"0 to deactivate." msgstr "" "在偵測尖銳角度之前,幾何形狀將被簡化。此參數表示簡化的最小偏差長度。\n" "設為 0 以停用" @@ -10146,7 +10166,7 @@ msgid "" "compatible with the active printer profile." msgstr "" "使用啟用的列印設備設定值來進行布林運算的表達式。如果此表達式的結果為 true,則" -"該設定檔將被視為與當前啟用的印表機設定檔相容。" +"該設定檔將被視為與目前啟用的印表機設定檔相容。" msgid "Compatible process profiles" msgstr "相容的切片設定" @@ -10160,9 +10180,9 @@ msgid "" "compatible with the active print profile." msgstr "" "使用啟用的列印設定檔值來進行布林運算的表達式。如果此表達式的結果為 true,則該" -"設定檔將被視為與當前啟用的列印設定檔相容。" +"設定檔將被視為與目前啟用的列印設定檔相容。" -msgid "Print sequence, layer by layer or object by object" +msgid "Print sequence, layer by layer or object by object." msgstr "列印順序,逐層列印或者逐件列印" msgid "By layer" @@ -10174,7 +10194,7 @@ msgstr "逐件" msgid "Intra-layer order" msgstr "單層順序" -msgid "Print order within a single layer" +msgid "Print order within a single layer." msgstr "每一層的列印順序" msgid "As object list" @@ -10187,7 +10207,7 @@ msgid "" "Enable this option to slow printing speed down to make the final layer time " "not shorter than the layer time threshold in \"Max fan speed threshold\", so " "that layer can be cooled for longer time. This can improve the cooling " -"quality for needle and small details" +"quality for needle and small details." msgstr "" "啟用此選項可降低列印速度,確保最終層的列印時間不少於「最大風扇速度臨界值」中" "的層時間設定值,以延長冷卻時間。此功能有助於提升針狀結構和細小細節的冷卻效果" @@ -10197,19 +10217,19 @@ msgstr "普通列印" msgid "" "The default acceleration of both normal printing and travel except initial " -"layer" +"layer." msgstr "除首層之外的預設的列印和空駛的加速度" msgid "Default filament profile" msgstr "預設線材設定檔" -msgid "Default filament profile when switch to this machine profile" +msgid "Default filament profile when switching to this machine profile." msgstr "切換設備自動更換預設線材設定檔" msgid "Default process profile" msgstr "預設切片設定檔" -msgid "Default process profile when switch to this machine profile" +msgid "Default process profile when switching to this machine profile." msgstr "切換設備自動更換預設切片設定檔" msgid "Activate air filtration" @@ -10222,19 +10242,19 @@ msgid "Fan speed" msgstr "風扇速度" msgid "" -"Speed of exhaust fan during printing.This speed will overwrite the speed in " -"filament custom gcode" +"Speed of exhaust fan during printing. This speed will override the speed in " +"filament custom G-code." msgstr "列印過程中排風扇的速度。此速度將覆蓋線材自訂 G-code 中的速度" -msgid "Speed of exhaust fan after printing completes" +msgid "Speed of exhaust fan after printing completes." msgstr "列印完成後排風扇的轉速" msgid "No cooling for the first" msgstr "前N層關閉零件風扇" msgid "" -"Close all cooling fan for the first certain layers. Cooling fan of the first " -"layer used to be closed to get better build plate adhesion" +"Turn off all cooling fans for the first few layers. This can be used to " +"improve build plate adhesion." msgstr "" "對開始的一些層關閉所有的物件冷卻風扇。通常關閉首層冷卻用來獲得更好的首層黏附" @@ -10242,8 +10262,8 @@ msgid "Don't support bridges" msgstr "不支撐橋接" msgid "" -"Don't support the whole bridge area which make support very large. Bridge " -"usually can be printing directly without support if not very long" +"Don't support the whole bridge area which make support very large. Bridges " +"can usually be printed directly without support if not very long." msgstr "" "不對整個橋接面進行支撐,否則支撐體會很大。不是很長的橋接通常可以無支撐直接列" "印" @@ -10289,24 +10309,24 @@ msgid "" "\n" "Options:\n" "1. Disabled - does not generate second bridge layers. This is the default " -"and is set for compatibility purposes.\n" +"and is set for compatibility purposes\n" "2. External bridge only - generates second bridge layers for external-facing " "bridges only. Please note that small bridges that are shorter or narrower " "than the set number of perimeters will be skipped as they would not benefit " "from a second bridge layer. If generated, the second bridge layer will be " "extruded parallel to the first bridge layer to reinforce the bridge " -"strength.\n" +"strength\n" "3. Internal bridge only - generates second bridge layers for internal " "bridges over sparse infill only. Please note that the internal bridges count " "towards the top shell layer count of your model. The second internal bridge " "layer will be extruded as close to perpendicular to the first as possible. " "If multiple regions in the same island, with varying bridge angles are " "present, the last region of that island will be selected as the angle " -"reference.\n" +"reference\n" "4. Apply to all - generates second bridge layers for both internal and " "external-facing bridges\n" msgstr "" -"此選項可在內部和/或外部橋接結構上額外生成一層橋接填充。\n" +"此選項可在內部和/或外部橋接結構上額外產生一層橋接填充。\n" "\n" "額外的橋接層能改善橋接區域的外觀與穩定性,提供更佳的實心填充支撐。這對於高速" "列印機特別有幫助,因為橋接與實心填充的列印速度可能有顯著差異。額外的橋接層還" @@ -10315,14 +10335,14 @@ msgstr "" "一般建議將此選項設定為「僅外部橋接」,除非特定的切片模型需要其他調整。\n" "選項說明:\n" "1. 停用 - 不啟用第二層橋接層(預設值,確保與其他設定相容)。\n" -"2.\t僅外部橋接 - 僅對外部橋接區域添加第二層橋接層。請注意,若橋接結構過短或寬" -"度小於設定的輪廓數量,則不會生成額外橋接層,因為這樣的結構不會受益於第二層橋" +"2.\t僅外部橋接 - 僅對外部橋接區域新增第二層橋接層。請注意,若橋接結構過短或寬" +"度小於設定的輪廓數量,則不會產生額外橋接層,因為這樣的結構不會受益於第二層橋" "接。如果啟用,第二層橋接層將與第一層平行擠出,以提升橋接的強度。\n" -"3. 僅內部橋接 - 僅為內部橋接區域(例如稀疏填充上的橋接部分)添加第二層橋接" +"3. 僅內部橋接 - 僅為內部橋接區域(例如稀疏填充上的橋接部分)新增第二層橋接" "層。請注意,內部橋接層會計入模型的頂部外殼層數。第二層內部橋接層的擠出方向會" "盡可能接近垂直於第一層,若同一區域內存在多個橋接角度,則該區域的最後一個部分" "將作為角度參考。\n" -"4. 應用於所有橋接區域 - 為內部與外部橋接區域都添加第二層橋接層。\n" +"4. 套用於所有橋接區域 - 為內部與外部橋接區域都新增第二層橋接層。\n" msgid "Disabled" msgstr "停用" @@ -10334,7 +10354,7 @@ msgid "Internal bridge only" msgstr "僅內部橋接" msgid "Apply to all" -msgstr "應用於所有橋接區域" +msgstr "套用於所有橋接區域" msgid "Filter out small internal bridges" msgstr "忽略過小的內部橋接" @@ -10342,49 +10362,37 @@ msgstr "忽略過小的內部橋接" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or " "curved models.\n" -"\n" "By default, small internal bridges are filtered out and the internal solid " "infill is printed directly over the sparse infill. This works well in most " "cases, speeding up printing without too much compromise on top surface " -"quality. \n" -"\n" +"quality.\n" "However, in heavily slanted or curved models, especially where too low a " "sparse infill density is used, this may result in curling of the unsupported " "solid infill, causing pillowing.\n" -"\n" "Enabling limited filtering or no filtering will print internal bridge layer " "over slightly unsupported internal solid infill. The options below control " "the sensitivity of the filtering, i.e. they control where internal bridges " -"are created.\n" -"\n" +"are created:\n" "1. Filter - enables this option. This is the default behavior and works well " -"in most cases.\n" -"\n" +"in most cases\n" "2. Limited filtering - creates internal bridges on heavily slanted surfaces " "while avoiding unnecessary bridges. This works well for most difficult " -"models.\n" -"\n" +"models\n" "3. No filtering - creates internal bridges on every potential internal " "overhang. This option is useful for heavily slanted top surface models; " -"however, in most cases, it creates too many unnecessary bridges." +"however, in most cases, it creates too many unnecessary bridges" msgstr "" "此選項可幫助降低在高度傾斜或曲面模型上的頂部表面起皺問題。\n" -"\n" "預設情況下,小型內部橋接會被過濾掉,內部實心填充會直接列印在稀疏填充上。這種" "方式適用於大多數情況,能提升列印速度,同時維持合理的頂部表面品質。\n" -"\n" "然而,在高度傾斜或曲面的模型上,特別是當稀疏填充密度過低時,未受支撐的實心填" "充可能會翹曲,導致表面起皺。\n" -"\n" "啟用「有限過濾」或「不過濾」模式,將允許在部分未完全支撐的內部實心填充區域上" -"列印內部橋接層。下列選項可調整過濾的敏感度,決定哪些區域需要生成內部橋接。\n" -"\n" +"列印內部橋接層。下列選項可調整過濾的敏感度,決定哪些區域需要產生內部橋接。\n" "選項說明:\n" "1.\t過濾 - 預設選項,能有效過濾小型內部橋接,在大多數情況下效果良好。\n" -"\n" -"2. 有限過濾 - 僅在高度傾斜的表面上建立內部橋接,同時避免生成過多無用的橋接結" +"2. 有限過濾 - 僅在高度傾斜的表面上建立內部橋接,同時避免產生過多無用的橋接結" "構,適合處理較複雜的模型。\n" -"\n" "3.\t不過濾 - 在所有可能的內部懸垂區域上建立內部橋接,適用於高度傾斜的頂部表面" "模型,但通常會產生過多不必要的橋接結構。" @@ -10411,18 +10419,18 @@ msgstr "" msgid "End G-code" msgstr "結尾 G-code" -msgid "End G-code when finish the whole printing" +msgid "End G-code when finishing the entire print." msgstr "所有列印結束時的結尾 G-code" -msgid "Between Object Gcode" +msgid "Between Object G-code" msgstr "物件分隔" msgid "" -"Insert Gcode between objects. This parameter will only come into effect when " -"you print your models object by object" -msgstr "在物件之間插入 Gcode。此參數僅在逐次列印時生效" +"Insert G-code between objects. This parameter will only come into effect when " +"you print your models object by object." +msgstr "在物件之間插入 G-code。此參數僅在逐次列印時生效" -msgid "End G-code when finish the printing of this filament" +msgid "End G-code when finishing the printing of this filament." msgstr "使用該線材列印結束時的結尾 G-code" msgid "Ensure vertical shell thickness" @@ -10438,13 +10446,13 @@ msgid "" "All: Add solid infill for all suitable sloping surfaces\n" "Default value is All." msgstr "" -"在傾斜面附近添加實心填充,以保證垂直外殼的厚度(頂部+底部實心層)\n" -"無:不在任何地方添加實心填充。注意:如果你的模型有傾斜表面,請謹慎使用此選" +"在傾斜面附近新增實心填充,以保證垂直外殼的厚度(頂部+底部實心層)\n" +"無:不在任何地方新增實心填充。注意:如果您的模型有傾斜表面,請謹慎使用此選" "項\n" -"僅關鍵部位:避免為牆體添加實心填充\n" -"適中:僅為大角度傾斜的表面添加實心填充\n" -"全部:為所有適合的傾斜表面添加實心填充\n" -"默認值為 全部。" +"僅關鍵部位:避免為牆體新增實心填充\n" +"適中:僅為大角度傾斜的表面新增實心填充\n" +"全部:為所有適合的傾斜表面新增實心填充\n" +"預設值為 全部。" msgid "Critical Only" msgstr "僅關鍵部分" @@ -10455,7 +10463,7 @@ msgstr "適度" msgid "Top surface pattern" msgstr "頂面圖案" -msgid "Line pattern of top surface infill" +msgid "Line pattern of top surface infill." msgstr "頂面填充的走線圖案" msgid "Concentric" @@ -10485,7 +10493,7 @@ msgstr "八角螺旋" msgid "Bottom surface pattern" msgstr "底面圖案" -msgid "Line pattern of bottom surface infill, not bridge infill" +msgid "Line pattern of bottom surface infill, not bridge infill." msgstr "除了橋接外的底面填充的走線圖案" msgid "Internal solid infill pattern" @@ -10525,14 +10533,14 @@ msgid "Small perimeters threshold" msgstr "微小部位周長臨界值" msgid "" -"This sets the threshold for small perimeter length. Default threshold is 0mm" +"This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "這設定了微小部位周長的臨界值。 預設臨界值是 0mm" msgid "Walls printing order" msgstr "牆列印順序" msgid "" -"Print sequence of the internal (inner) and external (outer) walls. \n" +"Print sequence of the internal (inner) and external (outer) walls.\n" "\n" "Use Inner/Outer for best overhangs. This is because the overhanging walls " "can adhere to a neighbouring perimeter while printing. However, this option " @@ -10546,7 +10554,7 @@ msgid "" "of 3 walls to be effective as it prints the internal walls from the 3rd " "perimeter onwards first, then the external perimeter and, finally, the first " "internal perimeter. This option is recommended against the Outer/Inner " -"option in most cases. \n" +"option in most cases.\n" "\n" "Use Outer/Inner for the same external wall quality and dimensional accuracy " "benefits of Inner/Outer/Inner option. However, the z seams will appear less " @@ -10611,10 +10619,10 @@ msgid "" msgstr "" "從頂部俯視時,牆體迴圈的擠出方向。\n" "\n" -"默認情況下,所有牆體以逆時針方向擠出,除非啟用了『偶數層反向』。若將此選項設" +"預設情況下,所有牆體以逆時針方向擠出,除非啟用了『偶數層反向』。若將此選項設" "為非自動,則無論是否啟用『偶數層反向』,都將強制指定牆體方向。\n" "\n" -"如果啟用了螺旋花瓶模式,該選項將被禁用。" +"如果啟用了螺旋花瓶模式,該選項將被停用。" msgid "Counter clockwise" msgstr "逆時針" @@ -10665,7 +10673,7 @@ msgstr "" "此選項設置允許的熱網格區域的最小值。由於探測器的 XY 偏移,大多數列印設備無法" "探測整個熱床。為確保感測範圍不超出熱床區域,應適當設置熱床網格的最小值和最大" "值。OrcaSlicer 會確保 adaptive_bed_mesh_min/adaptive_bed_mesh_max 的值不超出" -"這些最小值/最大值。此訊息通常可從設備製造商處獲取。默認設置為 (-99999, " +"這些最小值/最大值。此訊息通常可從設備製造商處取得。預設設置為 (-99999, " "-99999),表示無限制,允許探測整個熱床。" msgid "Bed mesh max" @@ -10684,7 +10692,7 @@ msgstr "" "此選項設置允許的熱網格區域的最大值。由於探測器的 XY 偏移,大多數列印設備無法" "探測整個熱床。為確保感測範圍不超出熱床區域,應適當設置熱床網格的最小值和最大" "值。OrcaSlicer 會確保 adaptive_bed_mesh_min/adaptive_bed_mesh_max 的值不超出" -"這些最小值/最大值。此訊息通常可從設備製造商處獲取。默認設置為 (-99999, " +"這些最小值/最大值。此訊息通常可從設備製造商處取得。預設設置為 (-99999, " "-99999),表示無限制,允許探測整個熱床。" msgid "Probe point distance" @@ -10694,7 +10702,7 @@ 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 " +"此選項用於設定 X 和 Y 方向探測點之間的首選距離(網格尺寸),預設值為 X 和 Y " "方向各為 50mm。" msgid "Mesh margin" @@ -10708,7 +10716,7 @@ msgstr "此選項決定自適應床面網格區域在 XY 方向上應該擴展 msgid "Extruder Color" msgstr "擠出機顏色" -msgid "Only used as a visual help on UI" +msgid "Only used as a visual help on UI." msgstr "作為介面上的輔助" msgid "Extruder offset" @@ -10718,22 +10726,22 @@ msgid "Flow ratio" msgstr "流量比例" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow." msgstr "" "線材經過融化後凝固可能會產生體積差異。這個設定會等比例改變所有擠出走線的擠出" "量。推薦的範圍為 0.95 到 1.05。發現模型的平面有輕微的缺料或多料時,或許可以嘗" "試微調這個參數" msgid "" -"The material may have volumetric change after switching between molten state " -"and crystalline state. This setting changes all extrusion flow of this " -"filament in gcode proportionally. Recommended value range is between 0.95 " -"and 1.05. Maybe you can tune this value to get nice flat surface when there " -"has slight overflow or underflow. \n" +"The material may have volumetric change after switching between molten and " +"crystalline states. This setting changes all extrusion flow of this filament " +"in G-code proportionally. The recommended value range is between 0.95 and " +"1.05. You may be able to tune this value to get a nice flat surface if there " +"is slight overflow or underflow.\n" "\n" "The final object flow ratio is this value multiplied by the filament flow " "ratio." @@ -10749,9 +10757,9 @@ msgstr "啟用壓力補償" msgid "" "Enable pressure advance, auto calibration result will be overwritten once " "enabled." -msgstr "啟用壓力補償功能,啟用後將覆蓋自動校準結果。" +msgstr "啟用壓力補償功能,啟用後將覆蓋自動校正結果。" -msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)" +msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." msgstr "壓力補償(Klipper),也稱為線性前進係數(Marlin)" msgid "Enable adaptive pressure advance (beta)" @@ -10784,10 +10792,10 @@ msgstr "" "起,同時避免在更快的特徵中出現間隙。\n" "\n" "此功能旨在通過建模的方式,讓擠出系統在不同體積流速和加速度下的反應狀態來解決" -"這一限制。內部會生成一個擬合模型,可根據給定的體積流速和加速度推算出所需的壓" -"力補償值,並根據當前的打印條件將該值發送到打印機。\n" +"這一限制。內部會產生一個擬合模型,可根據給定的體積流速和加速度推算出所需的壓" +"力補償值,並根據目前的列印條件將該值傳送到印表機。\n" "\n" -"啟用後,上述的壓力補償值將被覆蓋。然而,建議設置一個合理的默認值,以作為備用" +"啟用後,上述的壓力補償值將被覆蓋。然而,建議設置一個合理的預設值,以作為備用" "或擠出機更換時的回推值。\n" msgid "Adaptive pressure advance measurements (beta)" @@ -10809,37 +10817,36 @@ msgid "" "external perimeters, the speed of the internal perimeters and the fastest " "feature print speed in your profile (usually its the sparse or solid " "infill). Then run them for the same speeds for the slowest and fastest print " -"accelerations,and no faster than the recommended maximum acceleration as " -"given by the Klipper input shaper.\n" +"accelerations, and no faster than the recommended maximum acceleration as " +"given by the Klipper input shaper\n" "2. Take note of the optimal PA value for each volumetric flow speed and " "acceleration. You can find the flow number by selecting flow from the color " "scheme drop down and move the horizontal slider over the PA pattern lines. " "The number should be visible at the bottom of the page. The ideal PA value " "should be decreasing the higher the volumetric flow is. If it is not, " -"confirm that your extruder is functioning correctly.The slower and with less " -"acceleration you print, the larger the range of acceptable PA values. If no " -"difference is visible, use the PA value from the faster test.3. Enter the " -"triplets of PA values, Flow and Accelerations in the text box here and save " -"your filament profile\n" -"\n" +"confirm that your extruder is functioning correctly. The slower and with " +"less acceleration you print, the larger the range of acceptable PA values. " +"If no difference is visible, use the PA value from the faster test\n" +"3. Enter the triplets of PA values, Flow and Accelerations in the text box " +"here and save your filament profile" msgstr "" -"添加壓力補償 (PA) 值、體積流速和加速度的數據集,使用逗號分隔。每行一組數據。" +"新增壓力補償 (PA) 值、體積流速和加速度的資料集,使用逗號分隔。每行一組資料。" "例如:\n" "0.04,3.96,3000\n" "0.033,3.96,10000\n" "0.029,7.91,3000\n" "0.026,7.91,10000\n" "\n" -"校準方法:\n" +"校正方法:\n" "1. 為每個加速度值執行至少 3 個速度的壓力補償測試。建議至少測試外牆速度、內牆" "速度和設定檔中最快的特徵列印速度(通常是稀疏或實心填充)。然後對最慢和最快的" "列印加速度執行相同速度的測試,但不超過 Klipper 輸入整形器建議的最大加速度。\n" -"2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。你可以通過從顏色方案下拉選" +"2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。您可以通過從顏色方案下拉選" "單中選擇流量,並將水平滑桿移動到 PA 測試線的圖案來找到流量數值。該數值應顯示" -"在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查你的擠出" +"在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查您的擠出" "機是否正常工作。當列印速度較慢且加速度較低時,可接受的 PA 值範圍會更大。如果" "看不出差異,請採用最快測試的 PA 值。\n" -"3. 將 PA 值、流量和加速度的三組數據輸入到此文字框中,然後保存你的線材設定檔\n" +"3. 將 PA 值、流量和加速度的三組資料輸入到此文字框中,然後保存您的線材設定檔" msgid "Enable adaptive pressure advance for overhangs (beta)" msgstr "啟用懸挑自適應壓力提前 (beta)" @@ -10857,14 +10864,14 @@ msgid "Pressure advance for bridges" msgstr "橋接的壓力補償" msgid "" -"Pressure advance value for bridges. Set to 0 to disable. \n" +"Pressure advance value for bridges. Set to 0 to disable.\n" "\n" -" A lower PA value when printing bridges helps reduce the appearance of " +"A lower PA value when printing bridges helps reduce the appearance of " "slight under extrusion immediately after bridges. This is caused by the " "pressure drop in the nozzle when printing in the air and a lower PA helps " "counteract this." msgstr "" -"橋接的壓力補償值。設為 0 以禁用此功能。降低橋接時的壓力補償值有助於減少橋接結" +"橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結" "束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起" "的,而降低壓力補償值有助於抵消這一影響。" @@ -10872,14 +10879,15 @@ msgid "" "Default line width if other line widths are set to 0. If expressed as a %, " "it will be computed over the nozzle diameter." msgstr "" -"當線寬設定為 0 時走線的默認線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。" +"當線寬設定為 0 時走線的預設線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。" msgid "Keep fan always on" msgstr "保持風扇永遠開啟" msgid "" -"If enable this setting, part cooling fan will never be stopped and will run " -"at least at minimum speed to reduce the frequency of starting and stopping" +"Enabling this setting means that the part cooling fan will never stop " +"completely and will run at least at minimum speed to reduce the frequency of " +"starting and stopping." msgstr "" "如果勾選這個選項,物件冷卻風扇將不會停止,並且會以最小風扇轉速設定值運轉以減" "少風扇的頻繁開關" @@ -10887,21 +10895,19 @@ msgstr "" msgid "Don't slow down outer walls" msgstr "列印外牆不減速" +#, fuzzy msgid "" "If enabled, this setting will ensure external perimeters are not slowed down " "to meet the minimum layer time. This is particularly helpful in the below " "scenarios:\n" -"\n" -" 1. To avoid changes in shine when printing glossy filaments \n" +"1. To avoid changes in shine when printing glossy filaments\n" "2. To avoid changes in external wall speed which may create slight wall " -"artifacts that appear like z banding \n" +"artifacts that appear like Z banding\n" "3. To avoid printing at speeds which cause VFAs (fine artifacts) on the " -"external walls\n" -"\n" +"external walls" msgstr "" "啟用此設定後,外牆的列印速度將不會為了滿足每層最短列印時間而減慢,這對以下情" "況特別有用:\n" -"\n" "1.\t列印亮面耗材時,避免光澤不均的問題。\n" "2. 避免因外牆速度變化而產生類似 Z 條紋的瑕疵。\n" "3. 防止外牆因列印速度過快而出現 VFAs(細微表面瑕疵)。\n" @@ -10909,8 +10915,7 @@ msgstr "" "譯者補充:最小層時間(Minimum Layer Time)是指列印每一層所需的最短時間。如果" "列印機以較快的速度完成一層的列印時間短於這個設定值,為了確保每層有足夠的時間" "冷卻和固化,列印機會自動減慢速度,以延長該層的列印時間,達到最小層時間的要" -"求。這樣可以避免因冷卻不足而導致的列印缺陷,如層間附著不良或變形。\n" -"\n" +"求。這樣可以避免因冷卻不足而導致的列印缺陷,如層間附著不良或變形。" msgid "Layer time" msgstr "每一層列印時間" @@ -10918,7 +10923,7 @@ msgstr "每一層列印時間" msgid "" "Part cooling fan will be enabled for layers of which estimated time is " "shorter than this value. Fan speed is interpolated between the minimum and " -"maximum fan speeds according to layer printing time" +"maximum fan speeds according to layer printing time." msgstr "" "當層預估列印時間小於該數值時,物件冷卻風扇將會被開啟。風扇轉速將根據層列印時" "間在最大和最小風扇轉速之間自動調整" @@ -10933,7 +10938,7 @@ msgid "Filament notes" msgstr "線材備註" msgid "You can put your notes regarding the filament here." -msgstr "你可以將有關線材的備註存放在這裡。" +msgstr "您可以將有關線材的備註存放在這裡。" msgid "Required nozzle HRC" msgstr "噴嘴硬度要求" @@ -10946,7 +10951,7 @@ msgstr "列印此線材的所需的最小噴嘴硬度。零值表示不檢查噴 msgid "" "This setting stands for how much volume of filament can be melted and " "extruded per second. Printing speed is limited by max volumetric speed, in " -"case of too high and unreasonable speed setting. Can't be zero" +"case of too high and unreasonable speed setting. Can't be zero." msgstr "" "這個設定表示每秒能夠融化和擠出的線材體積。列印速度會受限於到最大體積速度,防" "止設定過高和不合理的速度。不允許設定為 0" @@ -10960,7 +10965,7 @@ msgstr "進料的時間" msgid "" "Time to load new filament when switch filament. It's usually applicable for " "single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "更換耗材時加載新耗材的時間,通常適用於單噴頭多材料的列印機。對於具備擠出機切" "換功能或多擠出機系統的設備,此值通常設為 0,僅作為統計參考" @@ -10971,7 +10976,7 @@ msgstr "退料的時間" msgid "" "Time to unload old filament when switch filament. It's usually applicable " "for single-extruder multi-material machines. For tool changers or multi-tool " -"machines, it's typically 0. For statistics only" +"machines, it's typically 0. For statistics only." msgstr "" "更換耗材時卸載舊耗材的時間,通常適用於單噴頭多材料的列印機。於具備擠出機切換" "功能或多擠出機系統的設備,此值通常設為 0,僅作為統計參考" @@ -10982,14 +10987,14 @@ msgstr "擠出機替換時間" msgid "" "Time taken to switch tools. It's usually applicable for tool changers or " "multi-tool machines. For single-extruder multi-material machines, it's " -"typically 0. For statistics only" +"typically 0. For statistics only." msgstr "" "切換擠出機所需的時間,通常適用於具備擠出機切換功能或多擠出機系統的設備。對於" "單噴頭多材料的列印機,此值一般設為 0,僅作為統計參考" msgid "" -"Filament diameter is used to calculate extrusion in gcode, so it's important " -"and should be accurate" +"Filament diameter is used to calculate extrusion in G-code, so it is " +"important and should be accurate." msgstr "線材直徑被用於計算 G-code 檔案中的擠出量。因此很重要,應盡可能精確" msgid "Pellet flow coefficient" @@ -11004,7 +11009,7 @@ msgid "" "\n" "filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )" msgstr "" -"顆粒流量係數是基於實驗數據得出的,用於計算顆粒列印機的材料體積。\n" +"顆粒流量係數是基於實驗資料得出的,用於計算顆粒列印機的材料體積。\n" "在內部系統中,該係數會被轉換為耗材直徑,而其它體積計算方式則維持不變。\n" "filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )" @@ -11052,7 +11057,7 @@ msgid "Unloading speed" msgstr "退料速度" msgid "" -"Speed used for unloading the filament on the wipe tower (does not affect " +"Speed used for unloading the filament on the wipe tower (does not affect " "initial part of unloading just after ramming)." msgstr "用於在換料塔上退料速度(不影響尖端成型之後初始部分的速度)。" @@ -11067,8 +11072,8 @@ msgid "Delay after unloading" msgstr "退料後延遲" msgid "" -"Time to wait after the filament is unloaded. May help to get reliable " -"toolchanges with flexible materials that may need more time to shrink to " +"Time to wait after the filament is unloaded. May help to get reliable tool " +"changes with flexible materials that may need more time to shrink to " "original dimensions." msgstr "" "退料後等待的時間。有助於使用柔性線材(收縮到原始尺寸需更多的時間)以獲得可靠" @@ -11092,7 +11097,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "沖壓距離是以冷卻管的中心作為參考點進行測量" msgid "" -"If set to nonzero value, filament is moved toward the nozzle between the " +"If set to non-zero value, filament is moved toward the nozzle between the " "individual cooling moves (\"stamping\"). This option configures how long " "this movement should be before the filament is retracted again." msgstr "" @@ -11140,7 +11145,7 @@ msgid "" "Perform ramming when using multi-tool printer (i.e. when the 'Single " "Extruder Multimaterial' in Printer Settings is unchecked). When checked, a " "small amount of filament is rapidly extruded on the wipe tower just before " -"the toolchange. This option is only used when the wipe tower is enabled." +"the tool change. This option is only used when the wipe tower is enabled." msgstr "" "多色列印設備執行尖端成型時(即,當列印設備設定中的單擠出機多材料未選取時)。" "選取時,在換色之前,會迅速擠出少量線材絲到換料塔上。此選項僅在啟用換料塔時使" @@ -11149,39 +11154,39 @@ msgstr "" msgid "Multi-tool ramming volume" msgstr "多色尖端成型體積" -msgid "The volume to be rammed before the toolchange." +msgid "The volume to be rammed before the tool change." msgstr "換色前尖端成型的體積。" msgid "Multi-tool ramming flow" msgstr "多色尖端成型流量" -msgid "Flow used for ramming the filament before the toolchange." +msgid "Flow used for ramming the filament before the tool change." msgstr "換色前線材尖端成型的流量。" msgid "Density" msgstr "密度" -msgid "Filament density. For statistics only" +msgid "Filament density. For statistics only." msgstr "線材的密度。只用於統計資訊" msgid "g/cm³" msgstr "g/cm³" -msgid "The material type of filament" +msgid "The material type of filament." msgstr "線材的材料類型" msgid "Soluble material" msgstr "可溶性材料" msgid "" -"Soluble material is commonly used to print support and support interface" +"Soluble material is commonly used to print supports and support interfaces." msgstr "可溶性材料通常用於列印支撐和支撐面" msgid "Support material" msgstr "支撐材料" msgid "" -"Support material is commonly used to print support and support interface" +"Support material is commonly used to print supports and support interfaces." msgstr "支撐材料通常用於列印支撐體和支撐接觸面" msgid "Softening temperature" @@ -11189,8 +11194,8 @@ msgstr "線材軟化溫度" msgid "" "The material softens at this temperature, so when the bed temperature is " -"equal to or greater than it, it's highly recommended to open the front door " -"and/or remove the upper glass to avoid clogging." +"equal to or greater than this, it's highly recommended to open the front " +"door and/or remove the upper glass to avoid clogging." msgstr "" "線材在此溫度下容易軟化,因此當熱床床溫等於或高於該溫度時,強烈建議打開前門和/" "或拆下上部玻璃以避免堵塞。" @@ -11198,7 +11203,7 @@ msgstr "" msgid "Price" msgstr "價格" -msgid "Filament price. For statistics only" +msgid "Filament price. For statistics only." msgstr "線材的價格。只用於統計資訊" msgid "money/kg" @@ -11207,7 +11212,7 @@ msgstr "元/公斤" msgid "Vendor" msgstr "廠牌" -msgid "Vendor of filament. For show only" +msgid "Vendor of filament. For show only." msgstr "列印線材的廠牌。僅用於展示" msgid "(Undefined)" @@ -11218,7 +11223,7 @@ msgstr "稀疏填充方向" msgid "" "Angle for sparse infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "稀疏填充圖案的角度,決定走線的開始或整體方向" msgid "Solid infill direction" @@ -11226,7 +11231,7 @@ msgstr "實心填充方向" msgid "" "Angle for solid infill pattern, which controls the start or main direction " -"of line" +"of line." msgstr "實心填充圖案的角度設定,用於決定線條的起始方向或主要列印方向" msgid "Rotate solid infill direction" @@ -11241,15 +11246,15 @@ msgstr "稀疏填充密度" #, no-c-format, no-boost-format msgid "" "Density of internal sparse infill, 100% turns all sparse infill into solid " -"infill and internal solid infill pattern will be used" +"infill and internal solid infill pattern will be used." msgstr "" -"設定內部稀疏填充的密度,當密度為 100% 時,所有稀疏填充將變為實心填充,並應用" +"設定內部稀疏填充的密度,當密度為 100% 時,所有稀疏填充將變為實心填充,並套用" "內部實心填充的圖案" msgid "Sparse infill pattern" msgstr "稀疏填充圖案" -msgid "Line pattern for internal sparse infill" +msgid "Line pattern for internal sparse infill." msgstr "內部稀疏填充的走線圖案" msgid "Grid" @@ -11318,7 +11323,7 @@ msgid "" "segment shorter than infill_anchor_max is found, the infill line is " "connected to a perimeter segment at just one side and the length of the " "perimeter segment taken is limited to this parameter, but no longer than " -"anchor_length_max. \n" +"anchor_length_max.\n" "Set this parameter to zero to disable anchoring perimeters connected to a " "single infill line." msgstr "" @@ -11326,7 +11331,7 @@ msgstr "" "是基於填充擠出寬度進行計算。Orca Slicer 會嘗試將兩條靠近的填充線連接到一段較" "短的牆。如果沒有找到比 infill_anchor_max 更短的牆,則填充線會只連接到一側的" "牆,且該段的長度受此參數限制,但不會超過 anchor_length_max。 \n" -"將此參數設為 0 可禁用單條填充線與牆的錨接功能。" +"將此參數設為 0 可停用單條填充線與牆的錨接功能。" msgid "0 (no open anchors)" msgstr "0(無錨線)" @@ -11345,7 +11350,7 @@ msgid "" "segment shorter than this parameter is found, the infill line is connected " "to a perimeter segment at just one side and the length of the perimeter " "segment taken is limited to infill_anchor, but no longer than this " -"parameter. \n" +"parameter.\n" "If set to 0, the old algorithm for infill connection will be used, it should " "create the same result as with 1000 & 0." msgstr "" @@ -11353,26 +11358,26 @@ msgstr "" "是基於填充擠出寬度進行計算。Orca Slicer 會嘗試將兩條靠近的填充線連接到一段較" "短的牆。如果沒有找到短於此參數的牆,則填充線會只連接到單側牆,且該牆的長度受 " "infill_anchor 限制,但不會超過此參數的設定值。若此參數設定為 0,將啟用舊版填" -"充連接算法,並生成與設置為 1000 和 0 相同的結果。" +"充連接算法,並產生與設置為 1000 和 0 相同的結果。" msgid "0 (Simple connect)" msgstr "0(簡單連接)" -msgid "Acceleration of outer walls" +msgid "Acceleration of outer walls." msgstr "外牆的加速度。它通常使用比內壁速度慢的加速度,以獲得更好的列印品質" -msgid "Acceleration of inner walls" +msgid "Acceleration of inner walls." msgstr "內牆加速度,使用較低值可以改善列印品質" -msgid "Acceleration of travel moves" +msgid "Acceleration of travel moves." msgstr "空駛加速度" msgid "" "Acceleration of top surface infill. Using a lower value may improve top " -"surface quality" +"surface quality." msgstr "頂面填充的加速度。使用較低值可能會改善頂面列印品質" -msgid "Acceleration of outer wall. Using a lower value can improve quality" +msgid "Acceleration of outer wall. Using a lower value can improve quality." msgstr "外牆加速度。使用較小的值可以提高列印品質" msgid "" @@ -11385,8 +11390,8 @@ msgid "mm/s² or %" msgstr "mm/s² 或 %" msgid "" -"Acceleration of sparse infill. If the value is expressed as a percentage " -"(e.g. 100%), it will be calculated based on the default acceleration." +"Acceleration of sparse infill. If the value is expressed as a percentage (e." +"g. 100%), it will be calculated based on the default acceleration." msgstr "" "稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計" "算。" @@ -11401,13 +11406,13 @@ msgstr "" msgid "" "Acceleration of initial layer. Using a lower value can improve build plate " -"adhesive" +"adhesion." msgstr "首層加速度。使用較低值可以改善和列印板的黏附" msgid "Enable accel_to_decel" msgstr "啟用煞車速度" -msgid "Klipper's max_accel_to_decel will be adjusted automatically" +msgid "Klipper's max_accel_to_decel will be adjusted automatically." msgstr "Klipper 會依照煞車速度自動調整" msgid "accel_to_decel" @@ -11415,25 +11420,25 @@ msgstr "煞車速度" #, c-format, boost-format msgid "" -"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration" +"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration." msgstr "Klipper 的最大煞車速度將調整為加速度的 %%" -msgid "Jerk of outer walls" +msgid "Jerk of outer walls." msgstr "外牆抖動值" -msgid "Jerk of inner walls" +msgid "Jerk of inner walls." msgstr "內牆抖動值" -msgid "Jerk for top surface" +msgid "Jerk for top surface." msgstr "頂面抖動值" -msgid "Jerk for infill" +msgid "Jerk for infill." msgstr "填充抖動" -msgid "Jerk for initial layer" +msgid "Jerk for initial layer." msgstr "首層抖動值" -msgid "Jerk for travel" +msgid "Jerk for travel." msgstr "空駛抖動值" msgid "" @@ -11446,22 +11451,22 @@ msgstr "首層層高" msgid "" "Height of initial layer. Making initial layer height to be thick slightly " -"can improve build plate adhesion" +"can improve build plate adhesion." msgstr "首層層高" -msgid "Speed of initial layer except the solid infill part" +msgid "Speed of initial layer except the solid infill part." msgstr "首層除實心填充之外的其他部分的列印速度" msgid "Initial layer infill" msgstr "首層填充" -msgid "Speed of solid infill part of initial layer" +msgid "Speed of solid infill part of initial layer." msgstr "首層實心填充的列印速度" msgid "Initial layer travel speed" msgstr "首層空駛速度" -msgid "Travel speed of initial layer" +msgid "Travel speed of initial layer." msgstr "首層空駛速度" msgid "Number of slow layers" @@ -11475,7 +11480,7 @@ msgstr "減慢前幾層的列印速度。列印速度會逐漸加速到滿速。 msgid "Initial layer nozzle temperature" msgstr "首層列印溫度" -msgid "Nozzle temperature to print initial layer when using this filament" +msgid "Nozzle temperature for printing initial layer when using this filament." msgstr "列印首層時的噴嘴溫度" msgid "Full fan speed at layer" @@ -11502,7 +11507,7 @@ msgstr "支撐界面風扇速度" msgid "" "This part cooling fan speed is applied when printing support interfaces. " -"Setting this parameter to a higher than regular speed reduces the layer " +"Setting this parameter to a higher than regular speed reduces the layer " "binding strength between supports and the supported part, making them easier " "to separate.\n" "Set to -1 to disable it.\n" @@ -11510,7 +11515,7 @@ msgid "" msgstr "" "此冷卻風扇速度適用於列印支撐介面時。將此值設為高於正常速度,可減少支撐結構與" "受支撐零件之間的黏結強度,使拆除支撐更容易。\n" -"若設為 -1,則禁用此功能。\n" +"若設為 -1,則停用此功能。\n" "此設定會被 disable_fan_first_layers 覆寫。" msgid "Internal bridges fan speed" @@ -11531,7 +11536,7 @@ msgstr "" msgid "" "Randomly jitter while printing the wall, so that the surface has a rough " -"look. This setting controls the fuzzy position" +"look. This setting controls the fuzzy position." msgstr "列印外牆時隨機抖動,使外表面產生絨毛效果。這個設定決定適用的位置" msgid "Contour" @@ -11548,7 +11553,7 @@ msgstr "絨毛表面厚度" msgid "" "The width within which to jitter. It's advised to be below outer wall line " -"width" +"width." msgstr "產生絨毛的抖動的寬度。建議小於外圈牆的線寬" msgid "Fuzzy skin point distance" @@ -11556,20 +11561,20 @@ msgstr "絨毛表面點間距" msgid "" "The average distance between the random points introduced on each line " -"segment" +"segment." msgstr "產生絨毛表面時,插入的隨機點之間的平均距離" msgid "Apply fuzzy skin to first layer" msgstr "在第一層啟用絨毛表面" -msgid "Whether to apply fuzzy skin on the first layer" +msgid "Whether to apply fuzzy skin on the first layer." msgstr "是否啟用絨毛表面於第一層" msgid "Fuzzy skin noise type" msgstr "模糊表面紋理噪聲類型" msgid "" -"Noise type to use for fuzzy skin generation.\n" +"Noise type to use for fuzzy skin generation:\n" "Classic: Classic uniform random noise.\n" "Perlin: Perlin noise, which gives a more consistent texture.\n" "Billow: Similar to perlin noise, but clumpier.\n" @@ -11643,7 +11648,7 @@ msgstr "" msgid "" "Speed of gap infill. Gap usually has irregular line width and should be " -"printed more slowly" +"printed more slowly." msgstr "填縫的速度。縫隙通常有不一致的線寬,應改用較慢速度列印" msgid "Precise Z height" @@ -11662,7 +11667,7 @@ msgstr "圓弧擬合" msgid "" "Enable this to get a G-code file which has G2 and G3 moves. The fitting " -"tolerance is same as the resolution. \n" +"tolerance is same as the resolution.\n" "\n" "Note: For Klipper machines, this option is recommended to be disabled. " "Klipper does not benefit from arc commands as these are split again into " @@ -11670,7 +11675,7 @@ msgid "" "quality as line segments are converted to arcs by the slicer and then back " "to line segments by the firmware." msgstr "" -"啟用此選項可生成包含 G2 和 G3 弧形運動的 G-code 文件,其擬合公差與解析度一" +"啟用此選項可產生包含 G2 和 G3 弧形運動的 G-code 檔案,其擬合公差與解析度一" "致。 \n" "\n" "注意:對於 Klipper 控制的機器,建議關閉此功能。Klipper 無法有效利用弧形指令," @@ -11680,15 +11685,16 @@ msgstr "" msgid "Add line number" msgstr "標註行號" -msgid "Enable this to add line number(Nx) at the beginning of each G-Code line" -msgstr "啟用此選項可在每行 G-Code 的開頭添加行號(Nx)" +msgid "" +"Enable this to add line number(Nx) at the beginning of each G-code line." +msgstr "啟用此選項可在每行 G-Code 的開頭新增行號(Nx)" msgid "Scan first layer" msgstr "首層檢查" msgid "" "Enable this to enable the camera on printer to check the quality of first " -"layer" +"layer." msgstr "打開這個設定將使用列印設備上的鏡頭用於檢查首層列印品質" msgid "Nozzle type" @@ -11696,7 +11702,7 @@ msgstr "噴嘴類型" msgid "" "The metallic material of nozzle. This determines the abrasive resistance of " -"nozzle, and what kind of filament can be printed" +"nozzle, and what kind of filament can be printed." msgstr "噴嘴的金屬材料。這將決定噴嘴的耐磨性,以及可列印線材的種類" msgid "Undefine" @@ -11725,7 +11731,7 @@ msgstr "洛氏硬度" msgid "Printer structure" msgstr "列印設備結構" -msgid "The physical arrangement and components of a printing device" +msgid "The physical arrangement and components of a printing device." msgstr "列印設備的實體佈置和組件" msgid "CoreXY" @@ -11757,10 +11763,10 @@ msgid "" "can use fractional seconds). It assumes infinite acceleration for this time " "estimation, and will only take into account G1 and G0 moves (arc fitting is " "unsupported).\n" -"It won't move fan commands from custom gcodes (they act as a sort of " +"It won't move fan commands from custom G-code (they act as a sort of " "'barrier').\n" -"It won't move fan commands into the start gcode if the 'only custom start " -"gcode' is activated.\n" +"It won't move fan commands into the start G-code if the 'only custom start " +"G-code' is activated.\n" "Use 0 to deactivate." msgstr "" "在風扇目標啟動時間前提前設定的秒數啟動風扇(支持小數點)。此功能基於無限加速" @@ -11795,7 +11801,7 @@ msgstr "" msgid "Time cost" msgstr "時間成本" -msgid "The printer cost per hour" +msgid "The printer cost per hour." msgstr "列印設備每小時的成本" msgid "money/h" @@ -11824,7 +11830,7 @@ msgstr "" msgid "G-code flavor" msgstr "G-code 風格" -msgid "What kind of gcode the printer is compatible with" +msgid "What kind of G-code the printer is compatible with." msgstr "列印設備相容的 G-code 樣式" msgid "Klipper" @@ -11833,20 +11839,20 @@ msgstr "Klipper" msgid "Pellet Modded Printer" msgstr "顆粒改裝列印機" -msgid "Enable this option if your printer uses pellets instead of filaments" -msgstr "若你的列印機使用塑料顆粒而非傳統線材,請啟用此選項" +msgid "Enable this option if your printer uses pellets instead of filaments." +msgstr "若您的列印機使用塑料顆粒而非傳統線材,請啟用此選項" msgid "Support multi bed types" msgstr "支援多種熱床類型" -msgid "Enable this option if you want to use multiple bed types" -msgstr "若你需要切換使用不同的列印床類型,請啟用此選項" +msgid "Enable this option if you want to use multiple bed types." +msgstr "若您需要切換使用不同的列印床類型,請啟用此選項" msgid "Label objects" msgstr "標註物件" msgid "" -"Enable this to add comments into the G-Code labeling print moves with what " +"Enable this to add comments into the G-code labeling print moves with what " "object they belong to, which is useful for the Octoprint CancelObject " "plugin. This settings is NOT compatible with Single Extruder Multi Material " "setup and Wipe into Object / Wipe into Infill." @@ -11858,7 +11864,7 @@ msgstr "" msgid "Exclude objects" msgstr "物件排除" -msgid "Enable this option to add EXCLUDE OBJECT command in g-code" +msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "開啟此選項以支援物件排除" msgid "Verbose G-code" @@ -11869,7 +11875,7 @@ msgid "" "descriptive text. If you print from SD card, the additional weight of the " "file could make your firmware slow down." msgstr "" -"啟用此選項可取得帶註釋的 G-code,其中每一行均由描述性文字進行解釋。如果你從 " +"啟用此選項可取得帶註釋的 G-code,其中每一行均由描述性文字進行解釋。如果您從 " "SD 卡列印,檔案的額外容量可能會導致韌體速度變慢。" msgid "Infill combination" @@ -11885,7 +11891,7 @@ msgid "Infill combination - Max layer height" msgstr "合併填充 - 最大層高" msgid "" -"Maximum layer height for the combined sparse infill. \n" +"Maximum layer height for the combined sparse infill.\n" "\n" "Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in " "print time) or a value of ~80% to maximize sparse infill strength.\n" @@ -11898,7 +11904,7 @@ msgid "" msgstr "" "設定稀疏填充合併列印最大層高。\n" "\n" -"你可以將其設為 0 或 100% 來使用噴嘴直徑(以最大程度縮短列印時間),或者設定為" +"您可以將其設為 0 或 100% 來使用噴嘴直徑(以最大程度縮短列印時間),或者設定為" "大約 80% 來增強稀疏填充的強度。結合的層數會根據此值與層高的比值計算,並向下取" "整到最接近的位數。\n" "\n" @@ -11936,19 +11942,19 @@ msgid "" "bonding and to minimize the appearance of pinholes where the top infill " "meets the walls. A value of 25-30% is a good starting point, minimizing the " "appearance of pinholes. The percentage value is relative to line width of " -"sparse infill" +"sparse infill." msgstr "" "頂部實心填充的區域會略微擴大,與周邊部分重疊,以增強結合效果並減少填充與周邊" "接合處出現針孔的可能性。建議從 25-30% 的設定值開始,這通常能有效減少針孔現" "象。此百分比值是基於稀疏填充的線寬來計算的" -msgid "Speed of internal sparse infill" +msgid "Speed of internal sparse infill." msgstr "內部稀疏填充的列印速度" msgid "Inherits profile" msgstr "繼承設定檔" -msgid "Name of parent profile" +msgid "Name of parent profile." msgstr "上層設定檔名稱" msgid "Interface shells" @@ -11957,7 +11963,7 @@ msgstr "接觸面外殼" msgid "" "Force the generation of solid shells between adjacent materials/volumes. " "Useful for multi-extruder prints with translucent materials or manual " -"soluble support material" +"soluble support material." msgstr "" "強制在相鄰材料/體積之間產生實體殼。 適用於使用半透明材料或手動可溶支撐材料的" "多擠出機列印" @@ -11966,7 +11972,7 @@ msgid "Maximum width of a segmented region" msgstr "分隔區域的最大寬度" msgid "Maximum width of a segmented region. Zero disables this feature." -msgstr "分隔區域的最大寬度。零表示禁用此功能。" +msgstr "分隔區域的最大寬度。零表示停用此功能。" msgid "Interlocking depth of a segmented region" msgstr "分隔區域的互鎖深度" @@ -11974,7 +11980,7 @@ msgstr "分隔區域的互鎖深度" msgid "" "Interlocking depth of a segmented region. It will be ignored if " "\"mmu_segmented_region_max_width\" is zero or if " -"\"mmu_segmented_region_interlocking_depth\"is bigger then " +"\"mmu_segmented_region_interlocking_depth\" is bigger than " "\"mmu_segmented_region_max_width\". Zero disables this feature." msgstr "" "設定分隔區域的互鎖深度。如果「mmu_segmented_region_max_width」設定為 0,或者" @@ -11990,7 +11996,7 @@ msgid "" "filaments touch. This improves the adhesion between filaments, especially " "models printed in different materials." msgstr "" -"在不同材料的耗材接觸點生成梁式互鎖結構,增強耗材之間的附著力,特別適用於不同" +"在不同材料的耗材接觸點產生梁式互鎖結構,增強耗材之間的附著力,特別適用於不同" "材料列印的模型。\n" "譯者補充:此設定通常用於提升結構穩定性,透過梁式設計讓不同部分更緊密地連接在" "一起,常見於模組化或多材料列印中。" @@ -12032,7 +12038,7 @@ msgid "" "The distance from the outside of a model where interlocking structures will " "not be generated, measured in cells." msgstr "" -"設定模型外部距離範圍內不生成互鎖結構,此距離以單元數做計算\n" +"設定模型外部距離範圍內不產生互鎖結構,此距離以單元數做計算\n" "譯者補充:此設定用於確保互鎖結構不干擾模型的外部區域,特別適用於需要精細外觀" "或保護特定結構的列印需求。" @@ -12061,7 +12067,7 @@ msgstr "所有實心層" msgid "Ironing Pattern" msgstr "熨燙模式" -msgid "The pattern that will be used when ironing" +msgid "The pattern that will be used when ironing." msgstr "熨燙時將使用的圖案" msgid "Ironing flow" @@ -12069,13 +12075,13 @@ msgstr "熨燙流量" msgid "" "The amount of material to extrude during ironing. Relative to flow of normal " -"layer height. Too high value results in overextrusion on the surface" +"layer height. Too high value results in overextrusion on the surface." msgstr "熨燙時相對正常層高流量的材料量。過高的數值將會導致表面材料過擠出" msgid "Ironing line spacing" msgstr "熨燙間距" -msgid "The distance between the lines of ironing" +msgid "The distance between the lines of ironing." msgstr "熨燙走線的間距" msgid "Ironing inset" @@ -12083,13 +12089,13 @@ msgstr "燙平內縮距離" msgid "" "The distance to keep from the edges. A value of 0 sets this to half of the " -"nozzle diameter" +"nozzle diameter." msgstr "與邊緣保持的距離。設定為 0 時,距離將自動設為噴嘴直徑的一半" msgid "Ironing speed" msgstr "熨燙速度" -msgid "Print speed of ironing lines" +msgid "Print speed of ironing lines." msgstr "熨燙的列印速度" msgid "Ironing angle" @@ -12100,7 +12106,7 @@ msgid "" "uses the default method." msgstr "設定熨燙操作的角度。若設為負值,將停用此功能並改用預設的熨平方式。" -msgid "This gcode part is inserted at every layer change after lift z" +msgid "This G-code is inserted at every layer change after the Z lift." msgstr "在每次換層抬升Z高度之後插入這段 G-code" msgid "Supports silent mode" @@ -12108,7 +12114,7 @@ msgstr "支援靜音模式" msgid "" "Whether the machine supports silent mode in which machine use lower " -"acceleration to print" +"acceleration to print." msgstr "設備是否支援使用低加速度列印的靜音模式" msgid "Emit limits to G-code" @@ -12119,24 +12125,24 @@ msgstr "設備限制" msgid "" "If enabled, the machine limits will be emitted to G-code file.\n" -"This option will be ignored if the g-code flavor is set to Klipper." +"This option will be ignored if the G-code flavor is set to Klipper." msgstr "" -"啟用後,設備的限制參數將被寫入 G-code 文件中。若 G-code 格式為 Klipper,該選" +"啟用後,設備的限制參數將被寫入 G-code 檔案中。若 G-code 格式為 Klipper,該選" "項將無效。" msgid "" -"This G-code will be used as a code for the pause print. User can insert " -"pause G-code in gcode viewer" +"This G-code will be used as a code for the pause print. Users can insert " +"pause G-code in the G-code viewer." msgstr "" "這段 G-code 用於暫停列印操作。使用者可以在 G-code 預覽中手動插入暫停指令" -msgid "This G-code will be used as a custom code" +msgid "This G-code will be used as a custom code." msgstr "這段 G-code 是訂製化指令" msgid "Small area flow compensation (beta)" msgstr "小面積流量補償(Beta)" -msgid "Enable flow compensation for small infill areas" +msgid "Enable flow compensation for small infill areas." msgstr "啟用小面積填充區域的流量補償功能" msgid "Flow Compensation Model" @@ -12252,12 +12258,12 @@ msgstr "回抽最大加速度(M204 R)" msgid "Maximum acceleration for travel" msgstr "空駛最大加速度" -msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2" +msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." msgstr "最大行駛加速度(M204 T),僅適用於 Marlin 2" msgid "" "Part cooling fan speed may be increased when auto cooling is enabled. This " -"is the maximum speed limitation of part cooling fan" +"is the maximum speed for the part cooling fan." msgstr "" "啟用自動冷卻時,可能會提高物件冷卻風扇的轉速。這是物件冷卻風扇的最大速度限制" @@ -12265,36 +12271,37 @@ msgid "Max" msgstr "最大" msgid "" -"The largest printable layer height for extruder. Used tp limits the maximum " -"layer hight when enable adaptive layer height" +"The highest printable layer height for the extruder. Used to limit the " +"maximum layer height when adaptive layer height is enabled." msgstr "擠出頭最大可列印的層高。用於限制開啟自適應層高時的最大層高" msgid "Extrusion rate smoothing" msgstr "平滑擠出率" +#, fuzzy msgid "" "This parameter smooths out sudden extrusion rate changes that happen when " "the printer transitions from printing a high flow (high speed/larger width) " "extrusion to a lower flow (lower speed/smaller width) extrusion and vice " "versa.\n" "\n" -"It defines the maximum rate by which the extruded volumetric flow in mm3/sec " +"It defines the maximum rate by which the extruded volumetric flow in mm³/s² " "can change over time. Higher values mean higher extrusion rate changes are " "allowed, resulting in faster speed transitions.\n" "\n" -"A value of 0 disables the feature. \n" +"A value of 0 disables the feature.\n" "\n" "For a high speed, high flow direct drive printer (like the Bambu lab or " "Voron) this value is usually not needed. However it can provide some " "marginal benefit in certain cases where feature speeds vary greatly. For " "example, when there are aggressive slowdowns due to overhangs. In these " -"cases a high value of around 300-350mm3/s2 is recommended as this allows for " -"just enough smoothing to assist pressure advance achieve a smoother flow " +"cases a high value of around 300-350 mm³/s² is recommended as this allows " +"for just enough smoothing to assist pressure advance achieve a smoother flow " "transition.\n" "\n" "For slower printers without pressure advance, the value should be set much " -"lower. A value of 10-15mm3/s2 is a good starting point for direct drive " -"extruders and 5-10mm3/s2 for Bowden style. \n" +"lower. A value of 10-15 mm³/s² is a good starting point for direct drive " +"extruders and 5-10 mm³/s² for Bowden style.\n" "\n" "This feature is known as Pressure Equalizer in Prusa slicer.\n" "\n" @@ -12311,11 +12318,11 @@ msgstr "平滑段長度" msgid "" "A lower value results in smoother extrusion rate transitions. However, this " -"results in a significantly larger gcode file and more instructions for the " -"printer to process. \n" +"results in a significantly larger G-code file and more instructions for the " +"printer to process.\n" "\n" "Default value of 3 works well for most cases. If your printer is stuttering, " -"increase this value to reduce the number of adjustments made\n" +"increase this value to reduce the number of adjustments made.\n" "\n" "Allowed values: 0.5-5" msgstr "" @@ -12336,10 +12343,10 @@ msgid "" "visible overhangs without impacting the print speed of features that will " "not be visible to the user." msgstr "" -"僅在外部輪廓與懸垂部分應用擠出速率平滑處理。這可減少外部可見區域因速度變化過" +"僅在外部輪廓與懸垂部分套用擠出速率平滑處理。這可減少外部可見區域因速度變化過" "快而產生的瑕疵,而不影響內部結構的列印速度。" -msgid "Minimum speed for part cooling fan" +msgid "Minimum speed for part cooling fan." msgstr "物件冷卻風扇的最小轉速" msgid "" @@ -12357,8 +12364,8 @@ msgid "Min" msgstr "最小" msgid "" -"The lowest printable layer height for extruder. Used tp limits the minimum " -"layer hight when enable adaptive layer height" +"The lowest printable layer height for the extruder. Used to limit the " +"minimum layer height when adaptive layer height is enabled." msgstr "擠出頭最小可列印的層高。用於限制開啟自適應層高時的最小層高" msgid "Min print speed" @@ -12369,7 +12376,7 @@ msgid "" "minimum layer time defined above when the slowdown for better layer cooling " "is enabled." msgstr "" -"當啟用了為改善層冷卻而減速的功能時,這個參數設定列印設備能減速到的最低打印速" +"當啟用了為改善層冷卻而減速的功能時,這個參數設定列印設備能減速到的最低列印速" "度,以確保達到上面設定的最短層時間。" msgid "Diameter of nozzle" @@ -12381,7 +12388,7 @@ msgstr "設定備註" msgid "" "You can put here your personal notes. This text will be added to the G-code " "header comments." -msgstr "你可以在這裡放置你的個人備註。 該文字將會加入 G 代碼標題註釋中。" +msgstr "您可以在這裡放置您的個人備註。 該文字將會加入 G 代碼標題註釋中。" msgid "Host Type" msgstr "主機類型" @@ -12394,7 +12401,7 @@ msgstr "Orca Slicer可以將 G-code 檔案上傳到列印設備。此欄位必 msgid "Nozzle volume" msgstr "噴嘴內腔體積" -msgid "Volume of nozzle between the cutter and the end of nozzle" +msgid "Volume of nozzle between the cutter and the end of nozzle." msgstr "噴嘴內從刀具到末端之間的體積" msgid "Cooling tube position" @@ -12435,7 +12442,7 @@ msgstr "額外進料距離" msgid "" "When set to zero, the distance the filament is moved from parking position " "during load is exactly the same as it was moved back during unload. When " -"positive, it is loaded further, if negative, the loading move is shorter " +"positive, it is loaded further, if negative, the loading move is shorter " "than unloading." msgstr "" "當設定為零時,線材的進料移動與退料移動的距離相同。如果為正,進料比退料長。如" @@ -12453,7 +12460,7 @@ msgstr "減小填充回抽" msgid "" "Don't retract when the travel is in infill area absolutely. That means the " "oozing can't been seen. This can reduce times of retraction for complex " -"model and save printing time, but make slicing and G-code generating slower" +"model and save printing time, but make slicing and G-code generating slower." msgstr "" "當空駛完全在填充區域內時不觸發回抽。這意味著即使漏料也是不可見的。對於複雜模" "型,該設定能夠減少回抽次數以及列印時長,但是會造成 G-code 產生變慢" @@ -12466,7 +12473,7 @@ msgstr "這個選項會降低未使用噴頭的溫度,以防止材料滲出。 msgid "Filename format" msgstr "檔案名稱格式" -msgid "User can self-define the project file name when export" +msgid "Users can define the project file name when exporting." msgstr "使用者可以自訂匯出項目檔案的名稱" msgid "Make overhangs printable" @@ -12491,7 +12498,7 @@ msgstr "最大孔洞面積" msgid "" "Maximum area of a hole in the base of the model before it's filled by " -"conical material.A value of 0 will fill all the holes in the model base." +"conical material. A value of 0 will fill all the holes in the model base." msgstr "" "模型底部的孔洞在被圓錐形材料填充前所允許的最大面積。值為 0 將填充模型底部的所" "有孔洞。" @@ -12507,7 +12514,7 @@ msgid "" "Detect the overhang percentage relative to line width and use different " "speed to print. For 100%% overhang, bridge speed is used." msgstr "" -"偵測懸空相對於線寬的百分比,並應用不同的速度列印。100%% 的懸空將使用橋接速" +"偵測懸空相對於線寬的百分比,並套用不同的速度列印。100%% 的懸空將使用橋接速" "度。" msgid "Filament to print walls" @@ -12518,10 +12525,10 @@ msgid "" "nozzle diameter." msgstr "內牆的線寬。如果以 % 表示,它將以噴嘴直徑為基準來計算。" -msgid "Speed of inner wall" +msgid "Speed of inner wall." msgstr "內圈牆列印速度" -msgid "Number of walls of every layer" +msgid "Number of walls of every layer." msgstr "每一層的外牆" msgid "Alternate extra wall" @@ -12529,18 +12536,18 @@ msgstr "交錯額外牆壁" msgid "" "This setting adds an extra wall to every other layer. This way the infill " -"gets wedged vertically between the walls, resulting in stronger prints. \n" +"gets wedged vertically between the walls, resulting in stronger prints.\n" "\n" "When this option is enabled, the ensure vertical shell thickness option " -"needs to be disabled. \n" +"needs to be disabled.\n" "\n" "Using lightning infill together with this option is not recommended as there " "is limited infill to anchor the extra perimeters to." msgstr "" -"此設定在每隔一層添加一個額外的牆壁。這樣填充會垂直嵌入牆壁之間,從而增強列印" +"此設定在每隔一層新增一個額外的牆壁。這樣填充會垂直嵌入牆壁之間,從而增強列印" "的強度。\n" "\n" -"啟用此選項時,需要禁用『確保垂直外殼厚度』選項。\n" +"啟用此選項時,需要停用『確保垂直外殼厚度』選項。\n" "\n" "不建議將此選項與『閃電填充』一起使用,因為填充有限,無法為額外的外牆提供穩固" "的支撐。" @@ -12552,7 +12559,7 @@ msgid "" "argument, and they can access the Orca Slicer config settings by reading " "environment variables." msgstr "" -"如果你想透過自訂腳本處理輸出的 G-code,只需在此處列出它們的絕對路徑即可。用分" +"如果您想透過自訂腳本處理輸出的 G-code,只需在此處列出它們的絕對路徑即可。用分" "號分隔多個腳本。腳本將傳遞 G-code 檔案的絕對路徑作為第一個參數,並且它們可以" "透過讀取環境變數來讀取 Orca Slicer 設定。" @@ -12574,25 +12581,25 @@ msgstr "列印機型號" msgid "Raft contact Z distance" msgstr "筏層 Z 間距" -msgid "Z gap between object and raft. Ignored for soluble interface" +msgid "Z gap between object and raft. Ignored for soluble interface." msgstr "模型和筏層之間的Z間隙" msgid "Raft expansion" msgstr "筏層擴展" -msgid "Expand all raft layers in XY plane" +msgid "Expand all raft layers in XY plane." msgstr "在 XY 平面擴展所有筏層" msgid "Initial layer density" msgstr "首層密度" -msgid "Density of the first raft or support layer" +msgid "Density of the first raft or support layer." msgstr "筏和支撐的首層密度" msgid "Initial layer expansion" msgstr "首層擴展" -msgid "Expand the first raft or support layer to improve bed plate adhesion" +msgid "Expand the first raft or support layer to improve bed plate adhesion." msgstr "擴展筏和支撐的首層可以改善和熱床的黏附" msgid "Raft layers" @@ -12600,14 +12607,14 @@ msgstr "筏層" msgid "" "Object will be raised by this number of support layers. Use this function to " -"avoid wrapping when print ABS" +"avoid warping when printing ABS." msgstr "" "模型會在相應層數的支撐上抬高進行列印。使用該功能通常用於列印 ABS 時翹曲" msgid "" -"G-code path is generated after simplifying the contour of model to avoid too " -"much points and gcode lines in gcode file. Smaller value means higher " -"resolution and more time to slice" +"The G-code path is generated after simplifying the contour of models to " +"avoid too many points and G-code lines. Smaller value means higher " +"resolution and more time to slice." msgstr "" "為了避免 G-code 檔案中過密集的點和走線,G-code走線通常是在簡化模型的外輪廓之" "後產生。越小的數值代表更高的解析度,同時需要更長的切片時間" @@ -12617,20 +12624,20 @@ msgstr "空駛距離臨界值" msgid "" "Only trigger retraction when the travel distance is longer than this " -"threshold" +"threshold." msgstr "只在空駛距離大於該數值時觸發回抽" msgid "Retract amount before wipe" msgstr "擦拭前的回抽量" msgid "" -"The length of fast retraction before wipe, relative to retraction length" +"The length of fast retraction before wipe, relative to retraction length." msgstr "擦拭之前的回抽長度,用總回抽長度的百分比表示" msgid "Retract when change layer" msgstr "換層時回抽" -msgid "Force a retraction when changes layer" +msgid "Force a retraction when changes layer." msgstr "強制在換層時回抽" msgid "Retract on top layer" @@ -12638,9 +12645,9 @@ msgstr "頂層回抽" msgid "" "Force a retraction on top layer. Disabling could prevent clog on very slow " -"patterns with small movements, like Hilbert curve" +"patterns with small movements, like Hilbert curve." msgstr "" -"在頂層強制執行回抽操作。禁用此功能可能有助於避免在非常緩慢且移動距離較小的模" +"在頂層強制執行回抽操作。停用此功能可能有助於避免在非常緩慢且移動距離較小的模" "式(例如希爾伯特曲線)中出現堵塞" msgid "Retraction Length" @@ -12652,12 +12659,12 @@ msgid "" msgstr "" "擠出機將材料拉回指定長度,避免空駛較長時軟化的線材滲出。設定為 0 表示關閉回抽" -msgid "Long retraction when cut(beta)" +msgid "Long retraction when cut (beta)" msgstr "切斷時的長回抽(實驗性功能)" msgid "" -"Experimental feature.Retracting and cutting off the filament at a longer " -"distance during changes to minimize purge.While this reduces flush " +"Experimental feature: Retracting and cutting off the filament at a longer " +"distance during changes to minimize purge. While this reduces flush " "significantly, it may also raise the risk of nozzle clogs or other printing " "problems." msgstr "" @@ -12668,8 +12675,8 @@ msgid "Retraction distance when cut" msgstr "切斷時的回抽距離" msgid "" -"Experimental feature.Retraction length before cutting off during filament " -"change" +"Experimental feature: Retraction length before cutting off during filament " +"change." msgstr "實驗性功能。線材切換時切斷前的回抽距離" msgid "Z-hop height" @@ -12678,26 +12685,26 @@ msgstr "Z 抬升高度" msgid "" "Whenever the retraction is done, the nozzle is lifted a little to create " "clearance between nozzle and the print. It prevents nozzle from hitting the " -"print when travel move. Using spiral line to lift z can prevent stringing" +"print when travel move. Using spiral lines to lift Z can prevent stringing." msgstr "" "回抽完成之後,噴嘴輕微抬升,和列印物件之間產生一定間隙。這能夠避免空駛時噴嘴" "和列印物件剮蹭和碰撞。使用螺旋線抬升z能夠減少拉絲" -msgid "Z hop lower boundary" +msgid "Z-hop lower boundary" msgstr "Z 抬升下邊界" msgid "" -"Z hop will only come into effect when Z is above this value and is below the " -"parameter: \"Z hop upper boundary\"" +"Z-hop will only come into effect when Z is above this value and is below the " +"parameter: \"Z-hop upper boundary\"." msgstr "" "只有當 Z 值高於此設定值且低於「Z 抬升上邊界」參數時,Z 抬升功能才會啟用。" -msgid "Z hop upper boundary" +msgid "Z-hop upper boundary" msgstr "Z 抬升上邊界" msgid "" -"If this value is positive, Z hop will only come into effect when Z is above " -"the parameter: \"Z hop lower boundary\" and is below this value" +"If this value is positive, Z-hop will only come into effect when Z is above " +"the parameter: \"Z-hop lower boundary\" and is below this value." msgstr "" "若此值為正,Z 抬升功能僅在 Z 值高於「Z 抬升下邊界」參數且低於此設定值時才會啟" "用" @@ -12705,9 +12712,6 @@ msgstr "" msgid "Z-hop type" msgstr "Z 抬升類型" -msgid "Z hop type" -msgstr "Z 抬升類型" - msgid "Slope" msgstr "梯形" @@ -12718,8 +12722,8 @@ msgid "Traveling angle" msgstr "移動角度" msgid "" -"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results " -"in Normal Lift" +"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results " +"in Normal Lift." msgstr "適用於坡度和螺旋 Z 抬升類型的移動角度。將其設為 90° 可執行正常抬升" msgid "Only lift Z above" @@ -12742,7 +12746,7 @@ msgid "On surfaces" msgstr "僅在表面" msgid "" -"Enforce Z Hop behavior. This setting is impacted by the above settings (Only " +"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only " "lift Z above/below)." msgstr "" "強制啟用 Z 抬升行為。此功能受前述設定(僅在 Z 值高於/低於時啟用)的影響。" @@ -12775,15 +12779,15 @@ msgstr "當換色後回抽被補償時,擠出機將推入額外長度的線材 msgid "Retraction Speed" msgstr "回抽速度" -msgid "Speed of retractions" +msgid "Speed of retractions." msgstr "回抽速度" msgid "De-retraction Speed" msgstr "裝填速度" msgid "" -"Speed for reloading filament into extruder. Zero means same speed with " -"retraction" +"Speed for reloading filament into extruder. Zero means same speed of " +"retraction." msgstr "線材裝填的速度,0 表示和回抽速度一致" msgid "Use firmware retraction" @@ -12797,19 +12801,19 @@ msgstr "" "Marlin 韌體。" msgid "Show auto-calibration marks" -msgstr "顯示雷達校準線" +msgstr "顯示雷達校正線" msgid "Disable set remaining print time" msgstr "停用剩餘列印時間設定" msgid "" -"Disable generating of the M73: Set remaining print time in the final gcode" -msgstr "停用在最終 G-code 中生成 M73 指令以設定剩餘列印時間" +"Disable generating of the M73: Set remaining print time in the final G-code." +msgstr "停用在最終 G-code 中產生 M73 指令以設定剩餘列印時間" msgid "Seam position" msgstr "接縫位置" -msgid "The start position to print each part of outer wall" +msgid "The start position to print each part of outer wall." msgstr "Z縫(外牆銜接)的位置" msgid "Nearest" @@ -12842,7 +12846,7 @@ msgid "" "current extruder diameter. The default value for this parameter is 10%." msgstr "" "為了降低閉環擠出中接縫的可見度,閉環會中斷並縮短指定的長度。\n" -"此長度可設定為毫米或擠出機直徑的百分比,默認值為 10%。" +"此長度可設定為毫米或擠出機直徑的百分比,預設值為 10%。" msgid "Scarf joint seam (beta)" msgstr "斜拼接縫(Beta)" @@ -12869,7 +12873,7 @@ msgid "" "The default value is 155°." msgstr "" "此選項設定斜拼接縫的角度閾值條件。當外牆迴圈內的最大角度超過該設定值(表示不" -"存在尖角)時,將應用斜接縫接縫。預設值為 155°。" +"存在尖角)時,將套用斜接縫接縫。預設值為 155°。" msgid "Conditional overhang threshold" msgstr "懸空閾值條件" @@ -12882,7 +12886,7 @@ msgid "" "at 40% of the external wall's width. Due to performance considerations, the " "degree of overhang is estimated." msgstr "" -"此選項用於設定斜拼接縫的懸空閾值。當外牆未支撐的部分小於該閾值時,將應用斜拼" +"此選項用於設定斜拼接縫的懸空閾值。當外牆未支撐的部分小於該閾值時,將套用斜拼" "接縫。預設閾值為外層牆寬度的 40%。為了考慮性能,此懸空程度為估算值。" msgid "Scarf joint speed" @@ -12890,7 +12894,7 @@ 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 " +"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 " @@ -12917,7 +12921,7 @@ msgid "" "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 "" -"設定斜拼接縫的起始高度。該值可用毫米或當前層高度的百分比表示,默認值為 0。" +"設定斜拼接縫的起始高度。該值可用毫米或目前層高度的百分比表示,預設值為 0。" msgid "Scarf around entire wall" msgstr "環繞整個牆體的斜拼接縫" @@ -12931,7 +12935,7 @@ msgstr "斜拼接縫長度" msgid "" "Length of the scarf. Setting this parameter to zero effectively disables the " "scarf." -msgstr "斜拼接縫的長度。若將此參數設為 0,將禁用斜接功能。" +msgstr "斜拼接縫的長度。若將此參數設為 0,將停用斜接功能。" msgid "Scarf steps" msgstr "斜拼接縫段數" @@ -12949,11 +12953,11 @@ msgid "Role base wipe speed" msgstr "自動擦拭速度" msgid "" -"The wipe speed is determined by the speed of the current extrusion role.e.g. " +"The wipe speed is determined by the speed of the current extrusion role. e.g. " "if a wipe action is executed immediately following an outer wall extrusion, " "the speed of the outer wall extrusion will be utilized for the wipe action." msgstr "" -"拭的速度由當前擠出任務的速度決定。例如,若擦拭操作緊接著外牆的擠出執行,則將" +"拭的速度由目前擠出任務的速度決定。例如,若擦拭操作緊接著外牆的擠出執行,則將" "使用外牆擠出的速度進行擦拭。" msgid "Wipe on loops" @@ -12973,7 +12977,7 @@ msgid "" "external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall " "print order, the de-retraction is performed slightly on the inside from the " "start of the external perimeter. That way any potential over extrusion is " -"hidden from the outside surface. \n" +"hidden from the outside surface.\n" "\n" "This is useful when printing with Outer/Inner or Inner/Outer/Inner wall " "print order as in these modes it is more likely an external perimeter is " @@ -12989,9 +12993,9 @@ msgstr "擦拭速度" msgid "" "The wipe speed is determined by the speed setting specified in this " -"configuration.If the value is expressed as a percentage (e.g. 80%), it will " -"be calculated based on the travel speed setting above.The default value for " -"this parameter is 80%" +"configuration. If the value is expressed as a percentage (e.g. 80%), it will " +"be calculated based on the travel speed setting above. The default value for " +"this parameter is 80%." msgstr "" "擦拭速度取決於此配置中設定的速度值。若以百分比表示(例如 80%),則會根據上述" "的移動速度設定進行計算。該參數的預設值為 80%" @@ -13014,7 +13018,7 @@ msgstr "" msgid "Skirt height" msgstr "Skirt 高度" -msgid "How many layers of skirt. Usually only one layer" +msgid "How many layers of skirt. Usually only one layer." msgstr "Skirt 有多少層。通常只有一層" msgid "Single loop draft shield" @@ -13034,7 +13038,7 @@ msgstr "防風罩" msgid "" "A draft shield is useful to protect an ABS or ASA print from warping and " "detaching from print bed due to wind draft. It is usually needed only with " -"open frame printers, i.e. without an enclosure. \n" +"open frame printers, i.e. without an enclosure.\n" "\n" "Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt " "height' is used.\n" @@ -13042,8 +13046,8 @@ msgid "" "distance from the object. Therefore, if brims are active it may intersect " "with them. To avoid this, increase the skirt distance value.\n" msgstr "" -"防風罩可有效保護 ABS 或 ASA 列印物免受氣流影響,避免翹曲或脫離打印床。通常僅" -"在開放式框架的打印機(即無外殼)中需要使用。\n" +"防風罩可有效保護 ABS 或 ASA 列印物免受氣流影響,避免翹曲或脫離列印床。通常僅" +"在開放式框架的印表機(即無外殼)中需要使用。\n" "\n" "啟用後,Skirt 的高度將與列印物的最高點相同。若未啟用,則使用『Skirt 高度』的" "設定值。\n" @@ -13071,7 +13075,7 @@ msgstr "逐件" msgid "Skirt loops" msgstr "Skirt 圈數" -msgid "Number of loops for the skirt. Zero means disabling skirt" +msgid "Number of loops for the skirt. Zero means disabling skirt." msgstr "Skirt 的圈數。0 表示關閉 Skirt" msgid "Skirt speed" @@ -13087,9 +13091,9 @@ msgid "" "Minimum filament extrusion length in mm when printing the skirt. Zero means " "this feature is disabled.\n" "\n" -"Using a non zero value is useful if the printer is set up to print without a " +"Using a non-zero value is useful if the printer is set up to print without a " "prime line.\n" -"Final number of loops is not taling into account whli arranging or " +"Final number of loops is not taking into account while arranging or " "validating objects distance. Increase loop number in such case." msgstr "" "列印 Skirt 時的最小擠出線材長度(單位:毫米)。設為 0 表示停用此功能。若列印" @@ -13097,8 +13101,9 @@ msgstr "" "迴圈數不會被計算進去。如需更多迴圈,請手動增加迴圈數設定。" msgid "" -"The printing speed in exported gcode will be slowed down, when the estimated " -"layer time is shorter than this value, to get better cooling for these layers" +"The printing speed in exported G-code will be slowed down when the estimated " +"layer time is shorter than this value in order to get better cooling for " +"these layers." msgstr "" "當預估的層列印時間低於該設定值時,導出的 G-code 中的列印速度會自動減慢,以提" "升該層的冷卻效果" @@ -13108,7 +13113,7 @@ msgstr "稀疏填充最小臨界值" msgid "" "Sparse infill area which is smaller than threshold value is replaced by " -"internal solid infill" +"internal solid infill." msgstr "小於設定閾值的稀疏填充區域將替換為內部實心填充" msgid "Solid infill" @@ -13122,23 +13127,23 @@ msgid "" "computed over the nozzle diameter." msgstr "內部實心填充的列印線寬。若以百分比表示,將根據噴嘴直徑進行計算。" -msgid "Speed of internal solid infill, not the top and bottom surface" +msgid "Speed of internal solid infill, not the top and bottom surface." msgstr "內部實心填充的列印速度,不適用於頂面和底面" msgid "" "Spiralize smooths out the z moves of the outer contour. And turns a solid " "model into a single walled print with solid bottom layers. The final " -"generated model has no seam" +"generated model has no seam." msgstr "" "平滑螺旋功能可平滑外輪廓的 Z 軸運動,並將實心模型轉換為具有實心底層的單壁列" -"印。生成的最終模型不會有接縫" +"印。產生的最終模型不會有接縫" msgid "Smooth Spiral" msgstr "平滑螺旋" msgid "" "Smooth Spiral smooths out X and Y moves as well, resulting in no visible " -"seam at all, even in the XY directions on walls that are not vertical" +"seam at all, even in the XY directions on walls that are not vertical." msgstr "" "平滑螺旋功能同時平滑 X 和 Y 軸的移動,確保即使在非垂直牆面上,X 和 Y 方向也不" "會出現可見的接縫" @@ -13149,7 +13154,7 @@ msgstr "XY 軸最大平滑度" #, no-c-format, no-boost-format msgid "" "Maximum distance to move points in XY to try to achieve a smooth spiral. If " -"expressed as a %, it will be computed over nozzle diameter" +"expressed as a %, it will be computed over nozzle diameter." msgstr "" "在 XY 平面中為實現平滑螺旋所允許移動點的最大距離。若以百分比表示,將根據噴嘴" "直徑計算" @@ -13190,7 +13195,7 @@ msgid "" "process of taking a snapshot, prime tower is required for smooth mode to " "wipe nozzle." msgstr "" -"選擇平滑模式或傳統模式時,列印過程將生成縮時影片。每打印一層,相機會拍攝一張" +"選擇平滑模式或傳統模式時,列印過程將產生縮時影片。每列印一層,相機會拍攝一張" "照片。列印完成後,這些照片會被合成為縮時影片。如果選擇了平滑模式,擠出機會在" "每層列印完成後移動到廢料槽拍攝一張照片。由於在拍攝過程中熔融的線材可能會從噴" "嘴洩漏,平滑模式需要使用換料塔來清潔噴嘴。" @@ -13204,8 +13209,8 @@ msgstr "軟化溫度" #. TRN PrintSettings : "Ooze prevention" > "Temperature variation" msgid "" "Temperature difference to be applied when an extruder is not active. The " -"value is not used when 'idle_temperature' in filament settings is set to non " -"zero value." +"value is not used when 'idle_temperature' in filament settings is set to " +"non-zero value." msgstr "" "設定擠出機閒置時的溫差。若線材設定中的『idle_temperature』設為非零值,該參數" "將不生效。" @@ -13219,7 +13224,7 @@ msgid "" "seconds to preheat the next tool. Orca will insert a M104 command to preheat " "the tool in advance." msgstr "" -"為了縮短工具更換後的等待時間,Orca 可在當前工具使用期間提前預熱下一個工具。此" +"為了縮短工具更換後的等待時間,Orca 可在目前工具使用期間提前預熱下一個工具。此" "設定用於指定預熱下一個工具的時間(單位:秒)。Orca 將自動插入 M104 指令以提前" "進行工具預熱。" @@ -13227,7 +13232,7 @@ msgid "Preheat steps" msgstr "預熱階段" msgid "" -"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For " +"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For " "other printers, please set it to 1." msgstr "" "插入多條預熱指令(例如:M104.1)。此功能僅適用於 Prusa XL。其他列印設備請將其" @@ -13236,16 +13241,16 @@ msgstr "" msgid "Start G-code" msgstr "起始 G-code" -msgid "Start G-code when start the whole printing" +msgid "Start G-code when starting the entire print." msgstr "整個列印開始前的起始 G-code" -msgid "Start G-code when start the printing of this filament" +msgid "Start G-code when starting the printing of this filament." msgstr "開始使用這個線材列印的起始 G-code" msgid "Single Extruder Multi Material" msgstr "單擠出機多線材" -msgid "Use single nozzle to print multi filament" +msgid "Use single nozzle to print multi filament." msgstr "使用單噴嘴列印多線材" msgid "Manual Filament Change" @@ -13258,30 +13263,30 @@ msgid "" "printing, where we use M600/PAUSE to trigger the manual filament change " "action." msgstr "" -"啟用此選項後,自定義的換線 G-code 將僅在打印開始時被省略,整個打印過程中會跳" +"啟用此選項後,自定義的換線 G-code 將僅在列印開始時被省略,整個列印過程中會跳" "過工具更換指令(例如:T0)。此功能適用於手動多材料列印,允許使用 M600/PAUSE " "指令來觸發手動換線操作。" msgid "Purge in prime tower" msgstr "沖刷進換料塔" -msgid "Purge remaining filament into prime tower" +msgid "Purge remaining filament into prime tower." msgstr "沖刷剩餘的線材進入換料塔" -msgid "Enable filament ramming" +msgid "Enable filament ramming." msgstr "啟用線材尖端成型" msgid "No sparse layers (beta)" msgstr "取消稀疏層(Beta)" msgid "" -"If enabled, the wipe tower will not be printed on layers with no " -"toolchanges. On layers with a toolchange, extruder will travel downward to " +"If enabled, the wipe tower will not be printed on layers with no tool " +"changes. On layers with a tool change, extruder will travel downward to " "print the wipe tower. User is responsible for ensuring there is no collision " "with the print." msgstr "" "啟用此選項後,換料塔將不會在沒有工具更換的層中列印。在有工具更換的層中,擠出" -"機將向下移動以列印換料塔。請用戶自行確保清洗塔與列印物之間不會發生碰撞。" +"機將向下移動以列印換料塔。請使用者自行確保清洗塔與列印物之間不會發生碰撞。" msgid "Prime all printing extruders" msgstr "所有擠出機畫線" @@ -13331,7 +13336,7 @@ msgid "" "print bed, set this to -0.3 (or fix your endstop)." msgstr "" "此值將被加至(或減去)輸出 G-code 中的所有 Z 坐標,用於補償不準確的 Z 軸限位" -"開關位置。例如,如果限位開關的歸零導致噴嘴實際距離打印床 0.3 毫米,可將此值設" +"開關位置。例如,如果限位開關的歸零導致噴嘴實際距離列印床 0.3 毫米,可將此值設" "為 -0.3(或者調整限位開關位置)。" msgid "Enable support" @@ -13341,12 +13346,12 @@ msgid "Enable support generation." msgstr "開啟支撐產生。" msgid "" -"Normal (auto) and Tree (auto) is used to generate support automatically. If " +"Normal (auto) and Tree (auto) are used to generate support automatically. If " "Normal (manual) or Tree (manual) is selected, only support enforcers are " -"generated" +"generated." msgstr "" "選擇「普通 (自動)」或「樹狀 (自動)」時,系統將自動產生支撐結構。若選擇「普通 " -"(手動)」或「樹狀 (手動)」,則僅會生成手動設定的支撐區域" +"(手動)」或「樹狀 (手動)」,則僅會產生手動設定的支撐區域" msgid "Normal (auto)" msgstr "普通 (自動)" @@ -13363,7 +13368,7 @@ msgstr "樹狀 (手動)" msgid "Support/object xy distance" msgstr "支撐/模型 XY 間距" -msgid "XY separation between an object and its support" +msgid "XY separation between an object and its support." msgstr "模型和支撐之間 XY 的間距" msgid "Support/object first layer gap" @@ -13381,7 +13386,7 @@ msgstr "設定支撐圖形在水平面的旋轉角度。" msgid "On build plate only" msgstr "僅在列印板產生" -msgid "Don't create support on model surface, only on build plate" +msgid "Don't create support on model surface, only on build plate." msgstr "不在模型表面上產生支撐,只在列印板上產生" msgid "Support critical regions only" @@ -13390,7 +13395,7 @@ msgstr "僅支撐關鍵區域" msgid "" "Only create support for critical regions including sharp tail, cantilever, " "etc." -msgstr "僅針對關鍵區域(如尖銳尾部、懸臂等)生成支撐結構。" +msgstr "僅針對關鍵區域(如尖銳尾部、懸臂等)產生支撐結構。" msgid "Remove small overhangs" msgstr "移除小懸空" @@ -13401,13 +13406,13 @@ msgstr "移除可能並不需要支撐的小懸空。" msgid "Top Z distance" msgstr "頂部 Z 間距" -msgid "The z gap between the top support interface and object" -msgstr "支撐頂部和模型之間的z間隙" +msgid "The Z gap between the top support interface and object." +msgstr "支撐頂部和模型之間的 Z 間隙" msgid "Bottom Z distance" msgstr "底部 Z 間距" -msgid "The z gap between the bottom support interface and object" +msgid "The Z gap between the bottom support interface and object." msgstr "支撐產生於模型表面時,支撐面底部和模型之間的 Z 間隙" msgid "Support/raft base" @@ -13415,9 +13420,9 @@ msgstr "支撐/筏層主體" msgid "" "Filament to print support base and raft. \"Default\" means no specific " -"filament for support and current filament is used" +"filament for support and current filament is used." msgstr "" -"用於列印支撐基座和筏層的線材。選擇『預設』時,將使用當前列印的線材,而非特定" +"用於列印支撐基座和筏層的線材。選擇『預設』時,將使用目前列印的線材,而非特定" "線材" msgid "Avoid interface filament for base" @@ -13444,21 +13449,21 @@ msgstr "支撐/筏層界面" msgid "" "Filament to print support interface. \"Default\" means no specific filament " -"for support interface and current filament is used" +"for support interface and current filament is used." msgstr "" -"用於列印支撐介面的線材。選擇『預設』時,將使用當前列印的線材,而非指定的特定" +"用於列印支撐介面的線材。選擇『預設』時,將使用目前列印的線材,而非指定的特定" "線材" msgid "Top interface layers" msgstr "頂部接觸面層數" -msgid "Number of top interface layers" +msgid "Number of top interface layers." msgstr "頂部接觸面層數" msgid "Bottom interface layers" msgstr "底部接觸面層數" -msgid "Number of bottom interface layers" +msgid "Number of bottom interface layers." msgstr "底層介面層數" msgid "Same as top" @@ -13467,22 +13472,22 @@ msgstr "與頂部相同" msgid "Top interface spacing" msgstr "頂部接觸面間距" -msgid "Spacing of interface lines. Zero means solid interface" +msgid "Spacing of interface lines. Zero means solid interface." msgstr "接觸面的線距。0 代表實心接觸面" msgid "Bottom interface spacing" msgstr "底部接觸面間距" -msgid "Spacing of bottom interface lines. Zero means solid interface" +msgid "Spacing of bottom interface lines. Zero means solid interface." msgstr "底部接觸面走線的線距。0 表示實心接觸面" -msgid "Speed of support interface" +msgid "Speed of support interface." msgstr "支撐面速度" msgid "Base pattern" msgstr "支撐主體圖案" -msgid "Line pattern of support" +msgid "Line pattern of support." msgstr "支撐走線圖案" msgid "Rectilinear grid" @@ -13497,7 +13502,7 @@ msgstr "支撐面圖案" msgid "" "Line pattern of support interface. Default pattern for non-soluble support " "interface is Rectilinear, while default pattern for soluble support " -"interface is Concentric" +"interface is Concentric." msgstr "" "支撐接觸面的走線圖案。非可溶支撐接觸面的預設圖案為直線,可溶支撐接觸面的預設" "圖案為同心" @@ -13508,16 +13513,16 @@ msgstr "交錯直線" msgid "Base pattern spacing" msgstr "主體圖案線距" -msgid "Spacing between support lines" +msgid "Spacing between support lines." msgstr "支撐線距" msgid "Normal Support expansion" msgstr "普通支撐延伸" -msgid "Expand (+) or shrink (-) the horizontal span of normal support" +msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "在水平方向對普通支撐進行延伸(+)或收縮(-)" -msgid "Speed of support" +msgid "Speed of support." msgstr "支撐列印速度" msgid "" @@ -13529,9 +13534,9 @@ msgid "" "style will create similar structure to normal support under large flat " "overhangs." msgstr "" -"支撐的樣式與形狀設定。普通支撐使用網格(默認設定)可提供更穩定的支撐,而緊貼" +"支撐的樣式與形狀設定。普通支撐使用網格(預設設定)可提供更穩定的支撐,而緊貼" "型支撐可節省材料並減少對物件表面的損傷。樹狀支撐中,『有機樹』會更積極地融合" -"分支,節省大量材料(默認為有機樹);而『混合樹』則會在較大的平坦懸空區域下生" +"分支,節省大量材料(預設為有機樹);而『混合樹』則會在較大的平坦懸空區域下生" "成類似於普通支撐的結構。" msgid "Default (Grid/Organic)" @@ -13557,7 +13562,7 @@ msgstr "獨立支撐層高" msgid "" "Support layer uses layer height independent with object layer. This is to " -"support customizing z-gap and save print time.This option will be invalid " +"support customizing z-gap and save print time. This option will be invalid " "when the prime tower is enabled." msgstr "" "支撐層的層厚設定可獨立於物件層高度,允許自定義 Z 間隙並縮短列印時間。此選項在" @@ -13579,15 +13584,15 @@ msgid "" "overlap is below the threshold. The smaller this value is, the steeper the " "overhang that can be printed without support." msgstr "" -"當閾值角度設為 0 時,系統將為重疊比例低於該閾值的懸垂部分生成支撐。數值越小," +"當閾值角度設為 0 時,系統將為重疊比例低於該閾值的懸垂部分產生支撐。數值越小," "代表可以在不使用支撐的情況下列印更陡峭的懸垂結構。" msgid "Tree support branch angle" msgstr "樹狀支撐分支角度" msgid "" -"This setting determines the maximum overhang angle that t he branches of " -"tree support allowed to make.If the angle is increased, the branches can be " +"This setting determines the maximum overhang angle that the branches of tree " +"support are allowed to make. If the angle is increased, the branches can be " "printed more horizontally, allowing them to reach farther." msgstr "" "此設定決定樹狀支撐的最大分支角度。如果角度增加,可以更水平地列印分支,使它們" @@ -13631,8 +13636,8 @@ msgid "Adaptive layer height" msgstr "自適應層高" msgid "" -"Enabling this option means the height of tree support layer except the " -"first will be automatically calculated " +"Enabling this option means the height of tree support layer except the " +"first will be automatically calculated." msgstr "啟用此選項將自動計算(除第一層外)樹狀支撐的層高" msgid "Auto brim width" @@ -13640,13 +13645,13 @@ msgstr "自動 Brim 寬度" msgid "" "Enabling this option means the width of the brim for tree support will be " -"automatically calculated" +"automatically calculated." msgstr "啟用此選項意味著樹狀支撐的 Brim 寬度將自動計算自動計算" msgid "Tree support brim width" msgstr "樹狀支撐 Brim 寬度" -msgid "Distance from tree branch to the outermost brim line" +msgid "Distance from tree branch to the outermost brim line." msgstr "從樹狀支撐分支到最外層 Brim 線的距離" msgid "Tip Diameter" @@ -13689,7 +13694,7 @@ msgstr "樹狀支撐產生填充" msgid "" "This setting specifies whether to add infill inside large hollows of tree " -"support" +"support." msgstr "此設定決定是否為樹狀支撐內部的空間產生填充" msgid "Activate temperature control" @@ -13701,16 +13706,16 @@ msgid "" "\"machine_start_gcode\"\n" " which sets the chamber temperature and waits until it is reached. In " "addition, it emits an M141 command at the end of the print to turn off the " -"chamber heater, if present. \n" +"chamber heater, if present.\n" "\n" "This option relies on the firmware supporting the M191 and M141 commands " "either via macros or natively and is usually used when an active chamber " "heater is installed." msgstr "" "啟用此選項後,將自動控制機箱溫度。此功能會在執行『machine_start_gcode』之前發" -"送 M191 指令,用於設定機箱溫度並等待達到設定值。此外,在列印結束時會發送 " +"送 M191 指令,用於設定機箱溫度並等待達到設定值。此外,在列印結束時會傳送 " "M141 指令以關閉機箱加熱器(若設備有加熱器)。此功能需要韌體原生支援或通過宏指" -"令支援 M191 和 M141 指令,通常用於配備主動機箱加熱器的打印機。" +"令支援 M191 和 M141 指令,通常用於配備主動機箱加熱器的印表機。" msgid "Chamber temperature" msgstr "機箱溫度" @@ -13720,13 +13725,13 @@ msgid "" "temperature can help suppress or reduce warping and potentially lead to " "higher interlayer bonding strength. However, at the same time, a higher " "chamber temperature will reduce the efficiency of air filtration for ABS and " -"ASA. \n" +"ASA.\n" "\n" "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option " "should be disabled (set to 0) as the chamber temperature should be low to " "avoid extruder clogging caused by material softening at the heat break.\n" "\n" -"If enabled, this parameter also sets a gcode variable named " +"If enabled, this parameter also sets a G-code variable named " "chamber_temperature, which can be used to pass the desired chamber " "temperature to your print start macro, or a heat soak macro like this: " "PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may " @@ -13736,7 +13741,7 @@ msgid "" msgstr "" "對於 ABS、ASA、PC 和 PA 等高溫材料,較高的機箱溫度能有效抑制或減少翹曲,並可" "能提升層間結合強度。然而,較高的機箱溫度也會降低 ABS 和 ASA 的空氣過濾效率。" -"對於 PLA、PETG、TPU、PVA 和其他低溫材料,建議將此選項禁用(設為 0),因機箱溫" +"對於 PLA、PETG、TPU、PVA 和其他低溫材料,建議將此選項停用(設為 0),因機箱溫" "度應保持較低,以避免因材料在熱端軟化而導致擠出機堵塞。啟用此選項後,會設置一" "個名為 chamber_temperature 的 G-code 變數,可用於將所需的機箱溫度傳遞給列印開" "始宏,或像以下的熱浸泡宏(預熱):PRINT_START (其他變數) " @@ -13744,7 +13749,7 @@ msgstr "" "者希望在列印開始宏中處理熱浸泡(預熱)但未安裝主動機箱加熱器的情況下非常實" "用。" -msgid "Nozzle temperature for layers after the initial one" +msgid "Nozzle temperature for layers after the initial one." msgstr "除首層外的其它層的噴嘴溫度" msgid "Detect thin wall" @@ -13752,17 +13757,17 @@ msgstr "檢查薄壁" msgid "" "Detect thin wall which can't contain two line width. And use single line to " -"print. Maybe printed not very well, because it's not closed loop" +"print. Maybe printed not very well, because it's not closed loop." msgstr "" "檢查無法容納兩條走線的薄壁。使用單條走線列印。可能會打地不是很好,因為走線不" "再閉合" msgid "" -"This gcode is inserted when change filament, including T command to trigger " -"tool change" +"This G-code is inserted when filament is changed, including T commands to " +"trigger tool change." msgstr "換料時插入的 G-code,包括 T 命令" -msgid "This gcode is inserted when the extrusion role is changed" +msgid "This G-code is inserted when the extrusion role is changed." msgstr "此 G-code 會在擠出模式切換時插入" msgid "" @@ -13770,7 +13775,7 @@ msgid "" "the nozzle diameter." msgstr "頂面的線寬。如果以%表示,它將以噴嘴直徑為基準來計算。" -msgid "Speed of top surface infill which is solid" +msgid "Speed of top surface infill which is solid." msgstr "頂面實心填充的速度" msgid "Top shell layers" @@ -13779,7 +13784,7 @@ msgstr "頂部殼體層數" msgid "" "This is the number of solid layers of top shell, including the top surface " "layer. When the thickness calculated by this value is thinner than top shell " -"thickness, the top shell layers will be increased" +"thickness, the top shell layers will be increased." msgstr "" "頂部殼體實心層層數,包括頂面。當由該層數計算的厚度小於頂部殼體厚度,切片時會" "增加頂部殼體的層數" @@ -13795,21 +13800,22 @@ msgid "" "calculated by top shell layers is thinner than this value. This can avoid " "having too thin shell when layer height is small. 0 means that this setting " "is disabled and thickness of top shell is absolutely determined by top shell " -"layers" +"layers." msgstr "" "當切片時,如果通過頂部殼層計算的厚度小於設定值,將自動增加頂部實心層的數量," -"以避免層高較小時頂部殼層過薄。若設為 0,則禁用此功能,頂部殼層厚度完全由設定" +"以避免層高較小時頂部殼層過薄。若設為 0,則停用此功能,頂部殼層厚度完全由設定" "的頂部殼層數決定" -msgid "Speed of travel which is faster and without extrusion" +msgid "Speed of travel which is faster and without extrusion." msgstr "空駛的速度。空駛是無擠出量的快速移動" msgid "Wipe while retracting" msgstr "回抽時擦拭" msgid "" -"Move nozzle along the last extrusion path when retracting to clean leaked " -"material on nozzle. This can minimize blob when print new part after travel" +"Move nozzle along the last extrusion path when retracting to clean any " +"leaked material on the nozzle. This can minimize blobs when printing a new " +"part after traveling." msgstr "" "回抽時讓噴嘴沿著最後的擠出路徑移動,清理噴嘴上的洩漏材料。此功能可減少移動後" "列印新區域時材料堆積的情況" @@ -13819,11 +13825,11 @@ msgstr "擦拭距離" msgid "" "Describe how long the nozzle will move along the last path when " -"retracting. \n" +"retracting.\n" "\n" "Depending on how long the wipe operation lasts, how fast and long the " "extruder/filament retraction settings are, a retraction move may be needed " -"to retract the remaining filament. \n" +"to retract the remaining filament.\n" "\n" "Setting a value in the retract amount before wipe setting below will perform " "any excess retraction before the wipe, else it will be performed after." @@ -13861,7 +13867,7 @@ msgstr "清理量" msgid "The volume of material to prime extruder on tower." msgstr "換料塔上的清理量。" -msgid "Width of prime tower" +msgid "Width of the prime tower." msgstr "換料塔寬度" msgid "Wipe tower rotation angle" @@ -13881,6 +13887,7 @@ msgstr "圓錐體頂點處的角度,用於穩定換料塔。 更大的角度 msgid "Maximum wipe tower print speed" msgstr "換料塔最快列印速度" +#, fuzzy msgid "" "The maximum print speed when purging in the wipe tower and printing the wipe " "tower sparse layers. When purging, if the sparse infill speed or calculated " @@ -13895,7 +13902,7 @@ msgid "" "the force with which the nozzle collides with any blobs that may have formed " "on the wipe tower.\n" "\n" -"Before increasing this parameter beyond the default of 90mm/sec, make sure " +"Before increasing this parameter beyond the default of 90 mm/s, make sure " "your printer can reliably bridge at the increased speeds and that ooze when " "tool changing is well controlled.\n" "\n" @@ -13910,7 +13917,7 @@ msgstr "" "\n" "提高此速度可能會影響塔的穩定性,並增加噴嘴與換料塔上斑點的碰撞力。\n" "\n" -"在將此參數提高於預設值 90mm/sec 以上之前,請確保你的印表設備能夠可靠地在更高" +"在將此參數提高於預設值 90mm/s 以上之前,請確保您的印表設備能夠可靠地在更高" "的速度下橋接,並且工具更換時的溢出能良好的被控制。\n" "\n" "對於換料塔外部周邊,無論此設定如何,都使用內部周邊速度。" @@ -13930,7 +13937,7 @@ msgid "" "wipe tower. These values are used to simplify creation of the full purging " "volumes below." msgstr "" -"此數據記錄了換料塔每次切換所需的體積,並用於簡化後續完整沖洗體積的計算。" +"此資料記錄了換料塔每次切換所需的體積,並用於簡化後續完整沖洗體積的計算。" msgid "" "Purging after filament change will be done inside objects' infills. This may " @@ -13952,8 +13959,8 @@ msgstr "" msgid "" "This object will be used to purge the nozzle after a filament change to save " -"filament and decrease the print time. Colours of the objects will be mixed " -"as a result. It will not take effect, unless the prime tower is enabled." +"filament and decrease the print time. Colors of the objects will be mixed as " +"a result. It will not take effect unless the prime tower is enabled." msgstr "" "此物件將用於更換線材後進行噴嘴清洗,從而節省線材並縮短列印時間。但物件的顏色" "會因此被混合。此功能需啟用換料塔後才會生效。" @@ -13985,20 +13992,22 @@ msgid "Idle temperature" msgstr "閒置溫度" msgid "" -"Nozzle temperature when the tool is currently not used in multi-tool " -"setups.This is only used when 'Ooze prevention' is active in Print Settings. " -"Set to 0 to disable." +"Nozzle temperature when the tool is currently not used in multi-tool setups. " +"This is only used when 'Ooze prevention' is active in Print Settings. Set to " +"0 to disable." msgstr "" "當工具頭在多工具頭設置中未使用時的噴嘴溫度。僅在『列印設定』中啟用『防止漏" -"料』時有效。設置 0 為禁用。" +"料』時有效。設置 0 為停用。" msgid "X-Y hole compensation" msgstr "X-Y 孔洞尺寸補償" +#, fuzzy msgid "" -"Holes of object will be grown or shrunk in XY plane by the configured value. " -"Positive value makes holes bigger. Negative value makes holes smaller. This " -"function is used to adjust size slightly when the object has assembling issue" +"Holes in objects will expand or contract in the XY plane by the configured " +"value. Positive values make holes bigger, negative values make holes " +"smaller. This function is used to adjust sizes slightly when the objects " +"have assembling issues." msgstr "" "垂直的孔洞的尺寸將在 XY 方向收縮或拓展特定值。正值代表擴大孔洞。負值代表縮小" "孔洞。這個功能通常在模型有裝配問題時微調尺寸" @@ -14006,11 +14015,12 @@ msgstr "" msgid "X-Y contour compensation" msgstr "X-Y 外輪廓尺寸補償" +#, fuzzy msgid "" -"Contour of object will be grown or shrunk in XY plane by the configured " -"value. Positive value makes contour bigger. Negative value makes contour " -"smaller. This function is used to adjust size slightly when the object has " -"assembling issue" +"Contours of objects will expand or contract in the XY plane by the " +"configured value. Positive values make contours bigger, negative values make " +"contours smaller. This function is used to adjust sizes slightly when the " +"objects have assembling issues." msgstr "" "模型外輪廓的尺寸將在 XY 方向收縮或拓展特定值。正值代表擴大。負值代表縮小。這" "個功能通常在模型有裝配問題時微調尺寸" @@ -14057,7 +14067,7 @@ msgid "" "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the " "following format: \"XxY, XxY, ...\"" msgstr "" -"設定將存儲於 .gcode 和 .sl1 / .sl1s 文件中,其圖片尺寸,格式為:「XxY, " +"設定將存儲於 .gcode 和 .sl1 / .sl1s 檔案中,其圖片尺寸,格式為:「XxY, " "XxY, ...」" msgid "Format of G-code thumbnails" @@ -14065,17 +14075,17 @@ msgstr "G-code 縮圖的格式" msgid "" "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, " -"QOI for low memory firmware" +"QOI for low memory firmware." msgstr "G-code 縮圖的格式:PNG 品質最佳,JPG 檔案最小,QOI 最低記憶體韌體" msgid "Use relative E distances" msgstr "使用相對 E 距離" msgid "" -"Relative extrusion is recommended when using \"label_objects\" option.Some " +"Relative extrusion is recommended when using \"label_objects\" option. Some " "extruders work better with this option unchecked (absolute extrusion mode). " "Wipe tower is only compatible with relative mode. It is recommended on most " -"printers. Default is checked" +"printers. Default is checked." msgstr "" "使用『label_objects』選項時,建議啟用相對擠出模式。一些擠出機在使用絕對擠出模" "式(取消勾選)時運行效果會更好。換料塔僅支援相對擠出模式,這也是大多數列印設" @@ -14084,7 +14094,7 @@ msgstr "" msgid "" "Classic wall generator produces walls with constant extrusion width and for " "very thin areas is used gap-fill. Arachne engine produces walls with " -"variable extrusion width" +"variable extrusion width." msgstr "" "經典牆產生器產生的牆走線具有一致的擠出寬度,對狹窄區域使用填縫。Arachne 引擎" "則產生變線寬的牆走線" @@ -14098,7 +14108,7 @@ msgstr "牆過渡長度" msgid "" "When transitioning between different numbers of walls as the part becomes " "thinner, a certain amount of space is allotted to split or join the wall " -"segments. It's expressed as a percentage over nozzle diameter" +"segments. It's expressed as a percentage over nozzle diameter." msgstr "" "當零件變薄需要切換牆體數量時,系統會分配一定空間用於分割或合併牆段。此空間以" "噴嘴直徑的百分比表示" @@ -14113,7 +14123,7 @@ msgid "" "margin reduces the number of transitions, which reduces the number of " "extrusion starts/stops and travel time. However, large extrusion width " "variation can lead to under- or overextrusion problems. It's expressed as a " -"percentage over nozzle diameter" +"percentage over nozzle diameter." msgstr "" "防止牆體數量在多出一層與少一層之間頻繁切換。此邊界擴展了可接受的擠出寬度範" "圍,範圍為 [最小牆寬 - 邊界, 2 倍最小牆寬 + 邊界]。增大邊界可以減少切換次數," @@ -14128,9 +14138,9 @@ msgid "" "shape with an angle greater than this setting will not have transitions and " "no walls will be printed in the center to fill the remaining space. Reducing " "this setting reduces the number and length of these center walls, but may " -"leave gaps or overextrude" +"leave gaps or overextrude." msgstr "" -"何時在偶數和奇數牆層數之間創建過渡段。角度大於這個臨界值的楔形將不創建過渡" +"何時在偶數和奇數牆層數之間建立過渡段。角度大於這個臨界值的楔形將不建立過渡" "段,並且不會在楔形中心列印牆走線以填補剩餘空間。減小這個數值能減少中心牆走線" "的數量和長度,但可能會導致間隙或者過擠出" @@ -14139,7 +14149,7 @@ msgstr "牆分布計數" msgid "" "The number of walls, counted from the center, over which the variation needs " -"to be spread. Lower values mean that the outer walls don't change in width" +"to be spread. Lower values mean that the outer walls don't change in width." msgstr "" "從中心開始計算的牆層數,線寬變化需要分布在這些牆走線上。較低的數值意味著外牆" "寬度更不易被改變" @@ -14147,11 +14157,12 @@ msgstr "" msgid "Minimum feature size" msgstr "最小特徵尺寸" +#, fuzzy msgid "" "Minimum thickness of thin features. Model features that are thinner than " -"this value will not be printed, while features thicker than the Minimum " -"feature size will be widened to the Minimum wall width. It's expressed as a " -"percentage over nozzle diameter" +"this value will not be printed, while features thicker than this value will " +"be widened to the minimum wall width. It's expressed as a percentage over " +"nozzle diameter." msgstr "" "薄壁特徵的最小厚度。比這個數值還薄的特徵將不被列印,而比最小特徵厚度還厚的特" "征將被加寬到牆最小寬度。參數值表示為相對噴嘴直徑的百分比" @@ -14182,7 +14193,7 @@ msgid "" "recommended to be set to the same size as the nozzle. This adjustment is " "expected to enhance adhesion." msgstr "" -"應用於首層的牆最小線寬,建議設定與噴嘴尺寸相同。這種調整有助於增強附著力。" +"套用於首層的牆最小線寬,建議設定與噴嘴尺寸相同。這種調整有助於增強附著力。" msgid "Minimum wall width" msgstr "牆最小線寬" @@ -14191,7 +14202,7 @@ msgid "" "Width of the wall that will replace thin features (according to the Minimum " "feature size) of the model. If the Minimum wall width is thinner than the " "thickness of the feature, the wall will become as thick as the feature " -"itself. It's expressed as a percentage over nozzle diameter" +"itself. It's expressed as a percentage over nozzle diameter." msgstr "" "設定替代模型中細薄特徵(依據最小特徵尺寸)的牆體寬度。若最小牆寬小於特徵厚" "度,牆體將與特徵的厚度一致。此值以噴嘴直徑的百分比表示" @@ -14200,9 +14211,9 @@ msgid "Detect narrow internal solid infill" msgstr "識別狹窄內部實心填充" msgid "" -"This option will auto detect narrow internal solid infill area. If enabled, " -"concentric pattern will be used for the area to speed printing up. " -"Otherwise, rectilinear pattern is used by default." +"This option will auto-detect narrow internal solid infill areas. If enabled, " +"the concentric pattern will be used for the area to speed up printing. " +"Otherwise, the rectilinear pattern will be used by default." msgstr "" "此選項可自動檢測狹窄的內部實心填充區域。啟用後,系統會採用同心圖案以提升列印" "速度;若未啟用,則預設使用直線圖案進行填充。" @@ -14234,7 +14245,7 @@ msgstr "將列印切片資料匯出至指定資料夾。" msgid "Load slicing data" msgstr "載入切片資料" -msgid "Load cached slicing data from directory" +msgid "Load cached slicing data from directory." msgstr "從資料夾載入快取的切片資料" msgid "Export STL" @@ -14246,7 +14257,7 @@ msgstr "將所有物件匯出為單一 STL 檔案。" msgid "Export multiple STLs" msgstr "匯出為多個 STL 檔案" -msgid "Export the objects as multiple STLs to directory" +msgid "Export the objects as multiple STLs to directory." msgstr "將物件匯出為多個 STL 檔案至指定資料夾" msgid "Slice" @@ -14269,13 +14280,13 @@ msgstr "相容設備檢測" msgid "" "check whether current machine downward compatible with the machines in the " -"list" -msgstr "檢查當前機器是否與列表中的機器向下相容" +"list." +msgstr "檢查目前機器是否與列表中的機器向下相容" msgid "Load default filaments" msgstr "載入預設列印耗材" -msgid "Load first filament as default for those not loaded" +msgid "Load first filament as default for those not loaded." msgstr "將第一種耗材設為預設,以供未載入的項目使用" msgid "Minimum save" @@ -14299,7 +14310,7 @@ msgstr "每片板的最大切片時間(秒)。" msgid "No check" msgstr "不檢查" -msgid "Do not run any validity checks, such as gcode path conflicts check." +msgid "Do not run any validity checks, such as G-code path conflicts check." msgstr "不要執行任何有效性檢查,如 G-code 路徑衝突檢查。" msgid "Normative check" @@ -14321,10 +14332,10 @@ msgid "Export settings to a file." msgstr "將設定匯出至指定資料夾。" msgid "Send progress to pipe" -msgstr "將進度發送到 Pipe" +msgstr "將進度傳送到 Pipe" msgid "Send progress to pipe." -msgstr "將進度發送到 Pipe。" +msgstr "將進度傳送到 Pipe。" msgid "Arrange Options" msgstr "佈局選項" @@ -14332,18 +14343,18 @@ msgstr "佈局選項" msgid "Arrange options: 0-disable, 1-enable, others-auto" msgstr "佈局選項:0 代表停用,1 代表啟用,其他則為自動模式" -msgid "Repetions count" +msgid "Repetition count" msgstr "重複次數" -msgid "Repetions count of the whole model" +msgid "Repetition count of the whole model." msgstr "整個模型的重複次數" msgid "Ensure on bed" msgstr "確認在列印板上" msgid "" -"Lift the object above the bed when it is partially below. Disabled by default" -msgstr "當物件部分位於列印板的下方時,將其提升到列印板的上方。預設情況下禁用" +"Lift the object above the bed when it is partially below. Disabled by default." +msgstr "當物件部分位於列印板的下方時,將其提升到列印板的上方。預設情況下停用" msgid "" "Arrange the supplied models in a plate and merge them in a single model in " @@ -14354,7 +14365,7 @@ msgstr "" msgid "Convert Unit" msgstr "單位轉換" -msgid "Convert the units of model" +msgid "Convert the units of model." msgstr "變更模型的度量單位" msgid "Orient Options" @@ -14372,63 +14383,63 @@ msgstr "繞 Y 旋轉" msgid "Rotation angle around the Y axis in degrees." msgstr "繞 Y 軸的旋轉角度(以度為單位)。" -msgid "Scale the model by a float factor" +msgid "Scale the model by a float factor." msgstr "依浮點數比例縮放模型" msgid "Load General Settings" msgstr "載入一般設定" -msgid "Load process/machine settings from the specified file" +msgid "Load process/machine settings from the specified file." msgstr "從指定檔案載入參數與機器設定" msgid "Load Filament Settings" msgstr "載入列印耗材設定" -msgid "Load filament settings from the specified file list" +msgid "Load filament settings from the specified file list." msgstr "從指定的檔案清單載入耗材設定" msgid "Skip Objects" msgstr "略過物件" -msgid "Skip some objects in this print" +msgid "Skip some objects in this print." msgstr "在本次列印中略過部分物件" msgid "Clone Objects" msgstr "複製物件" -msgid "Clone objects in the load list" +msgid "Clone objects in the load list." msgstr "複製載入清單中的物件" -msgid "load uptodate process/machine settings when using uptodate" +msgid "Load uptodate process/machine settings when using uptodate." msgstr "使用最新版本時,載入最新的參數與機器設定" msgid "" -"load uptodate process/machine settings from the specified file when using " -"uptodate" +"Load uptodate process/machine settings from the specified file when using " +"uptodate." msgstr "當使用最新版本時,從指定檔案載入最新的參數與機器設定" -msgid "load uptodate filament settings when using uptodate" +msgid "Load uptodate filament settings when using uptodate." msgstr "使用最新版本時,載入最新的列印耗材設定" msgid "" -"load uptodate filament settings from the specified file when using uptodate" +"Load uptodate filament settings from the specified file when using uptodate." msgstr "當使用最新版本時,從指定檔案載入最新的列印耗材設定" msgid "" -"if enabled, check whether current machine downward compatible with the " -"machines in the list" -msgstr "若啟用,則檢查當前機器是否與列表中的機器向下相容" +"If enabled, check whether current machine downward compatible with the " +"machines in the list." +msgstr "若啟用,則檢查目前機器是否與列表中的機器向下相容" -msgid "downward machines settings" +msgid "Downward machines settings" msgstr "相容機器設定" -msgid "the machine settings list need to do downward checking" +msgid "The machine settings list needs to do downward checking." msgstr "機器設定清單需執行向下相容性檢測" msgid "Load assemble list" msgstr "載入組裝清單" -msgid "Load assemble object list from config file" +msgid "Load assemble object list from config file." msgstr "從設定檔載入組裝物件清單" msgid "Data directory" @@ -14452,22 +14463,22 @@ msgid "Debug level" msgstr "除錯模式等級" msgid "" -"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, " -"5:trace\n" +"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:" +"trace\n" msgstr "" "設定除錯日誌級別。0:致命錯誤,1:錯誤,2:警告,3:資訊,4:除錯,5:追蹤\n" msgid "Enable timelapse for print" msgstr "啟用列印過程縮時錄影" -msgid "If enabled, this slicing will be considered using timelapse" +msgid "If enabled, this slicing will be considered using timelapse." msgstr "若啟用,此次切片將使用縮時錄影模式" -msgid "Load custom gcode" +msgid "Load custom G-code" msgstr "載入自訂 G-code" -msgid "Load custom gcode from json" -msgstr "從 json 載入自訂 gcode" +msgid "Load custom G-code from json." +msgstr "從 json 載入自訂 G-code" msgid "Load filament ids" msgstr "載入耗材識別碼" @@ -14475,43 +14486,43 @@ msgstr "載入耗材識別碼" msgid "Load filament ids for each object" msgstr "載入每個物件的耗材識別碼" -msgid "Allow multiple color on one plate" +msgid "Allow multiple colors on one plate" msgstr "允許同塊板上使用多色列印" -msgid "If enabled, the arrange will allow multiple color on one plate" +msgid "If enabled, Arrange will allow multiple colors on one plate." msgstr "若啟用,佈局將允許同一板上使用多色列印" -msgid "Allow rotatations when arrange" +msgid "Allow rotation when arranging" msgstr "允許在排列時進行旋轉調整" -msgid "If enabled, the arrange will allow rotations when place object" +msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "若啟用,物件排列時將允許旋轉調整" -msgid "Avoid extrusion calibrate region when doing arrange" -msgstr "在排列物件時避開擠出校準區域" +msgid "Avoid extrusion calibrate region when arranging" +msgstr "在排列物件時避開擠出校正區域" msgid "" -"If enabled, the arrange will avoid extrusion calibrate region when place " -"object" -msgstr "若啟用,物件排列時將避開擠出校準區域" +"If enabled, Arrange will avoid extrusion calibrate region when placing " +"objects." +msgstr "若啟用,物件排列時將避開擠出校正區域" -msgid "Skip modified gcodes in 3mf" +msgid "Skip modified G-code in 3mf" msgstr "忽略 3MF 檔案內已修改的 G-code" -msgid "Skip the modified gcodes in 3mf from Printer or filament Presets" +msgid "Skip the modified G-code in 3mf from Printer or filament Presets." msgstr "忽略 3MF 檔案內來自印表機或耗材預設的已修改 G-code" msgid "MakerLab name" msgstr "MakerLab 名稱" msgid "MakerLab name to generate this 3mf" -msgstr "生成此 3MF 檔案時所使用的 MakerLab 名稱" +msgstr "產生此 3MF 檔案時所使用的 MakerLab 名稱" msgid "MakerLab version" msgstr "MakerLab 版本" msgid "MakerLab version to generate this 3mf" -msgstr "生成此 3MF 檔案時所使用的 MakerLab 版本" +msgstr "產生此 3MF 檔案時所使用的 MakerLab 版本" msgid "metadata name list" msgstr "中繼資料名稱清單" @@ -14525,13 +14536,13 @@ msgstr "中繼資料值清單" msgid "metadata value list added into 3mf" msgstr "新增至 3MF 檔案的中繼資料值清單" -msgid "Allow 3mf with newer version to be sliced" +msgid "Allow 3mf with newer version to be sliced." msgstr "允許對較新版本的 3MF 進行切片處理" -msgid "Current z-hop" -msgstr "當前 Z 抬升高度" +msgid "Current Z-hop" +msgstr "目前 Z 抬升高度" -msgid "Contains z-hop present at the beginning of the custom G-code block." +msgid "Contains Z-hop present at the beginning of the custom G-code block." msgstr "包含在自定義 G-code 區塊開頭的 Z 抬升動作。" msgid "" @@ -14555,7 +14566,7 @@ msgid "Extra de-retraction" msgstr "額外返回抽" msgid "Currently planned extra extruder priming after de-retraction." -msgstr "當前計劃的額外擠出機加料,發生於回抽恢復後。" +msgstr "目前計劃的額外擠出機加料,發生於回抽恢復後。" msgid "Absolute E position" msgstr "絕對擠出值" @@ -14620,10 +14631,10 @@ msgstr "各擠出機線材體積" msgid "Total filament volume extruded per extruder during the entire print." msgstr "整個列印過程中,每個噴頭擠出的線材總體積。" -msgid "Total toolchanges" +msgid "Total tool changes" msgstr "換色次數" -msgid "Number of toolchanges during the print." +msgid "Number of tool changes during the print." msgstr "列印期間工具頭變更次數。" msgid "Total volume" @@ -14675,7 +14686,7 @@ msgid "" "index 0).\n" "Example: 'x:100% y:50% z:100'." msgstr "" -"包含各個物件所應用縮放比例資訊的字串。物件索引以 0 為起點(第一個物件的索引" +"包含各個物件所套用縮放比例資訊的字串。物件索引以 0 為起點(第一個物件的索引" "為 0)。範例:x:100% y:50% z:100。" msgid "Input filename without extension" @@ -14789,7 +14800,7 @@ msgid "Maximal layer z" msgstr "層的最大 Z 軸高度" msgid "Height of the last layer above the print bed." -msgstr "最後一層距打印床的高度。" +msgstr "最後一層距列印床的高度。" msgid "Filament extruder ID" msgstr "線材擠出機識別碼" @@ -14843,13 +14854,13 @@ msgid "" "No layers were detected. You might want to repair your STL file(s) or check " "their size or thickness and retry.\n" msgstr "" -"未檢測到任何列印層。請檢查你的 STL 文件是否需要修復,或者確認其尺寸與厚度,然" +"未檢測到任何列印層。請檢查您的 STL 檔案是否需要修復,或者確認其尺寸與厚度,然" "後再重試。\n" msgid "" "An object's XY size compensation will not be used because it is also color-" "painted.\n" -"XY Size compensation can not be combined with color-painting." +"XY Size compensation cannot be combined with color-painting." msgstr "" "物件的 XY 尺寸補償不會生效,因為在此物件上做過上色操作。\n" "XY 尺寸補償不能與上色功能一起使用。" @@ -14870,9 +14881,6 @@ msgstr "無法讀取提供的檔案,因為該檔案為空" msgid "Unknown file format. Input file must have .3mf or .zip.amf extension." msgstr "未知的檔案格式。輸入檔案的副檔名必須為 .3mf 或 .zip .amf。" -msgid "Canceled" -msgstr "已取消" - msgid "load_obj: failed to parse" msgstr "載入物件:解析失敗" @@ -14892,54 +14900,54 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "無法讀取此 OBJ 檔案,因為它是空的。" msgid "Flow Rate Calibration" -msgstr "流量比例校準" +msgstr "流量比例校正" msgid "Max Volumetric Speed Calibration" -msgstr "最大體積速度校準" +msgstr "最大體積速度校正" msgid "Manage Result" msgstr "管理結果" msgid "Manual Calibration" -msgstr "手動校準" +msgstr "手動校正" msgid "Result can be read by human eyes." msgstr "結果可由人眼讀取。" msgid "Auto-Calibration" -msgstr "自動校準" +msgstr "自動校正" msgid "We would use Lidar to read the calibration result" -msgstr "將使用雷射雷達來讀取校準結果" +msgstr "將使用雷射雷達來讀取校正結果" msgid "Prev" msgstr "上一個" msgid "Recalibration" -msgstr "重新校準" +msgstr "重新校正" msgid "Calibrate" -msgstr "校準" +msgstr "校正" msgid "Finish" msgstr "完成" msgid "How to use calibration result?" -msgstr "如何使用校準結果?" +msgstr "如何使用校正結果?" msgid "" "You could change the Flow Dynamics Calibration Factor in material editing" -msgstr "你可以在線材編輯中更改流量動態校準因子" +msgstr "您可以在線材編輯中更改流量動態校正因子" msgid "" "The current firmware version of the printer does not support calibration.\n" "Please upgrade the printer firmware." msgstr "" -"列印設備目前的韌體版本不支援校準。\n" +"列印設備目前的韌體版本不支援校正。\n" "請升級列印設備韌體。" msgid "Calibration not supported" -msgstr "不支援校準" +msgstr "不支援校正" msgid "Error desc" msgstr "錯誤描述" @@ -14974,7 +14982,7 @@ msgid "The name cannot be empty." msgstr "名稱不能為空。" #, c-format, boost-format -msgid "The selected preset: %s is not found." +msgid "The selected preset: %s was not found." msgstr "找不到所選的預設:%s。" msgid "The name cannot be the same as the system preset name." @@ -14988,7 +14996,7 @@ msgstr "新增預設失敗。" msgid "" "Are you sure to cancel the current calibration and return to the home page?" -msgstr "你確定要取消目前的校準並返回首頁嗎?" +msgstr "您確定要取消目前的校正並返回首頁嗎?" msgid "No Printer Connected!" msgstr "沒有連接列印設備!" @@ -14997,7 +15005,7 @@ msgid "Printer is not connected yet." msgstr "列印設備尚未連接。" msgid "Please select filament to calibrate." -msgstr "請選擇要校準的線材。" +msgstr "請選擇要校正的線材。" msgid "The input value size must be 3." msgstr "輸入值必須為 3。" @@ -15006,11 +15014,11 @@ msgid "" "This machine type can only hold 16 history results per nozzle. You can " "delete the existing historical results and then start calibration. Or you " "can continue the calibration, but you cannot create new calibration " -"historical results. \n" +"historical results.\n" "Do you still want to continue the calibration?" msgstr "" -"此機型每個噴嘴最多只能保存 16 條歷史記錄。你可以刪除現有記錄後再開始校準,或" -"者選擇繼續校準,但無法新增新的校準記錄。你確定要繼續校準嗎?" +"此機型每個噴嘴最多只能保存 16 條歷史記錄。您可以刪除現有記錄後再開始校正,或" +"者選擇繼續校正,但無法新增新的校正記錄。您確定要繼續校正嗎?" msgid "Connecting to printer..." msgstr "正在連接列印設備..." @@ -15018,8 +15026,8 @@ msgstr "正在連接列印設備..." msgid "The failed test result has been dropped." msgstr "測試失敗的結果已被刪除。" -msgid "Flow Dynamics Calibration result has been saved to the printer" -msgstr "動態流量校準的結果已儲存至列印設備" +msgid "Flow Dynamics Calibration result has been saved to the printer." +msgstr "動態流量校正的結果已儲存至列印設備" #, c-format, boost-format msgid "" @@ -15027,7 +15035,7 @@ msgid "" "Only one of the results with the same name is saved. Are you sure you want " "to override the historical result?" msgstr "" -"已經有一個同名的歷史校準結果:%s。僅保存同名結果中的其中一個。確定要覆寫歷史" +"已經有一個同名的歷史校正結果:%s。僅保存同名結果中的其中一個。確定要覆寫歷史" "結果嗎?" #, c-format, boost-format @@ -15040,35 +15048,35 @@ msgid "Internal Error" msgstr "內部錯誤" msgid "Please select at least one filament for calibration" -msgstr "請至少選擇一種線材進行校準" +msgstr "請至少選擇一種線材進行校正" -msgid "Flow rate calibration result has been saved to preset" -msgstr "流量比例校準結果已儲存到預設值" +msgid "Flow rate calibration result has been saved to preset." +msgstr "流量比例校正結果已儲存到預設值" -msgid "Max volumetric speed calibration result has been saved to preset" -msgstr "最大體積速度校準結果已儲存到預設值" +msgid "Max volumetric speed calibration result has been saved to preset." +msgstr "最大體積速度校正結果已儲存到預設值" msgid "When do you need Flow Dynamics Calibration" -msgstr "在什麼情況下需要進行動態流量校準" +msgstr "在什麼情況下需要進行動態流量校正" msgid "" "We now have added the auto-calibration for different filaments, which is " "fully automated and the result will be saved into the printer for future " "use. You only need to do the calibration in the following limited cases:\n" "1. If you introduce a new filament of different brands/models or the " -"filament is damp;\n" -"2. if the nozzle is worn out or replaced with a new one;\n" +"filament is damp\n" +"2. If the nozzle is worn out or replaced with a new one\n" "3. If the max volumetric speed or print temperature is changed in the " -"filament setting." +"filament setting" msgstr "" -"我們現在已經為不同的列印線材新增了自動校準功能,該功能是完全自動化的,並且結" -"果將儲存在列印設備中以供將來使用。你只需要在以下有限情況下進行校準:\n" -"1. 如果你引入了不同品牌/型號的新列印線材,或者列印線材受潮;\n" +"我們現在已經為不同的列印線材新增了自動校正功能,該功能是完全自動化的,並且結" +"果將儲存在列印設備中以供將來使用。您只需要在以下有限情況下進行校正:\n" +"1. 如果您引入了不同品牌/型號的新列印線材,或者列印線材受潮;\n" "2. 如果噴嘴磨損或更換了新的噴嘴;\n" -"3. 如果你在列印線材設定中更改了最大體積速度或列印溫度。" +"3. 如果您在列印線材設定中更改了最大體積速度或列印溫度。" msgid "About this calibration" -msgstr "關於此校準" +msgstr "關於此校正" msgid "" "Please find the details of Flow Dynamics Calibration from our wiki.\n" @@ -15089,35 +15097,35 @@ msgid "" "cause the result not exactly the same in each calibration. We are still " "investigating the root cause to do improvements with new updates." msgstr "" -"請參考我們的 Wiki 頁面,了解「流體動力校準」的詳細資訊。\n" +"請參考我們的 Wiki 頁面,了解「流體動力校正」的詳細資訊。\n" "\n" -"通常不需要進行校準。當你啟動單色/單材質列印,並在列印開始選單中勾選『流體動力" -"校準』選項時,列印設備將按照舊方式,在列印前校準耗材。當你啟動多色/多材質列印" +"通常不需要進行校正。當您啟動單色/單材質列印,並在列印開始選單中勾選『流體動力" +"校正』選項時,列印設備將按照舊方式,在列印前校正耗材。當您啟動多色/多材質列印" "時,列印設備將在每次耗材切換時使用預設的補償參數,這在大部分情況下都能得到良" "好的結果。\n" "\n" -"請注意,有些情況可能會導致校準結果不可靠,例如列印板上的黏著力不足。你可以通" +"請注意,有些情況可能會導致校正結果不可靠,例如列印板上的黏著力不足。您可以通" "過清洗印板板或塗抹膠水來改善黏著力。有關此主題的更多資訊,請參考我們的 " "Wiki。\n" "\n" -"在我們的測試中,校準結果存在約 10% 的誤差,這可能導致每次校準的結果不完全相" +"在我們的測試中,校正結果存在約 10% 的誤差,這可能導致每次校正的結果不完全相" "同。我們仍在調查根本原因,並將在新的更新中進行改進。" msgid "When to use Flow Rate Calibration" -msgstr "何時使用流量率校準" +msgstr "何時使用流量率校正" msgid "" "After using Flow Dynamics Calibration, there might still be some extrusion " "issues, such as:\n" "1. Over-Extrusion: Excess material on your printed object, forming blobs or " -"zits, or the layers seem thicker than expected and not uniform.\n" +"zits, or the layers seem thicker than expected and not uniform\n" "2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the " -"top layer of the model, even when printing slowly.\n" -"3. Poor Surface Quality: The surface of your prints seems rough or uneven.\n" +"top layer of the model, even when printing slowly\n" +"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n" "4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as " -"they should be." +"they should be" msgstr "" -"使用流量動態校準後,仍可能出現一些擠出問題,例如:\n" +"使用流量動態校正後,仍可能出現一些擠出問題,例如:\n" "1. 過度擠出:列印物體上有過多的線材,形成凸起或小球,或者層次看起來比預期的厚" "而且不均勻。\n" "2. 不足擠出:層次非常薄,填充強度不足,或者在緩慢列印時模型頂層有缺陷。\n" @@ -15129,8 +15137,8 @@ msgid "" "PLA used in RC planes. These materials expand greatly when heated, and " "calibration provides a useful reference flow rate." msgstr "" -"此外,對於像用於遙控飛機的輕質發泡 PLA(LW-PLA)這樣的發泡線材,流量率校準非" -"常重要。這些線材在加熱時會大幅膨脹,而校準提供了有用的流量率參考。" +"此外,對於像用於遙控飛機的輕質發泡 PLA(LW-PLA)這樣的發泡線材,流量率校正非" +"常重要。這些線材在加熱時會大幅膨脹,而校正提供了有用的流量率參考。" msgid "" "Flow Rate Calibration measures the ratio of expected to actual extrusion " @@ -15140,9 +15148,9 @@ msgid "" "you still see the listed defects after you have done other calibrations. For " "more details, please check out the wiki article." msgstr "" -"流量率校準測量預期擠出體積與實際擠出體積之間的比率。預設設定在 Bambu Lab 列印" -"設備和官方線材上表現良好,因為它們已經進行了預先校準和微調。對於普通的線材," -"通常情況下,你不需要執行流量率校準,除非在完成其他校準後仍然看到上述列出的缺" +"流量率校正測量預期擠出體積與實際擠出體積之間的比率。預設設定在 Bambu Lab 列印" +"設備和官方線材上表現良好,因為它們已經進行了預先校正和微調。對於普通的線材," +"通常情況下,您不需要執行流量率校正,除非在完成其他校正後仍然看到上述列出的缺" "陷。如需更多詳細資訊,請查閱 wiki 文章。" msgid "" @@ -15163,26 +15171,26 @@ msgid "" "can lead to sub-par prints or printer damage. Please make sure to carefully " "read and understand the process before doing it." msgstr "" -"自動流量率校準採用 Bambu Lab 的雷射雷達技術,直接測量校準圖案。然而,請注意," +"自動流量率校正採用 Bambu Lab 的雷射雷達技術,直接測量校正圖案。然而,請注意," "這種方法的功效和準確性可能會因特定類型的線材而受影響。特別是透明或半透明、帶" -"有閃光顆粒或具有高反射表面的線材可能不適合這種校準,並可能產生不理想的結" +"有閃光顆粒或具有高反射表面的線材可能不適合這種校正,並可能產生不理想的結" "果。\n" "\n" -"校準結果可能因每次校準或線材的不同而有所不同。我們仍在透過韌體更新不斷提高這" -"種校準的準確性和相容性。\n" +"校正結果可能因每次校正或線材的不同而有所不同。我們仍在透過韌體更新不斷提高這" +"種校正的準確性和相容性。\n" "\n" -"注意:流量率校準是一項先進的技術,只有完全理解其目的和影響的人才應嘗試。錯誤" +"注意:流量率校正是一項先進的技術,只有完全理解其目的和影響的人才應嘗試。錯誤" "的使用可能導致列印品質不佳或損壞列印設備。請確保在執行之前仔細閱讀和理解此過" "程。" msgid "When you need Max Volumetric Speed Calibration" -msgstr "當你需要最大體積速度校準時" +msgstr "當您需要最大體積速度校正時" msgid "Over-extrusion or under extrusion" msgstr "過度擠壓或擠壓不足" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "使用以下選項列印時,建議進行最大體積速度校準:" +msgstr "使用以下選項列印時,建議進行最大體積速度校正:" msgid "material with significant thermal shrinkage/expansion, such as..." msgstr "具有顯著熱收縮/膨脹的材料,例如..." @@ -15191,17 +15199,17 @@ msgid "materials with inaccurate filament diameter" msgstr "線材直徑不準確的線材" msgid "We found the best Flow Dynamics Calibration Factor" -msgstr "我們找到了最佳的流量動態校準因子" +msgstr "我們找到了最佳的流量動態校正因子" msgid "" "Part of the calibration failed! You may clean the plate and retry. The " "failed test result would be dropped." -msgstr "部分校準失敗! 你可以清潔列印板並重試。 失敗的測試結果將不會儲存。" +msgstr "部分校正失敗!您可以清潔列印板並重試。 失敗的測試結果將不會儲存。" msgid "" "*We recommend you to add brand, materia, type, and even humidity level in " "the Name" -msgstr "*我們建議你在名稱中加入品牌、材料、類型,甚至濕度水平" +msgstr "*我們建議您在名稱中加入品牌、材料、類型,甚至濕度水平" msgid "Failed" msgstr "失敗" @@ -15214,11 +15222,11 @@ msgstr "名稱不能超過40個字元。" msgid "" "Only one of the results with the same name will be saved. Are you sure you " -"want to override the other results?" +"want to overwrite the other results?" msgstr "同名的結果只能儲存一個,是否要覆蓋其他結果?" msgid "Please find the best line on your plate" -msgstr "請在你的列印板上找到最佳線條" +msgstr "請在您的列印板上找到最佳線條" msgid "Please find the corner with perfect degree of extrusion" msgstr "請找到最完美的列印角度" @@ -15236,7 +15244,7 @@ msgid "Record Factor" msgstr "記錄係數" msgid "We found the best flow ratio for you" -msgstr "我們為你找到了最佳流量比" +msgstr "我們為您找到了最佳流量比" msgid "Flow Ratio" msgstr "流量比" @@ -15248,10 +15256,10 @@ msgid "Please enter the name of the preset you want to save." msgstr "請輸入要儲存的預設名稱。" msgid "Calibration1" -msgstr "校準 1" +msgstr "校正 1" msgid "Calibration2" -msgstr "校準 2" +msgstr "校正 2" msgid "Please find the best object on your plate" msgstr "請在列印板上選擇最理想的物件" @@ -15260,15 +15268,12 @@ msgid "Fill in the value above the block with smoothest top surface" msgstr "用最光滑的頂面填充塊上方的值" msgid "Skip Calibration2" -msgstr "跳過校準2" +msgstr "跳過校正2" #, c-format, boost-format msgid "flow ratio : %s " msgstr "流量比:%s " -msgid "Please choose a block with smoothest top surface" -msgstr "請選擇頂部表面最光滑的塊" - msgid "Please choose a block with smoothest top surface." msgstr "請選擇頂部表面最光滑的塊。" @@ -15276,13 +15281,13 @@ msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)" msgstr "請輸入一個有效值(0<=最大體積速度<=60)" msgid "Calibration Type" -msgstr "校準類型" +msgstr "校正類型" msgid "Complete Calibration" -msgstr "完整校準" +msgstr "完整校正" msgid "Fine Calibration based on flow ratio" -msgstr "基於流量比的精細校準" +msgstr "基於流量比的精細校正" msgid "Title" msgstr "標題" @@ -15290,7 +15295,7 @@ msgstr "標題" msgid "" "A test model will be printed. Please clear the build plate and place it back " "to the hot bed before calibration." -msgstr "將列印一份測試模型。在校準之前,請清理列印板並將其放回熱床上。" +msgstr "將列印一份測試模型。在校正之前,請清理列印板並將其放回熱床上。" msgid "Printing Parameters" msgstr "列印參數" @@ -15305,14 +15310,14 @@ msgid "External Spool" msgstr "外部線軸" msgid "Filament For Calibration" -msgstr "校準用線材" +msgstr "校正用線材" msgid "" "Tips for calibration material: \n" "- Materials that can share same hot bed temperature\n" -"- Different filament brand and family(Brand = Bambu, Family = Basic, Matte)" +"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)" msgstr "" -"校準線材提示:\n" +"校正線材提示:\n" "-可以共享相同熱床溫度的線材\n" "-不同的線材品牌和系列(Brand = Bambu, Family = Basic, Matte)" @@ -15327,7 +15332,7 @@ msgid "%s is not compatible with %s" msgstr "%s 與 %s 不相容" msgid "TPU is not supported for Flow Dynamics Auto-Calibration." -msgstr "不支援 TPU 進行流量動態自動校準。" +msgstr "不支援 TPU 進行流量動態自動校正。" msgid "Connecting to printer" msgstr "正在連接列印設備" @@ -15351,7 +15356,7 @@ msgid "To Volumetric Speed" msgstr "至體積速度" msgid "Flow Dynamics Calibration Result" -msgstr "動態流量校準結果" +msgstr "動態流量校正結果" msgid "New" msgstr "新增" @@ -15360,10 +15365,10 @@ msgid "No History Result" msgstr "無歷史結果" msgid "Success to get history result" -msgstr "成功獲取歷史結果" +msgstr "成功取得歷史結果" msgid "Refreshing the historical Flow Dynamics Calibration records" -msgstr "重整歷史流量動態校準記錄" +msgstr "重整歷史流量動態校正記錄" msgid "Action" msgstr "操作" @@ -15373,10 +15378,10 @@ msgid "This machine type can only hold %d history results per nozzle." msgstr "此設備型號每個噴嘴僅能儲存 %d 筆歷史結果。" msgid "Edit Flow Dynamics Calibration" -msgstr "編輯動態流量校準" +msgstr "編輯動態流量校正" msgid "New Flow Dynamic Calibration" -msgstr "重新校準動態流量" +msgstr "重新校正動態流量" msgid "Ok" msgstr "Ok" @@ -15391,13 +15396,13 @@ msgid "Address" msgstr "地址" msgid "Hostname" -msgstr "主機名" +msgstr "主機名稱" msgid "Service name" -msgstr "服務名" +msgstr "服務名稱" msgid "OctoPrint version" -msgstr "OctoPrint版本" +msgstr "OctoPrint 版本" msgid "Searching for devices" msgstr "正在尋找設備" @@ -15417,7 +15422,7 @@ msgstr "" "請選擇一個要使用的 IP 位址。" msgid "PA Calibration" -msgstr "PA校準" +msgstr "PA 校正" msgid "DDE" msgstr "近程擠出機" @@ -15429,13 +15434,13 @@ msgid "Extruder type" msgstr "擠出機類型" msgid "PA Tower" -msgstr "PA塔" +msgstr "PA 塔" msgid "PA Line" msgstr "劃線模式" msgid "PA Pattern" -msgstr "V形模式" +msgstr "V 形模式" msgid "Start PA: " msgstr "起始值:" @@ -15473,7 +15478,7 @@ msgstr "" "PA 步距:>= 0.001)" msgid "Temperature calibration" -msgstr "溫度校準" +msgstr "溫度校正" msgid "PLA" msgstr "PLA" @@ -15571,11 +15576,11 @@ msgstr "結束回抽長度:" msgid "mm/mm" msgstr "mm/mm" -msgid "Send G-Code to printer host" +msgid "Send G-code to printer host" msgstr "傳送 G-code 到列印設備" msgid "Upload to Printer Host with the following filename:" -msgstr "使用下列檔案名上傳到列印設備:" +msgstr "使用下列檔案名稱上傳到列印設備:" msgid "Use forward slashes ( / ) as a directory separator if needed." msgstr "如有需要,請使用正斜線(/)作為目錄分隔符。" @@ -15610,7 +15615,7 @@ msgid "Size" msgstr "尺寸" msgid "Filename" -msgstr "檔案名" +msgstr "檔案名稱" msgid "Cancel selected" msgstr "取消選取" @@ -15618,7 +15623,7 @@ msgstr "取消選取" msgid "Show error message" msgstr "顯示錯誤資訊" -msgid "Enqueued" +msgid "Queued" msgstr "已加入佇列" msgid "Uploading" @@ -15639,7 +15644,7 @@ msgid "Time-lapse" msgstr "縮時錄影" msgid "Heated Bed Leveling" -msgstr "加熱床校平" +msgstr "熱床調平" msgid "Textured Build Plate (Side A)" msgstr "紋理列印板(A面)" @@ -15707,13 +15712,13 @@ msgstr "系統版本:" msgid "DNS Server:" msgstr "DNS 伺服器:" -msgid "Test OrcaSlicer(GitHub)" +msgid "Test OrcaSlicer (GitHub)" msgstr "測試 OrcaSlicer(GitHub)" -msgid "Test OrcaSlicer(GitHub):" +msgid "Test OrcaSlicer (GitHub):" msgstr "測試 OrcaSlicer(GitHub):" -msgid "Test Bing.com" +msgid "Test bing.com" msgstr "測試 Bing.com" msgid "Test bing.com:" @@ -15741,7 +15746,7 @@ msgid "Add Filament Preset under this filament" msgstr "在此線材下新增線材預設" msgid "We could create the filament presets for your following printer:" -msgstr "可以為你以下的列印設備建立線材預設:" +msgstr "可以為您以下的列印設備建立線材預設:" msgid "Select Vendor" msgstr "選擇廠牌" @@ -15768,7 +15773,7 @@ msgid "Filament Preset" msgstr "線材預設" msgid "Create" -msgstr "創建" +msgstr "建立" msgid "Vendor is not selected, please reselect vendor." msgstr "廠牌尚未選擇,請重新選擇廠牌。" @@ -15777,7 +15782,7 @@ msgid "Custom vendor is not input, please input custom vendor." msgstr "自訂廠牌尚未輸入,請輸入自訂廠牌。" msgid "" -"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments." +"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "「Bambu」或「Generic」不能作為自訂線材的廠牌名稱。" msgid "Filament type is not selected, please reselect type." @@ -15794,7 +15799,7 @@ msgstr "線材的廠牌或序號輸入中可能包含跳脫字元,請刪除並 msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "自訂廠牌或序號中的所有輸入都是空白,請重新輸入。" -msgid "The vendor can not be a number. Please re-enter." +msgid "The vendor cannot be a number. Please re-enter." msgstr "廠牌不能為數字,請重新輸入。" msgid "" @@ -15803,7 +15808,7 @@ msgstr "尚未選擇列印設備或預設,請至少選擇一個。" #, c-format, boost-format msgid "" -"The Filament name %s you created already exists. \n" +"The Filament name %s you created already exists.\n" "If you continue creating, the preset created will be displayed with its full " "name. Do you want to continue?" msgstr "" @@ -15822,8 +15827,8 @@ msgstr "" msgid "" "We would rename the presets as \"Vendor Type Serial @printer you " -"selected\". \n" -"To add preset for more printers, Please go to printer selection" +"selected\".\n" +"To add preset for more printers, please go to printer selection" msgstr "" "將會將預設名稱重新命名為「廠牌 型號 序號 @選擇的列印設備」。\n" "若要為更多列印設備新增預設,請前往列印設備選擇頁面" @@ -15849,14 +15854,14 @@ msgstr "匯入預設" msgid "Create Type" msgstr "建立類型" -msgid "The model is not found, please reselect vendor." +msgid "The model was not found, please reselect vendor." msgstr "找不到該型號,請重新選擇廠牌。" msgid "Select Model" msgstr "選擇型號" msgid "Select Printer" -msgstr "Select Model" +msgstr "選擇印表機" msgid "Input Custom Model" msgstr "輸入自訂型號" @@ -15892,16 +15897,16 @@ msgstr "檔案超過 %d MB,請重新匯入。" msgid "Exception in obtaining file size, please import again." msgstr "取得檔案大小時發生例外,請重新匯入。" -msgid "Preset path is not find, please reselect vendor." +msgid "Preset path was not found, please reselect vendor." msgstr "找不到預設路徑,請重新選擇廠牌。" msgid "The printer model was not found, please reselect." msgstr "找不到列印設備型號,請重新選擇。" -msgid "The nozzle diameter is not found, please reselect." +msgid "The nozzle diameter was not found, please reselect." msgstr "找不到噴嘴直徑,請重新選擇。" -msgid "The printer preset is not found, please reselect." +msgid "The printer preset was not found, please reselect." msgstr "未找到列印設備預設設定,請重新選擇。" msgid "Printer Preset" @@ -15922,12 +15927,12 @@ msgstr "返回第一頁" msgid "" "You have not yet chosen which printer preset to create based on. Please " "choose the vendor and model of the printer" -msgstr "尚未選擇要基於哪個列印設備預設設定來創建,請選擇列印設備的廠牌和型號" +msgstr "尚未選擇要基於哪個列印設備預設設定來建立,請選擇列印設備的廠牌和型號" msgid "" "You have entered an illegal input in the printable area section on the first " "page. Please check before creating it." -msgstr "在第一頁的可列印區域部分輸入了無效的設定,請在創建前檢查。" +msgstr "在第一頁的可列印區域部分輸入了無效的設定,請在建立前檢查。" msgid "The custom printer or model is not entered, please enter it." msgstr "未輸入自訂列印設備或型號,請輸入。" @@ -15941,10 +15946,10 @@ msgid "" "reserve.\n" "\tCancel: Do not create a preset, return to the creation interface." msgstr "" -"創建的列印設備預設設定已經有相同名稱的預設設定。是否要覆蓋它?\n" -"\t是:覆蓋相同名稱的列印設備預設設定,並重新創建名稱相同的線材和處理預設設" +"建立的列印設備預設設定已經有相同名稱的預設設定。是否要覆蓋它?\n" +"\t是:覆蓋相同名稱的列印設備預設設定,並重新建立名稱相同的線材和處理預設設" "定,名稱不同的線材和處理預設設定將被保留。\n" -" \t取消:不創建預設設定,返回創建界面。" +" \t取消:不建立預設設定,返回建立界面。" msgid "You need to select at least one filament preset." msgstr "需要至少選擇一個線材預設設定。" @@ -15953,12 +15958,12 @@ msgid "You need to select at least one process preset." msgstr "需要至少選擇一個處理預設設定。" msgid "Create filament presets failed. As follows:\n" -msgstr "創建線材預設設定失敗,原因如下:\n" +msgstr "建立線材預設設定失敗,原因如下:\n" msgid "Create process presets failed. As follows:\n" -msgstr "創建處理預設設定失敗,原因如下:\n" +msgstr "建立處理預設設定失敗,原因如下:\n" -msgid "Vendor is not find, please reselect." +msgid "Vendor was not found, please reselect." msgstr "未找到廠牌,請重新選擇。" msgid "Current vendor has no models, please reselect." @@ -15967,7 +15972,7 @@ msgstr "目前廠牌沒有可用的型號,請重新選擇。" msgid "" "You have not selected the vendor and model or entered the custom vendor and " "model." -msgstr "你尚未選擇廠牌和型號,或未輸入自訂的廠牌和型號。" +msgstr "您尚未選擇廠牌和型號,或未輸入自訂的廠牌和型號。" msgid "" "There may be escape characters in the custom printer vendor or model. Please " @@ -15985,20 +15990,20 @@ msgid "" "You have not yet selected the printer to replace the nozzle, please choose." msgstr "尚未選擇要更換噴嘴的列印設備,請選擇。" -msgid "Create Printer Successful" -msgstr "列印設備創建成功" +msgid "Printer Created Successfully" +msgstr "列印設備建立成功" -msgid "Create Filament Successful" -msgstr "線材創建成功" +msgid "Filament Created Successfully" +msgstr "線材建立成功" msgid "Printer Created" -msgstr "列印設備創建完成" +msgstr "列印設備建立完成" msgid "Please go to printer settings to edit your presets" -msgstr "請前往列印設備設定編輯你的預設設定" +msgstr "請前往列印設備設定編輯您的預設設定" msgid "Filament Created" -msgstr "線材創建完成" +msgstr "線材建立完成" msgid "" "Please go to filament setting to edit your presets if you need.\n" @@ -16006,7 +16011,7 @@ msgid "" "volumetric speed has a significant impact on printing quality. Please set " "them carefully." msgstr "" -"如需調整,請至線材設定頁編輯你的預設。\n" +"如需調整,請至線材設定頁編輯您的預設。\n" "請特別注意,噴嘴溫度、熱床溫度及最大體積速度會顯著影響列印品質,建議謹慎設" "定。" @@ -16015,14 +16020,14 @@ msgid "" "\n" "Orca has detected that your user presets synchronization function is not " "enabled, which may result in unsuccessful Filament settings on the Device " -"page. \n" +"page.\n" "Click \"Sync user presets\" to enable the synchronization function." msgstr "" "\n" "\n" -"Orca 偵測到你的使用者預設同步功能尚未啟用,這可能導致線材設定在裝置頁面上無法" +"Orca 偵測到您的使用者預設同步功能尚未啟用,這可能導致線材設定在裝置頁面上無法" "正常使用。\n" -"請點擊『同步用戶預設』以啟用同步功能。" +"請點擊『同步使用者預設』以啟用同步功能。" msgid "Printer Setting" msgstr "列印設備設定" @@ -16046,10 +16051,10 @@ msgid "initialize fail" msgstr "初始化失敗" msgid "add file fail" -msgstr "添加檔案失敗" +msgstr "新增檔案失敗" msgid "add bundle structure file fail" -msgstr "添加捆綁結構檔案失敗" +msgstr "新增捆綁結構檔案失敗" msgid "finalize fail" msgstr "失敗" @@ -16067,18 +16072,18 @@ msgid "" "If not, a time suffix will be added, and you can modify the name after " "creation." msgstr "" -"目前目錄中已存在 '%s' 資料夾。你是否要清除它並重新建立?\n" -"如果不想清除,將會加上時間後綴,並且你可以在建立後修改名稱。" +"目前目錄中已存在 '%s' 資料夾。您是否要清除它並重新建立?\n" +"如果不想清除,將會加上時間後綴,並且您可以在建立後修改名稱。" msgid "" -"Printer and all the filament&&process presets that belongs to the printer. \n" +"Printer and all the filament&&process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" "列印設備及所有屬於該列印設備的線材和處理預設設定。 \n" "可以與他人分享。" msgid "" -"User's filament preset set. \n" +"User's filament preset set.\n" "Can be shared with others." msgstr "" "使用者的線材預設設定。 \n" @@ -16096,7 +16101,7 @@ msgid "" "Only printer names with user printer presets will be displayed, and each " "preset you choose will be exported as a zip." msgstr "" -"只有具有使用者列印設備預設設定的列印設備名稱會顯示,你選擇的每個預設設定將以 " +"只有具有使用者列印設備預設設定的列印設備名稱會顯示,您選擇的每個預設設定將以 " "zip 檔案格式匯出。" msgid "" @@ -16105,7 +16110,7 @@ msgid "" "exported as a zip." msgstr "" "只有具有使用者線材預設設定的線材名稱會顯示,\n" -"你選擇的每個線材名稱中的所有使用者線材預設設定將以 zip 檔案格式匯出。" +"您選擇的每個線材名稱中的所有使用者線材預設設定將以 zip 檔案格式匯出。" msgid "" "Only printer names with changed process presets will be displayed, \n" @@ -16113,16 +16118,16 @@ msgid "" "exported as a zip." msgstr "" "只有具有變更過處理預設設定的列印設備名稱會顯示,\n" -"你選擇的每個列印設備名稱中的所有使用者處理預設設定將以 zip 檔案格式匯出。" +"您選擇的每個列印設備名稱中的所有使用者處理預設設定將以 zip 檔案格式匯出。" msgid "Please select at least one printer or filament." msgstr "請至少選擇一個列印設備或線材。" msgid "Please select a type you want to export" -msgstr "請選擇你要匯出的類型" +msgstr "請選擇您要匯出的類型" msgid "Failed to create temporary folder, please try Export Configs again." -msgstr "創建臨時資料夾失敗,請再次嘗試匯出配置。" +msgstr "建立臨時資料夾失敗,請再次嘗試匯出配置。" msgid "Edit Filament" msgstr "編輯線材" @@ -16135,7 +16140,7 @@ msgid "" "be deleted after exiting the dialog." msgstr "注意:如果此線材下的唯一預設設定被刪除,退出對話框後該線材將被刪除。" -msgid "Presets inherited by other presets can not be deleted" +msgid "Presets inherited by other presets cannot be deleted" msgstr "被其他預設設定繼承的預設設定無法刪除" msgid "The following presets inherits this preset." @@ -16158,12 +16163,12 @@ msgid "Delete Filament" msgstr "刪除線材" msgid "" -"All the filament presets belong to this filament would be deleted. \n" +"All the filament presets belong to this filament would be deleted.\n" "If you are using this filament on your printer, please reset the filament " "information for that slot." msgstr "" "所有屬於此線材的預設設定將被刪除。\n" -"如果你正在列印設備上使用此線材,請重新設置該插槽的線材資訊。" +"如果您正在列印設備上使用此線材,請重新設置該插槽的線材資訊。" msgid "Delete filament" msgstr "刪除線材" @@ -16202,7 +16207,7 @@ msgstr "記錄的噴嘴:%.1f %s" msgid "" "Your nozzle diameter in preset is not consistent with memorized nozzle " "diameter. Did you change your nozzle lately?" -msgstr "預設的噴嘴直徑與記錄的噴嘴直徑不一致。你最近有更換噴嘴嗎?" +msgstr "預設的噴嘴直徑與記錄的噴嘴直徑不一致。您最近有更換噴嘴嗎?" #, c-format, boost-format msgid "*Printing %s material with %s may cause nozzle damage" @@ -16217,7 +16222,7 @@ msgstr "開始、結束或步距不是有效值。" msgid "" "Unable to calibrate: maybe because the set calibration value range is too " "large, or the step is too small" -msgstr "無法校準:可能是設定的校準值範圍太大,或步距太小" +msgstr "無法校正:可能是設定的校正值範圍太大,或步距太小" msgid "Physical Printer" msgstr "實體列印設備" @@ -16250,10 +16255,10 @@ msgid "" "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-" "signed certificate." msgstr "" -"HTTPS CA 憑證檔案是可選的。 僅當你使用具有自行簽證的 HTTPS 時才需要它。" +"HTTPS CA 憑證檔案是可選的。 僅當您使用具有自行簽證的 HTTPS 時才需要它。" msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*" -msgstr "憑證檔(*.crt, *.pem)|*.crt;*.pem|All files|*.*" +msgstr "憑證檔(*.crt, *.pem)|*.crt;*.pem|所有檔案|*.*" msgid "Open CA certificate file" msgstr "開啟 CA憑證檔" @@ -16267,7 +16272,7 @@ msgstr "在此系統上,%s 使用系統憑證儲存庫或鑰匙圈中的 HTTPS msgid "" "To use a custom CA file, please import your CA file into Certificate Store / " "Keychain." -msgstr "若要使用自訂 CA 憑證檔,請將你的 CA 憑證檔匯入到憑證儲存庫/鑰匙圈中。" +msgstr "若要使用自訂 CA 憑證檔,請將您的 CA 憑證檔匯入到憑證儲存庫/鑰匙圈中。" msgid "Login/Test" msgstr "登入/測試" @@ -16279,16 +16284,16 @@ msgstr "經由列印主機連接的列印設備連接失敗。" msgid "Mismatched type of print host: %s" msgstr "列印主機類型不符:%s" -msgid "Connection to AstroBox works correctly." +msgid "Connection to AstroBox is working correctly." msgstr "與 AstroBox 的連接工作正常。" msgid "Could not connect to AstroBox" msgstr "無法連接到 AstroBox" -msgid "Note: AstroBox version at least 1.1.0 is required." +msgid "Note: AstroBox version 1.1.0 or higher is required." msgstr "注意:AstroBox 版本至少需要 1.1.0。" -msgid "Connection to Duet works correctly." +msgid "Connection to Duet is working correctly." msgstr "與 Duet 的連接工作正常。" msgid "Could not connect to Duet" @@ -16306,7 +16311,7 @@ msgstr "無法取得建立新連結的資源" msgid "Upload not enabled on FlashAir card." msgstr "FlashAir 卡上未啟用上傳。" -msgid "Connection to FlashAir works correctly and upload is enabled." +msgid "Connection to FlashAir is working correctly and upload is enabled." msgstr "與 FlashAir 的連接工作正常並啟用上傳。" msgid "Could not connect to FlashAir" @@ -16317,28 +16322,28 @@ msgid "" "is required." msgstr "注意:FlashAir 需要韌體為 2.00.02 或更新版本並啟動上傳功能。" -msgid "Connection to MKS works correctly." +msgid "Connection to MKS is working correctly." msgstr "成功連接到 MKS。" msgid "Could not connect to MKS" msgstr "無法連接到 MKS" -msgid "Connection to OctoPrint works correctly." +msgid "Connection to OctoPrint is working correctly." msgstr "與 OctoPrint 的連接工作正常。" msgid "Could not connect to OctoPrint" msgstr "無法連接到 OctoPrint" -msgid "Note: OctoPrint version at least 1.1.0 is required." +msgid "Note: OctoPrint version 1.1.0 or higher is required." msgstr "注意:OctoPrint 版本至少需要 1.1.0。" -msgid "Connection to Prusa SL1 / SL1S works correctly." +msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "與 Prusa SL1 / SL1S 的連接工作正常。" msgid "Could not connect to Prusa SLA" msgstr "無法連接到 Prusa SLA" -msgid "Connection to PrusaLink works correctly." +msgid "Connection to PrusaLink is working correctly." msgstr "與 PrusaLink 的連接工作正常。" msgid "Could not connect to PrusaLink" @@ -16362,19 +16367,19 @@ msgstr "%1%:沒有可用空間" msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "上傳失敗。未找到適當的存儲位置在 %1%。" -msgid "Connection to Prusa Connect works correctly." +msgid "Connection to Prusa Connect is working correctly." msgstr "成功連接到 Prusa Connect。" msgid "Could not connect to Prusa Connect" msgstr "無法連接到 Prusa Connect" -msgid "Connection to Repetier works correctly." +msgid "Connection to Repetier is working correctly." msgstr "與 Repetier 的連接工作正常。" msgid "Could not connect to Repetier" msgstr "無法連接到 Repetier" -msgid "Note: Repetier version at least 0.90.0 is required." +msgid "Note: Repetier version 0.90.0 or higher is required." msgstr "注意:Repetier 版本至少需要 0.90.0。" #, boost-format @@ -16406,40 +16411,39 @@ msgstr "" "錯誤碼:「%2%」" msgid "" -"It has a small layer height, and results in almost negligible layer lines " -"and high printing quality. It is suitable for most general printing cases." +"It has a small layer height. This results in almost negligible layer lines " +"and high print quality. It is suitable for most printing cases." msgstr "" "它具有較小的層高,產生幾乎可以忽略不計的層線並具有較高的列印品質。適用於大多" "數一般的列印情況。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds " -"and acceleration, and the sparse infill pattern is Gyroid. So, it results in " -"much higher printing quality, but a much longer printing time." +"and acceleration, and the sparse infill pattern is Gyroid. This results in " +"much higher print quality but a much longer print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有較低的速度和加速度,且稀疏填充圖案" "為 Gyroid。因此,列印品質大幅提高,但列印時間大幅延長。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a slightly " -"bigger layer height, and results in almost negligible layer lines, and " -"slightly shorter printing time." +"bigger layer height. This results in almost negligible layer lines and " +"slightly shorter print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有略大的層高,產生幾乎可以忽略不計的層" "線,並略微縮短列印時間。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer " -"height, and results in slightly visible layer lines, but shorter printing " -"time." +"height. This results in slightly visible layer lines but shorter print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有較大的層高,產生略微可見的層線,但列" "印時間較短。" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " -"height, and results in almost invisible layer lines and higher printing " -"quality, but shorter printing time." +"height. This results in almost invisible layer lines and higher print " +"quality but shorter print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有較小的層高,產生幾乎不可見的層線並提" "高列印品質,但列印時間較短。" @@ -16447,17 +16451,17 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost invisible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost invisible layer lines and much higher print " +"quality but much longer print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有較小的層線、較低的速度和加速度,且稀" "疏填充圖案為 Gyroid。因此,產生幾乎不可見的層線並大幅提高列印品質,但列印時間" "會大大延長。" msgid "" -"Compared with the default profile of 0.2 mm nozzle, it has a smaller layer " -"height, and results in minimal layer lines and higher printing quality, but " -"shorter printing time." +"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " +"height. This results in minimal layer lines and higher print quality, but " +"shorter print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有較小的層高,產生最小的層線並提高列印" "品質,但列印時間較短。" @@ -16465,47 +16469,47 @@ msgstr "" msgid "" "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer " "lines, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in minimal layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in minimal layer lines and much higher print quality " +"but much longer print time." msgstr "" "與 0.2 毫米噴嘴的預設配置相比,該配置具有較小的層線、較低的速度和加速度,且稀" "疏填充圖案為 Gyroid。因此,產生最小的層線並大幅提高列印品質,但列印時間會大大" "延長。" msgid "" -"It has a general layer height, and results in general layer lines and " -"printing quality. It is suitable for most general printing cases." +"It has a normal layer height. This results in average layer lines and print " +"quality. It is suitable for most printing cases." msgstr "" "它具有一般的層高,產生一般的層線和列印品質。適用於大多數一般的列印情況。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有更多的牆壁圈層和較高的稀疏填充密度。" "因此,列印物品的強度更高,但會增加耗材使用量並延長列印時間。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but slightly shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but slightly shorter print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較大的層高,產生更明顯的層線並降低列" "印品質,但列印時間略微縮短。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較大的層高,產生更明顯的層線並降低列" "印品質,但列印時間較短。" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較小的層高,產生較不明顯的層線並提高" "列印品質,但列印時間較長。" @@ -16513,8 +16517,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in less apparent layer lines and much higher printing " -"quality, but much longer printing time." +"Gyroid. This results in less apparent layer lines and much higher print " +"quality but much longer print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較小的層高、較低的速度和加速度,且稀" "疏填充圖案為 Gyroid。因此,產生較不明顯的層線,並且列印品質大幅提高,但列印時" @@ -16522,8 +16526,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and higher printing " -"quality, but longer printing time." +"height. This results in almost negligible layer lines and higher print " +"quality but longer print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較小的層高,產生幾乎可以忽略不計的層" "線,並提高列印品質,但列印時間較長。" @@ -16531,8 +16535,8 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " "height, lower speeds and acceleration, and the sparse infill pattern is " -"Gyroid. So, it results in almost negligible layer lines and much higher " -"printing quality, but much longer printing time." +"Gyroid. This results in almost negligible layer lines and much higher print " +"quality but much longer print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較小的層高、較低的速度和加速度,且稀" "疏填充圖案為 Gyroid。因此,產生幾乎可以忽略不計的層線,並且列印品質大幅提高," @@ -16540,91 +16544,89 @@ msgstr "" msgid "" "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer " -"height, and results in almost negligible layer lines and longer printing " -"time." +"height. This results in almost negligible layer lines and longer print time." msgstr "" "與 0.4 毫米噴嘴的預設配置相比,該配置具有較小的層高,產生幾乎可以忽略不計的層" "線,但列印時間較長。" msgid "" -"It has a big layer height, and results in apparent layer lines and ordinary " -"printing quality and printing time." +"It has a big layer height. This results in apparent layer lines and ordinary " +"print quality and print time." msgstr "它具有較大的層高,產生明顯的層線,並且列印品質和列印時間屬於普通水平。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops " -"and a higher sparse infill density. So, it results in higher strength of the " -"prints, but more filament consumption and longer printing time." +"and a higher sparse infill density. This results in higher print strength " +"but more filament consumption and longer print time." msgstr "" "與 0.6 毫米噴嘴的預設配置相比,該配置具有更多的牆壁圈層和較高的稀疏填充密度。" "因此,列印物品的強度更高,但會增加耗材使用量並延長列印時間。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in more apparent layer lines and lower printing quality, " -"but shorter printing time in some printing cases." +"height. This results in more apparent layer lines and lower print quality, " +"but shorter print time in some cases." msgstr "" "與 0.6 毫米噴嘴的預設配置相比,該配置具有較大的層高,產生較為明顯的層線並降低" "列印品質,但在某些情況下會縮短列印時間。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer " -"height, and results in much more apparent layer lines and much lower " -"printing quality, but shorter printing time in some printing cases." +"height. This results in much more apparent layer lines and much lower print " +"quality, but shorter print time in some cases." msgstr "" "與 0.6 毫米噴嘴的預設配置相比,該配置具有較大的層高,產生更明顯的層線並顯著降" "低列印品質,但在某些情況下會縮短列印時間。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and slight higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and slight higher print " +"quality but longer print time." msgstr "" "與 0.6 毫米噴嘴的預設配置相比,該配置具有較小的層高,產生較不明顯的層線並略微" "提高列印品質,但列印時間較長。" msgid "" "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer " -"height, and results in less apparent layer lines and higher printing " -"quality, but longer printing time." +"height. This results in less apparent layer lines and higher print quality " +"but longer print time." msgstr "它具有非常大的層高,產生明顯的層線、較低的列印品質和一般的列印時間。" msgid "" -"It has a very big layer height, and results in very apparent layer lines, " -"low printing quality and general printing time." +"It has a very big layer height. This results in very apparent layer lines, " +"low print quality and general print time." msgstr "" "與0.8mm噴嘴的預設配置相比,該配置具有較大的層高,產生非常明顯的層線並顯著降低" "列印品質,但在某些情況下會縮短列印時間。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer " -"height, and results in very apparent layer lines and much lower printing " -"quality, but shorter printing time in some printing cases." +"height. This results in very apparent layer lines and much lower print " +"quality but shorter print time in some cases." msgstr "" "與0.8mm噴嘴的預設配置相比,該配置具有更大的層高,產生極為明顯的層線並顯著降低" "列印品質,但在某些情況下會大幅縮短列印時間。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger " -"layer height, and results in extremely apparent layer lines and much lower " -"printing quality, but much shorter printing time in some printing cases." +"layer height. This results in extremely apparent layer lines and much lower " +"print quality but much shorter print time in some cases." msgstr "" "與0.8mm噴嘴的預設配置相比,該配置具有略小的層高,產生略少但仍明顯的層線,並略" "微提高列印品質,但在某些情況下會延長列印時間。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a slightly " -"smaller layer height, and results in slightly less but still apparent layer " -"lines and slightly higher printing quality, but longer printing time in some " -"printing cases." +"smaller layer height. This results in slightly less but still apparent layer " +"lines and slightly higher print quality but longer print time in some cases." msgstr "" "與0.8mm噴嘴的預設配置相比,該配置具有較小的層高,從而產生較少但仍明顯的層線," "並略微提高列印品質,但在某些情況下會延長列印時間。" msgid "" "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer " -"height, and results in less but still apparent layer lines and slightly " -"higher printing quality, but longer printing time in some printing cases." +"height. This results in less but still apparent layer lines and slightly " +"higher print quality, but longer print time in some cases." msgstr "" "與0.8mm噴嘴的預設配置相比,該配置具有較少的層高,產生較少但仍明顯的層線,並略" "微提高列印品質,但在某些情況下會延長列印時間。" @@ -16650,7 +16652,7 @@ msgstr "未知錯誤" msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "SimplyPrint 帳戶未連結。請前往連接選項進行設置。" -msgid "Connection to Flashforge works correctly." +msgid "Connection to Flashforge is working correctly." msgstr "成功連接到 Flashforge。" msgid "Could not connect to Flashforge" @@ -16665,7 +16667,7 @@ msgstr "授權此應用程式時,請提供所需的權限。" msgid "Something unexpected happened when trying to log in, please try again." msgstr "嘗試登入時發生了意外錯誤,請再試一次。" -msgid "User cancelled." +msgid "User canceled." msgstr "使用者取消。" msgid "Head diameter" @@ -16687,7 +16689,7 @@ msgid "Auto-generate points" msgstr "自動產生點" msgid "Add a brim ear" -msgstr "添加邊緣支撐 (Brim)" +msgstr "新增邊緣支撐 (Brim)" msgid "Delete a brim ear" msgstr "刪除邊緣支撐 (Brim)" @@ -16696,8 +16698,8 @@ msgid "Adjust section view" msgstr "調整截圖視角" msgid "" -"Warning: The brim type is not set to \"painted\",the brim ears will not take " -"effect !" +"Warning: The brim type is not set to \"painted\", the brim ears will not " +"take effect!" msgstr "警告:邊緣類型未設置「上色」,因此邊緣支撐 (Brim) 不會生效!" msgid "Set the brim type to \"painted\"" @@ -16719,7 +16721,7 @@ msgid "" "consistency?" msgstr "" "精確牆壁\n" -"你知道啟用精確牆壁可以提高精度和層次一致性嗎?" +"您知道啟用精確牆壁可以提高精度和層次一致性嗎?" #: resources/data/hints.ini: [hint:Sandwich mode] msgid "" @@ -16729,7 +16731,7 @@ msgid "" "overhangs?" msgstr "" "三明治模式\n" -"你知道嗎?如果模型中沒有太陡峭的懸空區域,可以使用三明治模式\n" +"您知道嗎?如果模型中沒有太陡峭的懸空區域,可以使用三明治模式\n" "(內層-外層-內層)來提升精度並增強層的一致性。" #: resources/data/hints.ini: [hint:Chamber temperature] @@ -16738,7 +16740,7 @@ msgid "" "Did you know that OrcaSlicer supports chamber temperature?" msgstr "" "機箱溫度\n" -"你知道 OrcaSlicer 支援機箱內溫度控制嗎?" +"您知道 OrcaSlicer 支援機箱內溫度控制嗎?" #: resources/data/hints.ini: [hint:Calibration] msgid "" @@ -16746,9 +16748,9 @@ msgid "" "Did you know that calibrating your printer can do wonders? Check out our " "beloved calibration solution in OrcaSlicer." msgstr "" -"校準\n" -"你知道校準列印設備可以帶來奇效嗎?快來看看我們在 OrcaSlicer 中的\n" -"校準解決方案。" +"校正\n" +"您知道校正列印設備可以帶來奇效嗎?快來看看我們在 OrcaSlicer 中的\n" +"校正解決方案。" #: resources/data/hints.ini: [hint:Auxiliary fan] msgid "" @@ -16756,7 +16758,7 @@ msgid "" "Did you know that OrcaSlicer supports Auxiliary part cooling fan?" msgstr "" "輔助風扇\n" -"你知道 OrcaSlicer 支援輔助零件冷卻風扇嗎?" +"您知道 OrcaSlicer 支援輔助零件冷卻風扇嗎?" #: resources/data/hints.ini: [hint:Air filtration] msgid "" @@ -16764,7 +16766,7 @@ msgid "" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" msgstr "" "空氣過濾/排風扇\n" -"你知道 OrcaSlicer 支援空氣過濾/排風扇嗎?" +"您知道 OrcaSlicer 支援空氣過濾/排風扇嗎?" #: resources/data/hints.ini: [hint:G-code window] msgid "" @@ -16772,7 +16774,7 @@ msgid "" "You can turn on/off the G-code window by pressing the C key." msgstr "" "G-code 視窗\n" -"你可以按 C 鍵開啟/關閉 G-code 視窗。" +"您可以按 C 鍵開啟/關閉 G-code 視窗。" #: resources/data/hints.ini: [hint:Switch workspaces] msgid "" @@ -16781,16 +16783,16 @@ msgid "" "pressing the Tab key." msgstr "" "切換工作區\n" -"你可以按 Tab 鍵在 準備預覽 工作區之間切換。" +"您可以按 Tab 鍵在 準備預覽 工作區之間切換。" #: resources/data/hints.ini: [hint:How to use keyboard shortcuts] msgid "" "How to use keyboard shortcuts\n" "Did you know that Orca Slicer offers a wide range of keyboard shortcuts and " -"3D scene operations." +"3D scene operations?" msgstr "" "如何使用鍵盤快捷鍵\n" -"你知道嗎? Orca Slicer 提供了廣泛的鍵盤快捷鍵和 3D 場景操作。" +"您知道嗎? Orca Slicer 提供了廣泛的鍵盤快捷鍵和 3D 場景操作。" #: resources/data/hints.ini: [hint:Reverse on odd] msgid "" @@ -16799,7 +16801,7 @@ msgid "" "the surface quality of your overhangs?" msgstr "" "奇數反向\n" -"你知道嗎?奇數反向 功能能大幅提升懸空結構的表面品質。" +"您知道嗎?奇數反向 功能能大幅提升懸空結構的表面品質。" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -16808,7 +16810,7 @@ msgid "" "cutting tool?" msgstr "" "切割工具\n" -"你知道嗎?你可以使用切割工具以任何角度和位置切割模型。" +"您知道嗎?您可以使用切割工具以任何角度和位置切割模型。" #: resources/data/hints.ini: [hint:Fix Model] msgid "" @@ -16817,7 +16819,7 @@ msgid "" "problems on the Windows system?" msgstr "" "修復模型\n" -"你知道嗎?在 Windows 系統上修復損壞的 3D 模型,\n" +"您知道嗎?在 Windows 系統上修復損壞的 3D 模型,\n" "可以有效避免許多切片時的問題。" #: resources/data/hints.ini: [hint:Timelapse] @@ -16826,24 +16828,24 @@ msgid "" "Did you know that you can generate a timelapse video during each print?" msgstr "" "縮時錄影\n" -"你知道嗎?你可以每次列印時產生一段縮時錄影。" +"您知道嗎?您可以每次列印時產生一段縮時錄影。" #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" -"Did you know that you can auto-arrange all objects in your project?" +"Did you know that you can auto-arrange all the objects in your project?" msgstr "" "自動擺放\n" -"你知道嗎?你可以自動擺放專案項目中的所有物件。" +"您知道嗎?您可以自動擺放專案項目中的所有物件。" #: resources/data/hints.ini: [hint:Auto-Orient] msgid "" "Auto-Orient\n" "Did you know that you can rotate objects to an optimal orientation for " -"printing by a simple click?" +"printing with a simple click?" msgstr "" "自動定向\n" -"你知道嗎?你只需單擊滑鼠,即可將物件旋轉到適合的列印方向。" +"您知道嗎?您只需單擊滑鼠,即可將物件旋轉到適合的列印方向。" #: resources/data/hints.ini: [hint:Lay on Face] msgid "" @@ -16853,7 +16855,7 @@ msgid "" "F key." msgstr "" "指定列印物件底部\n" -"你知道嗎?你可以快速指定模型的底面,使其位於列印板上。\n" +"您知道嗎?您可以快速指定模型的底面,使其位於列印板上。\n" "選擇「選擇底面」或按 F 鍵。" #: resources/data/hints.ini: [hint:Object List] @@ -16863,7 +16865,7 @@ msgid "" "settings for each object/part?" msgstr "" "物件清單\n" -"你知道嗎?你可以在清單中檢視所有物件/部件,並為每個物件/部件\n" +"您知道嗎?您可以在清單中檢視所有物件/部件,並為每個物件/部件\n" "調整設定。" #: resources/data/hints.ini: [hint:Search Functionality] @@ -16873,7 +16875,7 @@ msgid "" "Slicer setting?" msgstr "" "搜尋功能\n" -"你知道嗎?使用「搜尋工具」可以快速定位特定的 Orca Slicer 設定。" +"您知道嗎?使用「搜尋工具」可以快速定位特定的 Orca Slicer 設定。" #: resources/data/hints.ini: [hint:Simplify Model] msgid "" @@ -16882,7 +16884,7 @@ msgid "" "Simplify mesh feature? Right-click the model and select Simplify model." msgstr "" "簡化模型\n" -"你知道嗎?透過「簡化網格」功能,你可以減少模型中的三角形數量。\n" +"您知道嗎?透過「簡化網格」功能,您可以減少模型中的三角形數量。\n" "只需右鍵點擊模型,然後選擇「簡化模型」。" #: resources/data/hints.ini: [hint:Slicing Parameter Table] @@ -16892,7 +16894,7 @@ msgid "" "settings for each object/part?" msgstr "" "參數表格\n" -"你知道嗎?你可以看參數表格上的所有物件/零件,並更改每個物件/零\n" +"您知道嗎?您可以看參數表格上的所有物件/零件,並更改每個物件/零\n" "件的設定。" #: resources/data/hints.ini: [hint:Split to Objects/Parts] @@ -16902,7 +16904,7 @@ msgid "" "colorizing or printing?" msgstr "" "分割成物件/零件\n" -"你知道嗎?你可以把一個大物件分割成多個小物件/零件以便著色或\n" +"您知道嗎?您可以把一個大物件分割成多個小物件/零件以便著色或\n" "列印。" #: resources/data/hints.ini: [hint:Subtract a Part] @@ -16913,8 +16915,8 @@ msgid "" "directly in Orca Slicer." msgstr "" "減去零件\n" -"你知道嗎?你可以使用「負零件修飾器」將一個網格從另一個網格中減\n" -"去。這樣,就能直接在 Orca Slicer 裡輕鬆創建尺寸可調的孔洞。" +"您知道嗎?您可以使用「負零件修飾器」將一個網格從另一個網格中減\n" +"去。這樣,就能直接在 Orca Slicer 裡輕鬆建立尺寸可調的孔洞。" #: resources/data/hints.ini: [hint:STEP] msgid "" @@ -16925,7 +16927,7 @@ msgid "" "lower resolution STL. Give it a try!" msgstr "" "STEP檔案\n" -"你知道嗎?通過切片 STEP 檔案而不是 STL 檔案可以提高列印品質。\n" +"您知道嗎?通過切片 STEP 檔案而不是 STL 檔案可以提高列印品質。\n" "Orca Slicer 支援切片 STEP 檔案,提供比低解析度 STL 更平滑的結果。\n" "試試看!" @@ -16937,7 +16939,7 @@ msgid "" "the overall look of your model. Check it out!" msgstr "" "Z接縫位置\n" -"你知道嗎?你可以自訂Z接縫的位置,甚至可以將其繪製在列印上,使\n" +"您知道嗎?您可以自訂Z接縫的位置,甚至可以將其繪製在列印上,使\n" "其位於不太可見的位置。這樣可以改善模型的整體外觀。試試看!" #: resources/data/hints.ini: [hint:Fine-tuning for flow rate] @@ -16948,7 +16950,7 @@ msgid "" "printed model by doing some fine-tuning." msgstr "" "流量微調\n" -"你知道嗎?你可以微調流量,以獲得更好看的列印效果。根據線材的不\n" +"您知道嗎?您可以微調流量,以獲得更好看的列印效果。根據線材的不\n" "同,可以通過進行一些微調來提高列印模型的整體光潔度。" #: resources/data/hints.ini: [hint:Split your prints into plates] @@ -16959,7 +16961,7 @@ msgid "" "track of all the parts." msgstr "" "分類列印\n" -"你知道嗎?你可以把一個有很多零件的模型安排到多個獨立的列印板,\n" +"您知道嗎?您可以把一個有很多零件的模型安排到多個獨立的列印板,\n" "然後列印出來,這將簡化對所有零件的管理。" #: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer @@ -16970,7 +16972,7 @@ msgid "" "Layer Height option? Check it out!" msgstr "" "自適應層高度加速列印\n" -"你知道嗎?你可以使用「自適應層高度」選項可以更快地列印模型。\n" +"您知道嗎?您可以使用「自適應層高度」選項可以更快地列印模型。\n" "試試看!" #: resources/data/hints.ini: [hint:Support painting] @@ -16981,7 +16983,7 @@ msgid "" "model that actually need it." msgstr "" "自訂支撐\n" -"你知道嗎?你可以手動繪製增加/隱藏支撐的位置,此功能使僅將支撐\n" +"您知道嗎?您可以手動繪製增加/隱藏支撐的位置,此功能使僅將支撐\n" "材料放置在實際需要的模型截面上變得容易。" #: resources/data/hints.ini: [hint:Different types of supports] @@ -16992,7 +16994,7 @@ msgid "" "print speed. Check them out!" msgstr "" "支撐類型\n" -"你知道嗎?有多種可選的支撐類型,有機樹狀支撐非常適合人物/動物模型,\n" +"您知道嗎?有多種可選的支撐類型,有機樹狀支撐非常適合人物/動物模型,\n" "同時可以節線材並提高列印速度。試試看!" #: resources/data/hints.ini: [hint:Printing Silk Filament] @@ -17003,27 +17005,27 @@ msgid "" "the best results." msgstr "" "列印絲綢線材\n" -"你知道嗎?絲綢線材需要特別考慮才能成功列印。為了獲得最佳效果,\n" +"您知道嗎?絲綢線材需要特別考慮才能成功列印。為了獲得最佳效果,\n" "通常建議使用較高的溫度和較低的速度。" #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" "Brim for better adhesion\n" -"Did you know that when printing models have a small contact interface with " +"Did you know that when printed models have a small contact interface with " "the printing surface, it's recommended to use a brim?" msgstr "" "使用 Brim\n" -"你知道嗎?當模型與熱床表面的接觸面積較小時,建議使用 Brim 以提\n" +"您知道嗎?當模型與熱床表面的接觸面積較小時,建議使用 Brim 以提\n" "高列印成功率。" #: resources/data/hints.ini: [hint:Set parameters for multiple objects] msgid "" "Set parameters for multiple objects\n" "Did you know that you can set slicing parameters for all selected objects at " -"one time?" +"once?" msgstr "" "為多個物件設定參數\n" -"你知道嗎?你可以同時為所有選取的物件設定切片參數。" +"您知道嗎?您可以同時為所有選取的物件設定切片參數。" #: resources/data/hints.ini: [hint:Stack objects] msgid "" @@ -17031,16 +17033,16 @@ msgid "" "Did you know that you can stack objects as a whole one?" msgstr "" "組合物體\n" -"你知道嗎?你可以把多個物件組合為一個整體。" +"您知道嗎?您可以把多個物件組合為一個整體。" #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" -"Did you know that you can save the wasted filament by flushing them into " +"Did you know that you can save wasted filament by flushing it into " "support/objects/infill during filament change?" msgstr "" "廢料運用到支撐/物件/填充中\n" -"你知道嗎?你可以在換料時將廢料運用到支撐/物件/填充,以節省浪費\n" +"您知道嗎?您可以在換料時將廢料運用到支撐/物件/填充,以節省浪費\n" "的線材。" #: resources/data/hints.ini: [hint:Improve strength] @@ -17050,19 +17052,20 @@ msgid "" "density to improve the strength of the model?" msgstr "" "提高強度\n" -"你知道嗎?你可以使用更多的牆層數和更高的疏散填充密度來提高模型\n" +"您知道嗎?您可以使用更多的牆層數和更高的疏散填充密度來提高模型\n" "強度。" -#: resources/data/hints.ini: [hint:When need to print with the printer door -#: opened] +#: resources/data/hints.ini: [hint:When do you need to print with the printer +#: door opened] +#, fuzzy msgid "" -"When need to print with the printer door opened\n" +"When do you need to print with the printer door opened?\n" "Did you know that opening the printer door can reduce the probability of " "extruder/hotend clogging when printing lower temperature filament with a " -"higher enclosure temperature. More info about this in the Wiki." +"higher enclosure temperature? More info about this in the Wiki." msgstr "" "當列印時需要打開機門時\n" -"你知道嗎?在列印低溫耗材且機箱內溫度較高的情況下,打開列印\n" +"您知道嗎?在列印低溫耗材且機箱內溫度較高的情況下,打開列印\n" "設備機門可以有效降低擠出機或噴嘴堵塞的機率。\n" "詳情可在Wiki上查看。" @@ -17071,10 +17074,10 @@ msgid "" "Avoid warping\n" "Did you know that when printing materials that are prone to warping such as " "ABS, appropriately increasing the heatbed temperature can reduce the " -"probability of warping." +"probability of warping?" msgstr "" "避免翹曲\n" -"你知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n" +"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n" "可以降低翹曲的機率。" #~ msgid "" @@ -17093,15 +17096,6 @@ msgstr "" #~ "對於「強壯樹」和「混合樹」的支撐樣式,我們推薦以下設定:至少 2 層界面層," #~ "至少 0.1 毫米的頂部z距離或使用專用的支撐線材。" -#~ msgid "" -#~ "When using support material for the support interface, We recommend the " -#~ "following settings:\n" -#~ "0 top z distance, 0 interface spacing, concentric pattern and disable " -#~ "independent support layer height" -#~ msgstr "" -#~ "當使用專用的支撐線材時,我們推薦以下設定:\n" -#~ "0 頂層z距離,0 界面間距,同心模式,並且禁用獨立支撐層高" - #~ msgid "Branch Diameter with double walls" #~ msgstr "分支雙層牆直徑" @@ -17184,13 +17178,13 @@ msgstr "" #~ msgid "" #~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN." -#~ msgstr "第1步,請確認 Orca Slicer 和你的列印設備在同一個區域網路上。" +#~ msgstr "第1步,請確認 Orca Slicer 和您的列印設備在同一個區域網路上。" #~ msgid "" #~ "Step 2, if the IP and Access Code below are different from the actual " #~ "values on your printer, please correct them." #~ msgstr "" -#~ "步驟2, 如果下面的 IP 和訪問碼與列印設備上的實際值不同,請輸入正確的數值。" +#~ "步驟2, 如果下面的 IP 和存取碼與列印設備上的實際值不同,請輸入正確的數值。" #~ msgid "Step 3: Ping the IP address to check for packet loss and latency." #~ msgstr "步驟 3:Ping 該 IP 地址以檢查封包遺失和延遲。" @@ -17263,7 +17257,7 @@ msgstr "" #~ "By default, small internal bridges are filtered out and the internal " #~ "solid infill is printed directly over the sparse infill. This works well " #~ "in most cases, speeding up printing without too much compromise on top " -#~ "surface quality. \n" +#~ "surface quality.\n" #~ "\n" #~ "However, in heavily slanted or curved models especially where too low " #~ "sparse infill density is used, this may result in curling of the " @@ -17287,21 +17281,21 @@ msgstr "" #~ "此選項有助於減少在大幅傾斜或曲面的模型上頂部表面瑕疵。\n" #~ "\n" #~ "預設情況下,小型內部橋接會被篩選掉,內部實心填充會直接印刷在稀疏填充上。這" -#~ "在大多數情況下運作良好,能加速列印並且不會過度影響頂部表面質量。\n" +#~ "在大多數情況下運作良好,能加速列印並且不會過度影響頂部表面品質。\n" #~ "\n" #~ "在大幅傾斜或曲面的模型中,特別是當使用過低的稀疏填充密度時,這可能會導致支" #~ "撐不夠的實心填充翹曲,進而造成瑕疵。\n" #~ "\n" -#~ "禁用此選項將在稍微未支撐的內部實心填充區列印內部橋接層。以下選項控制篩選的" -#~ "程度(創建內部橋接的數量)。\n" +#~ "停用此選項將在稍微未支撐的內部實心填充區列印內部橋接層。以下選項控制篩選的" +#~ "程度(建立內部橋接的數量)。\n" #~ "\n" #~ "篩選 - 啟用此選項。這是預設行為,並且在大多數情況下運作良好。\n" #~ "\n" -#~ "有限篩選 - 僅在大幅傾斜的表面上創建內部橋接。這對大多數困難模型來說效果良" +#~ "有限篩選 - 僅在大幅傾斜的表面上建立內部橋接。這對大多數困難模型來說效果良" #~ "好。\n" #~ "\n" -#~ "不篩選 - 在每個可能的內部懸空處創建內部橋接。這個選項對於大幅傾斜的頂部表" -#~ "面模型很有用。然而,在大多數情況下,它會創建過多不必要的橋接。" +#~ "不篩選 - 在每個可能的內部懸空處建立內部橋接。這個選項對於大幅傾斜的頂部表" +#~ "面模型很有用。然而,在大多數情況下,它會建立過多不必要的橋接。" #~ msgid "" #~ "This fan speed is enforced during all support interfaces, to be able to " @@ -17312,31 +17306,5 @@ msgstr "" #~ "所有支撐界面列印期間強制風扇速度,高速可以減少支撐與物件的融合。\n" #~ "設定為 -1 以停用。" -#~ msgid "" -#~ "A lower value results in smoother extrusion rate transitions. However, " -#~ "this results in a significantly larger gcode file and more instructions " -#~ "for the printer to process. \n" -#~ "\n" -#~ "Default value of 3 works well for most cases. If your printer is " -#~ "stuttering, increase this value to reduce the number of adjustments made\n" -#~ "\n" -#~ "Allowed values: 1-5" -#~ msgstr "" -#~ "較低的數值會讓擠出量的變化更平滑,但會導致 gcode 文件變得更大,列印設備需" -#~ "要處理更多指令。\n" -#~ "\n" -#~ "預設值為 3,適合大多數情況。如果你的列印設備有卡頓問題,可以調高這個數值," -#~ "減少調整次數\n" -#~ "\n" -#~ "可用範圍:1-5" - -#~ msgid "" -#~ "normal(auto) and tree(auto) is used to generate support automatically. If " -#~ "normal(manual) or tree(manual) is selected, only support enforcers are " -#~ "generated" -#~ msgstr "" -#~ "選擇『普通(自動)』或『樹狀(自動)』時,會自動生成支撐結構。若選擇『普通" -#~ "(手動)』或『樹狀(手動)』,則僅生成支撐強化部分" - #~ msgid ", ver: " #~ msgstr ",版本" diff --git a/resources/calib/input_shaping/fast_tower_test.stl b/resources/calib/input_shaping/fast_tower_test.stl new file mode 100644 index 0000000000..e2fd5cd370 Binary files /dev/null and b/resources/calib/input_shaping/fast_tower_test.stl differ diff --git a/resources/calib/input_shaping/ringing_tower.stl b/resources/calib/input_shaping/ringing_tower.stl new file mode 100644 index 0000000000..70cae09ea6 Binary files /dev/null and b/resources/calib/input_shaping/ringing_tower.stl differ diff --git a/resources/data/hints.ini b/resources/data/hints.ini index 63c47c96d0..f4edae1265 100644 --- a/resources/data/hints.ini +++ b/resources/data/hints.ini @@ -64,7 +64,7 @@ [hint:Precise wall] text = Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency? -documentation_link = https://github.com/SoftFever/OrcaSlicer/wiki/Precise-wall +documentation_link = https://github.com/SoftFever/OrcaSlicer/wiki/quality_settings_precision [hint:Sandwich mode] text = Sandwich mode\nDid you know that you can use sandwich mode (inner-outer-inner) to improve precision and layer consistency if your model doesn't have very steep overhangs? @@ -92,7 +92,7 @@ text = G-code window\nYou can turn on/off the G-code window by pressing the C text = Switch workspaces\nYou can switch between Prepare and Preview workspaces by pressing the Tab key. [hint:How to use keyboard shortcuts] -text = How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations. +text = How to use keyboard shortcuts\nDid you know that Orca Slicer offers a wide range of keyboard shortcuts and 3D scene operations? [hint:Reverse on odd] text = Reverse on odd\nDid you know that Reverse on odd feature can significantly improve the surface quality of your overhangs? @@ -107,10 +107,10 @@ text = Fix Model\nDid you know that you can fix a corrupted 3D model to avoid a text = Timelapse\nDid you know that you can generate a timelapse video during each print? [hint:Auto-Arrange] -text = Auto-Arrange\nDid you know that you can auto-arrange all objects in your project? +text = Auto-Arrange\nDid you know that you can auto-arrange all the objects in your project? [hint:Auto-Orient] -text = Auto-Orient\nDid you know that you can rotate objects to an optimal orientation for printing by a simple click? +text = Auto-Orient\nDid you know that you can rotate objects to an optimal orientation for printing with a simple click? [hint:Lay on Face] text = Lay on Face\nDid you know that you can quickly orient a model so that one of its faces sits on the print bed? Select the \"Place on face\" function or press the F key. @@ -158,25 +158,25 @@ text = Different types of supports\nDid you know that you can choose from multip text = Printing Silk Filament\nDid you know that Silk filament needs special consideration to print it successfully? Higher temperature and lower speed are always recommended for the best results. [hint:Brim for better adhesion] -text = Brim for better adhesion\nDid you know that when printing models have a small contact interface with the printing surface, it's recommended to use a brim? +text = Brim for better adhesion\nDid you know that when printed models have a small contact interface with the printing surface, it's recommended to use a brim? [hint:Set parameters for multiple objects] -text = Set parameters for multiple objects\nDid you know that you can set slicing parameters for all selected objects at one time? +text = Set parameters for multiple objects\nDid you know that you can set slicing parameters for all selected objects at once? [hint:Stack objects] text = Stack objects\nDid you know that you can stack objects as a whole one? [hint:Flush into support/objects/infill] -text = Flush into support/objects/infill\nDid you know that you can save the wasted filament by flushing them into support/objects/infill during filament change? +text = Flush into support/objects/infill\nDid you know that you can save wasted filament by flushing it into support/objects/infill during filament change? [hint:Improve strength] text = Improve strength\nDid you know that you can use more wall loops and higher sparse infill density to improve the strength of the model? -[hint:When need to print with the printer door opened] -text = When need to print with the printer door opened\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature. More info about this in the Wiki. +[hint:When do you need to print with the printer door opened] +text = When do you need to print with the printer door opened?\nDid you know that opening the printer door can reduce the probability of extruder/hotend clogging when printing lower temperature filament with a higher enclosure temperature? More info about this in the Wiki. [hint:Avoid warping] -text = Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping. +text = Avoid warping\nDid you know that when printing materials that are prone to warping such as ABS, appropriately increasing the heatbed temperature can reduce the probability of warping? #[hint:] #text = diff --git a/resources/images/im_all_plates_failed.svg b/resources/images/im_all_plates_failed.svg new file mode 100644 index 0000000000..8e309718ea --- /dev/null +++ b/resources/images/im_all_plates_failed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_failed_dark.svg b/resources/images/im_all_plates_failed_dark.svg new file mode 100644 index 0000000000..a4b89edd4d --- /dev/null +++ b/resources/images/im_all_plates_failed_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_idle.svg b/resources/images/im_all_plates_idle.svg new file mode 100644 index 0000000000..92719b0c0a --- /dev/null +++ b/resources/images/im_all_plates_idle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_idle_dark.svg b/resources/images/im_all_plates_idle_dark.svg new file mode 100644 index 0000000000..e153c7daeb --- /dev/null +++ b/resources/images/im_all_plates_idle_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_slicing.svg b/resources/images/im_all_plates_slicing.svg new file mode 100644 index 0000000000..7836f33827 --- /dev/null +++ b/resources/images/im_all_plates_slicing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_slicing_dark.svg b/resources/images/im_all_plates_slicing_dark.svg new file mode 100644 index 0000000000..1c60259a46 --- /dev/null +++ b/resources/images/im_all_plates_slicing_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_stats.svg b/resources/images/im_all_plates_stats.svg index 711b59ee02..eba03a0741 100644 --- a/resources/images/im_all_plates_stats.svg +++ b/resources/images/im_all_plates_stats.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/im_all_plates_stats_dark.svg b/resources/images/im_all_plates_stats_dark.svg new file mode 100644 index 0000000000..814856a30e --- /dev/null +++ b/resources/images/im_all_plates_stats_dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_all_plates_stats_transparent.svg b/resources/images/im_all_plates_stats_transparent.svg deleted file mode 100644 index 8254696754..0000000000 --- a/resources/images/im_all_plates_stats_transparent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/images/im_code.svg b/resources/images/im_code.svg new file mode 100644 index 0000000000..6af2404040 --- /dev/null +++ b/resources/images/im_code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_fold.svg b/resources/images/im_fold.svg index f4f3286dd4..9bd106e0d7 100644 --- a/resources/images/im_fold.svg +++ b/resources/images/im_fold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/im_hidden.svg b/resources/images/im_hidden.svg new file mode 100644 index 0000000000..4393cc3b11 --- /dev/null +++ b/resources/images/im_hidden.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/im_unfold.svg b/resources/images/im_unfold.svg index 45bcec6fbb..1d59d9cc41 100644 --- a/resources/images/im_unfold.svg +++ b/resources/images/im_unfold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/im_visible.svg b/resources/images/im_visible.svg new file mode 100644 index 0000000000..6c8c53b18a --- /dev/null +++ b/resources/images/im_visible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_2dhoneycomb.svg b/resources/images/param_2dhoneycomb.svg new file mode 100644 index 0000000000..5c9112b38a --- /dev/null +++ b/resources/images/param_2dhoneycomb.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resources/images/param_crosszag.svg b/resources/images/param_crosszag.svg new file mode 100644 index 0000000000..0a21257317 --- /dev/null +++ b/resources/images/param_crosszag.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/images/param_dependencies_presets.svg b/resources/images/param_dependencies_presets.svg new file mode 100644 index 0000000000..603c52b79f --- /dev/null +++ b/resources/images/param_dependencies_presets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_dependencies_printers.svg b/resources/images/param_dependencies_printers.svg new file mode 100644 index 0000000000..0646f4730c --- /dev/null +++ b/resources/images/param_dependencies_printers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_filament_for_features.svg b/resources/images/param_filament_for_features.svg new file mode 100644 index 0000000000..741e0bbb59 --- /dev/null +++ b/resources/images/param_filament_for_features.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_flow_ratio_and_pressure_advance.svg b/resources/images/param_flow_ratio_and_pressure_advance.svg new file mode 100644 index 0000000000..2e6d20c588 --- /dev/null +++ b/resources/images/param_flow_ratio_and_pressure_advance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_lockedzag.svg b/resources/images/param_lockedzag.svg new file mode 100644 index 0000000000..55e87074ff --- /dev/null +++ b/resources/images/param_lockedzag.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/images/param_ooze_prevention.svg b/resources/images/param_ooze_prevention.svg new file mode 100644 index 0000000000..1b8a686dae --- /dev/null +++ b/resources/images/param_ooze_prevention.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_toolchange_multi_extruder.svg b/resources/images/param_toolchange_multi_extruder.svg new file mode 100644 index 0000000000..172511d7f2 --- /dev/null +++ b/resources/images/param_toolchange_multi_extruder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/images/param_tpmsd.svg b/resources/images/param_tpmsd.svg new file mode 100644 index 0000000000..247f77c6d2 --- /dev/null +++ b/resources/images/param_tpmsd.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/images/param_zigzag.svg b/resources/images/param_zigzag.svg new file mode 100644 index 0000000000..f762e99c9a --- /dev/null +++ b/resources/images/param_zigzag.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/images/pellets.svg b/resources/images/pellets.svg index 047de45dfe..047480da65 100644 --- a/resources/images/pellets.svg +++ b/resources/images/pellets.svg @@ -1,48 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_move_front.svg b/resources/images/plate_move_front.svg index be453c9482..6138677a0e 100644 --- a/resources/images/plate_move_front.svg +++ b/resources/images/plate_move_front.svg @@ -1,74 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_move_front_dark.svg b/resources/images/plate_move_front_dark.svg index ee7c1ac9c4..a7e397e0db 100644 --- a/resources/images/plate_move_front_dark.svg +++ b/resources/images/plate_move_front_dark.svg @@ -1,74 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_move_front_hover.svg b/resources/images/plate_move_front_hover.svg index 02f81ab0d5..d9b3193695 100644 --- a/resources/images/plate_move_front_hover.svg +++ b/resources/images/plate_move_front_hover.svg @@ -1,74 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_move_front_hover_dark.svg b/resources/images/plate_move_front_hover_dark.svg index 7d76f25021..c875a31f03 100644 --- a/resources/images/plate_move_front_hover_dark.svg +++ b/resources/images/plate_move_front_hover_dark.svg @@ -1,74 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/images/plate_name_edit.svg b/resources/images/plate_name_edit.svg index 54a607d222..c7ecc2f1af 100644 --- a/resources/images/plate_name_edit.svg +++ b/resources/images/plate_name_edit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit_dark.svg b/resources/images/plate_name_edit_dark.svg index 729cb18431..5207d63a86 100644 --- a/resources/images/plate_name_edit_dark.svg +++ b/resources/images/plate_name_edit_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit_hover.svg b/resources/images/plate_name_edit_hover.svg index 66befdaebd..eb8dd62d4a 100644 --- a/resources/images/plate_name_edit_hover.svg +++ b/resources/images/plate_name_edit_hover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/plate_name_edit_hover_dark.svg b/resources/images/plate_name_edit_hover_dark.svg index 0382c829ff..c6d417a258 100644 --- a/resources/images/plate_name_edit_hover_dark.svg +++ b/resources/images/plate_name_edit_hover_dark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/radio_disabled.svg b/resources/images/radio_disabled.svg new file mode 100644 index 0000000000..0a34e179b9 --- /dev/null +++ b/resources/images/radio_disabled.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/images/radio_off_hover.svg b/resources/images/radio_off_hover.svg new file mode 100644 index 0000000000..3f4fefd912 --- /dev/null +++ b/resources/images/radio_off_hover.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/images/radio_on_hover.svg b/resources/images/radio_on_hover.svg new file mode 100644 index 0000000000..2c6fcae18a --- /dev/null +++ b/resources/images/radio_on_hover.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/images/search.svg b/resources/images/search.svg index 931ce8143a..9e015b1c15 100644 --- a/resources/images/search.svg +++ b/resources/images/search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/images/step_mesh_info.svg b/resources/images/step_mesh_info.svg new file mode 100644 index 0000000000..28f840853a --- /dev/null +++ b/resources/images/step_mesh_info.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/resources/images/toolbar_reset_zero.svg b/resources/images/toolbar_reset_zero.svg new file mode 100644 index 0000000000..35c7469ab6 --- /dev/null +++ b/resources/images/toolbar_reset_zero.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/resources/images/toolbar_reset_zero_hover.svg b/resources/images/toolbar_reset_zero_hover.svg new file mode 100644 index 0000000000..b2b03a214f --- /dev/null +++ b/resources/images/toolbar_reset_zero_hover.svg @@ -0,0 +1,4 @@ + + + + diff --git a/resources/profiles/Anker/Anker M5 All-Metal Hot End_cover.png b/resources/profiles/Anker/Anker M5 All-Metal Hot End_cover.png index 926c389c3e..1b80961a5d 100644 Binary files a/resources/profiles/Anker/Anker M5 All-Metal Hot End_cover.png and b/resources/profiles/Anker/Anker M5 All-Metal Hot End_cover.png differ diff --git a/resources/profiles/Anker/Anker M5C_cover.png b/resources/profiles/Anker/Anker M5C_cover.png index 7e0e9d5302..ba1e24e36b 100644 Binary files a/resources/profiles/Anker/Anker M5C_cover.png and b/resources/profiles/Anker/Anker M5C_cover.png differ diff --git a/resources/profiles/Anker/Anker M5_cover.png b/resources/profiles/Anker/Anker M5_cover.png index ff58b6a89c..0c2d271f68 100644 Binary files a/resources/profiles/Anker/Anker M5_cover.png and b/resources/profiles/Anker/Anker M5_cover.png differ diff --git a/resources/profiles/Anker/machine/fdm_marlin_common.json b/resources/profiles/Anker/machine/fdm_marlin_common.json index 0a4782a64d..da182401ac 100644 --- a/resources/profiles/Anker/machine/fdm_marlin_common.json +++ b/resources/profiles/Anker/machine/fdm_marlin_common.json @@ -6,8 +6,8 @@ "instantiation": "false", "gcode_flavor": "marlin2", "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n", - "machine_start_gcode": "M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 S150 ; Set hotend temp to 150 degrees to prevent ooze\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home", + "machine_start_gcode": "M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 S150 ; Set hotend temp to 150 degrees to prevent ooze\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home\n;LAYER_COUNT:{total_layer_count}", "machine_end_gcode": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM18", "change_filament_gcode": "M600", "machine_pause_gcode": "M601" -} \ No newline at end of file +} diff --git a/resources/profiles/Anycubic/Anycubic Kobra S1_cover.png b/resources/profiles/Anycubic/Anycubic Kobra S1_cover.png index c84e2cb4cf..e9712d0393 100644 Binary files a/resources/profiles/Anycubic/Anycubic Kobra S1_cover.png and b/resources/profiles/Anycubic/Anycubic Kobra S1_cover.png differ diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 6ea28a67a2..9ac95694b3 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "01.10.00.35", + "version": "02.00.00.53", "force_update": "0", "description": "the initial version of BBL configurations", "machine_model_list": [ @@ -1165,6 +1165,26 @@ "name": "Bambu ASA @BBL A1 0.4 nozzle", "sub_path": "filament/Bambu ASA @BBL A1 0.4 nozzle.json" }, + { + "name": "FusRock ABS-GF @base", + "sub_path": "filament/FusRock/FusRock ABS-GF @base.json" + }, + { + "name": "FusRock ABS-GF @BBL P1P", + "sub_path": "filament/FusRock/FusRock ABS-GF @BBL P1P.json" + }, + { + "name": "FusRock ABS-GF @BBL H2D", + "sub_path": "filament/FusRock/FusRock ABS-GF @BBL H2D.json" + }, + { + "name": "FusRock ABS-GF @BBL A1", + "sub_path": "filament/FusRock/FusRock ABS-GF @BBL A1.json" + }, + { + "name": "FusRock ABS-GF @BBL X1C", + "sub_path": "filament/FusRock/FusRock ABS-GF @BBL X1C.json" + }, { "name": "Bambu ASA @BBL A1 0.6 nozzle", "sub_path": "filament/Bambu ASA @BBL A1 0.6 nozzle.json" diff --git a/resources/profiles/BBL/Bambu Lab A1 mini_cover.png b/resources/profiles/BBL/Bambu Lab A1 mini_cover.png index f224e40b89..2f47295bea 100644 Binary files a/resources/profiles/BBL/Bambu Lab A1 mini_cover.png and b/resources/profiles/BBL/Bambu Lab A1 mini_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab A1_cover.png b/resources/profiles/BBL/Bambu Lab A1_cover.png index 93f7121ace..84fad5940b 100644 Binary files a/resources/profiles/BBL/Bambu Lab A1_cover.png and b/resources/profiles/BBL/Bambu Lab A1_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab P1P_cover.png b/resources/profiles/BBL/Bambu Lab P1P_cover.png index af349701d8..42805c0ce0 100644 Binary files a/resources/profiles/BBL/Bambu Lab P1P_cover.png and b/resources/profiles/BBL/Bambu Lab P1P_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab P1S_cover.png b/resources/profiles/BBL/Bambu Lab P1S_cover.png index 38ec69bb85..857f7ecb81 100644 Binary files a/resources/profiles/BBL/Bambu Lab P1S_cover.png and b/resources/profiles/BBL/Bambu Lab P1S_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png b/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png index eab8a6d5c6..156528f313 100644 Binary files a/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png and b/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X1E_cover.png b/resources/profiles/BBL/Bambu Lab X1E_cover.png index 1daaf9c3a9..c163c154ba 100644 Binary files a/resources/profiles/BBL/Bambu Lab X1E_cover.png and b/resources/profiles/BBL/Bambu Lab X1E_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X1_cover.png b/resources/profiles/BBL/Bambu Lab X1_cover.png index 5655a9f83c..b8275094f2 100644 Binary files a/resources/profiles/BBL/Bambu Lab X1_cover.png and b/resources/profiles/BBL/Bambu Lab X1_cover.png differ diff --git a/resources/profiles/BBL/bbl-3dp-A1M.stl b/resources/profiles/BBL/bbl-3dp-A1M.stl index ccdc7982e0..55f1d21896 100644 Binary files a/resources/profiles/BBL/bbl-3dp-A1M.stl and b/resources/profiles/BBL/bbl-3dp-A1M.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-H2D.stl b/resources/profiles/BBL/bbl-3dp-H2D.stl new file mode 100644 index 0000000000..151303d573 Binary files /dev/null and b/resources/profiles/BBL/bbl-3dp-H2D.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-X1.stl b/resources/profiles/BBL/bbl-3dp-X1.stl index 6823cdb229..d142afcbf4 100644 Binary files a/resources/profiles/BBL/bbl-3dp-X1.stl and b/resources/profiles/BBL/bbl-3dp-X1.stl differ diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json new file mode 100644 index 0000000000..b0a7f99b42 --- /dev/null +++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json @@ -0,0 +1,20 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @BBL A1", + "inherits": "FusRock ABS-GF @base", + "from": "system", + "setting_id": "GFSR00_01", + "instantiation": "true", + "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing FusRock. \n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json new file mode 100644 index 0000000000..75b802ef86 --- /dev/null +++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json @@ -0,0 +1,106 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @BBL H2D", + "inherits": "FusRock ABS-GF @base", + "from": "system", + "setting_id": "GFSR00_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.92", + "0.92" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P1 ; set airduct mode to heating mode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json new file mode 100644 index 0000000000..1e82554a8d --- /dev/null +++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json @@ -0,0 +1,19 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @BBL P1P", + "inherits": "FusRock ABS-GF @base", + "from": "system", + "setting_id": "GFSR00_04", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json new file mode 100644 index 0000000000..493c4c6c3e --- /dev/null +++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @BBL X1C", + "inherits": "FusRock ABS-GF @base", + "from": "system", + "setting_id": "GFSR00_05", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json new file mode 100644 index 0000000000..b53c36d1b1 --- /dev/null +++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json @@ -0,0 +1,161 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @base", + "inherits": "fdm_filament_common", + "from": "system", + "filament_id": "GFR00", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).", + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_type": [ + "ABS-GF" + ], + "filament_vendor": [ + "FusRock" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_density": [ + "1.08" + ], + "filament_cost": [ + "13" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "cool_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "supertack_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "eng_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "hot_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "textured_plate_temp": [ + "105" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature": [ + "270" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_min_speed": [ + "10" + ], + "fan_cooling_layer_time": [ + "12" + ], + "fan_max_speed": [ + "30" + ], + "slow_down_layer_time": [ + "4" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_min_speed": [ + "20" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "100%" + ], + "overhang_fan_speed": [ + "30" + ], + "pre_start_fan_time": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "activate_air_filtration": [ + "1" + ], + "during_print_exhaust_fan_speed": [ + "30" + ], + "complete_print_exhaust_fan_speed": [ + "10" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_z_hop": [ + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "filament_retraction_speed": [ + "30" + ], + "filament_deretraction_speed": [ + "0" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + "filament_retract_when_changing_layer": [ + "0" + ], + "filament_wipe": [ + "0" + ], + "filament_wipe_distance": [ + "2" + ], + "filament_retract_before_wipe": [ + "100%" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing us FusRock.\n*This setting may not be able to adapt to all models. In some cases, you need to modify and adjust the parameters by yourself to improve the printing effect.\n*FusRock 3D printing filaments are intended for general-purpose printing and have been tested under standard conditions. However, the performance and safety of printed objects are affected by multiple factors, including printing parameters, model design, usage environment, and the specific application.\n*By using FusRock materials, the user acknowledges and agrees to independently evaluate whether the printed parts are suitable for their intended use, and assumes all associated risks.\n*FusRock shall not be held liable for any damage, injury, or loss that may result from the use of printed products made with our materials, including but not limited to structural failure, functional defects, or safety hazards under actual usage conditions.Before applying printed parts in any critical, functional, or commercial context, thorough testing must be conducted. Except for the certifications explicitly stated for specific FusRock materials, our products are not certified for medical, aerospace, or life-support applications.\n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。\n*此设置不一定能够适配所有模型,存在部分情况下需要您自行修改调整参数来提升打印效果。\n*FusRock 3D打印耗材适用于通用打印用途,已在标准条件下进行测试。然而,打印成品的性能与安全性受多种因素影响,包括打印参数、模型设计、使用环境及实际用途。\n*使用FusRock材料即表示用户已知悉并同意,自行评估打印件是否适用于其具体应用,并承担由此产生的全部风险。\n*FusRock对使用本公司耗材打印的产品在实际应用中可能导致的任何损害、伤害或损失不承担任何责任,包括但不限于结构失效、功能异常或使用环境中的安全隐患。在将打印件应用于关键、功能性或商业性场景前,请务必进行充分测试。除FusRock已标明材料所获得的各项认证资质外,FusRock产品未取得医疗、航天或生命支持系统认证资质。", + "impact_strength_z":["5.3"] +} diff --git a/resources/profiles/BBL/filament/Generic SBS @base.json b/resources/profiles/BBL/filament/Generic SBS @base.json index dffe348812..32c6a1f9c1 100644 --- a/resources/profiles/BBL/filament/Generic SBS @base.json +++ b/resources/profiles/BBL/filament/Generic SBS @base.json @@ -3,7 +3,7 @@ "name": "Generic SBS @base", "inherits": "fdm_filament_sbs", "from": "system", - "filament_id": "GFL99", + "filament_id": "GFLSBS99", "instantiation": "false", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/BBL/filament/Generic SBS.json b/resources/profiles/BBL/filament/Generic SBS.json index 4309d0407a..539626eb81 100644 --- a/resources/profiles/BBL/filament/Generic SBS.json +++ b/resources/profiles/BBL/filament/Generic SBS.json @@ -3,7 +3,8 @@ "name": "Generic SBS", "inherits": "Generic SBS @base", "from": "system", - "setting_id": "GFSL99", + "setting_id": "BFLSBS99-1", + "filament_id": "BFLSBS99", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/process/fdm_process_common.json b/resources/profiles/BBL/process/fdm_process_common.json index 9b99ec1b28..f4c9efb184 100644 --- a/resources/profiles/BBL/process/fdm_process_common.json +++ b/resources/profiles/BBL/process/fdm_process_common.json @@ -71,5 +71,8 @@ "compatible_printers": [], "smooth_coefficient": "80", "overhang_totally_speed": "19", - "scarf_angle_threshold": "155" + "scarf_angle_threshold": "155", + "infill_shift_step": "0.4", + "infill_rotate_step": "0", + "symmetric_infill_y_axis": "0" } \ No newline at end of file diff --git a/resources/profiles/CONSTRUCT3D/Construct 1 XL_cover.png b/resources/profiles/CONSTRUCT3D/Construct 1 XL_cover.png index 143da3eb34..c8d7cb8d07 100644 Binary files a/resources/profiles/CONSTRUCT3D/Construct 1 XL_cover.png and b/resources/profiles/CONSTRUCT3D/Construct 1 XL_cover.png differ diff --git a/resources/profiles/CONSTRUCT3D/Construct 1_cover.png b/resources/profiles/CONSTRUCT3D/Construct 1_cover.png index 22426a3730..3b44476d47 100644 Binary files a/resources/profiles/CONSTRUCT3D/Construct 1_cover.png and b/resources/profiles/CONSTRUCT3D/Construct 1_cover.png differ diff --git a/resources/profiles/Co Print/machine/fdm_machine_common.json b/resources/profiles/Co Print/machine/fdm_machine_common.json index a24474d89b..e3a9150160 100644 --- a/resources/profiles/Co Print/machine/fdm_machine_common.json +++ b/resources/profiles/Co Print/machine/fdm_machine_common.json @@ -105,6 +105,8 @@ "retraction_speed": [ "60" ], + "machine_load_filament_time": "9.75", + "machine_unload_filament_time": "9.75", "single_extruder_multi_material": "1", "wipe": [ "1" diff --git a/resources/profiles/CoLiDo.json b/resources/profiles/CoLiDo.json new file mode 100644 index 0000000000..de2e1e312a --- /dev/null +++ b/resources/profiles/CoLiDo.json @@ -0,0 +1,284 @@ +{ + "name": "CoLiDo", + "version": "02.01.01.00", + "force_update": "0", + "description": "CoLiDo configurations", + "machine_model_list": [ + { + "name": "CoLiDo DIY 4.0", + "sub_path": "machine/CoLiDo DIY 4.0.json" + }, + { + "name": "CoLiDo X16", + "sub_path": "machine/CoLiDo X16.json" + }, + { + "name": "CoLiDo 160 V2", + "sub_path": "machine/CoLiDo 160 V2.json" + }, + { + "name": "CoLiDo SR1", + "sub_path": "machine/CoLiDo SR1.json" + }, + { + "name": "CoLiDo DIY 4.0 V2", + "sub_path": "machine/CoLiDo DIY 4.0 V2.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + }, + { + "name": "fdm_process_colido_common", + "sub_path": "process/fdm_process_colido_common.json" + }, + { + "name": "fdm_process_colidodiy40_common", + "sub_path": "process/fdm_process_colidodiy40_common.json" + }, + { + "name": "0.08mm Extra Fine @CoLiDo DIY 4.0", + "sub_path": "process/0.08mm Extra Fine @CoLiDo DIY 4.0.json" + }, + { + "name": "0.12mm Fine @CoLiDo DIY 4.0", + "sub_path": "process/0.12mm Fine @CoLiDo DIY 4.0.json" + }, + { + "name": "0.15mm Optimal @CoLiDo DIY 4.0", + "sub_path": "process/0.15mm Optimal @CoLiDo DIY 4.0.json" + }, + { + "name": "0.20mm Standard @CoLiDo DIY 4.0", + "sub_path": "process/0.20mm Standard @CoLiDo DIY 4.0.json" + }, + { + "name": "0.24mm Draft @CoLiDo DIY 4.0", + "sub_path": "process/0.24mm Draft @CoLiDo DIY 4.0.json" + }, + { + "name": "0.28mm Extra Draft @CoLiDo DIY 4.0", + "sub_path": "process/0.28mm Extra Draft @CoLiDo DIY 4.0.json" + } + + , + { + "name": "fdm_process_colidox16_common", + "sub_path": "process/fdm_process_colidox16_common.json" + }, + { + "name": "0.08mm Extra Fine @CoLiDo X16", + "sub_path": "process/0.08mm Extra Fine @CoLiDo X16.json" + }, + { + "name": "0.12mm Fine @CoLiDo X16", + "sub_path": "process/0.12mm Fine @CoLiDo X16.json" + }, + { + "name": "0.15mm Optimal @CoLiDo X16", + "sub_path": "process/0.15mm Optimal @CoLiDo X16.json" + }, + { + "name": "0.20mm Standard @CoLiDo X16", + "sub_path": "process/0.20mm Standard @CoLiDo X16.json" + }, + { + "name": "0.24mm Draft @CoLiDo X16", + "sub_path": "process/0.24mm Draft @CoLiDo X16.json" + }, + { + "name": "0.28mm Extra Draft @CoLiDo X16", + "sub_path": "process/0.28mm Extra Draft @CoLiDo X16.json" + } + + , + { + "name": "fdm_process_colido160v2_common", + "sub_path": "process/fdm_process_colido160v2_common.json" + }, + { + "name": "0.08mm Extra Fine @CoLiDo 160 V2", + "sub_path": "process/0.08mm Extra Fine @CoLiDo 160 V2.json" + }, + { + "name": "0.12mm Fine @CoLiDo 160 V2", + "sub_path": "process/0.12mm Fine @CoLiDo 160 V2.json" + }, + { + "name": "0.15mm Optimal @CoLiDo 160 V2", + "sub_path": "process/0.15mm Optimal @CoLiDo 160 V2.json" + }, + { + "name": "0.20mm Standard @CoLiDo 160 V2", + "sub_path": "process/0.20mm Standard @CoLiDo 160 V2.json" + }, + { + "name": "0.24mm Draft @CoLiDo 160 V2", + "sub_path": "process/0.24mm Draft @CoLiDo 160 V2.json" + }, + { + "name": "0.28mm Extra Draft @CoLiDo 160 V2", + "sub_path": "process/0.28mm Extra Draft @CoLiDo 160 V2.json" + } + + , + { + "name": "fdm_process_colidosr1_common", + "sub_path": "process/fdm_process_colidosr1_common.json" + }, + { + "name": "0.08mm Extra Fine @CoLiDo SR1", + "sub_path": "process/0.08mm Extra Fine @CoLiDo SR1.json" + }, + { + "name": "0.12mm Fine @CoLiDo SR1", + "sub_path": "process/0.12mm Fine @CoLiDo SR1.json" + }, + { + "name": "0.15mm Optimal @CoLiDo SR1", + "sub_path": "process/0.15mm Optimal @CoLiDo SR1.json" + }, + { + "name": "0.16mm Optimal @CoLiDo SR1", + "sub_path": "process/0.16mm Optimal @CoLiDo SR1.json" + }, + { + "name": "0.20mm Standard @CoLiDo SR1", + "sub_path": "process/0.20mm Standard @CoLiDo SR1.json" + }, + { + "name": "0.24mm Draft @CoLiDo SR1", + "sub_path": "process/0.24mm Draft @CoLiDo SR1.json" + }, + { + "name": "0.28mm Extra Draft @CoLiDo SR1", + "sub_path": "process/0.28mm Extra Draft @CoLiDo SR1.json" + }, + { + "name": "0.32mm Standard @CoLiDo SR1", + "sub_path": "process/0.32mm Standard @CoLiDo SR1.json" + } + + , + { + "name": "fdm_process_colidodiy40v2_common", + "sub_path": "process/fdm_process_colidodiy40v2_common.json" + }, + { + "name": "0.20mm Standard @CoLiDo DIY 4.0 V2", + "sub_path": "process/0.20mm Standard @CoLiDo DIY 4.0 V2.json" + } + ], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + }, + { + "name": "fdm_filament_pet", + "sub_path": "filament/fdm_filament_pet.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "fdm_filament_tpu", + "sub_path": "filament/fdm_filament_tpu.json" + }, + { + "name": "fdm_filament_abs", + "sub_path": "filament/fdm_filament_abs.json" + }, + { + "name": "CoLiDo Generic PETG @CoLiDo DIY 4.0", + "sub_path": "filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json" + }, + { + "name": "CoLiDo Generic PLA @CoLiDo DIY 4.0", + "sub_path": "filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json" + }, + { + "name": "CoLiDo Generic TPU @CoLiDo DIY 4.0", + "sub_path": "filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json" + }, + { + "name": "CoLiDo Generic ABS @CoLiDo DIY 4.0", + "sub_path": "filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json" + } + + , + { + "name": "CoLiDo Generic PETG @CoLiDo X16", + "sub_path": "filament/CoLiDo Generic PETG @CoLiDo X16.json" + }, + { + "name": "CoLiDo Generic PLA @CoLiDo X16", + "sub_path": "filament/CoLiDo Generic PLA @CoLiDo X16.json" + }, + { + "name": "CoLiDo Generic TPU @CoLiDo X16", + "sub_path": "filament/CoLiDo Generic TPU @CoLiDo X16.json" + }, + { + "name": "CoLiDo Generic ABS @CoLiDo X16", + "sub_path": "filament/CoLiDo Generic ABS @CoLiDo X16.json" + } + + , + { + "name": "CoLiDo PETG @CoLiDo SR1", + "sub_path": "filament/CoLiDo PETG @CoLiDo SR1.json" + }, + { + "name": "CoLiDo PLA @CoLiDo SR1", + "sub_path": "filament/CoLiDo PLA @CoLiDo SR1.json" + }, + { + "name": "CoLiDo PLA Silk @CoLiDo SR1", + "sub_path": "filament/CoLiDo PLA Silk @CoLiDo SR1.json" + }, + { + "name": "CoLiDo ABS @CoLiDo SR1", + "sub_path": "filament/CoLiDo ABS @CoLiDo SR1.json" + } + + , + { + "name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2", + "sub_path": "filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "fdm_klipper_common", + "sub_path": "machine/fdm_klipper_common.json" + }, + { + "name": "CoLiDo DIY 4.0 0.4 nozzle", + "sub_path": "machine/CoLiDo DIY 4.0 0.4 nozzle.json" + }, + { + "name": "CoLiDo X16 0.4 nozzle", + "sub_path": "machine/CoLiDo X16 0.4 nozzle.json" + }, + { + "name": "CoLiDo 160 V2 0.4 nozzle", + "sub_path": "machine/CoLiDo 160 V2 0.4 nozzle.json" + }, + { + "name": "CoLiDo SR1 0.4 nozzle", + "sub_path": "machine/CoLiDo SR1 0.4 nozzle.json" + }, + { + "name": "CoLiDo DIY 4.0 V2 0.4 nozzle", + "sub_path": "machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json" + } + ] +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png b/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png new file mode 100644 index 0000000000..10a84148c7 Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png differ diff --git a/resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png b/resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png new file mode 100644 index 0000000000..7e3620b2fd Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png differ diff --git a/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png b/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png new file mode 100644 index 0000000000..fa008d81c5 Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png differ diff --git a/resources/profiles/CoLiDo/CoLiDo SR1_cover.png b/resources/profiles/CoLiDo/CoLiDo SR1_cover.png new file mode 100644 index 0000000000..7c5aa0d309 Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo SR1_cover.png differ diff --git a/resources/profiles/CoLiDo/CoLiDo X16_cover.png b/resources/profiles/CoLiDo/CoLiDo X16_cover.png new file mode 100644 index 0000000000..71af74c95e Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo X16_cover.png differ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json new file mode 100644 index 0000000000..1f15fdfa0d --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json @@ -0,0 +1,47 @@ +{ + "type": "filament", + "filament_id": "GFB99", + "setting_id": "GFSB99_06", + "name": "CoLiDo ABS @CoLiDo SR1", + "from": "system", + "instantiation": "true", + "filament_vendor": [ + "CoLiDo" + ], + "compatible_printers": [ + "CoLiDo SR1 0.4 nozzle" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_settings_id": [ + "CoLiDo ABS @CoLiDo SR1" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "fdm_filament_abs", + "is_custom_defined": "0", + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "version": "2.2.0.4", + "filament_flow_ratio": [ + "0.926" + ], + "filament_max_volumetric_speed": [ + "12" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..0d134907e5 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "filament_id": "GFB99", + "setting_id": "GFSB99", + "name": "CoLiDo Generic ABS @CoLiDo DIY 4.0", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "fan_max_speed": [ + "80" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "CoLiDo" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "CoLiDo DIY 4.0 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json new file mode 100644 index 0000000000..8050821df8 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "filament_id": "GFB99", + "setting_id": "GFSB99_05", + "name": "CoLiDo Generic ABS @CoLiDo X16", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "CoLiDo" + ], + "hot_plate_temp": [ + "95" + ], + "hot_plate_temp_initial_layer": [ + "95" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "CoLiDo X16 0.4 nozzle", + "CoLiDo 160 V2 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..c5fa575e92 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "filament_id": "GFG99", + "setting_id": "GFSG99", + "name": "CoLiDo Generic PETG @CoLiDo DIY 4.0", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_vendor": [ + "CoLiDo" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "CoLiDo DIY 4.0 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json new file mode 100644 index 0000000000..424775aeb2 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "filament_id": "GFG99", + "setting_id": "GFSG99_05", + "name": "CoLiDo Generic PETG @CoLiDo X16", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_vendor": [ + "CoLiDo" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "CoLiDo X16 0.4 nozzle", + "CoLiDo 160 V2 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..ab6122fd47 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "filament_id": "GFA99", + "setting_id": "GFSA99", + "name": "CoLiDo Generic PLA @CoLiDo DIY 4.0", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "1.05" + ], + "filament_max_volumetric_speed": [ + "19.5" + ], + "filament_vendor": [ + "CoLiDo" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature": [ + "220" + ], + "pressure_advance": [ + "0.03686" + ], + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "CoLiDo DIY 4.0 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json new file mode 100644 index 0000000000..b227f211cd --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFA99", + "setting_id": "GFSA99_05", + "name": "CoLiDo Generic PLA @CoLiDo X16", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "80" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_vendor": [ + "CoLiDo" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "nozzle_temperature": [ + "200" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "compatible_printers": [ + "CoLiDo X16 0.4 nozzle", + "CoLiDo 160 V2 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..f2a45d6a03 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "filament_id": "GFU99", + "setting_id": "GFSU99", + "name": "CoLiDo Generic TPU @CoLiDo DIY 4.0", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_tpu", + "filament_density": [ + "1.22" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_vendor": [ + "CoLiDo" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature": [ + "230" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "CoLiDo DIY 4.0 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json new file mode 100644 index 0000000000..ebb49ba46a --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "filament_id": "GFU99", + "setting_id": "GFSU99_05", + "name": "CoLiDo Generic TPU @CoLiDo X16", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_tpu", + "filament_density": [ + "1.22" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_vendor": [ + "CoLiDo" + ], + "hot_plate_temp": [ + "40" + ], + "hot_plate_temp_initial_layer": [ + "40" + ], + "nozzle_temperature_initial_layer": [ + "180" + ], + "nozzle_temperature": [ + "180" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "CoLiDo X16 0.4 nozzle", + "CoLiDo 160 V2 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json new file mode 100644 index 0000000000..33ae5e39b9 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "filament_id": "GFG99", + "setting_id": "GFSG99_06", + "name": "CoLiDo PETG @CoLiDo SR1", + "from": "system", + "instantiation": "true", + "filament_vendor": [ + "CoLiDo" + ], + "compatible_printers": [ + "CoLiDo SR1 0.4 nozzle" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_flow_ratio": [ + "0.9975" + ], + "filament_retraction_length": [ + "0.5" + ], + "filament_settings_id": [ + "CoLiDo PETG @CoLiDo SR1" + ], + "inherits": "fdm_filament_pet", + "is_custom_defined": "0", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pressure_advance": [ + "0.028" + ], + "version": "2.2.0.4", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json new file mode 100644 index 0000000000..c76108a43e --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "filament_id": "GFA99", + "setting_id": "GFSA99_06", + "name": "CoLiDo PLA @CoLiDo SR1", + "from": "system", + "instantiation": "true", + "filament_vendor": [ + "CoLiDo" + ], + "compatible_printers": [ + "CoLiDo SR1 0.4 nozzle" + ], + "additional_cooling_fan_speed": [ + "100" + ], + "filament_deretraction_speed": [ + "40" + ], + "filament_flow_ratio": [ + "1.05" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "CoLiDo PLA @CoLiDo SR1" + ], + "inherits": "fdm_filament_pla", + "is_custom_defined": "0", + "nozzle_temperature_range_high": [ + "250" + ], + "slow_down_layer_time": [ + "8" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json new file mode 100644 index 0000000000..982733f7cf --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "filament_id": "GFA99", + "setting_id": "GFSA99_06", + "name": "CoLiDo PLA Silk @CoLiDo SR1", + "from": "system", + "instantiation": "true", + "filament_vendor": [ + "CoLiDo" + ], + "compatible_printers": [ + "CoLiDo SR1 0.4 nozzle" + ], + "additional_cooling_fan_speed": [ + "100" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_deretraction_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.84" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "CoLiDo PLA Silk @CoLiDo SR1" + ], + "inherits": "fdm_filament_pla", + "is_custom_defined": "0", + "nozzle_temperature_range_high": [ + "250" + ], + "pressure_advance": [ + "0.026" + ], + "slow_down_layer_time": [ + "8" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json new file mode 100644 index 0000000000..e3574cab54 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "filament_id": "GFA99", + "setting_id": "GFSA99_07", + "name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2", + "from": "system", + "instantiation": "true", + "filament_vendor": [ + "CoLiDo" + ], + "compatible_printers": [ + "CoLiDo DIY 4.0 V2 0.4 nozzle" + ], + "additional_cooling_fan_speed": [ + "100" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_deretraction_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.967" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_settings_id": [ + "CoLiDo PLA+ @CoLiDo DIY 4.0 V2" + ], + "inherits": "fdm_filament_pla", + "is_custom_defined": "0", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "pressure_advance": [ + "0.024" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_abs.json b/resources/profiles/CoLiDo/filament/fdm_filament_abs.json new file mode 100644 index 0000000000..1832014c3f --- /dev/null +++ b/resources/profiles/CoLiDo/filament/fdm_filament_abs.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_abs", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "0" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ABS" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "3" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ] +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_common.json b/resources/profiles/CoLiDo/filament/fdm_filament_common.json new file mode 100644 index 0000000000..8f33d4d9f5 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/fdm_filament_common.json @@ -0,0 +1,147 @@ +{ + "type": "filament", + "name": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "0" + ], + "cool_plate_temp" : [ + "60" + ], + "eng_plate_temp" : [ + "60" + ], + "hot_plate_temp" : [ + "60" + ], + "textured_plate_temp" : [ + "60" + ], + "cool_plate_temp_initial_layer" : [ + "60" + ], + "eng_plate_temp_initial_layer" : [ + "60" + ], + "hot_plate_temp_initial_layer" : [ + "60" + ], + "textured_plate_temp_initial_layer" : [ + "60" + ], + "overhang_fan_threshold": [ + "95%" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_flow_ratio": [ + "1" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "fan_cooling_layer_time": [ + "60" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "0" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_max_volumetric_speed": [ + "0" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "bed_type": [ + "Cool Plate" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "full_fan_speed_layer": [ + "0" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "35" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; Filament gcode\n" + ], + "nozzle_temperature": [ + "200" + ], + "temperature_vitrification": [ + "100" + ] +} diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_pet.json b/resources/profiles/CoLiDo/filament/fdm_filament_pet.json new file mode 100644 index 0000000000..4a5f6085ca --- /dev/null +++ b/resources/profiles/CoLiDo/filament/fdm_filament_pet.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "name": "fdm_filament_pet", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_type": [ + "PETG" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_pla.json b/resources/profiles/CoLiDo/filament/fdm_filament_pla.json new file mode 100644 index 0000000000..c2fb97ed10 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/fdm_filament_pla.json @@ -0,0 +1,244 @@ +{ + "type": "filament", + "name": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cooling_final_speed": [ + "3.4" + ], + "filament_cooling_initial_speed": [ + "2.2" + ], + "filament_cooling_moves": [ + "4" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_load_time": [ + "0" + ], + "filament_loading_speed": [ + "28" + ], + "filament_loading_speed_start": [ + "3" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "10" + ], + "filament_multitool_ramming_volume": [ + "10" + ], + "filament_ramming_parameters": [ + "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_unload_time": [ + "0" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "160" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ] +} diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_tpu.json b/resources/profiles/CoLiDo/filament/fdm_filament_tpu.json new file mode 100644 index 0000000000..8ec0a4fec3 --- /dev/null +++ b/resources/profiles/CoLiDo/filament/fdm_filament_tpu.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "name": "fdm_filament_tpu", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_type": [ + "TPU" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json new file mode 100644 index 0000000000..ec52174eb5 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json @@ -0,0 +1,223 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "CoLiDo 160 V2 0.4 nozzle", + "from": "system", + "instantiation": "true", + "printer_model": "CoLiDo 160 V2", + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "0", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "5", + "cooling_tube_retraction": "91.5", + "default_filament_profile": [ + "CoLiDo Generic PLA @CoLiDo X16" + ], + "default_print_profile": "0.20mm Standard @CoLiDo X16", + "deretraction_speed": [ + "30" + ], + "disable_m73": "1", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "1", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "-2", + "extruder_clearance_height_to_lid": "88", + "extruder_clearance_height_to_rod": "27", + "extruder_clearance_radius": "65", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "-5x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "gcode_flavor": "marlin2", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "mks", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < max_print_height} Z{z_offset+min(max_layer_z+30, max_print_height)}{endif} E-3.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y0 F3000 ; park print head\nM84 ; disable motors", + "machine_load_filament_time": "0", + "machine_max_acceleration_e": [ + "5000" + ], + "machine_max_acceleration_extruding": [ + "1000" + ], + "machine_max_acceleration_retracting": [ + "1000" + ], + "machine_max_acceleration_travel": [ + "0", + "0" + ], + "machine_max_acceleration_x": [ + "1000" + ], + "machine_max_acceleration_y": [ + "1000" + ], + "machine_max_acceleration_z": [ + "500" + ], + "machine_max_jerk_e": [ + "5" + ], + "machine_max_jerk_x": [ + "8" + ], + "machine_max_jerk_y": [ + "8" + ], + "machine_max_jerk_z": [ + "0.4" + ], + "machine_max_speed_e": [ + "60" + ], + "machine_max_speed_x": [ + "300" + ], + "machine_max_speed_y": [ + "300" + ], + "machine_max_speed_z": [ + "10" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "machine_pause_gcode": "", + "machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nG28 ; home all\nG1 X3.0 Y3.0 Z0.3 F1000 ; move print head up\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 E2 F300\nG1 Y153.0 E10.2 F1000\nG1 X4 E0.05 F1000\nG0 Y152.5\nG1 E0.2\nG1 X3.5 E0.05\nG1 Y3 E10.2 F1000\nG92 E0.0", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "0", + "manual_filament_change": "0", + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "brass", + "nozzle_volume": "0", + "parking_pos_retraction": "92", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "print_host": "", + "print_host_webui": "", + "printable_area": [ + "0x0", + "160x0", + "160x160", + "0x160" + ], + "printable_height": "180", + "printer_notes": "", + "printer_settings_id": "CoLiDo X16 0.4 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_apikey": "", + "printhost_authorization_type": "key", + "printhost_cafile": "", + "printhost_password": "", + "printhost_port": "", + "printhost_ssl_ignore_revoke": "0", + "printhost_user": "", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "1", + "retract_before_wipe": [ + "70%" + ], + "retract_length_toolchange": [ + "1" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "0" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.2" + ], + "retraction_minimum_travel": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "0", + "template_custom_gcode": "", + "thumbnails": "", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "0" + ], + "wipe_distance": [ + "1" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json new file mode 100644 index 0000000000..8b4614ff23 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "CoLiDo 160 V2", + "model_id": "CoLiDo_160_V2", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "CoLiDo", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "CoLiDo Generic PLA @CoLiDo X16;CoLiDo Generic ABS @CoLiDo X16;CoLiDo Generic PETG @CoLiDo X16;CoLiDo Generic TPU @CoLiDo X16" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json new file mode 100644 index 0000000000..bb4604d196 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json @@ -0,0 +1,234 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "CoLiDo DIY 4.0 0.4 nozzle", + "from": "system", + "instantiation": "true", + "printer_model": "CoLiDo DIY 4.0", + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "0", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "235,220", + "bed_mesh_min": "46,20", + "bed_mesh_probe_distance": "37.8,40", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "5", + "cooling_tube_retraction": "91.5", + "default_filament_profile": [ + "CoLiDo Generic PLA @CoLiDo DIY 4.0" + ], + "default_print_profile": "0.20mm Standard @CoLiDo DIY 4.0", + "deretraction_speed": [ + "20" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "1", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "-2", + "extruder_clearance_height_to_lid": "135", + "extruder_clearance_height_to_rod": "35", + "extruder_clearance_radius": "40", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "-32x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\n", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "PRINT_END\n", + "machine_load_filament_time": "0", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "12", + "12" + ], + "machine_max_jerk_y": [ + "12", + "12" + ], + "machine_max_jerk_z": [ + "0.2", + "0.4" + ], + "machine_max_speed_e": [ + "25", + "25" + ], + "machine_max_speed_x": [ + "800", + "200" + ], + "machine_max_speed_y": [ + "800", + "200" + ], + "machine_max_speed_z": [ + "12", + "12" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "PAUSE", + "machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single] SPEED_WALL=[initial_layer_speed]\n; You can use following code instead if your PRINT_START macro support Chamber and print area bedmesh\n", + "machine_unload_filament_time": "0", + "manual_filament_change": "0", + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "brass", + "nozzle_volume": "0", + "parking_pos_retraction": "92", + "preferred_orientation": "0", + "print_host": "", + "print_host_webui": "", + "printable_area": [ + "0x0", + "225x0", + "225x220", + "0x220" + ], + "printable_height": "230", + "printer_notes": "", + "printer_settings_id": "CoLiDo DIY 4.0 0.4 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_apikey": "", + "printhost_authorization_type": "key", + "printhost_cafile": "", + "printhost_password": "", + "printhost_port": "", + "printhost_ssl_ignore_revoke": "0", + "printhost_user": "", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "1", + "retract_before_wipe": [ + "70%" + ], + "retract_length_toolchange": [ + "2" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "0.8" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "20" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "0", + "template_custom_gcode": "", + "thumbnails": "48x48/PNG, 300x300/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "1" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json new file mode 100644 index 0000000000..8a58226995 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "machine", + "setting_id": "GM003", + "name": "CoLiDo DIY 4.0 V2 0.4 nozzle", + "from": "system", + "instantiation": "true", + "printer_model": "CoLiDo DIY 4.0 V2", + "default_filament_profile": [ + "CoLiDo PLA+ @CoLiDo DIY 4.0 V2" + ], + "default_print_profile": "0.20mm Standard @CoLiDo DIY 4.0 V2", + "printer_settings_id": "CoLiDo DIY 4.0 V2 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "auxiliary_fan": "1", + "deretraction_speed": [ + "50" + ], + "inherits": "fdm_klipper_common", + "is_custom_defined": "0", + "print_host": "192.168.0.30", + "printer_variant": "0.4", + "printable_area": [ + "0x0", + "230x0", + "230x230", + "0x230" + ], + "printable_height": "255", + "retraction_length": [ + "0.4" + ], + "version": "2.1.1.0", + "z_hop_types": [ + "Auto Lift" + ] +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json new file mode 100644 index 0000000000..f794c8015d --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "CoLiDo DIY 4.0 V2", + "model_id": "CoLiDo_DIY_4_0_V2", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "CoLiDo", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..a7ae257b59 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "CoLiDo DIY 4.0", + "model_id": "CoLiDo_DIY_4_0", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "CoLiDo", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "CoLiDo Generic PLA @CoLiDo DIY 4.0;CoLiDo Generic ABS @CoLiDo DIY 4.0;CoLiDo Generic PETG @CoLiDo DIY 4.0;CoLiDo Generic TPU @CoLiDo DIY 4.0" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json new file mode 100644 index 0000000000..80897b1c79 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "machine", + "setting_id": "GM002", + "name": "CoLiDo SR1 0.4 nozzle", + "from": "system", + "instantiation": "true", + "printer_model": "CoLiDo SR1", + "default_filament_profile": [ + "CoLiDo PLA @CoLiDo SR1" + ], + "default_print_profile": "0.20mm Standard @CoLiDo SR1", + "printer_settings_id": "CoLiDo SR1 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "auxiliary_fan": "1", + "deretraction_speed": [ + "50" + ], + "inherits": "fdm_klipper_common", + "is_custom_defined": "0", + "print_host": "192.168.1.224", + "printer_variant": "0.4", + "printable_area": [ + "0x0", + "220x0", + "220x220", + "0x220" + ], + "printable_height": "251", + "retraction_length": [ + "0.4" + ], + "version": "2.1.1.0", + "z_hop_types": [ + "Auto Lift" + ] +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo SR1.json b/resources/profiles/CoLiDo/machine/CoLiDo SR1.json new file mode 100644 index 0000000000..563a875975 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo SR1.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "CoLiDo SR1", + "model_id": "CoLiDo_SR1", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "CoLiDo", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "CoLiDo PLA @CoLiDo SR1;CoLiDo ABS @CoLiDo SR1;CoLiDo PETG @CoLiDo SR1;CoLiDo PLA Silk @CoLiDo SR1" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json new file mode 100644 index 0000000000..4e570cdc39 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json @@ -0,0 +1,223 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "CoLiDo X16 0.4 nozzle", + "from": "system", + "instantiation": "true", + "printer_model": "CoLiDo X16", + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "0", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "5", + "cooling_tube_retraction": "91.5", + "default_filament_profile": [ + "CoLiDo Generic PLA @CoLiDo X16" + ], + "default_print_profile": "0.20mm Standard @CoLiDo X16", + "deretraction_speed": [ + "30" + ], + "disable_m73": "1", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "1", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "-2", + "extruder_clearance_height_to_lid": "88", + "extruder_clearance_height_to_rod": "27", + "extruder_clearance_radius": "65", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "-5x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "gcode_flavor": "marlin2", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "mks", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < max_print_height} Z{z_offset+min(max_layer_z+30, max_print_height)}{endif} E-3.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y0 F3000 ; park print head\nM84 ; disable motors", + "machine_load_filament_time": "0", + "machine_max_acceleration_e": [ + "5000" + ], + "machine_max_acceleration_extruding": [ + "1000" + ], + "machine_max_acceleration_retracting": [ + "1000" + ], + "machine_max_acceleration_travel": [ + "0", + "0" + ], + "machine_max_acceleration_x": [ + "1000" + ], + "machine_max_acceleration_y": [ + "1000" + ], + "machine_max_acceleration_z": [ + "500" + ], + "machine_max_jerk_e": [ + "5" + ], + "machine_max_jerk_x": [ + "8" + ], + "machine_max_jerk_y": [ + "8" + ], + "machine_max_jerk_z": [ + "0.4" + ], + "machine_max_speed_e": [ + "60" + ], + "machine_max_speed_x": [ + "300" + ], + "machine_max_speed_y": [ + "300" + ], + "machine_max_speed_z": [ + "10" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "machine_pause_gcode": "", + "machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nG28 ; home all\nG1 X3.0 Y3.0 Z0.3 F1000 ; move print head up\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 E2 F300\nG1 Y153.0 E10.2 F1000\nG1 X4 E0.05 F1000\nG0 Y152.5\nG1 E0.2\nG1 X3.5 E0.05\nG1 Y3 E10.2 F1000\nG92 E0.0", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "0", + "manual_filament_change": "0", + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "brass", + "nozzle_volume": "0", + "parking_pos_retraction": "92", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "print_host": "", + "print_host_webui": "", + "printable_area": [ + "0x0", + "160x0", + "160x160", + "0x160" + ], + "printable_height": "180", + "printer_notes": "", + "printer_settings_id": "CoLiDo X16 0.4 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_apikey": "", + "printhost_authorization_type": "key", + "printhost_cafile": "", + "printhost_password": "", + "printhost_port": "", + "printhost_ssl_ignore_revoke": "0", + "printhost_user": "", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "1", + "retract_before_wipe": [ + "70%" + ], + "retract_length_toolchange": [ + "1" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "0" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.2" + ], + "retraction_minimum_travel": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "0", + "template_custom_gcode": "", + "thumbnails": "", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "0" + ], + "wipe_distance": [ + "1" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/CoLiDo/machine/CoLiDo X16.json b/resources/profiles/CoLiDo/machine/CoLiDo X16.json new file mode 100644 index 0000000000..866c50f0c9 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/CoLiDo X16.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "CoLiDo X16", + "model_id": "CoLiDo_X16", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "CoLiDo", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "CoLiDo Generic PLA @CoLiDo X16;CoLiDo Generic ABS @CoLiDo X16;CoLiDo Generic PETG @CoLiDo X16;CoLiDo Generic TPU @CoLiDo X16" +} diff --git a/resources/profiles/CoLiDo/machine/fdm_klipper_common.json b/resources/profiles/CoLiDo/machine/fdm_klipper_common.json new file mode 100644 index 0000000000..af307008b9 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/fdm_klipper_common.json @@ -0,0 +1,60 @@ +{ + "type": "machine", + "name": "fdm_klipper_common", + "from": "system", + "instantiation": "false", + "inherits": "fdm_machine_common", + "gcode_flavor": "klipper", + "machine_max_acceleration_e": ["5000", "5000"], + "machine_max_acceleration_extruding": ["20000", "20000"], + "machine_max_acceleration_retracting": ["5000", "5000"], + "machine_max_acceleration_travel": ["20000", "20000"], + "machine_max_acceleration_x": ["20000", "20000"], + "machine_max_acceleration_y": ["20000", "20000"], + "machine_max_acceleration_z": ["500", "200"], + "machine_max_speed_e": ["25", "25"], + "machine_max_speed_x": ["500", "200"], + "machine_max_speed_y": ["500", "200"], + "machine_max_speed_z": ["12", "12"], + "machine_max_jerk_e": ["2.5", "2.5"], + "machine_max_jerk_x": ["9", "9"], + "machine_max_jerk_y": ["9", "9"], + "machine_max_jerk_z": ["0.2", "0.4"], + "machine_min_extruding_rate": ["0", "0"], + "machine_min_travel_rate": ["0", "0"], + "max_layer_height": ["0.32"], + "min_layer_height": ["0.08"], + "printable_height": "250", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "printer_settings_id": "", + "printer_technology": "FFF", + "printer_variant": "0.4", + "retraction_minimum_travel": ["1"], + "retract_before_wipe": ["70%"], + "retract_when_changing_layer": ["1"], + "retraction_length": ["0.8"], + "retract_length_toolchange": ["2"], + "z_hop": ["0.4"], + "retract_restart_extra": ["0"], + "retract_restart_extra_toolchange": ["0"], + "retraction_speed": ["30"], + "deretraction_speed": ["30"], + "z_hop_types": "Normal Lift", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "wipe": ["1"], + "default_filament_profile": ["My Generic ABS"], + "default_print_profile": "0.20mm Standard @MyKlipper", + "bed_exclude_area": ["0x0"], + "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\n", + "machine_end_gcode": "PRINT_END", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_pause_gcode": "PAUSE", + "scan_first_layer": "0", + "nozzle_type": "undefine", + "auxiliary_fan": "0" +} diff --git a/resources/profiles/CoLiDo/machine/fdm_machine_common.json b/resources/profiles/CoLiDo/machine/fdm_machine_common.json new file mode 100644 index 0000000000..5785f57b19 --- /dev/null +++ b/resources/profiles/CoLiDo/machine/fdm_machine_common.json @@ -0,0 +1,119 @@ +{ + "type": "machine", + "name": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "printer_technology": "FFF", + "deretraction_speed": [ + "40" + ], + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "gcode_flavor": "marlin", + "silent_mode": "0", + "machine_max_acceleration_e": [ + "5000" + ], + "machine_max_acceleration_extruding": [ + "10000" + ], + "machine_max_acceleration_retracting": [ + "1000" + ], + "machine_max_acceleration_x": [ + "10000" + ], + "machine_max_acceleration_y": [ + "10000" + ], + "machine_max_acceleration_z": [ + "500" + ], + "machine_max_speed_e": [ + "60" + ], + "machine_max_speed_x": [ + "500" + ], + "machine_max_speed_y": [ + "500" + ], + "machine_max_speed_z": [ + "10" + ], + "machine_max_jerk_e": [ + "5" + ], + "machine_max_jerk_x": [ + "8" + ], + "machine_max_jerk_y": [ + "8" + ], + "machine_max_jerk_z": [ + "0.4" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "printable_height": "250", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "nozzle_diameter": [ + "0.4" + ], + "printer_settings_id": "", + "printer_variant": "0.4", + "retraction_minimum_travel": [ + "2" + ], + "retract_before_wipe": [ + "70%" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "5" + ], + "retract_length_toolchange": [ + "1" + ], + "z_hop": [ + "0" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retraction_speed": [ + "60" + ], + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "wipe": [ + "1" + ], + "default_print_profile": "", + "machine_start_gcode": "G0 Z20 F9000\nG92 E0; G1 E-10 F1200\nG28\nM970 Q1 A10 B10 C130 K0\nM970 Q1 A10 B131 C250 K1\nM974 Q1 S1 P0\nM970 Q0 A10 B10 C130 H20 K0\nM970 Q0 A10 B131 C250 K1\nM974 Q0 S1 P0\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nG29 ;Home\nG90;\nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S205;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder \nG1 X110 Y110 Z2.0 F3000 ;Move Z Axis up", + "machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_pause_gcode": "M601" +} diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json new file mode 100644 index 0000000000..6ef9227c24 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.08mm Extra Fine @CoLiDo 160 V2", + "from": "system", + "inherits": "fdm_process_colido160v2_common", + "instantiation": "true", + "bottom_shell_layers": "7", + "layer_height": "0.08", + "top_shell_layers": "9" +} diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..8d8823cd3f --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.08mm Extra Fine @CoLiDo DIY 4.0", + "from": "system", + "inherits": "fdm_process_colidodiy40_common", + "instantiation": "true", + "bottom_shell_layers": "7", + "layer_height": "0.08", + "top_shell_layers": "9" +} diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json new file mode 100644 index 0000000000..6a241af5b7 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.08mm Extra Fine @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.08", + "bottom_shell_layers": "7", + "top_shell_layers": "9", + "support_top_z_distance": "0.08", + "support_bottom_z_distance": "0.08", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.08mm Extra Fine @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json new file mode 100644 index 0000000000..8fb49d404e --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.08mm Extra Fine @CoLiDo X16", + "from": "system", + "inherits": "fdm_process_colidox16_common", + "instantiation": "true", + "bottom_shell_layers": "7", + "layer_height": "0.08", + "top_shell_layers": "9" +} diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json new file mode 100644 index 0000000000..bbbcf787fa --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.12mm Fine @CoLiDo 160 V2", + "from": "system", + "inherits": "fdm_process_colido160v2_common", + "instantiation": "true", + "bottom_shell_layers": "5", + "layer_height": "0.12", + "top_shell_layers": "6" +} diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..465b7bd045 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @CoLiDo DIY 4.0", + "from": "system", + "inherits": "fdm_process_colidodiy40_common", + "instantiation": "true", + "bottom_shell_layers": "5", + "layer_height": "0.12", + "top_shell_layers": "6" +} diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json new file mode 100644 index 0000000000..283b8e9f1f --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.12mm Fine @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.12", + "bottom_shell_layers": "5", + "top_shell_layers": "6", + "support_top_z_distance": "0.08", + "support_bottom_z_distance": "0.08", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.12mm Fine @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json new file mode 100644 index 0000000000..ab2326334c --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.12mm Fine @CoLiDo X16", + "from": "system", + "inherits": "fdm_process_colidox16_common", + "instantiation": "true", + "bottom_shell_layers": "5", + "layer_height": "0.12", + "top_shell_layers": "6" +} diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json new file mode 100644 index 0000000000..10ddd8f740 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.15mm Optimal @CoLiDo 160 V2", + "from": "system", + "inherits": "fdm_process_colido160v2_common", + "instantiation": "true", + "bottom_shell_layers": "4", + "layer_height": "0.15", + "top_shell_layers": "5" +} diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..e328cc9ae3 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.15mm Optimal @CoLiDo DIY 4.0", + "from": "system", + "inherits": "fdm_process_colidodiy40_common", + "instantiation": "true", + "bottom_shell_layers": "4", + "layer_height": "0.15", + "top_shell_layers": "5" +} diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json new file mode 100644 index 0000000000..5c358cc135 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.15mm Optimal @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.15", + "bottom_shell_layers": "4", + "top_shell_layers": "5", + "support_top_z_distance": "0.15", + "support_bottom_z_distance": "0.15", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.15mm Optimal @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json new file mode 100644 index 0000000000..a360f16c55 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.15mm Optimal @CoLiDo X16", + "from": "system", + "inherits": "fdm_process_colidox16_common", + "instantiation": "true", + "bottom_shell_layers": "4", + "layer_height": "0.15", + "top_shell_layers": "5" +} diff --git a/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json new file mode 100644 index 0000000000..57e9dc1505 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.16mm Optimal @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.16", + "bottom_shell_layers": "4", + "top_shell_layers": "5", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.16mm Optimal @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json new file mode 100644 index 0000000000..3dd1ea40b1 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.20mm Standard @CoLiDo 160 V2", + "from": "system", + "inherits": "fdm_process_colido160v2_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.2", + "top_shell_layers": "4" +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json new file mode 100644 index 0000000000..9dfd74c0b0 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json @@ -0,0 +1,10 @@ +{ + "type": "process", + "setting_id": "GP007", + "name": "0.20mm Standard @CoLiDo DIY 4.0 V2", + "from": "system", + "inherits": "fdm_process_colidodiy40v2_common", + "instantiation": "true", + "layer_height": "0.2", + "print_settings_id": "0.20mm Standard @CoLiDo DIY 4.0 V2" +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..ddfad22433 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @CoLiDo DIY 4.0", + "from": "system", + "inherits": "fdm_process_colidodiy40_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.2", + "top_shell_layers": "4" +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json new file mode 100644 index 0000000000..e5164dfa36 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json @@ -0,0 +1,10 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.20mm Standard @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.2", + "print_settings_id": "0.20mm Standard @CoLiDo SR1" +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json new file mode 100644 index 0000000000..69da0f5920 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.20mm Standard @CoLiDo X16", + "from": "system", + "inherits": "fdm_process_colidox16_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.2", + "top_shell_layers": "4" +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json new file mode 100644 index 0000000000..5d33b79d42 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.24mm Draft @CoLiDo 160 V2", + "from": "system", + "inherits": "fdm_process_colido160v2_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.24", + "top_shell_layers": "4", + "top_surface_line_width": "0.45" +} diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..01a7a9661b --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @CoLiDo DIY 4.0", + "from": "system", + "inherits": "fdm_process_colidodiy40_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.24", + "top_shell_layers": "4", + "top_surface_line_width": "0.45" +} diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json new file mode 100644 index 0000000000..affd7b5da7 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json @@ -0,0 +1,19 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.24mm Draft @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.24", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.24mm Draft @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json new file mode 100644 index 0000000000..b7782cbf82 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.24mm Draft @CoLiDo X16", + "from": "system", + "inherits": "fdm_process_colidox16_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.24", + "top_shell_layers": "4", + "top_surface_line_width": "0.45" +} diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json new file mode 100644 index 0000000000..392cfac88f --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.28mm Extra Draft @CoLiDo 160 V2", + "from": "system", + "inherits": "fdm_process_colido160v2_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.28", + "top_shell_layers": "4", + "top_surface_line_width": "0.45" +} diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json new file mode 100644 index 0000000000..f6cf092073 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.28mm Extra Draft @CoLiDo DIY 4.0", + "from": "system", + "inherits": "fdm_process_colidodiy40_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.28", + "top_shell_layers": "4", + "top_surface_line_width": "0.45" +} diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json new file mode 100644 index 0000000000..7256ad541b --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.28mm Extra Draft @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.28", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.28mm Extra Draft @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json new file mode 100644 index 0000000000..5f068610f8 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "setting_id": "GP005", + "name": "0.28mm Extra Draft @CoLiDo X16", + "from": "system", + "inherits": "fdm_process_colidox16_common", + "instantiation": "true", + "bottom_shell_layers": "3", + "layer_height": "0.28", + "top_shell_layers": "4", + "top_surface_line_width": "0.45" +} diff --git a/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json new file mode 100644 index 0000000000..1ef273cc81 --- /dev/null +++ b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json @@ -0,0 +1,19 @@ +{ + "type": "process", + "setting_id": "GP006", + "name": "0.32mm Standard @CoLiDo SR1", + "from": "system", + "inherits": "fdm_process_colidosr1_common", + "instantiation": "true", + "layer_height": "0.32", + "support_top_z_distance": "0.24", + "support_bottom_z_distance": "0.24", + "initial_layer_print_height": "0.2", + "default_acceleration": "10000", + "enable_support": "1", + "is_custom_defined": "0", + "print_settings_id": "0.32mm Standard @CoLiDo SR1", + "support_style": "tree_hybrid", + "support_type": "tree(auto)", + "travel_speed": "300" +} diff --git a/resources/profiles/CoLiDo/process/fdm_process_colido160v2_common.json b/resources/profiles/CoLiDo/process/fdm_process_colido160v2_common.json new file mode 100644 index 0000000000..47925c8887 --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_colido160v2_common.json @@ -0,0 +1,10 @@ +{ + "type": "process", + "name": "fdm_process_colido160v2_common", + "inherits": "fdm_process_colidox16_common", + "from": "system", + "instantiation": "false", + "compatible_printers": [ + "CoLiDo 160 V2 0.4 nozzle" + ] +} diff --git a/resources/profiles/CoLiDo/process/fdm_process_colido_common.json b/resources/profiles/CoLiDo/process/fdm_process_colido_common.json new file mode 100644 index 0000000000..d364836edf --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_colido_common.json @@ -0,0 +1,74 @@ +{ + "type": "process", + "name": "fdm_process_colido_common", + "inherits": "fdm_process_common", + "from": "system", + "instantiation": "false", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + "enable_arc_fitting": "1", + "outer_wall_acceleration": "5000", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "internal_bridge_support_thickness": "0.8", + "initial_layer_acceleration": "500", + "initial_layer_line_width": "0.5", + "initial_layer_speed": "30", + "gap_infill_speed": "50", + "sparse_infill_speed": "250", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "layer_height": "0.2", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "only_one_wall_top": "1", + "inner_wall_speed": "150", + "seam_position": "aligned", + "skirt_height": "1", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_speed": "150", + "initial_layer_infill_speed": "60", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "default", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "support_interface_bottom_layers": "2", + "support_interface_spacing": "0.5", + "support_expansion": "0", + "support_base_pattern_spacing": "2.5", + "support_speed": "150", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_diameter": "2", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "max_bridge_length": "0", + "top_surface_pattern": "monotonicline", + "top_surface_acceleration": "2000", + "top_surface_speed": "200", + "top_shell_layers": "3", + "top_shell_thickness": "0.8", + "travel_speed": "500", + "enable_prime_tower": "1", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "35", + "wall_generator": "classic", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json new file mode 100644 index 0000000000..fbf7a8e1b5 --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json @@ -0,0 +1,291 @@ +{ + "type": "process", + "name": "fdm_process_colidodiy40_common", + "inherits": "fdm_process_colido_common", + "from": "system", + "instantiation": "false", + "accel_to_decel_enable": "0", + "accel_to_decel_factor": "50%", + "alternate_extra_wall": "0", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bottom_solid_infill_flow_ratio": "1", + "bottom_surface_pattern": "monotonic", + "bridge_acceleration": "50%", + "bridge_angle": "0", + "bridge_density": "100%", + "bridge_flow": "1", + "bridge_no_support": "0", + "bridge_speed": "50", + "brim_ears_detection_length": "1", + "brim_ears_max_angle": "125", + "brim_object_gap": "0.1", + "brim_type": "auto_brim", + "brim_width": "5", + "compatible_printers": [ + "CoLiDo DIY 4.0 0.4 nozzle" + ], + "compatible_printers_condition": "", + "counterbore_hole_bridging": "none", + "default_acceleration": "4000", + "default_jerk": "0", + "detect_narrow_internal_solid_infill": "1", + "detect_overhang_wall": "1", + "detect_thin_wall": "0", + "dont_filter_internal_bridges": "disabled", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.15", + "elefant_foot_compensation_layers": "1", + "enable_arc_fitting": "0", + "enable_overhang_speed": "1", + "enable_prime_tower": "0", + "enable_support": "0", + "enforce_support_layers": "0", + "ensure_vertical_shell_thickness": "ensure_all", + "exclude_object": "0", + "extra_perimeters_on_overhangs": "0", + "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", + "filter_out_gap_fill": "0", + "flush_into_infill": "0", + "flush_into_objects": "0", + "flush_into_support": "1", + "fuzzy_skin": "none", + "fuzzy_skin_first_layer": "0", + "fuzzy_skin_point_distance": "0.8", + "fuzzy_skin_thickness": "0.3", + "gap_fill_target": "nowhere", + "gap_infill_speed": "250", + "gcode_add_line_number": "0", + "gcode_comments": "0", + "gcode_label_objects": "1", + "hole_to_polyhole": "0", + "hole_to_polyhole_threshold": "0.01", + "hole_to_polyhole_twisted": "1", + "independent_support_layer_height": "1", + "infill_anchor": "400%", + "infill_anchor_max": "20", + "infill_combination": "0", + "infill_direction": "45", + "infill_jerk": "9", + "infill_wall_overlap": "15%", + "initial_layer_acceleration": "500", + "initial_layer_infill_speed": "105", + "initial_layer_jerk": "9", + "initial_layer_line_width": "0.45", + "initial_layer_min_bead_width": "85%", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "50", + "initial_layer_travel_speed": "100%", + "inner_wall_acceleration": "4000", + "inner_wall_jerk": "9", + "inner_wall_line_width": "0.4", + "inner_wall_speed": "300", + "interface_shells": "0", + "internal_bridge_flow": "1", + "internal_bridge_speed": "150%", + "internal_solid_infill_acceleration": "100%", + "internal_solid_infill_line_width": "0.4", + "internal_solid_infill_pattern": "monotonic", + "internal_solid_infill_speed": "250", + "ironing_angle": "-1", + "ironing_flow": "10%", + "ironing_pattern": "zig-zag", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "is_custom_defined": "0", + "is_infill_first": "0", + "layer_height": "0.2", + "line_width": "0.4", + "make_overhang_printable": "0", + "make_overhang_printable_angle": "55", + "make_overhang_printable_hole_size": "0", + "max_bridge_length": "10", + "max_travel_detour_distance": "0", + "max_volumetric_extrusion_rate_slope": "0", + "max_volumetric_extrusion_rate_slope_segment_length": "3", + "min_bead_width": "85%", + "min_feature_size": "25%", + "min_length_factor": "0.5", + "min_skirt_length": "0", + "min_width_top_surface": "300%", + "minimum_sparse_infill_area": "15", + "mmu_segmented_region_interlocking_depth": "0", + "mmu_segmented_region_max_width": "0", + "notes": "", + "only_one_wall_first_layer": "0", + "only_one_wall_top": "1", + "ooze_prevention": "0", + "outer_wall_acceleration": "2000", + "outer_wall_jerk": "9", + "outer_wall_line_width": "0.4", + "outer_wall_speed": "200", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "overhang_reverse": "0", + "overhang_reverse_internal_only": "0", + "overhang_reverse_threshold": "50%", + "overhang_speed_classic": "0", + "post_process": [], + "precise_outer_wall": "0", + "precise_z_height": "0", + "prime_tower_brim_width": "3", + "prime_tower_width": "35", + "prime_volume": "45", + "print_flow_ratio": "1", + "print_order": "default", + "print_sequence": "by layer", + "print_settings_id": "", + "raft_contact_distance": "0.1", + "raft_expansion": "1.5", + "raft_first_layer_density": "90%", + "raft_first_layer_expansion": "2", + "raft_layers": "0", + "reduce_crossing_wall": "0", + "reduce_infill_retraction": "1", + "resolution": "0.012", + "role_based_wipe_speed": "1", + "rotate_solid_infill_direction": "1", + "scarf_angle_threshold": "155", + "scarf_joint_flow_ratio": "1", + "scarf_joint_speed": "100%", + "scarf_overhang_threshold": "40%", + "seam_gap": "10%", + "seam_position": "aligned", + "seam_slope_conditional": "0", + "seam_slope_entire_loop": "0", + "seam_slope_inner_walls": "0", + "seam_slope_min_length": "20", + "seam_slope_start_height": "0", + "seam_slope_steps": "10", + "seam_slope_type": "none", + "single_extruder_multi_material_priming": "0", + "skirt_distance": "2", + "skirt_height": "1", + "skirt_loops": "0", + "skirt_speed": "50", + "slice_closing_radius": "0.049", + "slicing_mode": "regular", + "slow_down_layers": "0", + "slowdown_for_curled_perimeters": "0", + "small_area_infill_flow_compensation": "0", + "small_area_infill_flow_compensation_model": [ + "0,0", + "\n0.2,0.4444", + "\n0.4,0.6145", + "\n0.6,0.7059", + "\n0.8,0.7619", + "\n1.5,0.8571", + "\n2,0.8889", + "\n3,0.9231", + "\n5,0.9520", + "\n10,1" + ], + "small_perimeter_speed": "50%", + "small_perimeter_threshold": "0", + "solid_infill_direction": "45", + "solid_infill_filament": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_density": "15%", + "sparse_infill_filament": "1", + "sparse_infill_line_width": "0.4", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "270", + "spiral_mode": "0", + "spiral_mode_max_xy_smoothing": "200%", + "spiral_mode_smooth": "0", + "staggered_inner_seams": "0", + "standby_temperature_delta": "-5", + "support_angle": "0", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.2", + "support_critical_regions_only": "0", + "support_expansion": "0", + "support_filament": "0", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_loop_pattern": "0", + "support_interface_not_for_body": "1", + "support_interface_pattern": "auto", + "support_interface_spacing": "0.5", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.4", + "support_object_xy_distance": "0.35", + "support_on_build_plate_only": "0", + "support_remove_small_overhang": "1", + "support_speed": "150", + "support_style": "default", + "support_threshold_angle": "35", + "support_top_z_distance": "0.2", + "support_type": "tree(auto)", + "thick_bridges": "0", + "thick_internal_bridges": "1", + "timelapse_type": "0", + "top_bottom_infill_wall_overlap": "25%", + "top_shell_layers": "5", + "top_shell_thickness": "0.6", + "top_solid_infill_flow_ratio": "1", + "top_surface_acceleration": "2000", + "top_surface_jerk": "9", + "top_surface_line_width": "0.4", + "top_surface_pattern": "monotonicline", + "top_surface_speed": "200", + "travel_acceleration": "4000", + "travel_jerk": "12", + "travel_speed": "400", + "travel_speed_z": "0", + "tree_support_adaptive_layer_height": "1", + "tree_support_angle_slow": "25", + "tree_support_auto_brim": "1", + "tree_support_branch_angle": "45", + "tree_support_branch_angle_organic": "40", + "tree_support_branch_diameter": "2", + "tree_support_branch_diameter_angle": "5", + "tree_support_branch_diameter_double_wall": "3", + "tree_support_branch_diameter_organic": "2", + "tree_support_branch_distance": "5", + "tree_support_branch_distance_organic": "1", + "tree_support_brim_width": "3", + "tree_support_tip_diameter": "0.8", + "tree_support_top_rate": "30%", + "tree_support_wall_count": "0", + "version": "1.7.0.2", + "wall_direction": "auto", + "wall_distribution_count": "1", + "wall_filament": "1", + "wall_generator": "classic", + "wall_loops": "2", + "wall_sequence": "inner wall/outer wall", + "wall_transition_angle": "10", + "wall_transition_filter_deviation": "25%", + "wall_transition_length": "100%", + "wipe_before_external_loop": "0", + "wipe_on_loops": "0", + "wipe_speed": "80%", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "0", + "wipe_tower_extra_spacing": "100%", + "wipe_tower_extruder": "0", + "wipe_tower_max_purge_speed": "90", + "wipe_tower_no_sparse_layers": "0", + "wipe_tower_rotation_angle": "0", + "wiping_volumes_extruders": [ + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70" + ], + "xy_contour_compensation": "0", + "xy_hole_compensation": "0" +} diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidodiy40v2_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40v2_common.json new file mode 100644 index 0000000000..52300208e0 --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40v2_common.json @@ -0,0 +1,118 @@ +{ + "type": "process", + "name": "fdm_process_colidodiy40v2_common", + "inherits": "fdm_process_colido_common", + "from": "system", + "instantiation": "false", + "compatible_printers": [ + "CoLiDo DIY 4.0 V2 0.4 nozzle" + ], + "brim_type": "no_brim", + "default_acceleration": "10000", + "enable_support": "1", + "initial_layer_print_height": "0.25", + "internal_solid_infill_pattern": "zig-zag", + "is_custom_defined": "0", + "print_settings_id": "", + "seam_gap": "2%", + "sparse_infill_pattern": "grid", + "support_interface_bottom_layers": "4", + "support_interface_top_layers": "4", + "support_on_build_plate_only": "1", + "support_type": "tree(auto)", + "top_shell_layers": "3", + "travel_speed": "500", + "version": "2.1.1.0", + "wall_sequence": "outer wall/inner wall", + "xy_hole_compensation": "0.2", + "layer_height": "0.2", + "top_surface_acceleration": "3000", + "travel_acceleration": "7000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "3000", + "initial_layer_acceleration": "500", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "120", + "inner_wall_speed": "200", + "internal_solid_infill_speed": "200", + "top_surface_speed": "100", + "gap_infill_speed": "100", + "sparse_infill_speed": "200", + "exclude_object": "1", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + "enable_arc_fitting": "0", + "wall_infill_order": "inner wall/outer wall/infill", + "infill_direction": "45", + "sparse_infill_density": "15%", + "infill_combination": "0", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode", + "detect_overhang_wall": "1", + "slowdown_for_curled_perimeters": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "line_width": "110%", + "inner_wall_line_width": "110%", + "outer_wall_line_width": "100%", + "top_surface_line_width": "93.75%", + "sparse_infill_line_width": "110%", + "initial_layer_line_width": "120%", + "internal_solid_infill_line_width": "120%", + "support_line_width": "96%", + "wall_loops": "3", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "3", + "min_skirt_length": "4", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "resolution": "0.012", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "support_filament": "0", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_spacing": "0.5", + "support_interface_speed": "80", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2.5", + "support_speed": "150", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_angle": "30", + "tree_support_wall_count": "0", + "tree_support_with_infill": "0", + "detect_thin_wall": "0", + "top_surface_pattern": "monotonicline", + "top_shell_thickness": "0.8", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_contour_compensation": "0", + "bottom_shell_layers": "3", + "bridge_flow": "1" +} diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidosr1_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidosr1_common.json new file mode 100644 index 0000000000..741891d9a1 --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_colidosr1_common.json @@ -0,0 +1,117 @@ +{ + "type": "process", + "name": "fdm_process_colidosr1_common", + "inherits": "fdm_process_colido_common", + "from": "system", + "instantiation": "false", + "compatible_printers": [ + "CoLiDo SR1 0.4 nozzle" + ], + "brim_type": "no_brim", + "default_acceleration": "10000", + "enable_support": "1", + "initial_layer_print_height": "0.25", + "internal_solid_infill_pattern": "zig-zag", + "is_custom_defined": "0", + "print_settings_id": "", + "sparse_infill_pattern": "grid", + "support_interface_bottom_layers": "4", + "support_interface_top_layers": "4", + "support_on_build_plate_only": "1", + "support_type": "tree(auto)", + "top_shell_layers": "3", + "travel_speed": "300", + "version": "2.1.1.0", + "wall_sequence": "outer wall/inner wall", + "xy_hole_compensation": "0.25", + "layer_height": "0.2", + "top_surface_acceleration": "3000", + "travel_acceleration": "7000", + "inner_wall_acceleration": "5000", + "outer_wall_acceleration": "3000", + "initial_layer_acceleration": "500", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "120", + "inner_wall_speed": "200", + "internal_solid_infill_speed": "200", + "top_surface_speed": "100", + "gap_infill_speed": "100", + "sparse_infill_speed": "200", + "exclude_object": "1", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + "enable_arc_fitting": "0", + "wall_infill_order": "inner wall/outer wall/infill", + "infill_direction": "45", + "sparse_infill_density": "15%", + "infill_combination": "0", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode", + "detect_overhang_wall": "1", + "slowdown_for_curled_perimeters": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "line_width": "110%", + "inner_wall_line_width": "110%", + "outer_wall_line_width": "100%", + "top_surface_line_width": "93.75%", + "sparse_infill_line_width": "110%", + "initial_layer_line_width": "120%", + "internal_solid_infill_line_width": "120%", + "support_line_width": "96%", + "wall_loops": "3", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "3", + "min_skirt_length": "4", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "resolution": "0.012", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "support_filament": "0", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_spacing": "0.5", + "support_interface_speed": "80", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2.5", + "support_speed": "150", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_angle": "30", + "tree_support_wall_count": "0", + "tree_support_with_infill": "0", + "detect_thin_wall": "0", + "top_surface_pattern": "monotonicline", + "top_shell_thickness": "0.8", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_contour_compensation": "0", + "bottom_shell_layers": "3", + "bridge_flow": "1" +} diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json new file mode 100644 index 0000000000..2f764cb7df --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json @@ -0,0 +1,303 @@ +{ + "type": "process", + "name": "fdm_process_colidox16_common", + "inherits": "fdm_process_colido_common", + "from": "system", + "instantiation": "false", + "accel_to_decel_enable": "1", + "accel_to_decel_factor": "50%", + "alternate_extra_wall": "0", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bottom_solid_infill_flow_ratio": "1", + "bottom_surface_pattern": "monotonic", + "bridge_acceleration": "50%", + "bridge_angle": "0", + "bridge_density": "100%", + "bridge_flow": "1", + "bridge_no_support": "0", + "bridge_speed": "50", + "brim_ears_detection_length": "1", + "brim_ears_max_angle": "125", + "brim_object_gap": "0.1", + "brim_type": "auto_brim", + "brim_width": "5", + "compatible_printers": [ + "CoLiDo X16 0.4 nozzle" + ], + "compatible_printers_condition": "", + "counterbore_hole_bridging": "none", + "default_acceleration": "1000", + "default_jerk": "0", + "detect_narrow_internal_solid_infill": "1", + "detect_overhang_wall": "1", + "detect_thin_wall": "0", + "dont_filter_internal_bridges": "disabled", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.15", + "elefant_foot_compensation_layers": "1", + "enable_arc_fitting": "1", + "enable_overhang_speed": "1", + "enable_prime_tower": "0", + "enable_support": "0", + "enforce_support_layers": "0", + "ensure_vertical_shell_thickness": "ensure_all", + "exclude_object": "0", + "extra_perimeters_on_overhangs": "0", + "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", + "filter_out_gap_fill": "0", + "flush_into_infill": "0", + "flush_into_objects": "0", + "flush_into_support": "1", + "fuzzy_skin": "none", + "fuzzy_skin_first_layer": "0", + "fuzzy_skin_point_distance": "0.8", + "fuzzy_skin_thickness": "0.3", + "gap_fill_target": "nowhere", + "gap_infill_speed": "90", + "gcode_add_line_number": "0", + "gcode_comments": "0", + "gcode_label_objects": "1", + "hole_to_polyhole": "0", + "hole_to_polyhole_threshold": "0.01", + "hole_to_polyhole_twisted": "1", + "independent_support_layer_height": "1", + "infill_anchor": "400%", + "infill_anchor_max": "20", + "infill_combination": "0", + "infill_combination_max_layer_height": "100%", + "infill_direction": "45", + "infill_jerk": "9", + "infill_wall_overlap": "15%", + "initial_layer_acceleration": "500", + "initial_layer_infill_speed": "70", + "initial_layer_jerk": "9", + "initial_layer_line_width": "0.4", + "initial_layer_min_bead_width": "85%", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "45", + "initial_layer_travel_speed": "100%", + "inner_wall_acceleration": "1000", + "inner_wall_jerk": "9", + "inner_wall_line_width": "0.4", + "inner_wall_speed": "50", + "interface_shells": "0", + "interlocking_beam": "0", + "interlocking_beam_layer_count": "2", + "interlocking_beam_width": "0.8", + "interlocking_boundary_avoidance": "2", + "interlocking_depth": "2", + "interlocking_orientation": "22.5", + "internal_bridge_flow": "1", + "internal_bridge_speed": "150%", + "internal_solid_infill_acceleration": "100%", + "internal_solid_infill_line_width": "0.4", + "internal_solid_infill_pattern": "monotonic", + "internal_solid_infill_speed": "90", + "ironing_angle": "-1", + "ironing_flow": "10%", + "ironing_pattern": "zig-zag", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "is_custom_defined": "0", + "is_infill_first": "0", + "layer_height": "0.2", + "line_width": "0.4", + "make_overhang_printable": "0", + "make_overhang_printable_angle": "55", + "make_overhang_printable_hole_size": "0", + "max_bridge_length": "10", + "max_travel_detour_distance": "0", + "max_volumetric_extrusion_rate_slope": "0", + "max_volumetric_extrusion_rate_slope_segment_length": "3", + "min_bead_width": "85%", + "min_feature_size": "25%", + "min_length_factor": "0.5", + "min_skirt_length": "0", + "min_width_top_surface": "300%", + "minimum_sparse_infill_area": "15", + "mmu_segmented_region_interlocking_depth": "0", + "mmu_segmented_region_max_width": "0", + "notes": "", + "only_one_wall_first_layer": "0", + "only_one_wall_top": "1", + "ooze_prevention": "0", + "outer_wall_acceleration": "1000", + "outer_wall_jerk": "9", + "outer_wall_line_width": "0.4", + "outer_wall_speed": "15", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "overhang_reverse": "0", + "overhang_reverse_internal_only": "0", + "overhang_reverse_threshold": "50%", + "overhang_speed_classic": "0", + "post_process": [], + "precise_outer_wall": "0", + "precise_z_height": "0", + "preheat_steps": "1", + "preheat_time": "30", + "prime_tower_brim_width": "3", + "prime_tower_width": "35", + "prime_volume": "45", + "print_flow_ratio": "1", + "print_order": "default", + "print_sequence": "by layer", + "print_settings_id": "", + "raft_contact_distance": "0.1", + "raft_expansion": "1.5", + "raft_first_layer_density": "90%", + "raft_first_layer_expansion": "2", + "raft_layers": "0", + "reduce_crossing_wall": "0", + "reduce_infill_retraction": "1", + "resolution": "0.012", + "role_based_wipe_speed": "1", + "rotate_solid_infill_direction": "1", + "scarf_angle_threshold": "155", + "scarf_joint_flow_ratio": "1", + "scarf_joint_speed": "100%", + "scarf_overhang_threshold": "40%", + "seam_gap": "10%", + "seam_position": "aligned", + "seam_slope_conditional": "0", + "seam_slope_entire_loop": "0", + "seam_slope_inner_walls": "0", + "seam_slope_min_length": "20", + "seam_slope_start_height": "0", + "seam_slope_steps": "10", + "seam_slope_type": "none", + "single_extruder_multi_material_priming": "0", + "skirt_distance": "2", + "skirt_height": "1", + "skirt_loops": "0", + "skirt_speed": "50", + "skirt_start_angle": "-135", + "skirt_type": "combined", + "slice_closing_radius": "0.049", + "slicing_mode": "regular", + "slow_down_layers": "0", + "slowdown_for_curled_perimeters": "0", + "small_area_infill_flow_compensation": "0", + "small_area_infill_flow_compensation_model": [ + "0,0", + "\n0.2,0.4444", + "\n0.4,0.6145", + "\n0.6,0.7059", + "\n0.8,0.7619", + "\n1.5,0.8571", + "\n2,0.8889", + "\n3,0.9231", + "\n5,0.9520", + "\n10,1" + ], + "small_perimeter_speed": "50%", + "small_perimeter_threshold": "0", + "solid_infill_direction": "45", + "solid_infill_filament": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_density": "15%", + "sparse_infill_filament": "1", + "sparse_infill_line_width": "0.4", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "90", + "spiral_mode": "0", + "spiral_mode_max_xy_smoothing": "200%", + "spiral_mode_smooth": "0", + "staggered_inner_seams": "0", + "standby_temperature_delta": "-5", + "support_angle": "0", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.2", + "support_critical_regions_only": "0", + "support_expansion": "0", + "support_filament": "0", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_loop_pattern": "0", + "support_interface_not_for_body": "1", + "support_interface_pattern": "auto", + "support_interface_spacing": "0.5", + "support_interface_speed": "45", + "support_interface_top_layers": "2", + "support_line_width": "0.4", + "support_object_xy_distance": "0.35", + "support_on_build_plate_only": "0", + "support_remove_small_overhang": "1", + "support_speed": "45", + "support_style": "default", + "support_threshold_angle": "43", + "support_top_z_distance": "0.2", + "support_type": "tree(auto)", + "thick_bridges": "0", + "thick_internal_bridges": "1", + "timelapse_type": "0", + "top_bottom_infill_wall_overlap": "25%", + "top_shell_layers": "5", + "top_shell_thickness": "0.6", + "top_solid_infill_flow_ratio": "1", + "top_surface_acceleration": "1000", + "top_surface_jerk": "9", + "top_surface_line_width": "0.4", + "top_surface_pattern": "monotonicline", + "top_surface_speed": "70", + "travel_acceleration": "2000", + "travel_jerk": "12", + "travel_speed": "150", + "travel_speed_z": "0", + "tree_support_adaptive_layer_height": "1", + "tree_support_angle_slow": "25", + "tree_support_auto_brim": "1", + "tree_support_branch_angle": "35", + "tree_support_branch_angle_organic": "35", + "tree_support_branch_diameter": "2", + "tree_support_branch_diameter_angle": "5", + "tree_support_branch_diameter_double_wall": "3", + "tree_support_branch_diameter_organic": "2", + "tree_support_branch_distance": "5", + "tree_support_branch_distance_organic": "1", + "tree_support_brim_width": "3", + "tree_support_tip_diameter": "0.8", + "tree_support_top_rate": "30%", + "tree_support_wall_count": "2", + "version": "1.7.0.2", + "wall_direction": "auto", + "wall_distribution_count": "1", + "wall_filament": "1", + "wall_generator": "classic", + "wall_loops": "2", + "wall_sequence": "inner wall/outer wall", + "wall_transition_angle": "10", + "wall_transition_filter_deviation": "25%", + "wall_transition_length": "100%", + "wipe_before_external_loop": "0", + "wipe_on_loops": "0", + "wipe_speed": "80%", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "0", + "wipe_tower_extra_flow": "100%", + "wipe_tower_extra_spacing": "100%", + "wipe_tower_filament": "0", + "wipe_tower_max_purge_speed": "90", + "wipe_tower_no_sparse_layers": "0", + "wipe_tower_rotation_angle": "0", + "wiping_volumes_extruders": [ + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70" + ], + "xy_contour_compensation": "0", + "xy_hole_compensation": "0" +} diff --git a/resources/profiles/CoLiDo/process/fdm_process_common.json b/resources/profiles/CoLiDo/process/fdm_process_common.json new file mode 100644 index 0000000000..1723f8835e --- /dev/null +++ b/resources/profiles/CoLiDo/process/fdm_process_common.json @@ -0,0 +1,75 @@ +{ + "type": "process", + "name": "fdm_process_common", + "from": "system", + "instantiation": "false", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "bridge_flow": "0.95", + "bridge_speed": "25", + "brim_width": "5", + "print_sequence": "by layer", + "default_acceleration": "10000", + "bridge_no_support": "0", + "elefant_foot_compensation": "0.1", + "outer_wall_line_width": "0.42", + "ironing_inset": "0.21", + "outer_wall_speed": "120", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_line_width": "0.42", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "20", + "gap_infill_speed": "30", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "15%", + "sparse_infill_speed": "50", + "interface_shells": "0", + "detect_overhang_wall": "0", + "reduce_infill_retraction": "0", + "filename_format": "{input_filename_base}.gcode", + "wall_loops": "2", + "inner_wall_line_width": "0.45", + "inner_wall_speed": "40", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "nearest", + "skirt_distance": "2", + "skirt_height": "2", + "minimum_sparse_infill_area": "0", + "internal_solid_infill_line_width": "0.45", + "internal_solid_infill_speed": "40", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_filament": "0", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.15", + "support_interface_loop_pattern": "0", + "support_interface_top_layers": "2", + "support_interface_spacing": "0", + "support_interface_speed": "80", + "support_interface_pattern": "auto", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2", + "support_speed": "40", + "support_threshold_angle": "40", + "support_object_xy_distance": "0.5", + "detect_thin_wall": "0", + "top_surface_line_width": "0.42", + "top_surface_speed": "30", + "travel_speed": "400", + "enable_prime_tower": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [], + "smooth_coefficient": "80", + "overhang_totally_speed": "19", + "scarf_angle_threshold": "155" +} \ No newline at end of file diff --git a/resources/profiles/Creality/Creality Sermoon V1_cover.png b/resources/profiles/Creality/Creality Sermoon V1_cover.png index 4f5a07ef36..fc82ebfd97 100644 Binary files a/resources/profiles/Creality/Creality Sermoon V1_cover.png and b/resources/profiles/Creality/Creality Sermoon V1_cover.png differ diff --git a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json index bbe1418e70..4ba8421d58 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json @@ -131,6 +131,7 @@ "2" ], "single_extruder_multi_material": "1", + "machine_load_filament_time": "105", "machine_pause_gcode": "PAUSE", "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X260 Y180 F30000\nG1 Z{z_after_toolchange} F600", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json index 4540512e8d..734583b9d0 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json @@ -131,6 +131,7 @@ "2" ], "single_extruder_multi_material": "1", + "machine_load_filament_time": "105", "machine_pause_gcode": "PAUSE", "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X260 Y180 F30000\nG1 Z{z_after_toolchange} F600", "default_filament_profile": [ diff --git a/resources/profiles/Custom/orcaslicer_bed_texture.svg b/resources/profiles/Custom/orcaslicer_bed_texture.svg index b7eddc79a2..cf5e77f9c5 100644 --- a/resources/profiles/Custom/orcaslicer_bed_texture.svg +++ b/resources/profiles/Custom/orcaslicer_bed_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json index 5e624430f2..850152b519 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json @@ -50,7 +50,8 @@ ], "gcode_flavor": "klipper", "change_filament_gcode": "M600", + "layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}", "machine_pause_gcode": "M600", - "machine_start_gcode": ";;===== date: 20240520 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM190 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0", + "machine_start_gcode": ";;===== date: 20240520 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\nM106 P2 S255\nM190 S[bed_temperature_initial_layer_single]\nM106 P2 S0\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0", "machine_end_gcode": ";===== date: 20250109 =====================\nM400 ; wait for buffer to clear\nM140 S0 ;Turn-off bed\nM106 S255 ;Cooling nozzle\nM83\nG92 E0 ; zero the extruder\nG2 I1 J0 Z{max_layer_z+0.5} E-1 F3000 ; lower z a little\nG90\n{if max_layer_z > 50}G1 Z{min(max_layer_z+50, printable_height+0.5)} F20000{else}G1 Z100 F20000 {endif}; Move print head up \nM204 S5000\nM400\nM83\nG1 X202 F20000\nM400\nG1 Y250 F20000\nG1 Y264.5 F1200\nM400\nG92 E0\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM84 ;Disable all steppers" -} \ No newline at end of file +} diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json index 64abbad738..70e879e911 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json @@ -50,7 +50,8 @@ ], "gcode_flavor": "klipper", "change_filament_gcode": "M600", + "layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}", "machine_pause_gcode": "M600", - "machine_start_gcode": ";;===== date: 20240520 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM190 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0", + "machine_start_gcode": ";;===== date: 20240520 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\nM106 P2 S255\nM190 S[bed_temperature_initial_layer_single]\nM106 P2 S0\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0", "machine_end_gcode": ";===== date: 20250109 =====================\nM400 ; wait for buffer to clear\nM140 S0 ;Turn-off bed\nM106 S255 ;Cooling nozzle\nM83\nG92 E0 ; zero the extruder\nG2 I1 J0 Z{max_layer_z+0.5} E-1 F3000 ; lower z a little\nG90\n{if max_layer_z > 50}G1 Z{min(max_layer_z+50, printable_height+0.5)} F20000{else}G1 Z100 F20000 {endif}; Move print head up \nM204 S5000\nM400\nM83\nG1 X202 F20000\nM400\nG1 Y250 F20000\nG1 Y264.5 F1200\nM400\nG92 E0\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM84 ;Disable all steppers" -} \ No newline at end of file +} diff --git a/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json b/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json index 129aa8fcef..c13a1c221b 100644 --- a/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json +++ b/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json @@ -120,11 +120,11 @@ ], "default_filament_profile": [], "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", - "layer_change_gcode": ";LAYER:{layer_num+1}\n", + "layer_change_gcode": "", "machine_start_gcode": "", "machine_end_gcode": "", "change_filament_gcode": "", "purge_in_prime_tower": "0", "manual_filament_change": "1", "enable_filament_ramming": "0" -} \ No newline at end of file +} diff --git a/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json index cd35fa1ad7..ff7965e2e4 100644 --- a/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json @@ -5,7 +5,6 @@ "reduce_crossing_wall": "1", "bottom_shell_layers": "5", "outer_wall_speed": "120", - "print_flow_ratio": "0.95", "sparse_infill_density": "20%", "top_shell_layers": "6", "wall_loops": "6", diff --git a/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json index 7082721b6c..4fc80dc9bd 100644 --- a/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json @@ -5,7 +5,6 @@ "reduce_crossing_wall": "1", "bottom_shell_layers": "5", "outer_wall_speed": "120", - "print_flow_ratio": "0.95", "sparse_infill_density": "20%", "top_shell_layers": "6", "wall_loops": "6", diff --git a/resources/profiles/Elegoo/process/ECC/fdm_process_ecc.json b/resources/profiles/Elegoo/process/ECC/fdm_process_ecc.json index 9bc0e0f1c5..5dd70dfde4 100644 --- a/resources/profiles/Elegoo/process/ECC/fdm_process_ecc.json +++ b/resources/profiles/Elegoo/process/ECC/fdm_process_ecc.json @@ -88,6 +88,6 @@ "wipe_before_external_loop": "0", "exclude_object": "1", "wipe_speed": "100%", - "print_flow_ratio": "0.97", + "print_flow_ratio": "1.0", "wall_sequence": "inner wall/outer wall" } diff --git a/resources/profiles/Eryone.json b/resources/profiles/Eryone.json index f0c69ddda3..462d7049df 100644 --- a/resources/profiles/Eryone.json +++ b/resources/profiles/Eryone.json @@ -31,7 +31,80 @@ "sub_path": "process/0.24mm Standard @Thinker X400.json" } ], - "filament_list": [], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "Eryone Standard PLA", + "sub_path": "filament/Eryone Standard PLA.json" + }, + { + "name": "Eryone PLA", + "sub_path": "filament/Eryone PLA.json" + }, + { + "name": "Eryone PLA-CF", + "sub_path": "filament/Eryone PLA-CF.json" + }, + { + "name": "Eryone PA", + "sub_path": "filament/Eryone PA.json" + }, + { + "name": "Eryone PA-CF", + "sub_path": "filament/Eryone PA-CF.json" + }, + { + "name": "Eryone PA-GF", + "sub_path": "filament/Eryone PA-GF.json" + }, + { + "name": "Eryone PP", + "sub_path": "filament/Eryone PP.json" + }, + { + "name": "Eryone PP-CF", + "sub_path": "filament/Eryone PP-CF.json" + }, + { + "name": "Eryone ABS", + "sub_path": "filament/Eryone ABS.json" + }, + { + "name": "Eryone ABS-CF", + "sub_path": "filament/Eryone ABS-CF.json" + }, + { + "name": "Eryone PETG", + "sub_path": "filament/Eryone PETG.json" + }, + { + "name": "Eryone PETG-CF", + "sub_path": "filament/Eryone PETG-CF.json" + }, + { + "name": "Eryone ASA", + "sub_path": "filament/Eryone ASA.json" + }, + { + "name": "Eryone ASA-CF", + "sub_path": "filament/Eryone ASA-CF.json" + }, + { + "name": "Eryone Silk PLA", + "sub_path": "filament/Eryone Silk PLA.json" + }, + { + "name": "Eryone TPU", + "sub_path": "filament/Eryone TPU.json" + } + ], "machine_list": [ { "name": "fdm_machine_common", diff --git a/resources/profiles/Eryone/Thinker X400_cover.png b/resources/profiles/Eryone/Thinker X400_cover.png index 9c2985e6db..1c3432c1bf 100644 Binary files a/resources/profiles/Eryone/Thinker X400_cover.png and b/resources/profiles/Eryone/Thinker X400_cover.png differ diff --git a/resources/profiles/Eryone/filament/Eryone ABS-CF.json b/resources/profiles/Eryone/filament/Eryone ABS-CF.json new file mode 100644 index 0000000000..3532ca4445 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone ABS-CF.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "filament_id": "EFL81", + "setting_id": "EFSA11", + "name": "Eryone ABS-CF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_retraction_length": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_settings_id": [ + "Eryone ABS-CF" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_type": [ + "ABS-CF" + ], + "filament_vendor": [ + "Eryone" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "slow_down_layer_time": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "100" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone ABS.json b/resources/profiles/Eryone/filament/Eryone ABS.json new file mode 100644 index 0000000000..b9126190a8 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone ABS.json @@ -0,0 +1,111 @@ +{ + "type": "filament", + "filament_id": "EFL91", + "setting_id": "EFSA01", + "name": "Eryone ABS", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "70" + ], + "fan_min_speed": [ + "10" + ], + "filament_settings_id": [ + "Eryone ABS" + ], + "filament_density": [ + "1.04" + ], + "filament_end_gcode": [ + "; filament end gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0\n" + ], + "filament_type": [ + "ABS" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_vendor": [ + "Eryone" + ], + "hot_plate_temp": [ + "95" + ], + "hot_plate_temp_initial_layer": [ + "95" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "105" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone ASA-CF.json b/resources/profiles/Eryone/filament/Eryone ASA-CF.json new file mode 100644 index 0000000000..b00d225183 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone ASA-CF.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "filament_id": "EFL82", + "setting_id": "EFSA82", + "name": "Eryone ASA-CF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_settings_id": [ + "Eryone ASA-CF" + ], + "filament_type": [ + "ASA-CF" + ], + "filament_vendor": [ + "Eryone" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_retraction_length": [ + "1" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "slow_down_layer_time": [ + "12" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone ASA.json b/resources/profiles/Eryone/filament/Eryone ASA.json new file mode 100644 index 0000000000..af819db70e --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone ASA.json @@ -0,0 +1,81 @@ +{ + "type": "filament", + "filament_id": "EFL92", + "setting_id": "EFSA02", + "name": "Eryone ASA", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_retraction_length": [ + "1" + ], + "filament_settings_id": [ + "Eryone ASA" + ], + "filament_type": [ + "ASA" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_vendor": [ + "Eryone" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "slow_down_layer_time": [ + "12" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PA-CF.json b/resources/profiles/Eryone/filament/Eryone PA-CF.json new file mode 100644 index 0000000000..ecf2aaeaf3 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PA-CF.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "filament_id": "EFL72", + "setting_id": "EFSA72", + "name": "Eryone PA-CF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_retraction_length": [ + "1" + ], + "filament_settings_id": [ + "Eryone PA-CF" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "Eryone" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "overhang_fan_threshold": [ + "25%" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "200" + ], + "slow_down_layer_time": [ + "10" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PA-GF.json b/resources/profiles/Eryone/filament/Eryone PA-GF.json new file mode 100644 index 0000000000..00b348fef1 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PA-GF.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "filament_id": "EFL73", + "setting_id": "EFSA73", + "name": "Eryone PA-GF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_retraction_length": [ + "1" + ], + "filament_settings_id": [ + "Eryone PA-GF" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_type": [ + "PA-GF" + ], + "filament_vendor": [ + "Eryone" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_threshold": [ + "25%" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "200" + ], + "slow_down_layer_time": [ + "10" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PA.json b/resources/profiles/Eryone/filament/Eryone PA.json new file mode 100644 index 0000000000..0e21bda8b4 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PA.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "filament_id": "EFL71", + "setting_id": "EFSA71", + "name": "Eryone PA", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "20" + ], + "fan_min_speed": [ + "10" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_notes": [ + "brim width >= 20;" + ], + "filament_retraction_length": [ + "1" + ], + "filament_settings_id": [ + "Eryone PA" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "Eryone" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "15" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "200" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PETG-CF.json b/resources/profiles/Eryone/filament/Eryone PETG-CF.json new file mode 100644 index 0000000000..44905acb0f --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PETG-CF.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "filament_id": "EFL43", + "setting_id": "EFSA43", + "name": "Eryone PETG-CF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "50" + ], + "filament_vendor": [ + "Eryone" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0\n" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_retraction_length": [ + "1" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_settings_id": [ + "Eryone PETG" + ], + "filament_type": [ + "PETG-CF" + ], + + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "225" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "temperature_vitrification": [ + "80" + ], + "slow_down_layer_time": [ + "7" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PETG.json b/resources/profiles/Eryone/filament/Eryone PETG.json new file mode 100644 index 0000000000..611346990b --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PETG.json @@ -0,0 +1,61 @@ +{ + "type": "filament", + "filament_id": "EFL93", + "setting_id": "EFSA03", + "name": "Eryone PETG", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "fan_min_speed": [ + "90" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "filament_vendor": [ + "Eryone" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0\n" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_settings_id": [ + "Eryone PETG" + ], + "filament_type": [ + "PETG" + ], + + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "overhang_fan_threshold": [ + "25%" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "225" + ], + "slow_down_layer_time": [ + "7" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PLA-CF.json b/resources/profiles/Eryone/filament/Eryone PLA-CF.json new file mode 100644 index 0000000000..0fc8c01fbc --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PLA-CF.json @@ -0,0 +1,58 @@ +{ + "type": "filament", + "filament_id": "EFL40", + "setting_id": "EFSA40", + "name": "Eryone PLA-CF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "fan_min_speed": [ + "100" + ], + + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_length": [ + "1" + ], + "filament_settings_id": [ + "Eryone PLA-CF" + ], + "filament_type": [ + "PLA-CF" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "slow_down_layer_time": [ + "7" + ], + "support_material_interface_fan_speed": [ + "100" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PLA.json b/resources/profiles/Eryone/filament/Eryone PLA.json new file mode 100644 index 0000000000..5f18fe72fb --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PLA.json @@ -0,0 +1,39 @@ +{ + "type": "filament", + "filament_id": "EFL90", + "setting_id": "EFSA00", + "name": "Eryone PLA", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "fan_min_speed": [ + "90" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_settings_id": [ + "Eryone PLA" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "15" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PP-CF.json b/resources/profiles/Eryone/filament/Eryone PP-CF.json new file mode 100644 index 0000000000..5a137f5b6f --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PP-CF.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "filament_id": "EFL33", + "setting_id": "EFSA33", + "name": "Eryone PP-CF", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.92" + ], + "fan_cooling_layer_time": [ + "30" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_notes": [ + "Printing platform glue spraying" + ], + "filament_retraction_length": [ + "1" + ], + "filament_vendor": [ + "Eryone" + ], + "filament_settings_id": [ + "Eryone PP-CF" + ], + "filament_type": [ + "PP-CF" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "160" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone PP.json b/resources/profiles/Eryone/filament/Eryone PP.json new file mode 100644 index 0000000000..dec30ad007 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone PP.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "filament_id": "EFL43", + "setting_id": "EFSA43", + "name": "Eryone PP", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_notes": [ + "Printing platform glue spraying" + ], + + "filament_vendor": [ + "Eryone" + ], + "filament_settings_id": [ + "Eryone PP" + ], + "filament_type": [ + "PP" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "overhang_fan_threshold": [ + "25%" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "225" + ], + "slow_down_layer_time": [ + "10" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "160" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone Silk PLA.json b/resources/profiles/Eryone/filament/Eryone Silk PLA.json new file mode 100644 index 0000000000..6803c1dbff --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone Silk PLA.json @@ -0,0 +1,39 @@ +{ + "type": "filament", + "filament_id": "EFL941", + "setting_id": "EFSA041", + "name": "Eryone Silk PLA", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0\n" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "Silk" + ], + "filament_settings_id": [ + "Eryone Silk PLA" + ], + "hot_plate_temp": [ + "60" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "7" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone Standard PLA.json b/resources/profiles/Eryone/filament/Eryone Standard PLA.json new file mode 100644 index 0000000000..66299ef95a --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone Standard PLA.json @@ -0,0 +1,250 @@ +{ + "type": "filament", + + "name": "Eryone Standard PLA", + "from": "system", + "instantiation": "false", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "default_filament_colour": [ + "" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cooling_final_speed": [ + "3.4" + ], + "filament_cooling_initial_speed": [ + "2.2" + ], + "filament_cooling_moves": [ + "4" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_load_time": [ + "0" + ], + "filament_loading_speed": [ + "28" + ], + "filament_loading_speed_start": [ + "3" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "10" + ], + "filament_multitool_ramming_volume": [ + "10" + ], + "filament_notes": [ + "" + ], + "filament_ramming_parameters": [ + "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "Eryone Standard PLA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_unload_time": [ + "0" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "filament_vendor": [ + "Eryone" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "180" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "0" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ] +} diff --git a/resources/profiles/Eryone/filament/Eryone TPU.json b/resources/profiles/Eryone/filament/Eryone TPU.json new file mode 100644 index 0000000000..fa79600381 --- /dev/null +++ b/resources/profiles/Eryone/filament/Eryone TPU.json @@ -0,0 +1,48 @@ +{ + "type": "filament", + "filament_id": "EFL95", + "setting_id": "EFSA05", + "name": "Eryone TPU", + "from": "system", + "instantiation": "true", + "inherits": "Eryone Standard PLA", + "compatible_printers": [ + "Thinker X400 0.4 nozzle" + ], + "filament_end_gcode": [ + "; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0" + ], + "filament_start_gcode": [ + "; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1" + ], + "fan_min_speed": [ + "90" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_retraction_length": [ + "1.6" + ], + "filament_settings_id": [ + "Eryone TPU" + ], + "filament_type": [ + "TPU" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "slow_down_layer_time": [ + "8" + ] +} diff --git a/resources/profiles/Eryone/filament/fdm_filament_common.json b/resources/profiles/Eryone/filament/fdm_filament_common.json new file mode 100644 index 0000000000..4851217fe1 --- /dev/null +++ b/resources/profiles/Eryone/filament/fdm_filament_common.json @@ -0,0 +1,132 @@ +{ + "type": "filament", + "name": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "overhang_fan_threshold": [ + "95%" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_flow_ratio": [ + "1" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "fan_cooling_layer_time": [ + "60" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "0" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_max_volumetric_speed": [ + "0" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "full_fan_speed_layer": [ + "0" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "35" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "5" + ], + "filament_start_gcode": [ + "; Filament gcode\n" + ], + "nozzle_temperature": [ + "200" + ], + "temperature_vitrification": [ + "100" + ] +} diff --git a/resources/profiles/Eryone/filament/fdm_filament_pla.json b/resources/profiles/Eryone/filament/fdm_filament_pla.json new file mode 100644 index 0000000000..324fe07e49 --- /dev/null +++ b/resources/profiles/Eryone/filament/fdm_filament_pla.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PLA" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "cool_plate_temp": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "220" + ], + "temperature_vitrification": [ + "60" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "4" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json b/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json index d5ea9d7bde..7f2b2e5a29 100644 --- a/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json +++ b/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json @@ -6,7 +6,7 @@ "instantiation": "true", "printer_model": "Thinker X400", "default_print_profile": "0.20mm Standard @Thinker X400", - "default_filament_profile":"Generic PLA @System;Generic ABS @System;Generic ASA @System;Generic PETG @System;Generic PLA Silk @System;Generic TPU @System", + "default_filament_profile":"Eryone PLA;Eryone ABS;Eryone ASA;Eryone PETG;Eryone Silk PLA;Eryone TPU;Eryone ABS-CF;Eryone ASA-CF;Eryone PA;Eryone PA-CF;Eryone PA-GF;Eryone PETG-CF;Eryone PLA-CF;Eryone PP;Eryone PP-CF;", "auxiliary_fan": "0", "bed_custom_model": "", "bed_custom_texture": "", @@ -42,11 +42,11 @@ "machine_end_gcode": "PRINT_END", "machine_load_filament_time": "0", "machine_max_acceleration_e": [ - "10000", + "5000", "5000" ], "machine_max_acceleration_extruding": [ - "5000", + "10000", "20000" ], "machine_max_acceleration_retracting": [ @@ -110,7 +110,7 @@ "0" ], "machine_pause_gcode": "PAUSE", - "machine_start_gcode": "M117 Heating\nM104 S[first_layer_temperature] ; set extruder temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nPRINT_START \nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\n\nM104 S0\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nM117 Heating\nM190 S[bed_temperature_initial_layer_single]\nM104 S[first_layer_temperature] ; set extruder temp\nM109 S[first_layer_temperature] ; wait for extruder temp\n\n;QUAD_GANTRY_LEVEL\nCLEAN_N S=[first_layer_temperature] X=240 Y=-3 A=0\nM117 Quad Level\n_QUAD_GANTRY_LEVEL horizontal_move_z=10 retry_tolerance=1 LIFT_SPEED=5\nG28 Z\nM117 Quad Level\n_QUAD_GANTRY_LEVEL horizontal_move_z=5 retry_tolerance=0.05 LIFT_SPEED=5\nHOME_Z X=132.5 Y=197.5\nM117 Bed Mesh Level\nBED_MESH_CALIBRATE\nM117 Heating\nG1 Y0.0 Z0.3 F1500 ; move print head up\nM104 S[first_layer_temperature] ; set extruder temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nM117 .\nG92 E0.0\n; intro line\nG1 X175.0 E12 F1000\nG1 Y0.6\nG1 X5.0 E10 F1000\nG92 E0.0\n; intro line\nG1 Y1.0 Z0.2 F1000\nG1 X200.0 E15.0 F1000\nG92 E0.0", + "machine_start_gcode": "M117 Heating\nM104 S[first_layer_temperature] ; set extruder temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nPRINT_START \nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S0\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nM117 Heating\nM190 S[bed_temperature_initial_layer_single]\nM104 S[first_layer_temperature] ; set extruder temp\nM109 S[first_layer_temperature] ; wait for extruder temp\n;QUAD_GANTRY_LEVEL\nCLEAN_N S=[first_layer_temperature] X=240 Y=-3 A=0 D=0.4\nM117 Quad Level\n_QUAD_GANTRY_LEVEL horizontal_move_z=10 retry_tolerance=1 LIFT_SPEED=5\nG28 Z\nM117 Quad Level\n_QUAD_GANTRY_LEVEL horizontal_move_z=5 retry_tolerance=0.05 LIFT_SPEED=5\nM117 Bed Mesh Level\nG1 X132.5 Y197.5\nG28 N\nBED_MESH_CALIBRATE\nM117 Heating\nG1 X275.0 Y0.0 Z0.3 F1500 ; move print head up\nM104 S[first_layer_temperature] ; set extruder temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nM117 .\nINTRO_LINE D=0.4 ;intro line with 0.4 mm nozzle", "machine_unload_filament_time": "0", "manual_filament_change": "0", "max_layer_height": [ @@ -126,7 +126,7 @@ "nozzle_type": "hardened_steel", "nozzle_volume": "0", "parking_pos_retraction": "92", - "print_host": "192.168.2.8", + "print_host": "192.168.2.2", "print_host_webui": "", "printable_area": [ "0x0", diff --git a/resources/profiles/Eryone/machine/Thinker X400.json b/resources/profiles/Eryone/machine/Thinker X400.json index 007bba55d6..c05855878c 100644 --- a/resources/profiles/Eryone/machine/Thinker X400.json +++ b/resources/profiles/Eryone/machine/Thinker X400.json @@ -8,5 +8,5 @@ "bed_model": "X400_bed.stl", "bed_texture": "Thinker_texture.png", "hotend_model": "", - "default_materials": "Generic PLA @System;Generic ABS @System;Generic ASA @System;Generic PETG @System;Generic PLA Silk @System;Generic TPU @System" + "default_materials": "Eryone PLA;Eryone ABS;Eryone ASA;Eryone PETG;Eryone Silk PLA;Eryone TPU;Eryone ABS-CF;Eryone ASA-CF;Eryone PA;Eryone PA-CF;Eryone PA-GF;Eryone PETG-CF;Eryone PLA-CF;Eryone PP;Eryone PP-CF" } diff --git a/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json index 3171630d71..84f349de3c 100644 --- a/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json @@ -1,13 +1,13 @@ { "brim_object_gap": "0", - "default_acceleration": "8000", + "default_acceleration": "10000", "elefant_foot_compensation": "0.12", "from": "User", - "gap_infill_speed": "300", + "gap_infill_speed": "250", "inherits": "0.20mm Standard @Thinker X400", "inner_wall_acceleration": "8000", - "inner_wall_speed": "300", - "internal_solid_infill_speed": "300", + "inner_wall_speed": "250", + "internal_solid_infill_speed": "250", "is_custom_defined": "0", "layer_height": "0.12", "name": "0.12mm Standard @Thinker X400", @@ -20,9 +20,9 @@ "print_settings_id": "0.12mm Standard @Thinker X400", "raft_first_layer_expansion": "10", "sparse_infill_density": "15%", - "sparse_infill_speed": "300", + "sparse_infill_speed": "250", "top_shell_layers": "5", "top_shell_thickness": "1", - "version": "1.9.0.2", + "version": "2.3.0.3", "wall_generator": "classic" } \ No newline at end of file diff --git a/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json index c19eb5d3a4..b86236dec8 100644 --- a/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json @@ -1,13 +1,13 @@ { "brim_object_gap": "0", - "default_acceleration": "8000", + "default_acceleration": "10000", "elefant_foot_compensation": "0.12", "from": "User", - "gap_infill_speed": "300", + "gap_infill_speed": "250", "inherits": "0.20mm Standard @Thinker X400", "inner_wall_acceleration": "8000", - "inner_wall_speed": "300", - "internal_solid_infill_speed": "300", + "inner_wall_speed": "250", + "internal_solid_infill_speed": "250", "is_custom_defined": "0", "layer_height": "0.16", "name": "0.16mm Standard @Thinker X400", @@ -20,9 +20,9 @@ "print_settings_id": "0.16mm Standard @Thinker X400", "raft_first_layer_expansion": "10", "sparse_infill_density": "15%", - "sparse_infill_speed": "300", + "sparse_infill_speed": "250", "top_shell_layers": "5", "top_shell_thickness": "1", - "version": "1.9.0.2", + "version": "2.3.0.3", "wall_generator": "classic" } \ No newline at end of file diff --git a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json index 701ac3b4ce..832f669b09 100644 --- a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json @@ -19,14 +19,14 @@ "bridge_density": "100%", "bridge_flow": "0.95", "bridge_no_support": "0", - "bridge_speed": "50", + "bridge_speed": "45", "brim_ears_detection_length": "1", "brim_ears_max_angle": "125", - "brim_object_gap": "0", + "brim_object_gap": "0.1", "brim_type": "auto_brim", "brim_width": "5", "compatible_printers_condition": "", - "default_acceleration": "8000", + "default_acceleration": "10000", "default_jerk": "0", "detect_overhang_wall": "1", "detect_thin_wall": "0", @@ -38,7 +38,7 @@ "enable_prime_tower": "0", "enable_support": "0", "enforce_support_layers": "0", - "exclude_object": "1", + "exclude_object": "0", "extra_perimeters_on_overhangs": "0", "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", "filter_out_gap_fill": "0", @@ -104,12 +104,12 @@ "only_one_wall_first_layer": "0", "only_one_wall_top": "1", "ooze_prevention": "0", - "outer_wall_acceleration": "5000", + "outer_wall_acceleration": "4000", "outer_wall_jerk": "9", "outer_wall_line_width": "0.42", "outer_wall_speed": "200", "overhang_1_4_speed": "0", - "overhang_2_4_speed": "50", + "overhang_2_4_speed": "45", "overhang_3_4_speed": "30", "overhang_4_4_speed": "10", "overhang_reverse": "0", @@ -149,7 +149,7 @@ "sparse_infill_acceleration": "100%", "sparse_infill_density": "15%", "sparse_infill_filament": "1", - "sparse_infill_line_width": "0.45", + "sparse_infill_line_width": "0.54", "sparse_infill_pattern": "crosshatch", "sparse_infill_speed": "250", "spiral_mode": "0", @@ -189,9 +189,9 @@ "top_surface_line_width": "0.42", "top_surface_pattern": "monotonic", "top_surface_speed": "200", - "travel_acceleration": "5000", + "travel_acceleration": "10000", "travel_jerk": "12", - "travel_speed": "350", + "travel_speed": "400", "travel_speed_z": "0", "tree_support_adaptive_layer_height": "1", "tree_support_angle_slow": "25", @@ -208,7 +208,7 @@ "tree_support_tip_diameter": "0.8", "tree_support_top_rate": "30%", "tree_support_wall_count": "2", - "version": "1.9.0.2", + "version": "2.3.0.3", "wall_distribution_count": "1", "wall_filament": "1", "wall_generator": "classic", diff --git a/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json index 37169e4326..5e3d8187bb 100644 --- a/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json @@ -1,13 +1,13 @@ { "brim_object_gap": "0", - "default_acceleration": "8000", + "default_acceleration": "10000", "elefant_foot_compensation": "0.12", "from": "User", - "gap_infill_speed": "220", + "gap_infill_speed": "250", "inherits": "0.20mm Standard @Thinker X400", "inner_wall_acceleration": "8000", - "inner_wall_speed": "220", - "internal_solid_infill_speed": "220", + "inner_wall_speed": "250", + "internal_solid_infill_speed": "250", "is_custom_defined": "0", "layer_height": "0.24", "name": "0.24mm Standard @Thinker X400", @@ -17,9 +17,9 @@ "print_settings_id": "0.24mm Standard @Thinker X400", "raft_first_layer_expansion": "10", "sparse_infill_density": "15%", - "sparse_infill_speed": "220", + "sparse_infill_speed": "250", "top_shell_layers": "5", "top_shell_thickness": "1", - "version": "1.9.0.2", + "version": "2.3.0.3", "wall_generator": "classic" } \ No newline at end of file diff --git a/resources/profiles/FLSun/FLSun S1_cover.png b/resources/profiles/FLSun/FLSun S1_cover.png index a1e43c2a50..e6558d67ff 100644 Binary files a/resources/profiles/FLSun/FLSun S1_cover.png and b/resources/profiles/FLSun/FLSun S1_cover.png differ diff --git a/resources/profiles/FLSun/FLSun T1_cover.png b/resources/profiles/FLSun/FLSun T1_cover.png index 37435793c0..1a649a80ab 100644 Binary files a/resources/profiles/FLSun/FLSun T1_cover.png and b/resources/profiles/FLSun/FLSun T1_cover.png differ diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index 950205f59f..740f234c6c 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -32,6 +32,14 @@ { "name": "Flashforge Guider 2s", "sub_path": "machine/Flashforge Guider 2s.json" + }, + { + "name": "Flashforge Guider4 Pro", + "sub_path": "machine/Flashforge Guider4 Pro.json" + }, + { + "name": "Flashforge Guider4", + "sub_path": "machine/Flashforge Guider4.json" } ], "process_list": [ @@ -289,7 +297,175 @@ }, { "name": "0.56mm Draft @FF AD5X 0.8 nozzle", - "sub_path":"process/0.56mm Draft @FF AD5X 0.8 nozzle.json" + "sub_path": "process/0.56mm Draft @FF AD5X 0.8 nozzle.json" + }, + { + "name": "0.16mm Standard @FF G4P", + "sub_path": "process/0.16mm Standard @FF G4P.json" + }, + { + "name": "0.20mm Standard @FF G4P", + "sub_path": "process/0.20mm Standard @FF G4P.json" + }, + { + "name": "0.24mm Standard @FF G4P", + "sub_path": "process/0.24mm Standard @FF G4P.json" + }, + { + "name": "0.16mm Standard @FF G4P HF", + "sub_path": "process/0.16mm Standard @FF G4P HF.json" + }, + { + "name": "0.20mm Standard @FF G4P HF for PLA 600", + "sub_path":"process/0.20mm Standard @FF G4P HF for PLA 600.json" + }, + { + "name": "0.20mm Standard @FF G4P HF", + "sub_path": "process/0.20mm Standard @FF G4P HF.json" + }, + { + "name": "0.24mm Standard @FF G4P HF", + "sub_path": "process/0.24mm Standard @FF G4P HF.json" + }, + { + "name": "0.25mm Standard @FF G4P 0.6 nozzle", + "sub_path": "process/0.25mm Standard @FF G4P 0.6 nozzle.json" + }, + { + "name": "0.30mm Standard @FF G4P 0.6 nozzle", + "sub_path": "process/0.30mm Standard @FF G4P 0.6 nozzle.json" + }, + { + "name": "0.36mm Standard @FF G4P 0.6 nozzle", + "sub_path": "process/0.36mm Standard @FF G4P 0.6 nozzle.json" + }, + { + "name": "0.42mm Standard @FF G4P 0.6 nozzle", + "sub_path": "process/0.42mm Standard @FF G4P 0.6 nozzle.json" + }, + { + "name": "0.25mm Standard @FF G4P 0.6 HF nozzle", + "sub_path": "process/0.25mm Standard @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "0.3mm Standard @FF G4P 0.6 HF nozzle", + "sub_path": "process/0.3mm Standard @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "0.36mm Standard @FF G4P 0.6 HF nozzle", + "sub_path": "process/0.36mm Standard @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "0.42mm Standard @FF G4P 0.6 HF nozzle", + "sub_path": "process/0.42mm Standard @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "0.32mm Standard @FF G4P 0.8 HF nozzle", + "sub_path": "process/0.32mm Standard @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "0.40mm Standard @FF G4P 0.8 HF nozzle", + "sub_path": "process/0.40mm Standard @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "0.48mm Standard @FF G4P 0.8 HF nozzle", + "sub_path": "process/0.48mm Standard @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "0.10mm Standard @FF G4P 0.25 nozzle", + "sub_path": "process/0.10mm Standard @FF G4P 0.25 nozzle.json" + }, + { + "name": "0.12mm Standard @FF G4P 0.25 nozzle", + "sub_path": "process/0.12mm Standard @FF G4P 0.25 nozzle.json" + }, + { + "name": "0.14mm Standard @FF G4P 0.25 nozzle", + "sub_path": "process/0.14mm Standard @FF G4P 0.25 nozzle.json" + }, + { + "name": "0.10mm Standard @FF G4 0.25 nozzle", + "sub_path": "process/0.10mm Standard @FF G4 0.25 nozzle.json" + }, + { + "name": "0.12mm Standard @FF G4 0.25 nozzle", + "sub_path": "process/0.12mm Standard @FF G4 0.25 nozzle.json" + }, + { + "name": "0.14mm Standard @FF G4 0.25 nozzle", + "sub_path": "process/0.14mm Standard @FF G4 0.25 nozzle.json" + }, + { + "name": "0.16mm Standard @FF G4", + "sub_path": "process/0.16mm Standard @FF G4.json" + }, + { + "name": "0.20mm Standard @FF G4", + "sub_path": "process/0.20mm Standard @FF G4.json" + }, + { + "name": "0.24mm Standard @FF G4", + "sub_path": "process/0.24mm Standard @FF G4.json" + }, + { + "name": "0.16mm Standard @FF G4 HF", + "sub_path": "process/0.16mm Standard @FF G4 HF.json" + }, + { + "name": "0.20mm Standard @FF G4 HF", + "sub_path": "process/0.20mm Standard @FF G4 HF.json" + }, + { + "name": "0.20mm Standard @FF G4 PLA600", + "sub_path": "process/0.20mm Standard @FF G4 PLA600.json" + }, + { + "name": "0.24mm Standard @FF G4 HF", + "sub_path": "process/0.24mm Standard @FF G4 HF.json" + }, + { + "name": "0.25mm Standard @FF G4 0.6 nozzle", + "sub_path": "process/0.25mm Standard @FF G4 0.6 nozzle.json" + }, + { + "name": "0.30mm Standard @FF G4 0.6 nozzle", + "sub_path": "process/0.30mm Standard @FF G4 0.6 nozzle.json" + }, + { + "name": "0.36mm Standard @FF G4 0.6 nozzle", + "sub_path": "process/0.36mm Standard @FF G4 0.6 nozzle.json" + }, + { + "name": "0.42mm Standard @FF G4 0.6 nozzle", + "sub_path": "process/0.42mm Standard @FF G4 0.6 nozzle.json" + }, + { + "name": "0.25mm Standard @FF G4 0.6 HF nozzle", + "sub_path": "process/0.25mm Standard @FF G4 0.6 HF nozzle.json" + }, + { + "name": "0.3mm Standard @FF G4 0.6 HF nozzle", + "sub_path": "process/0.3mm Standard @FF G4 0.6 HF nozzle.json" + }, + { + "name": "0.36mm Standard @FF G4 0.6 HF nozzle", + "sub_path": "process/0.36mm Standard @FF G4 0.6 HF nozzle.json" + }, + { + "name": "0.42mm Standard @FF G4 0.6 HF nozzle", + "sub_path": "process/0.42mm Standard @FF G4 0.6 HF nozzle.json" + }, + { + "name": "0.32mm Standard @FF G4 0.8 HF nozzle", + "sub_path": "process/0.32mm Standard @FF G4 0.8 HF nozzle.json" + }, + { + "name": "0.40mm Standard @FF G4 0.8 HF nozzle", + "sub_path": "process/0.40mm Standard @FF G4 0.8 HF nozzle.json" + }, + { + "name": "0.48mm Standard @FF G4 0.8 HF nozzle", + "sub_path": "process/0.48mm Standard @FF G4 0.8 HF nozzle.json" } ], "filament_list": [ @@ -321,6 +497,10 @@ "name": "Flashforge Generic ABS", "sub_path": "filament/Flashforge Generic ABS.json" }, + { + "name": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "sub_path": "filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json" + }, { "name": "Flashforge Generic ABS @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json" @@ -329,6 +509,10 @@ "name": "Flashforge Generic PETG", "sub_path": "filament/Flashforge Generic PETG.json" }, + { + "name": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "sub_path": "filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json" + }, { "name": "Flashforge Generic PETG @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json" @@ -337,6 +521,10 @@ "name": "Flashforge Generic PLA", "sub_path": "filament/Flashforge Generic PLA.json" }, + { + "name": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "sub_path": "filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json" + }, { "name": "Flashforge Generic PLA @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json" @@ -349,6 +537,10 @@ "name": "Flashforge Generic PLA-Silk", "sub_path": "filament/Flashforge Generic PLA-Silk.json" }, + { + "name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", + "sub_path": "filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json" + }, { "name": "Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json" @@ -357,6 +549,10 @@ "name": "Flashforge Generic HS PLA", "sub_path": "filament/Flashforge Generic HS PLA.json" }, + { + "name": "Flashforge HS PLA @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json" + }, { "name": "Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json" @@ -365,6 +561,10 @@ "name": "Flashforge Generic ASA", "sub_path": "filament/Flashforge Generic ASA.json" }, + { + "name": "Flashforge ASA @FF AD5M 0.25 Nozzle", + "sub_path": "filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json" + }, { "name": "Flashforge Generic ASA @FF AD5M 0.25 Nozzle", "sub_path": "filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json" @@ -552,7 +752,463 @@ { "name": "Generic TPU @Flashforge AD4", "sub_path": "filament/Generic TPU @Flashforge AD4.json" - }, + }, + { + "name": "Flashforge HS PETG", + "sub_path": "filament/Flashforge HS PETG.json" + }, + { + "name": "Flashforge HS PLA", + "sub_path": "filament/Flashforge HS PLA.json" + }, + { + "name": "Flashforge PETG Basic", + "sub_path": "filament/Flashforge PETG Basic.json" + }, + { + "name": "Flashforge PETG Pro", + "sub_path": "filament/Flashforge PETG Pro.json" + }, + { + "name": "Flashforge PETG Transparent", + "sub_path": "filament/Flashforge PETG Transparent.json" + }, + { + "name": "Flashforge PETG-CF", + "sub_path": "filament/Flashforge PETG-CF.json" + }, + { + "name": "Flashforge PLA Basic", + "sub_path": "filament/Flashforge PLA Basic.json" + }, + { + "name": "Flashforge PLA Color Change", + "sub_path": "filament/Flashforge PLA Color Change.json" + }, + { + "name": "Flashforge PLA Galaxy", + "sub_path": "filament/Flashforge PLA Galaxy.json" + }, + { + "name": "Flashforge PLA Luminous", + "sub_path": "filament/Flashforge PLA Luminous.json" + }, + { + "name": "Flashforge PLA Matte", + "sub_path": "filament/Flashforge PLA Matte.json" + }, + { + "name": "Flashforge PLA Metal", + "sub_path": "filament/Flashforge PLA Metal.json" + }, + { + "name": "Flashforge PLA Pro", + "sub_path": "filament/Flashforge PLA Pro.json" + }, + { + "name": "Flashforge PLA Silk", + "sub_path": "filament/Flashforge PLA Silk.json" + }, + { + "name": "Flashforge PLA Sparkle", + "sub_path": "filament/Flashforge PLA Sparkle.json" + }, + { + "name": "Flashforge PLA-CF", + "sub_path": "filament/Flashforge PLA-CF.json" + }, + { + "name": "Flashforge TPU 95A", + "sub_path": "filament/Flashforge TPU 95A.json" + }, + { + "name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge ABS Basic", + "sub_path": "filament/Flashforge ABS Basic.json" + }, + { + "name": "Flashforge ASA Basic @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge ASA Basic", + "sub_path": "filament/Flashforge ASA Basic.json" + }, + { + "name": "Flashforge HS PETG @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Basic @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json" + }, + { + "name": "Flashforge ASA-CF", + "sub_path": "filament/Flashforge ASA-CF.json" + }, + { + "name": "Flashforge PA6-CF", + "sub_path": "filament/Flashforge PA6-CF.json" + }, + { + "name": "Flashforge PA12-CF", + "sub_path": "filament/Flashforge PA12-CF.json" + }, + { + "name": "Flashforge PA66-CF", + "sub_path": "filament/Flashforge PA66-CF.json" + }, + { + "name": "Flashforge PET-CF", + "sub_path": "filament/Flashforge PET-CF.json" + }, + { + "name": "Flashforge PPA-CF", + "sub_path": "filament/Flashforge PPA-CF.json" + }, + { + "name": "Flashforge PPA-GF", + "sub_path": "filament/Flashforge PPA-GF.json" + }, + { + "name": "Flashforge PPS-CF", + "sub_path": "filament/Flashforge PPS-CF.json" + }, + { + "name": "Flashforge ABS Basic @FF AD5X", + "sub_path": "filament/Flashforge ABS Basic @FF AD5X.json" + }, + { + "name": "Flashforge ASA Basic @FF AD5X", + "sub_path": "filament/Flashforge ASA Basic @FF AD5X.json" + }, + { + "name": "Flashforge HS PETG @FF AD5X", + "sub_path": "filament/Flashforge HS PETG @FF AD5X.json" + }, + { + "name": "Flashforge HS PLA @FF AD5X", + "sub_path": "filament/Flashforge HS PLA @FF AD5X.json" + }, + { + "name": "Flashforge PETG Pro @FF AD5X", + "sub_path": "filament/Flashforge PETG Pro @FF AD5X.json" + }, + { + "name": "Flashforge PETG Transparent @FF AD5X", + "sub_path": "filament/Flashforge PETG Transparent @FF AD5X.json" + }, + { + "name": "Flashforge PETG-CF @FF AD5X", + "sub_path": "filament/Flashforge PETG-CF @FF AD5X.json" + }, + { + "name": "Flashforge PLA Basic @FF AD5X", + "sub_path": "filament/Flashforge PLA Basic @FF AD5X.json" + }, + { + "name": "Flashforge PLA Color Change @FF AD5X", + "sub_path": "filament/Flashforge PLA Color Change @FF AD5X.json" + }, + { + "name": "Flashforge PLA Galaxy @FF AD5X", + "sub_path": "filament/Flashforge PLA Galaxy @FF AD5X.json" + }, + { + "name": "Flashforge PLA Luminous @FF AD5X", + "sub_path": "filament/Flashforge PLA Luminous @FF AD5X.json" + }, + { + "name": "Flashforge PLA Matte @FF AD5X", + "sub_path": "filament/Flashforge PLA Matte @FF AD5X.json" + }, + { + "name": "Flashforge PLA Metal @FF AD5X", + "sub_path": "filament/Flashforge PLA Metal @FF AD5X.json" + }, + { + "name": "Flashforge PLA Pro @FF AD5X", + "sub_path": "filament/Flashforge PLA Pro @FF AD5X.json" + }, + { + "name": "Flashforge PLA Silk @FF AD5X", + "sub_path": "filament/Flashforge PLA Silk @FF AD5X.json" + }, + { + "name": "Flashforge PLA Sparkle @FF AD5X", + "sub_path": "filament/Flashforge PLA Sparkle @FF AD5X.json" + }, + { + "name": "Flashforge PLA-CF @FF AD5X", + "sub_path": "filament/Flashforge PLA-CF @FF AD5X.json" + }, + { + "name": "Flashforge TPU 95A @FF AD5X", + "sub_path": "filament/Flashforge TPU 95A @FF AD5X.json" + }, + { + "name": "Flashforge ABS Basic @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG-CF @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA-CF @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF AD5X 0.6 nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Generic TPU 85A @FF AD5X", + "sub_path":"filament/Generic TPU 85A @FF AD5X.json" + }, + { + "name": "Generic TPU 85A @FF AD5X 0.8 nozzle", + "sub_path":"filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json" + }, + { + "name": "Generic TPU 85A @FF AD5X 0.6 nozzle", + "sub_path":"filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json" + }, { "name": "SUNLU PLA Matte @base", "sub_path": "filament/SUNLU/SUNLU PLA Matte @base.json" @@ -660,7 +1316,1127 @@ { "name": "SUNLU Wood PLA @FF AD3", "sub_path": "filament/SUNLU/SUNLU Wood PLA @FF AD3.json" - } + }, + { + "name": "Flashforge ABS Basic @FF G4P", + "sub_path": "filament/Flashforge ABS Basic @FF G4P.json" + }, + { + "name": "Flashforge ABS-CF @FF G4P", + "sub_path": "filament/Flashforge ABS-CF @FF G4P.json" + }, + { + "name": "Flashforge ASA Basic @FF G4P", + "sub_path": "filament/Flashforge ASA Basic @FF G4P.json" + }, + { + "name": "Flashforge ASA-CF @FF G4P", + "sub_path":"filament/Flashforge ASA-CF @FF G4P.json" + }, + { + "name": "Flashforge HIPS @FF G4P", + "sub_path": "filament/Flashforge HIPS @FF G4P.json" + }, + { + "name": "Flashforge HS PETG @FF G4P", + "sub_path": "filament/Flashforge HS PETG @FF G4P.json" + }, + { + "name": "Flashforge HS PLA @FF G4P", + "sub_path": "filament/Flashforge HS PLA @FF G4P.json" + }, + { + "name": "Flashforge PA @FF G4P", + "sub_path": "filament/Flashforge PA @FF G4P.json" + }, + { + "name": "Flashforge PA-CF @FF G4P", + "sub_path": "filament/Flashforge PA-CF @FF G4P.json" + }, + { + "name": "Flashforge PAHT-CF @FF G4P", + "sub_path": "filament/Flashforge PAHT-CF @FF G4P.json" + }, + { + "name": "Flashforge PETG Pro @FF G4P", + "sub_path": "filament/Flashforge PETG Pro @FF G4P.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4P", + "sub_path": "filament/Flashforge PETG Transparent @FF G4P.json" + }, + { + "name": "Flashforge PETG-CF @FF G4P", + "sub_path": "filament/Flashforge PETG-CF @FF G4P.json" + }, + { + "name": "Flashforge PLA Basic @FF G4P", + "sub_path": "filament/Flashforge PLA Basic @FF G4P.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4P", + "sub_path": "filament/Flashforge PLA Color Change @FF G4P.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4P", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4P.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4P", + "sub_path": "filament/Flashforge PLA Luminous @FF G4P.json" + }, + { + "name": "Flashforge PLA Matte @FF G4P", + "sub_path": "filament/Flashforge PLA Matte @FF G4P.json" + }, + { + "name": "Flashforge PLA Metal @FF G4P", + "sub_path": "filament/Flashforge PLA Metal @FF G4P.json" + }, + { + "name": "Flashforge PLA Pro @FF G4P", + "sub_path": "filament/Flashforge PLA Pro @FF G4P.json" + }, + { + "name": "Flashforge PLA Silk @FF G4P", + "sub_path": "filament/Flashforge PLA Silk @FF G4P.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4P", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4P.json" + }, + { + "name": "Flashforge PLA-CF @FF G4P", + "sub_path": "filament/Flashforge PLA-CF @FF G4P.json" + }, + { + "name": "Flashforge PPS @FF G4P", + "sub_path": "filament/Flashforge PPS @FF G4P.json" + }, + { + "name": "Flashforge PPS-CF @FF G4P", + "sub_path": "filament/Flashforge PPS-CF @FF G4P.json" + }, + { + "name": "Flashforge TPU 95A @FF G4P", + "sub_path": "filament/Flashforge TPU 95A @FF G4P.json" + }, + { + "name": "FusRock PAHT-CF @FF G4P", + "sub_path":"filament/FusRock PAHT-CF @FF G4P.json" + }, + { + "name": "FusRock PET-CF @FF G4P", + "sub_path":"filament/FusRock PET-CF @FF G4P.json" + }, + { + "name": "Generic PET @FF G4P", + "sub_path":"filament/Generic PET @FF G4P.json" + }, + { + "name": "Flashforge ABS Basic @FF G4P HF", + "sub_path": "filament/Flashforge ABS Basic @FF G4P HF.json" + }, + { + "name": "Flashforge ASA Basic @FF G4P HF", + "sub_path": "filament/Flashforge ASA Basic @FF G4P HF.json" + }, + { + "name": "Flashforge HIPS @FF G4P HF", + "sub_path": "filament/Flashforge HIPS @FF G4P HF.json" + }, + { + "name": "Flashforge HS PETG @FF G4P HF", + "sub_path": "filament/Flashforge HS PETG @FF G4P HF.json" + }, + { + "name": "Flashforge HS PLA @FF G4P HF", + "sub_path": "filament/Flashforge HS PLA @FF G4P HF.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti @FF G4P HF", + "sub_path": "filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json" + }, + { + "name": "Flashforge PA @FF G4P HF", + "sub_path": "filament/Flashforge PA @FF G4P HF.json" + }, + { + "name": "Flashforge PETG Pro @FF G4P HF", + "sub_path": "filament/Flashforge PETG Pro @FF G4P HF.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4P HF", + "sub_path": "filament/Flashforge PETG Transparent @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Basic @FF G4P HF", + "sub_path": "filament/Flashforge PLA Basic @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4P HF", + "sub_path": "filament/Flashforge PLA Color Change @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4P HF", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4P HF", + "sub_path": "filament/Flashforge PLA Luminous @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Matte @FF G4P HF", + "sub_path": "filament/Flashforge PLA Matte @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Metal @FF G4P HF", + "sub_path": "filament/Flashforge PLA Metal @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Pro @FF G4P HF", + "sub_path": "filament/Flashforge PLA Pro @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Silk @FF G4P HF", + "sub_path": "filament/Flashforge PLA Silk @FF G4P HF.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4P HF", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4P HF.json" + }, + { + "name": "Flashforge ABS Basic @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge ABS-CF @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge HIPS @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge HIPS @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json" + }, + { + "name": "FlashForge PC @FF G4P 0.6 nozzle", + "sub_path": "filament/FlashForge PC @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG-CF @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4P 0.6 nozzle", + "sub_path":"filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4P 0.6 nozzle", + "sub_path":"filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA-CF @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json" + }, + { + "name": "FlashForge PPS @FF G4P 0.6 nozzle", + "sub_path": "filament/FlashForge PPS @FF G4P 0.6 nozzle.json" + }, + { + "name": "FlashForge PPS-CF @FF G4P 0.6 nozzle", + "sub_path": "filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge TPU 65D @FF G4P 0.6 nozzle", + "sub_path":"filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF G4P 0.6 nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json" + }, + { + "name": "FusRock PAHT @FF G4P 0.6 nozzle", + "sub_path": "filament/FusRock PAHT @FF G4P 0.6 nozzle.json" + }, + { + "name": "FusRock PAHT-CF @FF G4P 0.6 nozzle", + "sub_path": "filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json" + }, + { + "name": "FusRock PET-CF @FF G4P 0.6 nozzle", + "sub_path": "filament/FusRock PET-CF @FF G4P 0.6 nozzle.json" + }, + { + "name": "Generic PET @FF G4P 0.6 nozzle", + "sub_path":"filament/Generic PET @FF G4P 0.6 nozzle.json" + }, + { + "name": "Polymaker CoPA @FF G4P 0.6 nozzle", + "sub_path": "filament/Polymaker CoPA @FF G4P 0.6 nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HIPS @FF G4P 0.6 HF nozzle", + "sub_path":"filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PA @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PA @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "FlashForge PC @FF G4P 0.6 HF nozzle", + "sub_path": "filament/FlashForge PC @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "FlashForge PPS @FF G4P 0.6 HF nozzle", + "sub_path":"filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle", + "sub_path":"filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "FusRock PAHT @FF G4P 0.6 HF nozzle", + "sub_path":"filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Generic PET @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Generic PET @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Polymaker CoPA @FF G4P 0.6 HF nozzle", + "sub_path": "filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HIPS @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json" + }, + { + "name": "FlashForge PC @FF G4P 0.8 HF nozzle", + "sub_path": "filament/FlashForge PC @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Buint Ti @FF G4P 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4P 0.8 HF nozzle", + "sub_path":"filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4P 0.8 HF nozzle", + "sub_path":"filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "FlashForge PPS @FF G4P 0.8 HF nozzle", + "sub_path": "filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge TPU 65D @FF G4P 0.8 HF nozzle", + "sub_path":"filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "FusRock PAHT @FF G4P 0.8 HF nozzle", + "sub_path": "filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Generic PET @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Generic PET @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Polymaker CoPA @FF G4P 0.8 HF nozzle", + "sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4", + "sub_path": "filament/Flashforge ABS Basic @FF G4.json" + }, + { + "name": "Flashforge ABS-CF @FF G4", + "sub_path": "filament/Flashforge ABS-CF @FF G4.json" + }, + { + "name": "Flashforge ASA Basic @FF G4", + "sub_path": "filament/Flashforge ASA Basic @FF G4.json" + }, + { + "name": "Flashforge ASA-CF @FF G4", + "sub_path":"filament/Flashforge ASA-CF @FF G4.json" + }, + { + "name": "Flashforge HIPS @FF G4", + "sub_path": "filament/Flashforge HIPS @FF G4.json" + }, + { + "name": "Flashforge HS PETG @FF G4", + "sub_path": "filament/Flashforge HS PETG @FF G4.json" + }, + { + "name": "Flashforge HS PLA @FF G4", + "sub_path": "filament/Flashforge HS PLA @FF G4.json" + }, + { + "name": "Flashforge PA @FF G4", + "sub_path": "filament/Flashforge PA @FF G4.json" + }, + { + "name": "Flashforge PA-CF @FF G4", + "sub_path": "filament/Flashforge PA-CF @FF G4.json" + }, + { + "name": "Flashforge PAHT-CF @FF G4", + "sub_path": "filament/Flashforge PAHT-CF @FF G4.json" + }, + { + "name": "Flashforge PETG Pro @FF G4", + "sub_path": "filament/Flashforge PETG Pro @FF G4.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4", + "sub_path": "filament/Flashforge PETG Transparent @FF G4.json" + }, + { + "name": "Flashforge PETG-CF @FF G4", + "sub_path": "filament/Flashforge PETG-CF @FF G4.json" + }, + { + "name": "Flashforge PLA Basic @FF G4", + "sub_path": "filament/Flashforge PLA Basic @FF G4.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4", + "sub_path": "filament/Flashforge PLA Color Change @FF G4.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4", + "sub_path": "filament/Flashforge PLA Luminous @FF G4.json" + }, + { + "name": "Flashforge PLA Matte @FF G4", + "sub_path": "filament/Flashforge PLA Matte @FF G4.json" + }, + { + "name": "Flashforge PLA Metal @FF G4", + "sub_path": "filament/Flashforge PLA Metal @FF G4.json" + }, + { + "name": "Flashforge PLA Pro @FF G4", + "sub_path": "filament/Flashforge PLA Pro @FF G4.json" + }, + { + "name": "Flashforge PLA Silk @FF G4", + "sub_path": "filament/Flashforge PLA Silk @FF G4.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4.json" + }, + { + "name": "Flashforge PLA-CF @FF G4", + "sub_path": "filament/Flashforge PLA-CF @FF G4.json" + }, + { + "name": "Flashforge PPS @FF G4", + "sub_path": "filament/Flashforge PPS @FF G4.json" + }, + { + "name": "Flashforge PPS-CF @FF G4", + "sub_path": "filament/Flashforge PPS-CF @FF G4.json" + }, + { + "name": "Flashforge TPU 95A @FF G4", + "sub_path": "filament/Flashforge TPU 95A @FF G4.json" + }, + { + "name": "FusRock PAHT-CF @FF G4", + "sub_path": "filament/FusRock PAHT-CF @FF G4.json" + }, + { + "name": "FusRock PET-CF @FF G4", + "sub_path": "filament/FusRock PET-CF @FF G4.json" + }, + { + "name": "Generic PET @FF G4", + "sub_path": "filament/Generic PET @FF G4.json" + }, + { + "name": "Flashforge ABS Basic @FF G4 HF", + "sub_path": "filament/Flashforge ABS Basic @FF G4 HF.json" + }, + { + "name": "Flashforge ASA Basic @FF G4 HF", + "sub_path": "filament/Flashforge ASA Basic @FF G4 HF.json" + }, + { + "name": "Flashforge HIPS @FF G4 HF", + "sub_path": "filament/Flashforge HIPS @FF G4 HF.json" + }, + { + "name": "Flashforge HS PETG @FF G4 HF", + "sub_path": "filament/Flashforge HS PETG @FF G4 HF.json" + }, + { + "name": "Flashforge HS PLA @FF G4 HF", + "sub_path": "filament/Flashforge HS PLA @FF G4 HF.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti @FF G4 HF", + "sub_path": "filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json" + }, + { + "name": "Flashforge PA @FF G4 HF", + "sub_path": "filament/Flashforge PA @FF G4 HF.json" + }, + { + "name": "Flashforge PETG Pro @FF G4 HF", + "sub_path": "filament/Flashforge PETG Pro @FF G4 HF.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4 HF", + "sub_path": "filament/Flashforge PETG Transparent @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Basic @FF G4 HF", + "sub_path": "filament/Flashforge PLA Basic @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4 HF", + "sub_path": "filament/Flashforge PLA Color Change @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4 HF", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4 HF", + "sub_path": "filament/Flashforge PLA Luminous @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Matte @FF G4 HF", + "sub_path": "filament/Flashforge PLA Matte @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Metal @FF G4 HF", + "sub_path": "filament/Flashforge PLA Metal @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Pro @FF G4 HF", + "sub_path": "filament/Flashforge PLA Pro @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Silk @FF G4 HF", + "sub_path": "filament/Flashforge PLA Silk @FF G4 HF.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4 HF", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4 HF.json" + }, + { + "name": "Flashforge ABS Basic @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge ABS-CF @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge HIPS @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge HIPS @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json" + }, + { + "name": "FlashForge PC @FF G4 0.6 nozzle", + "sub_path": "filament/FlashForge PC @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PETG-CF @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4 0.6 nozzle", + "sub_path":"filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge PLA-CF @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json" + }, + { + "name": "FlashForge PPS @FF G4 0.6 nozzle", + "sub_path": "filament/FlashForge PPS @FF G4 0.6 nozzle.json" + }, + { + "name": "FlashForge PPS-CF @FF G4 0.6 nozzle", + "sub_path": "filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge TPU 65D @FF G4 0.6 nozzle", + "sub_path":"filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF G4 0.6 nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json" + }, + { + "name": "FusRock PAHT @FF G4 0.6 nozzle", + "sub_path": "filament/FusRock PAHT @FF G4 0.6 nozzle.json" + }, + { + "name": "FusRock PAHT-CF @FF G4 0.6 nozzle", + "sub_path": "filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json" + }, + { + "name": "FusRock PET-CF @FF G4 0.6 nozzle", + "sub_path":"filament/FusRock PET-CF @FF G4 0.6 nozzle.json" + }, + { + "name": "Generic PET @FF G4 0.6 nozzle", + "sub_path": "filament/Generic PET @FF G4 0.6 nozzle.json" + }, + { + "name": "Polymaker CoPA @FF G4 0.6 nozzle", + "sub_path": "filament/Polymaker CoPA @FF G4 0.6 nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HIPS @FF G4 0.6 HF nozzle", + "sub_path":"filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PA @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PA @FF G4 0.6 HF nozzle.json" + }, + { + "name": "FlashForge PC @FF G4 0.6 HF nozzle", + "sub_path": "filament/FlashForge PC @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge PLA Sparkle @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json" + }, + { + "name": "FlashForge PPS @FF G4 0.6 HF nozzle", + "sub_path":"filament/FlashForge PPS @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle", + "sub_path":"filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json" + }, + { + "name": "FusRock PAHT @FF G4 0.6 HF nozzle", + "sub_path":"filament/FusRock PAHT @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Generic PET @FF G4 0.6 HF nozzle", + "sub_path": "filament/Generic PET @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Polymaker CoPA @FF G4 0.6 HF nozzle", + "sub_path": "filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge ABS Basic @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge ASA Basic @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HIPS @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HS PETG @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json" + }, + { + "name": "FlashForge PC @FF G4 0.8 HF nozzle", + "sub_path": "filament/FlashForge PC @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Basic @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Buint Ti @FF G4 0.8 nozzle", + "sub_path": "filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json" + }, + { + "name": "Flashforge PLA Color Change @FF G4 0.8 HF nozzle", + "sub_path":"filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Galaxy @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Luminous @FF G4 0.8 HF nozzle", + "sub_path":"filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Matte @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Metal @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Pro @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge PLA Silk @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json" + }, + { + "name": "FlashForge PPS @FF G4 0.8 HF nozzle", + "sub_path": "filament/FlashForge PPS @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge TPU 65D @FF G4 0.8 HF nozzle", + "sub_path":"filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge TPU 95A @FF G4 0.8 HF nozzle", + "sub_path": "filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json" + }, + { + "name": "FusRock PAHT @FF G4 0.8 HF nozzle", + "sub_path": "filament/FusRock PAHT @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Generic PET @FF G4 0.8 HF nozzle", + "sub_path": "filament/Generic PET @FF G4 0.8 HF nozzle.json" + }, + { + "name": "Polymaker CoPA @FF G4 0.8 HF nozzle", + "sub_path": "filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json" + } ], "machine_list": [ { @@ -773,7 +2549,55 @@ }, { "name": "Flashforge AD5X 0.8 nozzle", - "sub_path":"machine/Flashforge AD5X 0.8 nozzle.json" + "sub_path": "machine/Flashforge AD5X 0.8 nozzle.json" + }, + { + "name": "Flashforge Guider4 Pro 0.4 nozzle", + "sub_path": "machine/Flashforge Guider4 Pro 0.4 nozzle.json" + }, + { + "name": "Flashforge Guider4 Pro 0.4 HF nozzle", + "sub_path": "machine/Flashforge Guider4 Pro 0.4 HF nozzle.json" + }, + { + "name": "Flashforge Guider4 Pro 0.6 nozzle", + "sub_path": "machine/Flashforge Guider4 Pro 0.6 nozzle.json" + }, + { + "name": "Flashforge Guider4 Pro 0.6 HF nozzle", + "sub_path": "machine/Flashforge Guider4 Pro 0.6 HF nozzle.json" + }, + { + "name": "Flashforge Guider4 Pro 0.8 HF nozzle", + "sub_path": "machine/Flashforge Guider4 Pro 0.8 HF nozzle.json" + }, + { + "name": "Flashforge Guider4 Pro 0.25 nozzle", + "sub_path": "machine/Flashforge Guider4 Pro 0.25 nozzle.json" + }, + { + "name": "Flashforge Guider4 0.4 nozzle", + "sub_path": "machine/Flashforge Guider4 0.4 nozzle.json" + }, + { + "name": "Flashforge Guider4 0.4 HF nozzle", + "sub_path": "machine/Flashforge Guider4 0.4 HF nozzle.json" + }, + { + "name": "Flashforge Guider4 0.6 nozzle", + "sub_path": "machine/Flashforge Guider4 0.6 nozzle.json" + }, + { + "name": "Flashforge Guider4 0.6 HF nozzle", + "sub_path": "machine/Flashforge Guider4 0.6 HF nozzle.json" + }, + { + "name": "Flashforge Guider4 0.8 HF nozzle", + "sub_path": "machine/Flashforge Guider4 0.8 HF nozzle.json" + }, + { + "name": "Flashforge Guider4 0.25 nozzle", + "sub_path": "machine/Flashforge Guider4 0.25 nozzle.json" } ] } diff --git a/resources/profiles/Flashforge/Flashforge AD5X_cover.png b/resources/profiles/Flashforge/Flashforge AD5X_cover.png index 67dae78153..03c9a7847c 100644 Binary files a/resources/profiles/Flashforge/Flashforge AD5X_cover.png and b/resources/profiles/Flashforge/Flashforge AD5X_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png b/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png new file mode 100644 index 0000000000..7855bd6480 Binary files /dev/null and b/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Guider4_cover.png b/resources/profiles/Flashforge/Flashforge Guider4_cover.png new file mode 100644 index 0000000000..4ed94d7e98 Binary files /dev/null and b/resources/profiles/Flashforge/Flashforge Guider4_cover.png differ diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..ab6b900a06 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json @@ -0,0 +1,95 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PC @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PC" + ], + "filament_type": [ + "PC" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PC @FF G4 0.6 HF nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "120" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..5c8d3e6186 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PC @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PC" + ], + "filament_type": [ + "PC" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PC @FF G4 0.6 nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "120" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..33e4f56129 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json @@ -0,0 +1,95 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PC @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PC" + ], + "filament_type": [ + "PC" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PC @FF G4 0.8 HF nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "120" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..b9e017271b --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,95 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PC @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PC" + ], + "filament_type": [ + "PC" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PC @FF G4P 0.6 HF nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "120" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..fc426b4780 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PC @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PC" + ], + "filament_type": [ + "PC" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PC @FF G4P 0.6 nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "120" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..0dd7065e41 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,95 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PC @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PC" + ], + "filament_type": [ + "PC" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PC @FF G4P 0.8 HF nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "120" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..3e0b122381 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json @@ -0,0 +1,116 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "315" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "125" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..ae07779b54 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json @@ -0,0 +1,116 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "320" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "125" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..e2e6b33e62 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json @@ -0,0 +1,116 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "315" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "125" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..c8ec750ae3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,116 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "315" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "125" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..18174832a5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json @@ -0,0 +1,116 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "320" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "125" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..5ecf87b062 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,116 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "315" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "125" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..ccfbe17c45 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json @@ -0,0 +1,104 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS-CF @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS-CF @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "315" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "220" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..ef927660a9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json @@ -0,0 +1,104 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "175" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FlashForge PPS-CF @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS" + ], + "filament_type": [ + "PPS-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FlashForge PPS-CF @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "315" + ], + "nozzle_temperature_initial_layer": [ + "315" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "40" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "5" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "220" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json new file mode 100644 index 0000000000..c181444314 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "inherits": "Flashforge Generic ABS", + "from": "system", + "setting_id": "GFSA04_02", + "instantiation": "false", + "compatible_printers": [ + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" + ], + "filament_id": "GFB99", + "filament_settings_id": [ + "Flashforge ABS @FF AD5M 0.25 Nozzle" + ], + "fan_max_speed": [ + "50" + ], + "filament_cost": [ + "40" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "pressure_advance": [ + "0.1" + ], + "version": "1.8.0.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..e918ad383b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge ABS Basic @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_02", + "instantiation": "true", + "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..96f41106d0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_cost": [ + "20" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_02", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "260" + ], + "pressure_advance": [ + "0.04" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..9c93db6d67 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF AD5X 0.6 nozzle", + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..eb01b4b3f6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle", + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json new file mode 100644 index 0000000000..32bcf75b44 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json @@ -0,0 +1,54 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF AD5X", + "nozzle_temperature": [ + "260" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..273bd391c2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json @@ -0,0 +1,44 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "20" + ], + "filament_cost": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4 0.25 nozzle", + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..64332a6e58 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json @@ -0,0 +1,104 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:ABS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..6d045f7b18 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ABS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..8dcd6f00d8 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ABS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json new file mode 100644 index 0000000000..26640be840 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json @@ -0,0 +1,77 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ABS\n" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4 HF", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json new file mode 100644 index 0000000000..8c3ff52ae1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json @@ -0,0 +1,53 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4", + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..02b6c2463e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json @@ -0,0 +1,68 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "100" + ], + "cool_plate_temp_initial_layer": [ + "100" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_cost": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4P 0.25 nozzle", + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..0f7f2b461d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,104 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:ABS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..e44869f419 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ABS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..ec3b670e55 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ABS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json new file mode 100644 index 0000000000..aa5623e96e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json @@ -0,0 +1,101 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ABS\n" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4P HF", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json new file mode 100644 index 0000000000..3faedc0b46 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json @@ -0,0 +1,53 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_settings_id": [ + "Flashforge ABS Basic @FF G4P" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS Basic @FF G4P", + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json new file mode 100644 index 0000000000..8a357f570f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json @@ -0,0 +1,13 @@ +{ + "type": "filament", + "name": "Flashforge ABS Basic", + "inherits": "Flashforge Generic ABS", + "from": "system", + "filament_settings_id": [ + "Flashforge ABS Basic" + ], + "setting_id": "GFSA04_02", + "instantiation": "true", + "is_custom_defined": "0", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..e9b1e9708d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json @@ -0,0 +1,101 @@ +{ + "activate_air_filtration": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS-CF @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ABS" + ], + "filament_type": [ + "ABS-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS-CF @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json new file mode 100644 index 0000000000..c4c2716f77 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json @@ -0,0 +1,71 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "30" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_settings_id": [ + "Flashforge ABS-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ABS-CF\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS-CF @FF G4", + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "6" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..55c791eb22 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json @@ -0,0 +1,101 @@ +{ + "activate_air_filtration": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ABS-CF @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ABS" + ], + "filament_type": [ + "ABS-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ABS-CF @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json new file mode 100644 index 0000000000..66e0aed0e6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json @@ -0,0 +1,71 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "30" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_settings_id": [ + "Flashforge ABS-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ABS-CF\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ABS-CF @FF G4P", + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "6" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json new file mode 100644 index 0000000000..2020c4b62e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json @@ -0,0 +1,35 @@ +{ + "type": "filament", + "name": "Flashforge ASA @FF AD5M 0.25 Nozzle", + "inherits": "Flashforge Generic ASA", + "from": "system", + "setting_id": "GFSA04_05", + "instantiation": "false", + "compatible_printers": [ + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" + ], + "filament_id": "GFL99", + "filament_settings_id": [ + "Flashforge ASA @FF AD5M 0.25 Nozzle" + ], + "fan_max_speed": [ + "50" + ], + "filament_cost": [ + "40" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "pressure_advance": [ + "0.1" + ], + "version": "1.8.0.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..92dda00ff4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge ASA Basic @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_05", + "instantiation": "true", + "inherits": "Flashforge ASA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..e4021a774f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_cost": [ + "20" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_05", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge ASA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle", + "nozzle_temperature_initial_layer": [ + "265" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..95cacc64b9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF AD5X 0.6 nozzle", + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..cd321e1129 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF AD5X 0.8 nozzle", + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json new file mode 100644 index 0000000000..34759ee743 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json @@ -0,0 +1,54 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF AD5X", + "nozzle_temperature": [ + "260" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..e0a0fb79c0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json @@ -0,0 +1,50 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "20" + ], + "filament_cost": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4 0.25 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4 0.25 nozzle", + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..862bd0e145 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:ASA" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..1a313426f6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ASA" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..9580db8faf --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ASA" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json new file mode 100644 index 0000000000..49d80c487a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json @@ -0,0 +1,80 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "filament_type": [ + "ASA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4 HF", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json new file mode 100644 index 0000000000..196bada180 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json @@ -0,0 +1,59 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4", + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..d9e2e612ff --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json @@ -0,0 +1,74 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "100" + ], + "cool_plate_temp_initial_layer": [ + "100" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_cost": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4P 0.25 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4P 0.25 nozzle", + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..32ac11be3e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:ASA" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..234c5d506f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ASA" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..e8e0631e3c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:ASA" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json new file mode 100644 index 0000000000..1cc1e03b49 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json @@ -0,0 +1,104 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "filament_type": [ + "ASA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4P HF", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json new file mode 100644 index 0000000000..6cdd323c74 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json @@ -0,0 +1,59 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_settings_id": [ + "Flashforge ASA Basic @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA\n" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA Basic @FF G4P", + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json new file mode 100644 index 0000000000..fe6a757acf --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json @@ -0,0 +1,13 @@ +{ + "type": "filament", + "name": "Flashforge ASA Basic", + "inherits": "Flashforge Generic ASA", + "from": "system", + "filament_settings_id": [ + "Flashforge ASA Basic" + ], + "setting_id": "GFSA04_05", + "instantiation": "true", + "is_custom_defined": "0", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json new file mode 100644 index 0000000000..57faf8d9c5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json @@ -0,0 +1,59 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_settings_id": [ + "Flashforge ASA-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA-CF\n" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA-CF @FF G4", + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json new file mode 100644 index 0000000000..3e4b06e112 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json @@ -0,0 +1,59 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_settings_id": [ + "Flashforge ASA-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: ASA-CF\n" + ], + "filament_type": [ + "ASA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS", + "is_custom_defined": "0", + "name": "Flashforge ASA-CF @FF G4P", + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json new file mode 100644 index 0000000000..05c9086af1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "name": "Flashforge ASA-CF", + "inherits": "FusRock Generic PAHT-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_flow_ratio": [ + "0.99" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge ASA-CF" + ], + "filament_type": [ + "ASA" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "20" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..82e6358b06 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..967cd87458 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..2e178f490b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json new file mode 100644 index 0000000000..4352df503e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json @@ -0,0 +1,53 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: HIPS\n" + ], + "filament_type": [ + "HIPS" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4 HF", + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json new file mode 100644 index 0000000000..36ee1b6ca1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json @@ -0,0 +1,104 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.04" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS\n" + ], + "filament_type": [ + "HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.036" + ], + "slow_down_layer_time": [ + "8" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..b352e7b233 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..4fb24dc7ff --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..30d1da7d8d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,110 @@ +{ + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "115" + ], + "eng_plate_temp_initial_layer": [ + "115" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "25" + ], + "filament_cost": [ + "30" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "115" + ], + "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "115" + ], + "textured_plate_temp_initial_layer": [ + "115" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json new file mode 100644 index 0000000000..8ef2f41da2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json @@ -0,0 +1,77 @@ +{ + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: HIPS\n" + ], + "filament_type": [ + "HIPS" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4P HF", + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json new file mode 100644 index 0000000000..ac3e875b93 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json @@ -0,0 +1,104 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.04" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge HIPS @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:HIPS\n" + ], + "filament_type": [ + "HIPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge HIPS @FF G4P", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.036" + ], + "slow_down_layer_time": [ + "8" + ], + "support_material_interface_fan_speed": [ + "40" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..15aca674fa --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge HS PETG @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..87085dacdb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "100" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_min_speed": [ + "30" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..03e430c4f6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json @@ -0,0 +1,57 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "pressure_advance": [ + "0.04" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..43c4b5bb7f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json @@ -0,0 +1,57 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "pressure_advance": [ + "0.04" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json new file mode 100644 index 0000000000..6ea716e926 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json @@ -0,0 +1,58 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "pressure_advance": [ + "0.04" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..5421080d70 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..09e0f972d8 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json @@ -0,0 +1,92 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "40" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.68817 6.75269 6.43011 7.39785 11.957 17.6344 20 19.8925 19.8925 19.1398 13.5484 4.60215 0.215054 0.193548 0.473118 0.494624| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 19.8699 1.95 19.7215 2.45 19.0323 2.95 1.06237 3.45 0.245161 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "235" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..af612e2333 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..c18f77fc2f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json new file mode 100644 index 0000000000..2226738f2c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json @@ -0,0 +1,89 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4 HF", + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.075" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "30" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "temperature_vitrification": [ + "70" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json new file mode 100644 index 0000000000..c15a9fd9ab --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json @@ -0,0 +1,62 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "pressure_advance": [ + "0.08" + ], + "slow_down_layer_time": [ + "5" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..fc096cced7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json @@ -0,0 +1,77 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..514b610dd1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,92 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "40" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.68817 6.75269 6.43011 7.39785 11.957 17.6344 20 19.8925 19.8925 19.1398 13.5484 4.60215 0.215054 0.193548 0.473118 0.494624| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 19.8699 1.95 19.7215 2.45 19.0323 2.95 1.06237 3.45 0.245161 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "235" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..aa686f2063 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..86bc234f32 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json new file mode 100644 index 0000000000..61f4d69b94 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json @@ -0,0 +1,101 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4P HF", + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.075" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "30" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "temperature_vitrification": [ + "70" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json new file mode 100644 index 0000000000..5d80b20d88 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json @@ -0,0 +1,62 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge HS PETG @FF G4P" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge HS PETG @FF G4P", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "pressure_advance": [ + "0.08" + ], + "slow_down_layer_time": [ + "5" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG.json new file mode 100644 index 0000000000..3c0199e7a5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge HS PETG" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge HS PETG", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json new file mode 100644 index 0000000000..4a01aa1fb9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "Flashforge HS PLA @FF AD5M 0.25 nozzle", + "inherits": "Flashforge Generic HS PLA", + "from": "system", + "setting_id": "GFSA04_09", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" + ], + "filament_id": "GFL99", + "filament_settings_id": [ + "Flashforge HS PLA @FF AD5M 0.25 nozzle" + ], + "activate_air_filtration": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "100" + ], + "during_print_exhaust_fan_speed": [ + "100" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: HS PLA\n" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "nozzle_temperature": [ + "210" + ], + "pressure_advance": [ + "0.1" + ], + "slow_down_min_speed": [ + "15" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..ad7a6104f9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..06b80df4f6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..744a9c9edc --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json new file mode 100644 index 0000000000..6e02ccaa3f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..a282545081 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.026" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..c0a8f97625 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "43" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 9.50538 9.56989 9.39785 10.2366 13.7634 18.129 19.9355 19.8495 19.8925 19.3548 13.6559 4.32258 0.0430108 0.301075 0.645161 0.55914| 0.05 9.43871 0.45 9.5957 0.95 10.5957 1.45 19.6978 1.95 19.6355 2.45 19.5484 2.95 0.417204 3.45 0.417204 3.95 0.417204 4.45 0.288172 4.95 0.245161" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4 0.6 HF nozzle", + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..941adfed7a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..bf60e66447 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json new file mode 100644 index 0000000000..a15457e50f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json @@ -0,0 +1,98 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.031" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json new file mode 100644 index 0000000000..e69729819c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..35cfe1fdc5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.026" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..cdb108cc3e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "43" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 9.50538 9.56989 9.39785 10.2366 13.7634 18.129 19.9355 19.8495 19.8925 19.3548 13.6559 4.32258 0.0430108 0.301075 0.645161 0.55914| 0.05 9.43871 0.45 9.5957 0.95 10.5957 1.45 19.6978 1.95 19.6355 2.45 19.5484 2.95 0.417204 3.45 0.417204 3.95 0.417204 4.45 0.288172 4.95 0.245161" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4P 0.6 HF nozzle", + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..b62c7b8684 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..4758f99203 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json new file mode 100644 index 0000000000..ac62ded84e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json @@ -0,0 +1,116 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.031" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json new file mode 100644 index 0000000000..8e57fa7733 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge HS PLA @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge HS PLA @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..ccd6231db1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 9.87097 10.129 10.129 10.9247 14.1505 18.1505 19.7634 19.7419 19.8925 19.5484 13.9785 4.45161 0.0430108 0.236559 0.473118 0.301075| 0.05 9.73979 0.45 10.2409 0.95 11.2409 1.45 19.5688 1.95 19.5925 2.45 19.9355 2.95 0.503226 3.45 0.331183 3.95 0.116129 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json new file mode 100644 index 0000000000..84ce00bf3f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json @@ -0,0 +1,98 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.031" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..9a16e36073 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 9.87097 10.129 10.129 10.9247 14.1505 18.1505 19.7634 19.7419 19.8925 19.5484 13.9785 4.45161 0.0430108 0.236559 0.473118 0.301075| 0.05 9.73979 0.45 10.2409 0.95 11.2409 1.45 19.5688 1.95 19.5925 2.45 19.9355 2.95 0.503226 3.45 0.331183 3.95 0.116129 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json new file mode 100644 index 0000000000..31b8deb620 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json @@ -0,0 +1,116 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.031" + ], + "slow_down_layer_time": [ + "4" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..68c3bbeb75 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..1c45bbc2ae --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..5abe08f9a9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..89c4620016 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "28" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA.json new file mode 100644 index 0000000000..48fa9c5276 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge HS PLA" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge HS PLA", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..b0da411e47 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json @@ -0,0 +1,119 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_density": [ + "1.04" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PA @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PA\n\n\n" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PA @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "295" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.023" + ], + "slow_down_layer_time": [ + "8" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "temperature_vitrification": [ + "108" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json new file mode 100644 index 0000000000..57cf18f00b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json @@ -0,0 +1,89 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PA @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PA\n" + ], + "filament_type": [ + "PA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PA @FF G4 HF", + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.02" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "110" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json new file mode 100644 index 0000000000..d4ff81a355 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json @@ -0,0 +1,89 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PA @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA\n" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge PA @FF G4", + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "pressure_advance": [ + "0.02" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..195ee46d5d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,119 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_density": [ + "1.04" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PA @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PA\n\n\n" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PA @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "295" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.023" + ], + "slow_down_layer_time": [ + "8" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "temperature_vitrification": [ + "108" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json new file mode 100644 index 0000000000..fca8702c4f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PA @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PA\n" + ], + "filament_type": [ + "PA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PA @FF G4P HF", + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.02" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "110" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json new file mode 100644 index 0000000000..61bc382d5d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json @@ -0,0 +1,89 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PA @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA\n" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge PA @FF G4P", + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "pressure_advance": [ + "0.02" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json new file mode 100644 index 0000000000..78cc8fee8e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PA-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA-CF\n" + ], + "filament_type": [ + "PA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PA-CF @FF G4", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json new file mode 100644 index 0000000000..070fa8282b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PA-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA-CF\n" + ], + "filament_type": [ + "PA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PA-CF @FF G4P", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json new file mode 100644 index 0000000000..7dbd81db30 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "Flashforge PA12-CF", + "inherits": "FusRock Generic PET-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_density": [ + "1.1" + ], + "filament_flow_ratio": [ + "0.99" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PA12-CF" + ], + "filament_type": [ + "PA-CF" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json new file mode 100644 index 0000000000..3bedb724f0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "name": "Flashforge PA6-CF", + "inherits": "FusRock Generic PET-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_density": [ + "1.1" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PA6-CF" + ], + "filament_type": [ + "PA6-CF" + ], + "hot_plate_temp": [ + "95" + ], + "hot_plate_temp_initial_layer": [ + "95" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json new file mode 100644 index 0000000000..25aa934c3b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "name": "Flashforge PA66-CF", + "inherits": "FusRock Generic PET-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_density": [ + "1.1" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PA66-CF" + ], + "filament_type": [ + "PA-CF" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json new file mode 100644 index 0000000000..f4164da83e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json @@ -0,0 +1,107 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PAHT-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA-CF\n" + ], + "filament_type": [ + "PA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PAHT-CF @FF G4", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json new file mode 100644 index 0000000000..30a7ed5432 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json @@ -0,0 +1,107 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PAHT-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA-CF\n" + ], + "filament_type": [ + "PA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PAHT-CF @FF G4P", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF.json new file mode 100644 index 0000000000..449ed25791 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF.json @@ -0,0 +1,46 @@ +{ + "type": "filament", + "name": "Flashforge PET-CF", + "inherits": "FusRock Generic PET-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_density": [ + "1.1" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PET-CF" + ], + "hot_plate_temp": [ + "80" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json new file mode 100644 index 0000000000..c2bd02e49f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json @@ -0,0 +1,29 @@ +{ + "type": "filament", + "name": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "inherits": "Flashforge Generic PETG", + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "false", + "compatible_printers": [ + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" + ], + "filament_id": "GFG99", + "filament_settings_id": [ + "Flashforge PETG @FF AD5M 0.25 Nozzle" + ], + "fan_max_speed": [ + "80" + ], + "filament_max_volumetric_speed": [ + "1.5" + ], + "pressure_advance": [ + "0.1" + ], + "slow_down_min_speed": [ + "15" + ], + "version": "1.8.0.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..d239645d81 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PETG Basic @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Basic @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json b/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json new file mode 100644 index 0000000000..af99bda27f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "additional_cooling_fan_speed": [ + "60" + ], + "filament_settings_id": [ + "Flashforge PETG Basic" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Basic", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..82fec2fb49 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PETG Pro @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..84f650a206 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "30" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..71a7830475 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json @@ -0,0 +1,78 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "70" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..cfb310c0b5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json @@ -0,0 +1,75 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle", + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json new file mode 100644 index 0000000000..8718e044d2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..880360a177 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json @@ -0,0 +1,47 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4 0.25 nozzle", + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..a57bbe92e9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.68817 6.75269 6.51613 7.54839 11.9355 17.5054 19.957 19.828 19.828 18.9892 13.0538 4.08602 0.0430108 0.387097 0.666667 0.344086| 0.05 6.6 0.45 6.8 0.95 7.97204 1.45 19.4828 1.95 19.5495 2.45 18.7742 2.95 0.331183 3.45 0.632258 3.95 0.116129 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "235" + ], + "overhang_fan_speed": [ + "100" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..89886df2f9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..3501e97be3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json new file mode 100644 index 0000000000..e7575c6380 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json @@ -0,0 +1,92 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PETG\n" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4 HF", + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "30" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "temperature_vitrification": [ + "70" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json new file mode 100644 index 0000000000..2a389fc09d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json @@ -0,0 +1,56 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4", + "pressure_advance": [ + "0.08" + ], + "slow_down_layer_time": [ + "5" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..b682cbc763 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json @@ -0,0 +1,71 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4P 0.25 nozzle", + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..e06a99c976 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.68817 6.75269 6.51613 7.54839 11.9355 17.5054 19.957 19.828 19.828 18.9892 13.0538 4.08602 0.0430108 0.387097 0.666667 0.344086| 0.05 6.6 0.45 6.8 0.95 7.97204 1.45 19.4828 1.95 19.5495 2.45 18.7742 2.95 0.331183 3.45 0.632258 3.95 0.116129 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "235" + ], + "overhang_fan_speed": [ + "100" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..3a4f3b6de2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..33a74f6992 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json new file mode 100644 index 0000000000..56299666d1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json @@ -0,0 +1,104 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PETG\n" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4P HF", + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "30" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "temperature_vitrification": [ + "70" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json new file mode 100644 index 0000000000..9457d0e726 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json @@ -0,0 +1,56 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge PETG Pro @FF G4P" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro @FF G4P", + "pressure_advance": [ + "0.08" + ], + "slow_down_layer_time": [ + "5" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json new file mode 100644 index 0000000000..6fd513c95c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "additional_cooling_fan_speed": [ + "60" + ], + "filament_settings_id": [ + "Flashforge PETG Pro" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Pro", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..1bcf72341d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PETG Transparent @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..d91b942906 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_12", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "30" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..fdf71affea --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json @@ -0,0 +1,78 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "70" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..73edb6e260 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json @@ -0,0 +1,75 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle", + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json new file mode 100644 index 0000000000..8bfded333f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "close_fan_the_first_x_layers": [ + "2" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..2ddde34121 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json @@ -0,0 +1,47 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4 0.25 nozzle", + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..94fce06a99 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.68817 6.75269 6.51613 7.54839 11.9355 17.5054 19.957 19.828 19.828 18.9892 13.0538 4.08602 0.0430108 0.387097 0.666667 0.344086| 0.05 6.6 0.45 6.8 0.95 7.97204 1.45 19.4828 1.95 19.5495 2.45 18.7742 2.95 0.331183 3.45 0.632258 3.95 0.116129 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "235" + ], + "overhang_fan_speed": [ + "100" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..9314d20f87 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..7fc3e2482f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json new file mode 100644 index 0000000000..9d9e987312 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json @@ -0,0 +1,92 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PETG\n" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4 HF", + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "30" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "temperature_vitrification": [ + "70" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json new file mode 100644 index 0000000000..8be7e0e780 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json @@ -0,0 +1,56 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4", + "pressure_advance": [ + "0.08" + ], + "slow_down_layer_time": [ + "5" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..0fbdf18bee --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json @@ -0,0 +1,71 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "80" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4P 0.25 nozzle", + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "0" + ], + "textured_cool_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..2b3f9834cc --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.68817 6.75269 6.51613 7.54839 11.9355 17.5054 19.957 19.828 19.828 18.9892 13.0538 4.08602 0.0430108 0.387097 0.666667 0.344086| 0.05 6.6 0.45 6.8 0.95 7.97204 1.45 19.4828 1.95 19.5495 2.45 18.7742 2.95 0.331183 3.45 0.632258 3.95 0.116129 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "235" + ], + "overhang_fan_speed": [ + "100" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..16308e2246 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..5146750a33 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json new file mode 100644 index 0000000000..d3edbd751e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json @@ -0,0 +1,104 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PETG\n" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4P HF", + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "overhang_fan_speed": [ + "80" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "30" + ], + "support_material_interface_fan_speed": [ + "90" + ], + "temperature_vitrification": [ + "70" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json new file mode 100644 index 0000000000..ca96495a52 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json @@ -0,0 +1,56 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent @FF G4P" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent @FF G4P", + "pressure_advance": [ + "0.08" + ], + "slow_down_layer_time": [ + "5" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json new file mode 100644 index 0000000000..74e14bcb88 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "additional_cooling_fan_speed": [ + "60" + ], + "filament_settings_id": [ + "Flashforge PETG Transparent" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG Transparent", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..9e04b922bc --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF AD5X 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG-CF\n" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG-CF10", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF AD5X 0.6 nozzle", + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..5e0809480e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF AD5X 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG-CF\n" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG-CF10", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle", + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json new file mode 100644 index 0000000000..824f358e81 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF AD5X" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG-CF\n" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "inherits": "Flashforge Generic PETG-CF10", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "240" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..6e0aba052a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json new file mode 100644 index 0000000000..640773a232 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json @@ -0,0 +1,71 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode \n;right_extruder_material:PETG-CF" + ], + "filament_type": [ + "PETG-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF G4", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.075" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..9a2ef8dbc0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "25" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PETG" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json new file mode 100644 index 0000000000..a17401238a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json @@ -0,0 +1,71 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_settings_id": [ + "Flashforge PETG-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode \n;right_extruder_material:PETG-CF" + ], + "filament_type": [ + "PETG-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic PETG", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF @FF G4P", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "pressure_advance": [ + "0.075" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json new file mode 100644 index 0000000000..e6aed65066 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PETG-CF" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PETG-CF10", + "is_custom_defined": "0", + "name": "Flashforge PETG-CF", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json new file mode 100644 index 0000000000..df8dd072b0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "inherits": "Flashforge Generic PLA", + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "false", + "compatible_printers": [ + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" + ], + "filament_settings_id": [ + "Flashforge PLA @FF AD5M 0.25 Nozzle" + ], + "activate_air_filtration": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "100" + ], + "during_print_exhaust_fan_speed": [ + "100" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "15" + ], + "version": "1.8.0.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..b80437afda --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Basic @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..b23b196dce --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..0d4635ae83 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "9" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..ab0c285a24 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "9" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json new file mode 100644 index 0000000000..5edca78019 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..47b03cc69e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..b8fc1b44e4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..62e6e1f26f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4 0.6 nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..9c5c0b79f1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json new file mode 100644 index 0000000000..4d416a6fd7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json new file mode 100644 index 0000000000..70d9530282 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..a3e71717a4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..5fb6cfd68a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..b9fd73495c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4P 0.6 nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..d37ca80461 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4P 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json new file mode 100644 index 0000000000..6a52d334cc --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json new file mode 100644 index 0000000000..cafd33b31d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Basic @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json new file mode 100644 index 0000000000..30d0a8680a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Basic" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Basic", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json new file mode 100644 index 0000000000..bff51b2995 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json @@ -0,0 +1,92 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Buint Ti @FF G4 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Buint Ti @FF G4 0.8 nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json new file mode 100644 index 0000000000..f17c8d789d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json @@ -0,0 +1,92 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Buint Ti @FF G4P 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Buint Ti @FF G4P 0.8 nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..a9fc911987 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Color Change @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..d7012e081b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..0e080ca279 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..23e0a4b542 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json new file mode 100644 index 0000000000..07b00cb8f9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..6edb256c06 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..b453ed40cb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..e46c1753b9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4 0.6 nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..6fe7b793b2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json new file mode 100644 index 0000000000..dc58aaeb92 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json new file mode 100644 index 0000000000..97e4ca62ef --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..fc63de347a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..651b320076 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..12410de9d4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4P 0.6 nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..9e529749ce --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4P 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json new file mode 100644 index 0000000000..2e5058cf6c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json new file mode 100644 index 0000000000..17ea415cab --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Color Change @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json new file mode 100644 index 0000000000..93d1c43114 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Color Change" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Color Change", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..c41d2faa08 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..5af54993f5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..a5fd70b302 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..dcb8e89020 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json new file mode 100644 index 0000000000..540ad63b33 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..cdbc27e43e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..dcd573b8eb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..c748b853dc --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..5c2d473ffe --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json new file mode 100644 index 0000000000..cd8d4c3cd1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json new file mode 100644 index 0000000000..7f51358df7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..774624ab49 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..0c8b6ec144 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..1e2d60220b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..63e60d0da2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json new file mode 100644 index 0000000000..7d4213823e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json new file mode 100644 index 0000000000..9d853a2873 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Galaxy @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json new file mode 100644 index 0000000000..c2c8ef9133 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Galaxy" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Galaxy", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..ca63379b67 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Luminous @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..893fb46ba1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..007bb22964 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..1225c57238 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json new file mode 100644 index 0000000000..ac90482671 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..ec36dc6372 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..f8fc05313f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..78a6e8cfe3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json new file mode 100644 index 0000000000..aa61bf4218 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json new file mode 100644 index 0000000000..f721dd3812 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..c1c6640349 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..4af9caec1a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..e9cef8b3b3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4P 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json new file mode 100644 index 0000000000..933fcc971b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json new file mode 100644 index 0000000000..46ac96e44c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Luminous @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json new file mode 100644 index 0000000000..4c24f116a1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Luminous" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Luminous", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..e790cfd512 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Matte @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..49292b1e12 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..8590e61340 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..6866d9183e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json new file mode 100644 index 0000000000..3f8bf2bc9c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..3dad7fa731 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..be96ce5384 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..43eb7dcf97 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..c414b4ff76 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json new file mode 100644 index 0000000000..ffe2138965 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json new file mode 100644 index 0000000000..287eb04908 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..46f2936a87 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..58c3956e5e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..a75efcb573 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..de3fdc3606 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json new file mode 100644 index 0000000000..eda286fa70 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json new file mode 100644 index 0000000000..13a40602e9 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Matte @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json new file mode 100644 index 0000000000..1955a67e88 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json @@ -0,0 +1,15 @@ +{ + "filament_max_volumetric_speed": [ + "22" + ], + "filament_settings_id": [ + "Flashforge PLA Matte" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Matte", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..9ecca13498 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Metal @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..02bb6eca70 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..625d511e74 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..d2ea48d2f4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json new file mode 100644 index 0000000000..3b102843df --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..6e0a097737 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..433d8be3fb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..5bad67534d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..d958f8e4eb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json new file mode 100644 index 0000000000..812ce954db --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json new file mode 100644 index 0000000000..996ca6b747 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..c80feeb448 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..65655cc54b --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..c086a89573 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..74514bcf0a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json new file mode 100644 index 0000000000..7a974c9f31 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json new file mode 100644 index 0000000000..f3180b9fd2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Metal @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json new file mode 100644 index 0000000000..de6dbc3a72 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Metal" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Metal", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..53c7b96061 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Pro @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..6d6af35109 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..cf9f9082e2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..cb618c268a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json new file mode 100644 index 0000000000..819837f314 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..136b0ebe01 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..99f2e0fdfb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.027" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..a07cf90be7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.028" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..c4960228d2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.028" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json new file mode 100644 index 0000000000..1a4df02c9d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json new file mode 100644 index 0000000000..f982e3e4af --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..e2ae8fbcf7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..2406740428 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.027" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..cbc09a8380 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.028" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..6a3100aac3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.028" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json new file mode 100644 index 0000000000..a58ece6846 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json new file mode 100644 index 0000000000..aad4d2a8d7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Pro @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json new file mode 100644 index 0000000000..8f2edc787a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Pro" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Pro", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..314ac9230d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Silk @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_25", + "instantiation": "true", + "inherits": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..c2aabaa9c3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json @@ -0,0 +1,70 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF AD5X 0.25 nozzle" + ], + "filament_type": [ + "SILK" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..1ac2e41462 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json @@ -0,0 +1,54 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF AD5X 0.6 nozzle" + ], + "filament_type": [ + "SILK" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA-Silk", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "pressure_advance": [ + "0.027" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..bc16a9b99e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json @@ -0,0 +1,54 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF AD5X 0.8 nozzle" + ], + "filament_type": [ + "SILK" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA-Silk", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "pressure_advance": [ + "0.027" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json new file mode 100644 index 0000000000..9e3be0eb17 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "50" + ], + "cool_plate_temp_initial_layer": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF AD5X" + ], + "filament_type": [ + "SILK" + ], + "from": "system", + "instantiation": "true", + "setting_id": "GFSA04", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA-Silk", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "pressure_advance": [ + "0.027" + ], + "textured_cool_plate_temp": [ + "50" + ], + "textured_cool_plate_temp_initial_layer": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..6ae7bd5943 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..6a3cabc392 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 9.95699 10.0645 9.54839 9.80645 13.1183 17.7419 19.828 19.7204 19.7849 19.0538 13.8065 5.52688 0.795699 0.150538 0.344086 0.344086| 0.05 9.82581 0.45 10.1548 0.95 9.95054 1.45 19.3968 1.95 19.4634 2.45 18.8172 2.95 2.22366 3.45 0.20215 3.95 0.288172 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..b535255268 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..4557b207de --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json @@ -0,0 +1,89 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json new file mode 100644 index 0000000000..730bdce431 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4 HF", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.026" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json new file mode 100644 index 0000000000..f6b28801db --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json @@ -0,0 +1,71 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..f54e4e5138 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..3aff03c758 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 9.95699 10.0645 9.54839 9.80645 13.1183 17.7419 19.828 19.7204 19.7849 19.0538 13.8065 5.52688 0.795699 0.150538 0.344086 0.344086| 0.05 9.82581 0.45 10.1548 0.95 9.95054 1.45 19.3968 1.95 19.4634 2.45 18.8172 2.95 2.22366 3.45 0.20215 3.95 0.288172 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..1df6431fa0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..12c785c990 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,89 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json new file mode 100644 index 0000000000..018df27caa --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4P HF", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.026" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json new file mode 100644 index 0000000000..1bc47110e2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json @@ -0,0 +1,71 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Silk @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk @FF G4P", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json new file mode 100644 index 0000000000..2b8d24ba84 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Silk" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA-Silk", + "is_custom_defined": "0", + "name": "Flashforge PLA Silk", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json new file mode 100644 index 0000000000..b456bb6434 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json new file mode 100644 index 0000000000..167084b3f5 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle" + ], + "from": "system", + "setting_id": "GFSA04_19", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.25 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..38a1b08221 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..a1b430047a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json new file mode 100644 index 0000000000..cfaa07c76d --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "pressure_advance": [ + "0.0325" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..d4afe5a7ba --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json @@ -0,0 +1,53 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..829a9a5c21 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..da2640e2e4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4 0.6 nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json new file mode 100644 index 0000000000..f0e35d0221 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4 HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4 HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json new file mode 100644 index 0000000000..79e461a671 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..f9467e01dc --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4P 0.25 nozzle" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..bfa7e2d942 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,83 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 11.2043 11.2258 11.0108 11.5269 14.129 17.5699 19.2903 19.6129 19.871 18.9462 13.3118 4.66667 0.322581 0.215054 0.494624 0.494624| 0.05 11.1591 0.45 11.2301 0.95 11.757 1.45 18.7946 1.95 19.5925 2.45 18.6882 2.95 1.27742 3.45 0.288172 3.95 0.417204 4.45 7.6 4.95 7.6" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..6a798eacc6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4P 0.6 nozzle", + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json new file mode 100644 index 0000000000..98f9661f06 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json @@ -0,0 +1,113 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "49" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4P HF" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA\n" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "Flashforge Generic ABS @G3U", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4P HF", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.032" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json new file mode 100644 index 0000000000..ba3e805689 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json @@ -0,0 +1,65 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_settings_id": [ + "Flashforge PLA Sparkle @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA\n" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle @FF G4P", + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.035" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json new file mode 100644 index 0000000000..aa3427c1f0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA Sparkle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA Sparkle", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..3465965478 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF AD5X 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA-CF\n" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF AD5X 0.6 nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..9e03bd01fb --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json @@ -0,0 +1,45 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF AD5X 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA-CF\n" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json new file mode 100644 index 0000000000..da8507f38f --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF AD5X" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA-CF\n" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..b7bf2b7992 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF G4 0.6 nozzle", + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json new file mode 100644 index 0000000000..94b6427ee0 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json @@ -0,0 +1,68 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA-CF\n" + ], + "filament_type": [ + "PLA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF G4", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.015" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..77b80fe726 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF G4P 0.6 nozzle", + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json new file mode 100644 index 0000000000..3e2eab5fec --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json @@ -0,0 +1,68 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_settings_id": [ + "Flashforge PLA-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PLA-CF\n" + ], + "filament_type": [ + "PLA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "inherits": "Flashforge Generic HS PLA", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF @FF G4P", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "pressure_advance": [ + "0.045" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json new file mode 100644 index 0000000000..e37e5cdb6e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge PLA-CF" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PLA-CF", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json new file mode 100644 index 0000000000..108b45d39e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json @@ -0,0 +1,53 @@ +{ + "type": "filament", + "name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", + "inherits": "Flashforge Generic PLA-Silk", + "from": "system", + "setting_id": "GFSA04_25", + "instantiation": "false", + "compatible_printers": [ + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" + ], + "filament_id": "GFL99", + "filament_settings_id": [ + "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle" + ], + "activate_air_filtration": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "100" + ], + "during_print_exhaust_fan_speed": [ + "100" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material: PLA-Silk\n" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "nozzle_temperature": [ + "217" + ], + "pressure_advance": [ + "0.1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "15" + ], + "version": "1.8.0.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json new file mode 100644 index 0000000000..8a40cb7709 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "name": "Flashforge PPA-CF", + "inherits": "FusRock Generic PAHT-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_flow_ratio": [ + "0.99" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPA-CF" + ], + "filament_type": [ + "PPA-CF" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "20" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json b/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json new file mode 100644 index 0000000000..043016af4c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json @@ -0,0 +1,58 @@ +{ + "type": "filament", + "name": "Flashforge PPA-GF", + "inherits": "FusRock Generic PAHT-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "1.03" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPA-GF" + ], + "filament_type": [ + "PPA-GF" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "20" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json new file mode 100644 index 0000000000..4ab6ec64cf --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json @@ -0,0 +1,113 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPS @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS\n" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PPS @FF G4", + "nozzle_temperature": [ + "320" + ], + "nozzle_temperature_initial_layer": [ + "320" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "30" + ], + "temperature_vitrification": [ + "125" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json new file mode 100644 index 0000000000..e5a916bb33 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json @@ -0,0 +1,113 @@ +{ + "activate_chamber_temp_control": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPS @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS\n" + ], + "filament_type": [ + "PPS" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PPS @FF G4P", + "nozzle_temperature": [ + "320" + ], + "nozzle_temperature_initial_layer": [ + "320" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "30" + ], + "temperature_vitrification": [ + "125" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json new file mode 100644 index 0000000000..1f472e4393 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.3" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPS-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS-CF\n" + ], + "filament_type": [ + "PPS-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PPS-CF @FF G4", + "nozzle_temperature": [ + "310" + ], + "nozzle_temperature_initial_layer": [ + "310" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "30" + ], + "temperature_vitrification": [ + "220" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json new file mode 100644 index 0000000000..98a1389230 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json @@ -0,0 +1,107 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_density": [ + "1.3" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPS-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PPS-CF\n" + ], + "filament_type": [ + "PPS-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "Flashforge PPS-CF @FF G4P", + "nozzle_temperature": [ + "310" + ], + "nozzle_temperature_initial_layer": [ + "310" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "30" + ], + "temperature_vitrification": [ + "220" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json new file mode 100644 index 0000000000..d89cbfd63a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "name": "Flashforge PPS-CF", + "inherits": "FusRock Generic PAHT-CF", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_flow_ratio": [ + "0.99" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_settings_id": [ + "Flashforge PPS-CF" + ], + "filament_type": [ + "PPS-CF" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "305" + ], + "nozzle_temperature_initial_layer": [ + "305" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "20" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "20" + ], + "version": "2.0.2.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..0d756b4811 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json @@ -0,0 +1,113 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "40" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.62366 6.75269 6.98925 7.5914 8.94624 10.9892 13.2903 15.2043 16.129 16.2366 16.1505 16.1075 16.0645 16.0215 16.0215 16.0215 15.957 15.8495 15.8065 15.8495| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 11.7839 1.95 15.8075 2.45 16.1936 2.95 16.1162 3.45 16.0301 3.95 16.0301 4.45 15.8151 4.95 15.9011" + ], + "filament_settings_id": [ + "Flashforge TPU 65D @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:TPU" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "30" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..3658888770 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 65D @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 65D @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..c023f870e3 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 65D @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 65D @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..ac43de6993 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,113 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "40" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.62366 6.75269 6.98925 7.5914 8.94624 10.9892 13.2903 15.2043 16.129 16.2366 16.1505 16.1075 16.0645 16.0215 16.0215 16.0215 15.957 15.8495 15.8065 15.8495| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 11.7839 1.95 15.8075 2.45 16.1936 2.95 16.1162 3.45 16.0301 3.95 16.0301 4.45 15.8151 4.95 15.9011" + ], + "filament_settings_id": [ + "Flashforge TPU 65D @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:TPU" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "30" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..29923150e2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 65D @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 65D @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..bc79045864 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 65D @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 65D @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..6de2f23400 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json @@ -0,0 +1,51 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF AD5X 0.6 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF AD5X 0.6 nozzle", + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..799f714798 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json @@ -0,0 +1,54 @@ +{ + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF AD5X 0.8 nozzle" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json new file mode 100644 index 0000000000..e154fa0b7a --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF AD5X" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF AD5X", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..65affc8ba1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json @@ -0,0 +1,113 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "40" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.62366 6.75269 6.98925 7.5914 8.94624 10.9892 13.2903 15.2043 16.129 16.2366 16.1505 16.1075 16.0645 16.0215 16.0215 16.0215 15.957 15.8495 15.8065 15.8495| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 11.7839 1.95 15.8075 2.45 16.1936 2.95 16.1162 3.45 16.0301 3.95 16.0301 4.45 15.8151 4.95 15.9011" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:TPU" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "30" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..b942a55611 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4 0.6 nozzle", + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..94c35aef67 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json @@ -0,0 +1,95 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json new file mode 100644 index 0000000000..a68392bcb4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "95%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..592b0d6dca --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,113 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "40" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_ramming_parameters": [ + "105 105 6.62366 6.75269 6.98925 7.5914 8.94624 10.9892 13.2903 15.2043 16.129 16.2366 16.1505 16.1075 16.0645 16.0215 16.0215 16.0215 15.957 15.8495 15.8065 15.8495| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 11.7839 1.95 15.8075 2.45 16.1936 2.95 16.1162 3.45 16.0301 3.95 16.0301 4.45 15.8151 4.95 15.9011" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:TPU" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "pressure_advance": [ + "0.03" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "30" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..60567d3805 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4P 0.6 nozzle", + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..6ce2a66b29 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,95 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "50" + ], + "eng_plate_temp_initial_layer": [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:TPU\n\n" + ], + "filament_type": [ + "TPU" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4P 0.8 HF nozzle", + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "50" + ], + "textured_plate_temp_initial_layer": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json new file mode 100644 index 0000000000..6aa8075ce1 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json @@ -0,0 +1,62 @@ +{ + "additional_cooling_fan_speed": [ + "40" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Flashforge TPU 95A @FF G4P" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A @FF G4P", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "95%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_min_speed": [ + "10" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json new file mode 100644 index 0000000000..ace1cfaa19 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json @@ -0,0 +1,12 @@ +{ + "filament_settings_id": [ + "Flashforge TPU 95A" + ], + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Flashforge TPU 95A", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..431803aea8 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json @@ -0,0 +1,62 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT @FF G4 0.6 HF nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..58fe29599a --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json @@ -0,0 +1,65 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PAHT" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT @FF G4 0.6 nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..ceaaf67306 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json @@ -0,0 +1,62 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT @FF G4 0.8 HF nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..60073321fe --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,62 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT @FF G4P 0.6 HF nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..a604be0649 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json @@ -0,0 +1,65 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PAHT" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT @FF G4P 0.6 nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..3ebcc1d7fd --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,62 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "75" + ], + "eng_plate_temp_initial_layer": [ + "75" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT @FF G4P 0.8 HF nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "75" + ], + "textured_cool_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..786458d913 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json @@ -0,0 +1,71 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT-CF @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT-CF @FF G4 0.6 nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json new file mode 100644 index 0000000000..418bccbd9a --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "FusRock PAHT-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA-CF\n" + ], + "filament_type": [ + "PA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "FusRock PAHT-CF @FF G4", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..e0c1bf9ade --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json @@ -0,0 +1,71 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PAHT-CF @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PAHT-CF @FF G4P 0.6 nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json new file mode 100644 index 0000000000..fb252489c6 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json @@ -0,0 +1,101 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "FusRock PAHT-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA-CF\n" + ], + "filament_type": [ + "PA-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "inherits": "Flashforge Generic PLA-CF10", + "is_custom_defined": "0", + "name": "FusRock PAHT-CF @FF G4P", + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "2" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "180" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..d30175272d --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,53 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "filament_load_time": [ + "29" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PET @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "filament_unload_time": [ + "29" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PET @FF G4P 0.8 HF nozzle", + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..41a6707ce4 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json @@ -0,0 +1,62 @@ +{ + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PET-CF @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PET-CF @FF G4 0.6 nozzle", + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json new file mode 100644 index 0000000000..00c4595b9b --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json @@ -0,0 +1,95 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "10" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "FusRock PET-CF @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET-CF\n" + ], + "filament_type": [ + "PET-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "FusRock PET-CF @FF G4", + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "6" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..d7f6c5ffa2 --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json @@ -0,0 +1,62 @@ +{ + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "FusRock PET-CF @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "FusRock PET-CF @FF G4P 0.6 nozzle", + "slow_down_min_speed": [ + "20" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json new file mode 100644 index 0000000000..b9d88f938b --- /dev/null +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json @@ -0,0 +1,95 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "10" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_settings_id": [ + "FusRock PET-CF @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET-CF\n" + ], + "filament_type": [ + "PET-CF" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "FusRock PET-CF @FF G4P", + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "6" + ], + "support_material_interface_fan_speed": [ + "60" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json index aa1849bb7b..a51765bd55 100644 --- a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json @@ -3,6 +3,7 @@ "filament_id": "GFL99", "setting_id": "GFSA04", "name": "Generic ASA @Flashforge AD4", + "renamed_from": "Generic ASA @AD4", "from": "system", "instantiation": "true", "inherits": "Flashforge Generic ASA", diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..d107ccfb5c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json @@ -0,0 +1,77 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Generic PET @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..01e5b38d7e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Generic PET @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..b213554847 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json @@ -0,0 +1,77 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Generic PET @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4.json new file mode 100644 index 0000000000..858f17624e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4.json @@ -0,0 +1,80 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "10" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "filament_density": [ + "1.4" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET\n" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Generic PET @FF G4", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "95%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "6" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..9b461cc26c --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,77 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Generic PET @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..933faabdac --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Generic PET @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..d249891bfd --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,77 @@ +{ + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n; right_extruder_material:PET" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Generic PET @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "80" + ], + "textured_cool_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json new file mode 100644 index 0000000000..3f9bb3d5bd --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json @@ -0,0 +1,80 @@ +{ + "additional_cooling_fan_speed": [ + "0" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "10" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "filament_density": [ + "1.4" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_settings_id": [ + "Generic PET @FF G4P" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PET\n" + ], + "filament_type": [ + "PET" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Generic PET @FF G4P", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "95%" + ], + "pressure_advance": [ + "0.02" + ], + "slow_down_layer_time": [ + "6" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "80" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json index 571d943ff4..6c2db8a46b 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json @@ -2,7 +2,8 @@ "type": "filament", "filament_id": "GFL99", "setting_id": "GFSA04", - "name": "PLA Silk @Flashforge AD4", + "name": "Generic PLA Silk @Flashforge AD4", + "renamed_from": "PLA Silk @Flashforge AD4", "from": "system", "instantiation": "true", "inherits": "Flashforge Generic PLA-Silk", diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json new file mode 100644 index 0000000000..94c784c3d7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Generic TPU 85A @FF AD5X 0.6 nozzle" + ], + "from": "system", + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Generic TPU 85A @FF AD5X 0.6 nozzle", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.6 nozzle" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json new file mode 100644 index 0000000000..241b61739e --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "filament_settings_id": [ + "Generic TPU 85A @FF AD5X 0.8 nozzle" + ], + "from": "system", + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Generic TPU 85A @FF AD5X 0.8 nozzle", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.8 nozzle" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json new file mode 100644 index 0000000000..e89c896a54 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json @@ -0,0 +1,58 @@ +{ + "type": "filament", + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "eng_plate_temp": [ + "45" + ], + "eng_plate_temp_initial_layer": [ + "45" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_max_volumetric_speed": [ + "3.2" + ], + "filament_retract_when_changing_layer": [ + "0" + ], + "filament_retraction_length": [ + "1.5" + ], + "filament_settings_id": [ + "Generic TPU 85A @FF AD5X" + ], + "filament_wipe": [ + "0" + ], + "filament_wipe_distance": [ + "2.5" + ], + "from": "system", + "inherits": "Flashforge Generic TPU", + "is_custom_defined": "0", + "name": "Generic TPU 85A @FF AD5X", + "setting_id": "GFSA04", + "instantiation": "true", + "compatible_printers": [ + "Flashforge AD5X 0.4 nozzle" + ], + "pressure_advance": [ + "0.04" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..9d413f8b15 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json @@ -0,0 +1,89 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "50" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Polymaker CoPA @FF G4 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Polymaker CoPA @FF G4 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..91461077b7 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json @@ -0,0 +1,89 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "50" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Polymaker CoPA @FF G4 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Polymaker CoPA @FF G4 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..a20bb68172 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json @@ -0,0 +1,89 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "50" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Polymaker CoPA @FF G4 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Polymaker CoPA @FF G4 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..c25546ff88 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,89 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "50" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Polymaker CoPA @FF G4P 0.6 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Polymaker CoPA @FF G4P 0.6 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..ecf1d1e537 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json @@ -0,0 +1,89 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "50" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Polymaker CoPA @FF G4P 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Polymaker CoPA @FF G4P 0.6 nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..a68b86e802 --- /dev/null +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,89 @@ +{ + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "40" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "during_print_exhaust_fan_speed": [ + "40" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "50" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_settings_id": [ + "Polymaker CoPA @FF G4P 0.8 HF nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n;right_extruder_material:PA" + ], + "filament_type": [ + "PA" + ], + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", + "is_custom_defined": "0", + "name": "Polymaker CoPA @FF G4P 0.8 HF nozzle", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "50" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "textured_cool_plate_temp": [ + "45" + ], + "textured_cool_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json index ebedc49518..242a846b19 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU PETG @FF AD5M 0.25 Nozzle", + "renamed_from": "SUNLU PETG @FF AD5M 0.25 nozzle", "inherits": "SUNLU PETG @base", "from": "system", "setting_id": "GFSNLS08_00", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json index dc16fed525..d97075dafd 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU PETG @FF AD5M 0.8 Nozzle", + "renamed_from": "SUNLU PETG @FF AD5M 0.8 nozzle", "inherits": "SUNLU PETG @base", "from": "system", "setting_id": "GFSNLS08_01", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json index 3416ae82d3..04bd581291 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU PLA Marble @base", + "renamed_from": "SUNLU Marble PLA @base", "inherits": "fdm_filament_pla", "from": "system", "filament_id": "GFSNL06", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json index 6e06b8f693..088e032a5b 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU PLA Matte @FF AD5M 0.25 Nozzle", + "renamed_from": "SUNLU PLA Matte @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA Matte @base", "from": "system", "setting_id": "GFSNLS02_00", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json index 7a8bf15d34..97d816cf37 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU PLA+ 2.0 @FF AD5M 0.25 Nozzle", + "renamed_from": "SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", "setting_id": "GFSNLS04_01", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json index 7d607ba94b..4bf0c5ae14 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU PLA+ @FF AD5M 0.25 Nozzle", + "renamed_from": "SUNLU PLA+ @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA+ @base", "from": "system", "setting_id": "GFSNLS03_01", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json index d2ebf074da..0d75d8abfd 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "SUNLU Silk PLA+ @FF AD5M 0.25 Nozzle", + "renamed_from": "SUNLU Silk PLA+ @FF AD5M 0.25 nozzle", "inherits": "SUNLU Silk PLA+ @base", "from": "system", "setting_id": "GFSNLS05_01", diff --git a/resources/profiles/Flashforge/flashforge_g4_buildplate_model.stl b/resources/profiles/Flashforge/flashforge_g4_buildplate_model.stl new file mode 100644 index 0000000000..b598b41e16 Binary files /dev/null and b/resources/profiles/Flashforge/flashforge_g4_buildplate_model.stl differ diff --git a/resources/profiles/Flashforge/flashforge_g4pro_buildplate_model.stl b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_model.stl new file mode 100644 index 0000000000..17c4c38888 Binary files /dev/null and b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_model.stl differ diff --git a/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.png new file mode 100644 index 0000000000..b405cfbb03 Binary files /dev/null and b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.png differ diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json index 79ed5bcec5..478b5718ae 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json @@ -11,7 +11,7 @@ "printer_variant": "0.25", "max_layer_height": ["0.14"], "min_layer_height": ["0.08"], - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG90 E0\nM83\nG1 E-1 F600\nG1 E8 F300\nG1 X85 Y110 Z0.2 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0", + "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG90 E0\nM83\nG1 E-1 F600\nG1 E8 F300\nG1 X85 Y110 Z0.2 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0", "retraction_length": ["1"], "z_hop": ["0.3"], "nozzle_type": "stainless_steel" diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json index ec46d07d1f..d3b3e408fd 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json @@ -9,7 +9,7 @@ "default_print_profile": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "nozzle_diameter": ["0.8"], "printer_variant": "0.8", - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.3 F1200\nG1 X-110 E30 F2400\nG1 Y0 E8 F2400\nG1 X-109.6 F2400\nG1 Y110 E10 F2400\nG92 E0", + "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.3 F1200\nG1 X-110 E30 F2400\nG1 Y0 E8 F2400\nG1 X-109.6 F2400\nG1 Y110 E10 F2400\nG92 E0", "max_layer_height": ["0.56"], "min_layer_height": ["0.24"], "retraction_length": ["1.5"], diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json index bf2ae5cd8e..737333efc6 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json @@ -11,7 +11,7 @@ "printer_variant": "0.25", "max_layer_height": ["0.14"], "min_layer_height": ["0.08"], - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG90 E0\nM83\nG1 E-1 F600\nG1 E8 F300\nG1 X85 Y110 Z0.2 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0", + "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG90 E0\nM83\nG1 E-1 F600\nG1 E8 F300\nG1 X85 Y110 Z0.2 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0", "retraction_length": ["1"], "z_hop": ["0.3"], "nozzle_type": "stainless_steel" diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json index 06d358adce..30c8c7d63d 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json @@ -9,7 +9,7 @@ "default_print_profile": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "nozzle_diameter": ["0.8"], "printer_variant": "0.8", - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.3 F1200\nG1 X-110 E30 F2400\nG1 Y0 E8 F2400\nG1 X-109.6 F2400\nG1 Y110 E10 F2400\nG92 E0", + "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.3 F1200\nG1 X-110 E30 F2400\nG1 Y0 E8 F2400\nG1 X-109.6 F2400\nG1 Y110 E10 F2400\nG92 E0", "max_layer_height": ["0.56"], "min_layer_height": ["0.24"], "retraction_length": ["1.5"], diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json new file mode 100644 index 0000000000..69e66739a6 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA" + ], + "default_print_profile": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "deretraction_speed": [ + "45" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature", + "machine_load_filament_time": "0", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "700", + "600" + ], + "machine_max_speed_y": [ + "700", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "0", + "manual_filament_change": "0", + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.08" + ], + "name": "Flashforge Guider4 0.25 nozzle", + "nozzle_diameter": [ + "0.25" + ], + "nozzle_height": "2.5", + "nozzle_hrc": "0", + "nozzle_type": "hardened_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "printer_model": "Flashforge Guider4", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 0.25 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.25", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "5" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "-5" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "2.5" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "0", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "0", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.2.0.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.3" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json new file mode 100644 index 0000000000..d8d04b93ad --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U" + ], + "default_print_profile": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "deretraction_speed": [ + "45" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.4 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature", + "machine_load_filament_time": "0", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "700", + "600" + ], + "machine_max_speed_y": [ + "700", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "0", + "manual_filament_change": "0", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "name": "Flashforge Guider4 0.4 HF nozzle", + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "2.5", + "nozzle_hrc": "0", + "nozzle_type": "stainless_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "printer_model": "Flashforge Guider4", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 0.4 HF nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "5" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "-5" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "2.5" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "0", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json new file mode 100644 index 0000000000..d170a75c42 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "deretraction_speed": [ + "45" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "700", + "600" + ], + "machine_max_speed_y": [ + "700", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "name": "Flashforge Guider4 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "hardened_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "printer_model": "Flashforge Guider4", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 0.4 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "2.5" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "2.5" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json new file mode 100644 index 0000000000..e71ea4b345 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U 0.6 Nozzle" + ], + "default_print_profile": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "deretraction_speed": [ + "30" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "M104 S0\nM140 S0\nG1 E-2 F3600\nG0 X50 Y50 F30000\nM106 P101 S0\nM106 S0", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "50", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "40", + "30" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.15" + ], + "name": "Flashforge Guider4 0.6 HF nozzle", + "nozzle_diameter": [ + "0.6" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "stainless_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "301", + "printer_model": "Flashforge Guider4", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 0.6 HF nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.6", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "3" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.2" + ], + "retraction_minimum_travel": [ + "2" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2.2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json new file mode 100644 index 0000000000..787eee69ad --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "; change filament start", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U 0.6 Nozzle" + ], + "default_print_profile": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "deretraction_speed": [ + "30" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": "", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "M104 S0\nM140 S0\nG1 E-2 F3600\nG0 X50 Y50 F30000\nM106 P101 S0\nM106 S0", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "50", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "35", + "30" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.15" + ], + "name": "Flashforge Guider4 0.6 nozzle", + "nozzle_diameter": [ + "0.6" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "hardened_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "301", + "printer_model": "Flashforge Guider4", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 0.6 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.6", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "0%" + ], + "retract_length_toolchange": [ + "3" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.3" + ], + "retraction_minimum_travel": [ + "3" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json new file mode 100644 index 0000000000..d2b9c97631 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "; change filament start", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U 0.6 Nozzle" + ], + "default_print_profile": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "deretraction_speed": [ + "30" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": "", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "M104 S0\nM140 S0\nG1 E-2 F3600\nG0 X50 Y50 F30000\nM106 P101 S0\nM106 S0", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "50", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "35", + "30" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.24" + ], + "name": "Flashforge Guider4 0.8 HF nozzle", + "nozzle_diameter": [ + "0.8" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "stainless_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "301", + "printer_model": "Flashforge Guider4", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 0.8 HF nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.6", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "0%" + ], + "retract_length_toolchange": [ + "3" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.5" + ], + "retraction_minimum_travel": [ + "3" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json new file mode 100644 index 0000000000..9697e7e531 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA" + ], + "default_print_profile": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "deretraction_speed": [ + "45" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "700", + "600" + ], + "machine_max_speed_y": [ + "700", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.08" + ], + "name": "Flashforge Guider4 Pro 0.25 nozzle", + "nozzle_diameter": [ + "0.25" + ], + "nozzle_height": "2.5", + "nozzle_hrc": "0", + "nozzle_type": "hardened_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "printer_model": "Flashforge Guider4 Pro", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 Pro 0.25 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.25", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "2.5" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "2.5" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.2.0.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.3" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json new file mode 100644 index 0000000000..a75581e351 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U" + ], + "default_print_profile": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "deretraction_speed": [ + "45" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.4 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "700", + "600" + ], + "machine_max_speed_y": [ + "700", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "name": "Flashforge Guider4 Pro 0.4 HF nozzle", + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "stainless_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "printer_model": "Flashforge Guider4 Pro", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 Pro 0.4 HF nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "2.5" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "2.5" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json new file mode 100644 index 0000000000..bfbb40ff96 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "deretraction_speed": [ + "45" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "700", + "600" + ], + "machine_max_speed_y": [ + "700", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "name": "Flashforge Guider4 Pro 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "hardened_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "printer_model": "Flashforge Guider4 Pro", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 Pro 0.4 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.4", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "2.5" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.1" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Normal Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json new file mode 100644 index 0000000000..d00b56cbe0 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U 0.6 Nozzle" + ], + "default_print_profile": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "deretraction_speed": [ + "30" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "M104 S0\nM140 S0\nG1 E-2 F3600\nG0 X50 Y50 F30000\nM106 P101 S0\nM106 S0", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "50", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "40", + "30" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.15" + ], + "name": "Flashforge Guider4 Pro 0.6 HF nozzle", + "nozzle_diameter": [ + "0.6" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "stainless_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "301", + "printer_model": "Flashforge Guider4 Pro", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 Pro 0.6 HF nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.6", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "100%" + ], + "retract_length_toolchange": [ + "3" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.2" + ], + "retraction_minimum_travel": [ + "2" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2.2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json new file mode 100644 index 0000000000..d2ebafae4a --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "; change filament start", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U 0.6 Nozzle" + ], + "default_print_profile": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "deretraction_speed": [ + "30" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": "", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "M104 S0\nM140 S0\nG1 E-2 F3600\nG0 X50 Y50 F30000\nM106 P101 S0\nM106 S0", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "50", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "35", + "30" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.15" + ], + "name": "Flashforge Guider4 Pro 0.6 nozzle", + "nozzle_diameter": [ + "0.6" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "hardened_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "301", + "printer_model": "Flashforge Guider4 Pro", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 Pro 0.6 nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.6", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "0%" + ], + "retract_length_toolchange": [ + "3" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.3" + ], + "retraction_minimum_travel": [ + "3" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json new file mode 100644 index 0000000000..01426a7f8e --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json @@ -0,0 +1,231 @@ +{ + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [ + "0x0" + ], + "bed_mesh_max": "99999,99999", + "bed_mesh_min": "-99999,-99999", + "bed_mesh_probe_distance": "50,50", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "; change filament start", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "default_filament_profile": [ + "Flashforge Generic PLA @G3U 0.6 Nozzle" + ], + "default_print_profile": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "deretraction_speed": [ + "30" + ], + "disable_m73": "0", + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "165", + "extruder_clearance_height_to_rod": "42", + "extruder_clearance_radius": "75", + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "from": "system", + "instantiation": "true", + "gcode_flavor": "klipper", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", + "is_custom_defined": "0", + "layer_change_gcode": "", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "M104 S0\nM140 S0\nG1 E-2 F3600\nG0 X50 Y50 F30000\nM106 P101 S0\nM106 S0", + "machine_load_filament_time": "50", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "30000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "30000", + "20000" + ], + "machine_max_acceleration_y": [ + "30000", + "20000" + ], + "machine_max_acceleration_z": [ + "50", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "35", + "30" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M25", + "machine_start_gcode": "START_GCODE\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z2 F6000\nG1 X2 Y150 F1800\nG1 Z0.3 F6000\nG1 Y2 E30 F1800\nT[initial_no_support_extruder]", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "50", + "manual_filament_change": "0", + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.24" + ], + "name": "Flashforge Guider4 Pro 0.8 HF nozzle", + "nozzle_diameter": [ + "0.8" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "stainless_steel", + "nozzle_volume": "0", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "301", + "printer_model": "Flashforge Guider4 Pro", + "printer_notes": "", + "printer_settings_id": "Flashforge Guider4 Pro 0.8 HF nozzle", + "printer_structure": "undefine", + "printer_technology": "FFF", + "printer_variant": "0.6", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "0%" + ], + "retract_length_toolchange": [ + "3" + ], + "retract_lift_above": [ + "0" + ], + "retract_lift_below": [ + "0" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "1.5" + ], + "retraction_minimum_travel": [ + "3" + ], + "retraction_speed": [ + "30" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "support_multi_bed_types": "1", + "template_custom_gcode": "", + "thumbnails": "140x110/PNG", + "thumbnails_format": "PNG", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "version": "2.1.1.0", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Auto Lift" + ], + "z_offset": "0" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json new file mode 100644 index 0000000000..2673618b07 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Flashforge Guider4 Pro", + "model_id": "Flashforge-Guider4-Pro", + "nozzle_diameter": "0.25;0.4;0.4HF;0.6;0.6HF;0.8HF", + "machine_tech": "FFF", + "family": "Flashforge", + "bed_model": "flashforge_g4pro_buildplate_model.stl", + "bed_texture": "flashforge_g4pro_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Flashforge Generic PVA;Flashforge Generic HIPS;Flashforge Generic PETG-CF @G3U;Flashforge Generic PETG @G3U;Flashforge Generic PLA-CF @G3U;Flashforge Generic PLA @G3U;Flashforge Generic ASA @G3U;Flashforge Generic ABS @G3U;FusRock Generic PET-CF;FusRock Generic PAHT-CF;FusRock Generic NexPA-CF25;FusRock Generic S-Multi;FusRock Generic S-PAHT;Polymaker Generic CoPA;Polymaker Generic S1" +} diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4.json b/resources/profiles/Flashforge/machine/Flashforge Guider4.json new file mode 100644 index 0000000000..ea2fa99a36 --- /dev/null +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Flashforge Guider4", + "model_id": "Flashforge-Guider4", + "nozzle_diameter": "0.25;0.4;0.4HF;0.6;0.6HF;0.8HF", + "machine_tech": "FFF", + "family": "Flashforge", + "bed_model": "flashforge_g4pro_buildplate_model.stl", + "bed_texture": "flashforge_g4pro_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Flashforge Generic PVA;Flashforge Generic HIPS;Flashforge Generic PETG-CF @G3U;Flashforge Generic PETG @G3U;Flashforge Generic PLA-CF @G3U;Flashforge Generic PLA @G3U;Flashforge Generic ASA @G3U;Flashforge Generic ABS @G3U;FusRock Generic PET-CF;FusRock Generic PAHT-CF;FusRock Generic NexPA-CF25;FusRock Generic S-Multi;FusRock Generic S-PAHT;Polymaker Generic CoPA;Polymaker Generic S1" +} diff --git a/resources/profiles/Flashforge/machine/fdm_adventurer3_common.json b/resources/profiles/Flashforge/machine/fdm_adventurer3_common.json index 19e0547bd5..c992209109 100644 --- a/resources/profiles/Flashforge/machine/fdm_adventurer3_common.json +++ b/resources/profiles/Flashforge/machine/fdm_adventurer3_common.json @@ -36,7 +36,7 @@ "change_filament_gcode": "M600", "machine_pause_gcode": "M25", "default_filament_profile": ["Flashforge PLA"], - "machine_start_gcode": "M140 S[bed_temperature_initial_layer] T0\nM104 S[nozzle_temperature_initial_layer] T0\nM104 S0 T1\nM107\nM900 K[pressure_advance] T0\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;pre-extrude\nM108 T0\nG1 X-37.50 Y-75.00 F6000\nM106\nG1 Z0.200 F420\nG1 X-37.50 Y-74.50 F6000\nG1 X37.50 Y-74.50 E9.5 F1200\n", + "machine_start_gcode": "M140 S[bed_temperature_initial_layer] T0\nM104 S[nozzle_temperature_initial_layer] T0\nM104 S0 T1\nM107\nM900 K[pressure_advance] T0\nG90\nG28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\n;pre-extrude\nM108 T0\nG1 X-37.50 Y-75.00 F6000\nM106\nG1 Z0.200 F420\nG1 X-37.50 Y-74.00 F6000\nG1 X37.50 Y-74.00 E9.5 F1200\n", "machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F9000\nM104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91\nM18", "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]", "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..35b8c03ff6 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json @@ -0,0 +1,29 @@ +{ + "bridge_acceleration": "10%", + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "gap_fill_target": "topbottom", + "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "50", + "is_custom_defined": "0", + "layer_height": "0.1", + "name": "0.10mm Standard @FF G4 0.25 nozzle", + "only_one_wall_top": "1", + "print_settings_id": "0.10mm Standard @FF G4 0.25 nozzle", + "resolution": "0.005", + "seam_gap": "5%", + "small_perimeter_speed": "10", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "version": "2.2.0.0", + "wall_loops": "3" +} diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..b93c26606e --- /dev/null +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json @@ -0,0 +1,37 @@ +{ + "bridge_acceleration": "10%", + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "50", + "is_custom_defined": "0", + "layer_height": "0.1", + "name": "0.10mm Standard @FF G4P 0.25 nozzle", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "15", + "print_settings_id": "0.10mm Standard @FF G4P 0.25 nozzle", + "seam_gap": "5%", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "version": "2.2.0.0", + "wall_loops": "3", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..5cc976b795 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json @@ -0,0 +1,28 @@ +{ + "bridge_acceleration": "10%", + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "gap_fill_target": "topbottom", + "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "50", + "is_custom_defined": "0", + "name": "0.12mm Standard @FF G4 0.25 nozzle", + "only_one_wall_top": "1", + "print_settings_id": "0.12mm Standard @FF G4 0.25 nozzle", + "resolution": "0.005", + "seam_gap": "5%", + "small_perimeter_speed": "10", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "version": "2.2.0.0", + "wall_loops": "3" +} diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..da942d8837 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json @@ -0,0 +1,36 @@ +{ + "bridge_acceleration": "10%", + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "50", + "is_custom_defined": "0", + "name": "0.12mm Standard @FF G4P 0.25 nozzle", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "15", + "print_settings_id": "0.12mm Standard @FF G4P 0.25 nozzle", + "seam_gap": "5%", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "version": "2.2.0.0", + "wall_loops": "3", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json new file mode 100644 index 0000000000..423d0652b1 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json @@ -0,0 +1,29 @@ +{ + "bridge_acceleration": "10%", + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.25 nozzle" + ], + "gap_fill_target": "topbottom", + "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "50", + "is_custom_defined": "0", + "layer_height": "0.14", + "name": "0.14mm Standard @FF G4 0.25 nozzle", + "only_one_wall_top": "1", + "print_settings_id": "0.14mm Standard @FF G4 0.25 nozzle", + "resolution": "0.005", + "seam_gap": "5%", + "small_perimeter_speed": "10", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "version": "2.2.0.0", + "wall_loops": "3" +} diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json new file mode 100644 index 0000000000..d74f8cf8c1 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json @@ -0,0 +1,37 @@ +{ + "bridge_acceleration": "10%", + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.25 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "50", + "is_custom_defined": "0", + "layer_height": "0.14", + "name": "0.14mm Standard @FF G4P 0.25 nozzle", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "20", + "print_settings_id": "0.14mm Standard @FF G4P 0.25 nozzle", + "seam_gap": "5%", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "version": "2.2.0.0", + "wall_loops": "3", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json new file mode 100644 index 0000000000..c8fcfb6e93 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json @@ -0,0 +1,44 @@ +{ + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "50%", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "60", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "300", + "is_custom_defined": "0", + "layer_height": "0.16", + "name": "0.16mm Standard @FF G4 HF", + "only_one_wall_first_layer": "1", + "print_settings_id": "0.16mm Standard @FF G4 HF", + "resolution": "0.005", + "seam_gap": "5%", + "skirt_loops": "0", + "small_perimeter_speed": "10", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "330", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.14", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "150", + "support_top_z_distance": "0.14", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json new file mode 100644 index 0000000000..6736d39c4b --- /dev/null +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json @@ -0,0 +1,42 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "initial_layer_speed": "60", + "internal_solid_infill_speed": "300", + "is_custom_defined": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "300", + "name": "0.16mm Standard @FF G4", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "30", + "print_settings_id": "0.16mm Standard @FF G4", + "seam_gap": "5%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "sparse_infill_speed": "330", + "support_bottom_z_distance": "0.16", + "support_interface_bottom_layers": "0", + "support_interface_spacing": "0.2", + "support_top_z_distance": "0.16", + "support_type": "tree(auto)", + "top_shell_layers": "6", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json new file mode 100644 index 0000000000..b45a1bd4dc --- /dev/null +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json @@ -0,0 +1,50 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "60", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "300", + "is_custom_defined": "0", + "layer_height": "0.16", + "name": "0.16mm Standard @FF G4P HF", + "only_one_wall_first_layer": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "30", + "print_settings_id": "0.16mm Standard @FF G4P HF", + "seam_gap": "5%", + "skirt_loops": "0", + "small_perimeter_speed": "10", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "330", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.14", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "150", + "support_top_z_distance": "0.14", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json new file mode 100644 index 0000000000..a22ed3bccc --- /dev/null +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json @@ -0,0 +1,47 @@ +{ + "bottom_solid_infill_flow_ratio": "0.98", + "bridge_flow": "0.98", + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "initial_layer_speed": "60", + "internal_bridge_flow": "0.98", + "internal_solid_infill_speed": "300", + "is_custom_defined": "0", + "layer_height": "0.16", + "max_travel_detour_distance": "300", + "name": "0.16mm Standard @FF G4P", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "30", + "print_settings_id": "0.16mm Standard @FF G4P", + "seam_gap": "5%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "sparse_infill_speed": "330", + "support_bottom_z_distance": "0.16", + "support_interface_bottom_layers": "0", + "support_interface_spacing": "0.2", + "support_top_z_distance": "0.16", + "support_type": "tree(auto)", + "top_shell_layers": "6", + "top_solid_infill_flow_ratio": "0.98", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json new file mode 100644 index 0000000000..282bd0062b --- /dev/null +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json @@ -0,0 +1,40 @@ +{ + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "50%", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "60", + "inner_wall_speed": "300", + "is_custom_defined": "0", + "name": "0.20mm Standard @FF G4 HF", + "only_one_wall_first_layer": "1", + "print_settings_id": "0.20mm Standard @FF G4 HF", + "resolution": "0.005", + "seam_gap": "5%", + "skirt_loops": "0", + "small_perimeter_speed": "10", + "sparse_infill_pattern": "grid", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.16", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "150", + "support_top_z_distance": "0.16", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json new file mode 100644 index 0000000000..687e83a530 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json @@ -0,0 +1,43 @@ +{ + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "250", + "infill_wall_overlap": "50%", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "60", + "inner_wall_speed": "600", + "internal_solid_infill_speed": "600", + "is_custom_defined": "0", + "name": "0.20mm Standard @FF G4 PLA600", + "only_one_wall_first_layer": "1", + "print_settings_id": "0.20mm Standard @FF G4 PLA600", + "resolution": "0.005", + "seam_gap": "5%", + "skirt_loops": "0", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "600", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.16", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "100", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "200", + "support_top_z_distance": "0.16", + "support_type": "tree(auto)", + "top_surface_speed": "300", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json new file mode 100644 index 0000000000..a570d372b3 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json @@ -0,0 +1,38 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "initial_layer_print_height": "0.25", + "initial_layer_speed": "60", + "is_custom_defined": "0", + "max_travel_detour_distance": "300", + "name": "0.20mm Standard @FF G4", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "40", + "print_settings_id": "0.20mm Standard @FF G4", + "seam_gap": "5%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "support_interface_bottom_layers": "0", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json new file mode 100644 index 0000000000..139dee9a9b --- /dev/null +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json @@ -0,0 +1,48 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "250", + "infill_wall_overlap": "50%", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "60", + "inner_wall_speed": "600", + "internal_solid_infill_speed": "600", + "is_custom_defined": "0", + "name": "0.20mm Standard @FF G4P HF for PLA 600", + "only_one_wall_first_layer": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "print_settings_id": "0.20mm Standard @FF G4P HF for PLA 600", + "seam_gap": "5%", + "skirt_loops": "0", + "sparse_infill_speed": "600", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.16", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "100", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "200", + "support_top_z_distance": "0.16", + "support_type": "tree(auto)", + "top_surface_speed": "300", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json new file mode 100644 index 0000000000..2da9c942ea --- /dev/null +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json @@ -0,0 +1,45 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "60", + "inner_wall_speed": "300", + "is_custom_defined": "0", + "name": "0.20mm Standard @FF G4P HF", + "only_one_wall_first_layer": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "print_settings_id": "0.20mm Standard @FF G4P HF", + "seam_gap": "5%", + "skirt_loops": "0", + "small_perimeter_speed": "10", + "sparse_infill_pattern": "grid", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.16", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "150", + "support_top_z_distance": "0.16", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json new file mode 100644 index 0000000000..0cc5448e3e --- /dev/null +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json @@ -0,0 +1,43 @@ +{ + "bottom_solid_infill_flow_ratio": "0.98", + "bridge_flow": "0.98", + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "15%", + "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "initial_layer_print_height": "0.25", + "initial_layer_speed": "60", + "internal_bridge_flow": "0.98", + "is_custom_defined": "0", + "max_travel_detour_distance": "300", + "name": "0.20mm Standard @FF G4P", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "40", + "print_settings_id": "0.20mm Standard @FF G4P", + "seam_gap": "5%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "support_interface_bottom_layers": "0", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "top_solid_infill_flow_ratio": "0.98", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json new file mode 100644 index 0000000000..0b5d5094b8 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json @@ -0,0 +1,44 @@ +{ + "bridge_speed": "15", + "elefant_foot_compensation": "0.1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "180", + "infill_wall_overlap": "50%", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "60", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "230", + "is_custom_defined": "0", + "layer_height": "0.24", + "name": "0.24mm Standard @FF G4 HF", + "only_one_wall_first_layer": "1", + "print_settings_id": "0.24mm Standard @FF G4 HF", + "resolution": "0.005", + "seam_gap": "5%", + "skirt_loops": "0", + "small_perimeter_speed": "10", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "230", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.18", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "150", + "support_top_z_distance": "0.18", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0" +} diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json new file mode 100644 index 0000000000..28c02bc6d9 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json @@ -0,0 +1,42 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.4 nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "180", + "infill_wall_overlap": "15%", + "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "initial_layer_print_height": "0.25", + "initial_layer_speed": "60", + "internal_solid_infill_speed": "230", + "is_custom_defined": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "300", + "name": "0.24mm Standard @FF G4", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "40", + "print_settings_id": "0.24mm Standard @FF G4", + "seam_gap": "5%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "sparse_infill_speed": "230", + "support_interface_bottom_layers": "0", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "top_shell_layers": "4", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json new file mode 100644 index 0000000000..84c31ee32a --- /dev/null +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json @@ -0,0 +1,50 @@ +{ + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_support": "0", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "180", + "infill_wall_overlap": "50%", + "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", + "initial_layer_infill_speed": "80", + "initial_layer_speed": "60", + "inner_wall_speed": "300", + "internal_solid_infill_speed": "230", + "is_custom_defined": "0", + "layer_height": "0.24", + "name": "0.24mm Standard @FF G4P HF", + "only_one_wall_first_layer": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "print_settings_id": "0.24mm Standard @FF G4P HF", + "seam_gap": "5%", + "skirt_loops": "0", + "small_perimeter_speed": "10", + "sparse_infill_pattern": "grid", + "sparse_infill_speed": "230", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.18", + "support_interface_filament": "0", + "support_interface_spacing": "0.2", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_speed": "150", + "support_top_z_distance": "0.18", + "support_type": "tree(auto)", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json new file mode 100644 index 0000000000..38989d80c6 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json @@ -0,0 +1,47 @@ +{ + "bottom_solid_infill_flow_ratio": "0.98", + "bridge_flow": "0.98", + "bridge_speed": "15", + "brim_type": "auto_brim", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "filter_out_gap_fill": "0.1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.4 nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "180", + "infill_wall_overlap": "15%", + "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", + "initial_layer_print_height": "0.25", + "initial_layer_speed": "60", + "internal_bridge_flow": "0.98", + "internal_solid_infill_speed": "230", + "is_custom_defined": "0", + "layer_height": "0.24", + "max_travel_detour_distance": "300", + "name": "0.24mm Standard @FF G4P", + "only_one_wall_top": "1", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "40", + "print_settings_id": "0.24mm Standard @FF G4P", + "seam_gap": "5%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "10", + "sparse_infill_speed": "230", + "support_interface_bottom_layers": "0", + "support_interface_spacing": "0.2", + "support_type": "tree(auto)", + "top_shell_layers": "4", + "top_solid_infill_flow_ratio": "0.98", + "travel_acceleration": "30000", + "travel_speed": "600", + "version": "2.1.1.0", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..c39d0f5256 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json @@ -0,0 +1,77 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "default_acceleration": "20000", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "inner_wall_speed": "200", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.25", + "line_width": "0.62", + "name": "0.25mm Standard @FF G4 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "50", + "print_settings_id": "0.25mm Standard @FF G4 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "300", + "support_bottom_z_distance": "0.22", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "support_top_z_distance": "0.25", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..1b3d3d1475 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json @@ -0,0 +1,70 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "default_acceleration": "20000", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "inner_wall_speed": "200", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.25", + "line_width": "0.62", + "name": "0.25mm Standard @FF G4 0.6 nozzle", + "only_one_wall_first_layer": "1", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "50", + "print_settings_id": "0.25mm Standard @FF G4 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "support_top_z_distance": "0.3", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..53cde7913f --- /dev/null +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,77 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "default_acceleration": "20000", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "inner_wall_speed": "200", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.25", + "line_width": "0.62", + "name": "0.25mm Standard @FF G4P 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "50", + "print_settings_id": "0.25mm Standard @FF G4P 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "300", + "support_bottom_z_distance": "0.22", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "support_top_z_distance": "0.25", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..543b4de6a5 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json @@ -0,0 +1,68 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "default_acceleration": "20000", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "infill_wall_overlap": "15%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "inner_wall_speed": "200", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.25", + "line_width": "0.62", + "name": "0.25mm Standard @FF G4P 0.6 nozzle", + "only_one_wall_first_layer": "1", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "overhang_speed_classic": "1", + "prime_tower_width": "45", + "prime_volume": "45", + "print_settings_id": "0.25mm Standard @FF G4P 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "support_top_z_distance": "0.3", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_max_purge_speed": "120" +} diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..9eec025e87 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json @@ -0,0 +1,66 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "line_width": "0.62", + "name": "0.30mm Standard @FF G4 0.6 nozzle", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "50", + "print_settings_id": "0.30mm Standard @FF G4 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..453cb1b33b --- /dev/null +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json @@ -0,0 +1,63 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "infill_wall_overlap": "15%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "line_width": "0.62", + "name": "0.30mm Standard @FF G4P 0.6 nozzle", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "overhang_speed_classic": "1", + "prime_tower_width": "45", + "prime_volume": "45", + "print_settings_id": "0.30mm Standard @FF G4P 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_max_purge_speed": "120" +} diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..50d88a4761 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json @@ -0,0 +1,69 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "default_acceleration": "20000", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.82", + "inner_wall_speed": "200", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.82", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.32", + "line_width": "0.82", + "name": "0.32mm Standard @FF G4 0.8 HF nozzle", + "outer_wall_line_width": "0.82", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "70", + "print_settings_id": "0.32mm Standard @FF G4 0.8 HF nozzle", + "role_based_wipe_speed": "0", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.82", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.82", + "support_speed": "70", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.82", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..d483442848 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,69 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "default_acceleration": "20000", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.82", + "inner_wall_speed": "200", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.82", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.32", + "line_width": "0.82", + "name": "0.32mm Standard @FF G4P 0.8 HF nozzle", + "outer_wall_line_width": "0.82", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "70", + "print_settings_id": "0.32mm Standard @FF G4P 0.8 HF nozzle", + "role_based_wipe_speed": "0", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.82", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.82", + "support_speed": "70", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.82", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..ed4a370f4b --- /dev/null +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.36", + "line_width": "0.62", + "name": "0.36mm Standard @FF G4 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "70", + "print_settings_id": "0.36mm Standard @FF G4 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..9ebe7221fa --- /dev/null +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json @@ -0,0 +1,67 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.36", + "line_width": "0.62", + "name": "0.36mm Standard @FF G4 0.6 nozzle", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "70", + "print_settings_id": "0.36mm Standard @FF G4 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..c86823c895 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.36", + "line_width": "0.62", + "name": "0.36mm Standard @FF G4P 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "70", + "print_settings_id": "0.36mm Standard @FF G4P 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..2a265062bd --- /dev/null +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json @@ -0,0 +1,64 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "infill_wall_overlap": "15%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.36", + "line_width": "0.62", + "name": "0.36mm Standard @FF G4P 0.6 nozzle", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "overhang_speed_classic": "1", + "prime_tower_width": "45", + "prime_volume": "45", + "print_settings_id": "0.36mm Standard @FF G4P 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_max_purge_speed": "120" +} diff --git a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..95d0a8cc7e --- /dev/null +++ b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "line_width": "0.62", + "name": "0.3mm Standard @FF G4 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "50", + "print_settings_id": "0.3mm Standard @FF G4 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "support_top_z_distance": "0.3", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..ecef050717 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "line_width": "0.62", + "name": "0.3mm Standard @FF G4P 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "50", + "print_settings_id": "0.3mm Standard @FF G4P 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "support_top_z_distance": "0.3", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..17148d11a2 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json @@ -0,0 +1,67 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.82", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.82", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.4", + "line_width": "0.82", + "name": "0.40mm Standard @FF G4 0.8 HF nozzle", + "outer_wall_line_width": "0.82", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "80", + "print_settings_id": "0.40mm Standard @FF G4 0.8 HF nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.82", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.82", + "support_speed": "70", + "thick_internal_bridges": "0", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.82", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..e3f93c2019 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,67 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.82", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.82", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.4", + "line_width": "0.82", + "name": "0.40mm Standard @FF G4P 0.8 HF nozzle", + "outer_wall_line_width": "0.82", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "80", + "print_settings_id": "0.40mm Standard @FF G4P 0.8 HF nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.82", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.82", + "support_speed": "70", + "thick_internal_bridges": "0", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.82", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json new file mode 100644 index 0000000000..eba5f38e02 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.42", + "line_width": "0.62", + "name": "0.42mm Standard @FF G4 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "80", + "print_settings_id": "0.42mm Standard @FF G4 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.3", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json new file mode 100644 index 0000000000..5a4fe7e055 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json @@ -0,0 +1,67 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.6 nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.42", + "line_width": "0.62", + "name": "0.42mm Standard @FF G4 0.6 nozzle", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "80", + "print_settings_id": "0.42mm Standard @FF G4 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.3", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json new file mode 100644 index 0000000000..6fecc87e00 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json @@ -0,0 +1,74 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "bridge_flow": "0.98", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 HF nozzle" + ], + "gap_fill_target": "topbottom", + "gap_infill_speed": "70", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.98", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "10000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "150", + "is_custom_defined": "0", + "layer_height": "0.42", + "line_width": "0.62", + "name": "0.42mm Standard @FF G4P 0.6 HF nozzle", + "outer_wall_acceleration": "5000", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "80", + "print_settings_id": "0.42mm Standard @FF G4P 0.6 HF nozzle", + "reduce_infill_retraction": "0", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "small_perimeter_threshold": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.3", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_speed": "80", + "support_interface_top_layers": "3", + "support_line_width": "0.62", + "support_speed": "105", + "thick_internal_bridges": "0", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "travel_acceleration": "30000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "500", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json new file mode 100644 index 0000000000..86e29d4206 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json @@ -0,0 +1,64 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.6 nozzle" + ], + "infill_wall_overlap": "15%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.62", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.62", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.42", + "line_width": "0.62", + "name": "0.42mm Standard @FF G4P 0.6 nozzle", + "outer_wall_line_width": "0.62", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "overhang_speed_classic": "1", + "prime_tower_width": "45", + "prime_volume": "45", + "print_settings_id": "0.42mm Standard @FF G4P 0.6 nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "10%", + "skirt_loops": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.62", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.3", + "support_interface_filament": "0", + "support_line_width": "0.62", + "support_speed": "70", + "top_shell_thickness": "0.8", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.62", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_max_purge_speed": "120" +} diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json new file mode 100644 index 0000000000..049a8c748e --- /dev/null +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json @@ -0,0 +1,67 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 0.8 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.82", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.82", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.48", + "line_width": "0.82", + "name": "0.48mm Standard @FF G4 0.8 HF nozzle", + "outer_wall_line_width": "0.82", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "90", + "print_settings_id": "0.48mm Standard @FF G4 0.8 HF nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "8%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.82", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.82", + "support_speed": "70", + "thick_internal_bridges": "0", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.82", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json new file mode 100644 index 0000000000..a03eb67e54 --- /dev/null +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json @@ -0,0 +1,67 @@ +{ + "bottom_solid_infill_flow_ratio": "0.96", + "bridge_acceleration": "3000", + "brim_type": "auto_brim", + "enable_arc_fitting": "1", + "enable_prime_tower": "1", + "exclude_object": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "filter_out_gap_fill": "0.1", + "flush_into_support": "1", + "from": "system", + "instantiation": "true", + "compatible_printers": [ + "Flashforge Guider4 Pro 0.8 HF nozzle" + ], + "gap_fill_target": "topbottom", + "infill_wall_overlap": "20%", + "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", + "initial_layer_acceleration": "800", + "initial_layer_infill_speed": "60", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.3", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "600", + "inner_wall_acceleration": "10000", + "inner_wall_line_width": "0.82", + "internal_bridge_flow": "0.96", + "internal_bridge_speed": "35", + "internal_solid_infill_acceleration": "8000", + "internal_solid_infill_line_width": "0.82", + "internal_solid_infill_speed": "120", + "is_custom_defined": "0", + "layer_height": "0.48", + "line_width": "0.82", + "name": "0.48mm Standard @FF G4P 0.8 HF nozzle", + "outer_wall_line_width": "0.82", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "12", + "prime_tower_brim_width": "6", + "prime_volume": "90", + "print_settings_id": "0.48mm Standard @FF G4P 0.8 HF nozzle", + "role_based_wipe_speed": "0", + "seam_gap": "8%", + "skirt_loops": "0", + "slowdown_for_curled_perimeters": "0", + "small_perimeter_speed": "35", + "sparse_infill_acceleration": "100%", + "sparse_infill_line_width": "0.82", + "sparse_infill_speed": "220", + "support_bottom_z_distance": "0.25", + "support_interface_filament": "0", + "support_line_width": "0.82", + "support_speed": "70", + "thick_internal_bridges": "0", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "3000", + "top_surface_line_width": "0.82", + "top_surface_speed": "100", + "travel_acceleration": "20000", + "travel_speed": "550", + "version": "2.1.1.0", + "wipe_speed": "50", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "10", + "wipe_tower_extra_spacing": "110%" +} diff --git a/resources/profiles/Folgertech/Folgertech FT-5_cover.png b/resources/profiles/Folgertech/Folgertech FT-5_cover.png index 21a38c01f9..5983193d22 100644 Binary files a/resources/profiles/Folgertech/Folgertech FT-5_cover.png and b/resources/profiles/Folgertech/Folgertech FT-5_cover.png differ diff --git a/resources/profiles/Folgertech/Folgertech i3_cover.png b/resources/profiles/Folgertech/Folgertech i3_cover.png index 3be5af7e75..16a6390250 100644 Binary files a/resources/profiles/Folgertech/Folgertech i3_cover.png and b/resources/profiles/Folgertech/Folgertech i3_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A10 M_cover.png b/resources/profiles/Geeetech/Geeetech A10 M_cover.png index 8dc6a2582b..4f830e2ce4 100644 Binary files a/resources/profiles/Geeetech/Geeetech A10 M_cover.png and b/resources/profiles/Geeetech/Geeetech A10 M_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A10 Pro_cover.png b/resources/profiles/Geeetech/Geeetech A10 Pro_cover.png index 4217da7c63..43d02448c0 100644 Binary files a/resources/profiles/Geeetech/Geeetech A10 Pro_cover.png and b/resources/profiles/Geeetech/Geeetech A10 Pro_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A10 T_cover.png b/resources/profiles/Geeetech/Geeetech A10 T_cover.png index c718b14c5a..a85cb3e821 100644 Binary files a/resources/profiles/Geeetech/Geeetech A10 T_cover.png and b/resources/profiles/Geeetech/Geeetech A10 T_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A20 M_cover.png b/resources/profiles/Geeetech/Geeetech A20 M_cover.png index be82bbe451..8099ee0840 100644 Binary files a/resources/profiles/Geeetech/Geeetech A20 M_cover.png and b/resources/profiles/Geeetech/Geeetech A20 M_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A20 T_cover.png b/resources/profiles/Geeetech/Geeetech A20 T_cover.png index 306b4e89f7..ceb20e4036 100644 Binary files a/resources/profiles/Geeetech/Geeetech A20 T_cover.png and b/resources/profiles/Geeetech/Geeetech A20 T_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A20_cover.png b/resources/profiles/Geeetech/Geeetech A20_cover.png index 4dc4e0b863..ed96415bf6 100644 Binary files a/resources/profiles/Geeetech/Geeetech A20_cover.png and b/resources/profiles/Geeetech/Geeetech A20_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A30 M_cover.png b/resources/profiles/Geeetech/Geeetech A30 M_cover.png index a02424c910..d00d05b03c 100644 Binary files a/resources/profiles/Geeetech/Geeetech A30 M_cover.png and b/resources/profiles/Geeetech/Geeetech A30 M_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A30 Pro_cover.png b/resources/profiles/Geeetech/Geeetech A30 Pro_cover.png index f757c4cb3e..2e828d5a2f 100644 Binary files a/resources/profiles/Geeetech/Geeetech A30 Pro_cover.png and b/resources/profiles/Geeetech/Geeetech A30 Pro_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech A30 T_cover.png b/resources/profiles/Geeetech/Geeetech A30 T_cover.png index cd5f6b4b5d..01de490abc 100644 Binary files a/resources/profiles/Geeetech/Geeetech A30 T_cover.png and b/resources/profiles/Geeetech/Geeetech A30 T_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech M1_cover.png b/resources/profiles/Geeetech/Geeetech M1_cover.png index 13b0ee51a0..8cc5c7d8ea 100644 Binary files a/resources/profiles/Geeetech/Geeetech M1_cover.png and b/resources/profiles/Geeetech/Geeetech M1_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech Mizar M_cover.png b/resources/profiles/Geeetech/Geeetech Mizar M_cover.png index 71a5ed3931..4d6c67ba5e 100644 Binary files a/resources/profiles/Geeetech/Geeetech Mizar M_cover.png and b/resources/profiles/Geeetech/Geeetech Mizar M_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech Mizar Max_cover.png b/resources/profiles/Geeetech/Geeetech Mizar Max_cover.png index 519deac260..5c0cd99b96 100644 Binary files a/resources/profiles/Geeetech/Geeetech Mizar Max_cover.png and b/resources/profiles/Geeetech/Geeetech Mizar Max_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech Mizar Pro_cover.png b/resources/profiles/Geeetech/Geeetech Mizar Pro_cover.png index e0d2c08b89..3c2d12b172 100644 Binary files a/resources/profiles/Geeetech/Geeetech Mizar Pro_cover.png and b/resources/profiles/Geeetech/Geeetech Mizar Pro_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech Mizar S_cover.png b/resources/profiles/Geeetech/Geeetech Mizar S_cover.png index ae3c91af71..fa07614ab1 100644 Binary files a/resources/profiles/Geeetech/Geeetech Mizar S_cover.png and b/resources/profiles/Geeetech/Geeetech Mizar S_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech Mizar_cover.png b/resources/profiles/Geeetech/Geeetech Mizar_cover.png index c0ec971a45..4782a010de 100644 Binary files a/resources/profiles/Geeetech/Geeetech Mizar_cover.png and b/resources/profiles/Geeetech/Geeetech Mizar_cover.png differ diff --git a/resources/profiles/Geeetech/Geeetech Thunder_cover.png b/resources/profiles/Geeetech/Geeetech Thunder_cover.png index f6ad3165e2..e3bbd5cf2b 100644 Binary files a/resources/profiles/Geeetech/Geeetech Thunder_cover.png and b/resources/profiles/Geeetech/Geeetech Thunder_cover.png differ diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json index 9612e2b8a1..d30a3617cf 100644 --- a/resources/profiles/Ginger Additive.json +++ b/resources/profiles/Ginger Additive.json @@ -6,7 +6,7 @@ "machine_model_list": [ { "name": "ginger G1", - "sub_path": "machine/ginger G1.json" + "sub_path": "machine/Ginger G1.json" } ], "machine_list": [ @@ -16,23 +16,23 @@ }, { "name": "ginger_one_common", - "sub_path": "machine/ginger_one_common.json" + "sub_path": "machine/Ginger_G1_common.json" }, { "name": "ginger G1 1.2 nozzle", - "sub_path": "machine/ginger G1 1.2 nozzle.json" + "sub_path": "machine/Ginger G1 1.2 nozzle.json" }, { "name": "ginger G1 3.0 nozzle", - "sub_path": "machine/ginger G1 3.0 nozzle.json" + "sub_path": "machine/Ginger G1 3.0 nozzle.json" }, { "name": "ginger G1 5.0 nozzle", - "sub_path": "machine/ginger G1 5.0 nozzle.json" + "sub_path": "machine/Ginger G1 5.0 nozzle.json" }, { "name": "ginger G1 8.0 nozzle", - "sub_path": "machine/ginger G1 8.0 nozzle.json" + "sub_path": "machine/Ginger G1 8.0 nozzle.json" } ], "process_list": [ @@ -66,22 +66,6 @@ "name": "fdm_filament_common", "sub_path": "filament/fdm_filament_common.json" }, - { - "name": "fdm_filament_petg", - "sub_path": "filament/fdm_filament_petg.json" - }, - { - "name": "fdm_filament_pla", - "sub_path": "filament/fdm_filament_pla.json" - }, - { - "name": "fdm_filament_rpetg", - "sub_path": "filament/fdm_filament_rpetg.json" - }, - { - "name": "fdm_filament_rpla", - "sub_path": "filament/fdm_filament_rpla.json" - }, { "name": "Ginger Generic PETG", "sub_path": "filament/Ginger Generic PETG.json" @@ -89,14 +73,6 @@ { "name": "Ginger Generic PLA", "sub_path": "filament/Ginger Generic PLA.json" - }, - { - "name": "Ginger Generic rPETG", - "sub_path": "filament/Ginger Generic rPETG.json" - }, - { - "name": "Ginger Generic rPLA", - "sub_path": "filament/Ginger Generic rPLA.json" } ] } diff --git a/resources/profiles/Ginger Additive/Ginger_One.stl b/resources/profiles/Ginger Additive/Ginger_G1.stl similarity index 100% rename from resources/profiles/Ginger Additive/Ginger_One.stl rename to resources/profiles/Ginger Additive/Ginger_G1.stl diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json index 8fd8e38915..2b76d509e0 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json @@ -1,29 +1,55 @@ { + "from": "system", "type": "filament", + "instantiation": "true", + "version": "0.1.0.0", + "filament_vendor": ["Generic"], + "inherits": "fdm_filament_common", + "name": "Ginger Generic PETG", + "close_fan_the_first_x_layers": ["4"], "enable_overhang_bridge_fan": ["0"], + "enable_pressure_advance": ["1"], + "extruder_rotation_volume": "624", + "fan_cooling_layer_time": ["100"], "fan_max_speed": ["0"], "fan_min_speed": ["0"], - "filament_diameter": ["1.12838"], - "filament_max_volumetric_speed": ["220"], + "filament_cost": ["6"], + "filament_density": ["1.23"], + "filament_deretraction_speed": ["nil"], + "filament_max_volumetric_speed": ["200"], + "filament_retract_before_wipe": ["nil"], + "filament_retract_lift_above": ["nil"], + "filament_retract_lift_below": ["nil"], + "filament_retract_lift_enforce": ["nil"], + "filament_retract_restart_extra": ["nil"], + "filament_retract_when_changing_layer": ["nil"], + "filament_retraction_length": ["nil"], + "filament_retraction_minimum_travel": ["nil"], + "filament_retraction_speed": ["nil"], "filament_settings_id": ["PETG"], + "filament_start_gcode": ["SET_PRESSURE_ADVANCE EXTRUDER=extruder SMOOTH_TIME=0.5"], "filament_type": ["PETG"], - "filament_vendor": ["Generic"], - "from": "system", - "hot_plate_temp": ["100"], - "hot_plate_temp_initial_layer": ["90"], - "inherits": "fdm_filament_petg", + "filament_wipe": ["nil"], + "filament_wipe_distance": ["nil"], + "filament_z_hop": ["nil"], + "filament_z_hop_types": ["nil"], + "hot_plate_temp": ["80"], + "hot_plate_temp_initial_layer": ["75"], "is_custom_defined": "0", - "name": "Ginger Generic PETG", - "pellet_flow_coefficient": ["1"], - "pressure_advance": ["0.01"], + "mixing_stepper_rotation_volume": "8000", + "multi_zone_1_initial_layer": "240", + "multi_zone_1_temperature": "240", + "multi_zone_2_initial_layer": "240", + "multi_zone_2_temperature": "240", + "multi_zone_3_initial_layer": "220", + "multi_zone_3_temperature": "220", + "nozzle_temperature_range_high": ["260"], + "nozzle_temperature_range_low": ["210"], + "overhang_fan_speed": ["100"], + "overhang_fan_threshold": ["50%"], + "pressure_advance": ["0.3"], + "reduce_fan_stop_start_freq": ["0"], "slow_down_layer_time": ["30"], - "slow_down_min_speed": ["1"], - "version": "0.1.0.0", - "compatible_printers": [ - "ginger G1 1.2 nozzle", - "ginger G1 3.0 nozzle", - "ginger G1 5.0 nozzle", - "ginger G1 8.0 nozzle" - ], - "instantiation": "true" + "slow_down_min_speed": ["1"], + "temperature_vitrification": ["75"] } diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json index 8242c91b28..eb51947efc 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json @@ -1,30 +1,55 @@ { - "type": "filament", - "fan_cooling_layer_time": ["60"], - "fan_max_speed": ["60"], - "fan_min_speed": ["20"], - "filament_cost": ["6"], - "filament_diameter": ["1.12838"], - "filament_max_volumetric_speed": ["250"], - "filament_settings_id": ["PLA"], - "filament_vendor": ["Generic"], "from": "system", - "inherits": "fdm_filament_pla", - "is_custom_defined": "0", - "name": "Ginger Generic PLA", - "nozzle_temperature": ["210"], - "nozzle_temperature_initial_layer": ["210"], - "nozzle_temperature_range_high": ["220"], - "pellet_flow_coefficient": ["1"], - "required_nozzle_HRC": ["0"], - "slow_down_layer_time": ["20"], - "slow_down_min_speed": ["3"], + "type": "filament", + "instantiation": "true", "version": "0.1.0.0", - "compatible_printers": [ - "ginger G1 1.2 nozzle", - "ginger G1 3.0 nozzle", - "ginger G1 5.0 nozzle", - "ginger G1 8.0 nozzle" - ], - "instantiation": "true" + "filament_vendor": ["Generic"], + "inherits": "fdm_filament_common", + "name": "Ginger Generic PLA", + "close_fan_the_first_x_layers": ["4"], + "enable_overhang_bridge_fan": ["0"], + "enable_pressure_advance": ["1"], + "extruder_rotation_volume": "456", + "fan_cooling_layer_time": ["100"], + "fan_max_speed": ["0"], + "fan_min_speed": ["0"], + "filament_cost": ["6"], + "filament_density": ["1.24"], + "filament_deretraction_speed": ["nil"], + "filament_max_volumetric_speed": ["250"], + "filament_retract_before_wipe": ["nil"], + "filament_retract_lift_above": ["nil"], + "filament_retract_lift_below": ["nil"], + "filament_retract_lift_enforce": ["nil"], + "filament_retract_restart_extra": ["nil"], + "filament_retract_when_changing_layer": ["nil"], + "filament_retraction_length": ["nil"], + "filament_retraction_minimum_travel": ["nil"], + "filament_retraction_speed": ["nil"], + "filament_settings_id": ["PLA"], + "filament_start_gcode": ["SET_PRESSURE_ADVANCE EXTRUDER=extruder SMOOTH_TIME=0.5"], + "filament_type": ["PLA"], + "filament_wipe": ["nil"], + "filament_wipe_distance": ["nil"], + "filament_z_hop": ["nil"], + "filament_z_hop_types": ["nil"], + "hot_plate_temp": ["50"], + "hot_plate_temp_initial_layer": ["50"], + "is_custom_defined": "0", + "mixing_stepper_rotation_volume": "8000", + "multi_zone_1_initial_layer": "200", + "multi_zone_1_temperature": "200", + "multi_zone_2_initial_layer": "200", + "multi_zone_2_temperature": "200", + "multi_zone_3_initial_layer": "200", + "multi_zone_3_temperature": "200", + "nozzle_temperature_range_high": ["220"], + "nozzle_temperature_range_low": ["180"], + "overhang_fan_speed": ["100"], + "overhang_fan_threshold": ["50%"], + "pressure_advance": ["0.3"], + "reduce_fan_stop_start_freq": ["0"], + "slow_down_layer_time": ["50"], + "slow_down_min_speed": ["1"], + "temperature_vitrification": ["55"] } diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic rPETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic rPETG.json deleted file mode 100644 index 489744aeff..0000000000 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic rPETG.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "type": "filament", - "fan_cooling_layer_time": ["50"], - "fan_min_speed": ["0"], - "filament_density": ["1.27"], - "filament_diameter": ["1.12838"], - "filament_settings_id": ["rPETG"], - "filament_type": ["rPETG"], - "filament_vendor": ["Generic"], - "from": "system", - "hot_plate_temp": ["90"], - "hot_plate_temp_initial_layer": ["80"], - "inherits": "fdm_filament_rpetg", - "is_custom_defined": "0", - "name": "Ginger Generic rPETG", - "nozzle_temperature_range_high": ["260"], - "nozzle_temperature_range_low": ["230"], - "pellet_flow_coefficient": ["1"], - "pressure_advance": ["0.01"], - "required_nozzle_HRC": ["0"], - "slow_down_min_speed": ["2"], - "temperature_vitrification": ["85"], - "version": "0.1.0.0", - "compatible_printers": [ - "ginger G1 1.2 nozzle", - "ginger G1 3.0 nozzle", - "ginger G1 5.0 nozzle", - "ginger G1 8.0 nozzle" - ], - "instantiation": "true" -} diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic rPLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic rPLA.json deleted file mode 100644 index 65dc0c13b0..0000000000 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic rPLA.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "filament", - "fan_max_speed": ["0"], - "fan_min_speed": ["0"], - "filament_diameter": ["1.12838"], - "filament_settings_id": ["rPLA"], - "filament_type": ["rPLA"], - "filament_vendor": ["Generic"], - "from": "system", - "inherits": "fdm_filament_rpla", - "is_custom_defined": "0", - "name": "Ginger Generic rPLA", - "pellet_flow_coefficient": ["1"], - "version": "0.1.0.0", - "compatible_printers": [ - "ginger G1 1.2 nozzle", - "ginger G1 3.0 nozzle", - "ginger G1 5.0 nozzle", - "ginger G1 8.0 nozzle" - ], - "instantiation": "true" -} diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_common.json b/resources/profiles/Ginger Additive/filament/fdm_filament_common.json index ffd1d27d7c..5bcaf14091 100644 --- a/resources/profiles/Ginger Additive/filament/fdm_filament_common.json +++ b/resources/profiles/Ginger Additive/filament/fdm_filament_common.json @@ -1,95 +1,255 @@ { - "type": "filament", - "activate_air_filtration": ["0"], - "activate_chamber_temp_control": ["0"], - "additional_cooling_fan_speed": ["70"], - "chamber_temperature": ["0"], - "close_fan_the_first_x_layers": ["1"], - "compatible_printers": ["Ginger Additive ginger G1 1.0 nozzle"], - "compatible_printers_condition": "", - "compatible_prints": [], - "compatible_prints_condition": "", - "complete_print_exhaust_fan_speed": ["70"], - "cool_plate_temp": ["35"], - "cool_plate_temp_initial_layer": ["35"], - "default_filament_colour": [""], - "during_print_exhaust_fan_speed": ["70"], - "enable_overhang_bridge_fan": ["1"], - "enable_pressure_advance": ["1"], - "eng_plate_temp": ["0"], - "eng_plate_temp_initial_layer": ["0"], - "fan_cooling_layer_time": ["60"], - "fan_max_speed": ["0"], - "fan_min_speed": ["0"], - "filament_cooling_final_speed": ["3.4"], - "filament_cooling_initial_speed": ["2.2"], - "filament_cooling_moves": ["4"], - "filament_cost": ["5"], - "filament_density": ["1.24"], - "filament_deretraction_speed": ["nil"], - "filament_diameter": ["2.8"], - "filament_end_gcode": ["; filament end gcode \nM106 P3 S0\n"], - "filament_flow_ratio": ["1"], - "filament_id": "P510eff9", - "filament_is_support": ["0"], - "filament_load_time": ["0"], - "filament_loading_speed": ["28"], - "filament_loading_speed_start": ["3"], - "filament_max_volumetric_speed": ["300"], - "filament_minimal_purge_on_wipe_tower": ["15"], - "filament_multitool_ramming": ["0"], - "filament_multitool_ramming_flow": ["10"], - "filament_multitool_ramming_volume": ["10"], - "filament_notes": [""], - "filament_ramming_parameters": [ - "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" - ], - "filament_retract_before_wipe": ["nil"], - "filament_retract_lift_above": ["nil"], - "filament_retract_lift_below": ["nil"], - "filament_retract_lift_enforce": ["nil"], - "filament_retract_restart_extra": ["nil"], - "filament_retract_when_changing_layer": ["nil"], - "filament_retraction_length": ["nil"], - "filament_retraction_minimum_travel": ["nil"], - "filament_retraction_speed": ["nil"], - "filament_settings_id": ["Ginger Filaments Common"], - "filament_shrink": ["100%"], - "filament_soluble": ["0"], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_toolchange_delay": ["0"], - "filament_unload_time": ["0"], - "filament_unloading_speed": ["90"], - "filament_unloading_speed_start": ["100"], - "filament_vendor": ["Generic"], - "filament_wipe": ["nil"], - "filament_wipe_distance": ["nil"], - "filament_z_hop": ["nil"], - "filament_z_hop_types": ["nil"], - "from": "system", - "full_fan_speed_layer": ["0"], - "hot_plate_temp": ["1"], - "hot_plate_temp_initial_layer": ["60"], - "is_custom_defined": "0", - "name": "fdm_filament_common", - "nozzle_temperature": ["220"], - "nozzle_temperature_initial_layer": ["220"], - "nozzle_temperature_range_high": ["240"], - "nozzle_temperature_range_low": ["190"], - "overhang_fan_speed": ["100"], - "overhang_fan_threshold": ["50%"], - "pressure_advance": ["0.4"], - "reduce_fan_stop_start_freq": ["0"], - "required_nozzle_HRC": ["3"], - "slow_down_for_layer_cooling": ["1"], - "slow_down_layer_time": ["30"], - "slow_down_min_speed": ["20"], - "support_material_interface_fan_speed": ["-1"], - "temperature_vitrification": ["55"], - "textured_plate_temp": ["55"], - "textured_plate_temp_initial_layer": ["55"], - "version": "1.7.0.2", - "instantiation": "false" -} + "type": "filament", + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Ginger G1 1.2 nozzle", + "Ginger G1 3.0 nozzle", + "Ginger G1 5.0 nozzle", + "Ginger G1 8.0 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "default_filament_colour": [ + "" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "60" + ], + "fan_max_speed": [ + "0" + ], + "fan_min_speed": [ + "0" + ], + "filament_cooling_final_speed": [ + "3.4" + ], + "filament_cooling_initial_speed": [ + "2.2" + ], + "filament_cooling_moves": [ + "4" + ], + "filament_cost": [ + "5" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.12838" + ], + "filament_end_gcode": [ + "; filament end gcode \nM106 P3 S0\n" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "P510eff9", + "filament_is_support": [ + "0" + ], + "filament_load_time": [ + "0" + ], + "filament_loading_speed": [ + "28" + ], + "filament_loading_speed_start": [ + "3" + ], + "filament_max_volumetric_speed": [ + "300" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "10" + ], + "filament_multitool_ramming_volume": [ + "10" + ], + "filament_notes": [ + "" + ], + "filament_ramming_parameters": [ + "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "Ginger Filaments Common" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_unload_time": [ + "0" + ], + "filament_unloading_speed": [ + "90" + ], + "filament_unloading_speed_start": [ + "100" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "from": "system", + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "1" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "is_custom_defined": "0", + "name": "fdm_filament_common", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.4" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "required_nozzle_HRC": [ + "0" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "30" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "1.7.0.2", + "pellet_flow_coefficient": [ + "1" + ], + "instantiation": "false" +} \ No newline at end of file diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_petg.json b/resources/profiles/Ginger Additive/filament/fdm_filament_petg.json deleted file mode 100644 index 3046df8a81..0000000000 --- a/resources/profiles/Ginger Additive/filament/fdm_filament_petg.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "filament", - "filament_type": ["PETG"], - "close_fan_the_first_x_layers": ["4"], - "fan_cooling_layer_time": ["100"], - "fan_max_speed": ["50"], - "fan_min_speed": ["5"], - "filament_diameter": ["2.4"], - "filament_settings_id": ["PETG"], - "filament_vendor": ["Generic"], - "from": "system", - "hot_plate_temp": ["50"], - "hot_plate_temp_initial_layer": ["50"], - "inherits": "fdm_filament_common", - "name": "fdm_filament_petg", - "pressure_advance": ["0"], - "slow_down_layer_time": ["25"], - "version": "1.7.0.2", - "instantiation": "false" -} diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_pla.json b/resources/profiles/Ginger Additive/filament/fdm_filament_pla.json deleted file mode 100644 index d10da9b052..0000000000 --- a/resources/profiles/Ginger Additive/filament/fdm_filament_pla.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "filament", - "filament_type": ["PLA"], - "close_fan_the_first_x_layers": ["4"], - "fan_cooling_layer_time": ["100"], - "fan_max_speed": ["50"], - "fan_min_speed": ["5"], - "filament_diameter": ["2.4"], - "filament_settings_id": ["PLA"], - "filament_vendor": ["Generic"], - "from": "system", - "hot_plate_temp": ["50"], - "hot_plate_temp_initial_layer": ["50"], - "inherits": "fdm_filament_common", - "name": "fdm_filament_pla", - "pressure_advance": ["0"], - "slow_down_layer_time": ["25"], - "version": "1.7.0.2", - "instantiation": "false" -} diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_rpetg.json b/resources/profiles/Ginger Additive/filament/fdm_filament_rpetg.json deleted file mode 100644 index 826d04babf..0000000000 --- a/resources/profiles/Ginger Additive/filament/fdm_filament_rpetg.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "filament", - "filament_type": ["rPETG"], - "close_fan_the_first_x_layers": ["4"], - "fan_cooling_layer_time": ["100"], - "fan_max_speed": ["50"], - "fan_min_speed": ["5"], - "filament_diameter": ["2.4"], - "filament_settings_id": ["rPETG"], - "filament_vendor": ["Generic"], - "from": "system", - "hot_plate_temp": ["50"], - "hot_plate_temp_initial_layer": ["50"], - "inherits": "fdm_filament_common", - "name": "fdm_filament_rpetg", - "pressure_advance": ["0"], - "slow_down_layer_time": ["25"], - "version": "1.7.0.2", - "instantiation": "false" -} diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_rpla.json b/resources/profiles/Ginger Additive/filament/fdm_filament_rpla.json deleted file mode 100644 index 05a73700c7..0000000000 --- a/resources/profiles/Ginger Additive/filament/fdm_filament_rpla.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "filament", - "filament_type": ["rPLA"], - "close_fan_the_first_x_layers": ["4"], - "fan_cooling_layer_time": ["100"], - "fan_max_speed": ["50"], - "fan_min_speed": ["5"], - "filament_diameter": ["2.4"], - "filament_settings_id": ["rPLA"], - "filament_vendor": ["Generic"], - "from": "system", - "hot_plate_temp": ["50"], - "hot_plate_temp_initial_layer": ["50"], - "inherits": "fdm_filament_common", - "name": "fdm_filament_rpla", - "pressure_advance": ["0"], - "slow_down_layer_time": ["25"], - "version": "1.7.0.2", - "instantiation": "false" -} diff --git a/resources/profiles/Ginger Additive/ginger G1_cover.png b/resources/profiles/Ginger Additive/ginger G1_cover.png index f072f46938..d4a521f68e 100644 Binary files a/resources/profiles/Ginger Additive/ginger G1_cover.png and b/resources/profiles/Ginger Additive/ginger G1_cover.png differ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json new file mode 100644 index 0000000000..1070fe5735 --- /dev/null +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json @@ -0,0 +1,13 @@ +{ + "type": "machine", + "name": "Ginger G1 1.2 nozzle", + "renamed_from":"ginger G1 1.2 nozzle", + "printer_settings_id": "Ginger G1 1.2 nozzle", + "instantiation": "true", + "inherits": "Ginger_G1_common", + "max_layer_height": ["1"], + "nozzle_diameter": ["1.2"], + "printer_variant": "1.2", + "printer_model": "ginger G1", + "version": "0.1.0.0" +} diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json new file mode 100644 index 0000000000..2969b6bf18 --- /dev/null +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json @@ -0,0 +1,13 @@ +{ + "type": "machine", + "name": "Ginger G1 3.0 nozzle", + "renamed_from":"ginger G1 3.0 nozzle", + "printer_settings_id": "Ginger G1 3.0 nozzle", + "instantiation": "true", + "inherits": "Ginger_G1_common", + "max_layer_height": ["2.5"], + "nozzle_diameter": ["3.0"], + "printer_variant": "3.0", + "printer_model": "ginger G1", + "version": "0.1.0.0" +} diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json new file mode 100644 index 0000000000..7efa58a40f --- /dev/null +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json @@ -0,0 +1,13 @@ +{ + "type": "machine", + "name": "Ginger G1 5.0 nozzle", + "renamed_from":"ginger G1 5.0 nozzle", + "printer_settings_id": "Ginger G1 5.0 nozzle", + "instantiation": "true", + "inherits": "Ginger_G1_common", + "max_layer_height": ["3.5"], + "nozzle_diameter": ["5.0"], + "printer_variant": "5.0", + "printer_model": "ginger G1", + "version": "0.1.0.0" +} diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json new file mode 100644 index 0000000000..74469794e2 --- /dev/null +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json @@ -0,0 +1,13 @@ +{ + "type": "machine", + "name": "Ginger G1 8.0 nozzle", + "renamed_from":"ginger G1 8.0 nozzle", + "printer_settings_id": "Ginger G1 8.0 nozzle", + "instantiation": "true", + "inherits": "Ginger_G1_common", + "max_layer_height": ["5.0"], + "nozzle_diameter": ["8.0"], + "printer_variant": "8.0", + "printer_model": "ginger G1", + "version": "0.1.0.0" +} diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1.json b/resources/profiles/Ginger Additive/machine/Ginger G1.json new file mode 100644 index 0000000000..a8b81438b6 --- /dev/null +++ b/resources/profiles/Ginger Additive/machine/Ginger G1.json @@ -0,0 +1,11 @@ +{ + "type": "machine_model", + "name": "Ginger G1", + "renamed_from":"ginger G1", + "model_id": "Ginger_G1", + "nozzle_diameter": "1.2;3.0;5.0;8.0", + "machine_tech": "FGF", + "family": "Ginger", + "bed_model": "Ginger_G1.stl", + "default_materials": "Ginger Generic PETG;Ginger Generic PLA" +} diff --git a/resources/profiles/Ginger Additive/machine/Ginger_G1_common.json b/resources/profiles/Ginger Additive/machine/Ginger_G1_common.json new file mode 100644 index 0000000000..3bbb18eea8 --- /dev/null +++ b/resources/profiles/Ginger Additive/machine/Ginger_G1_common.json @@ -0,0 +1,50 @@ +{ + "type": "machine", + "name": "Ginger_G1_common", + "renamed_from":"ginger_one_common", + "printer_settings_id": "Ginger_G1_common", + "from": "system", + "inherits": "fdm_machine_common", + "instantiation": "false", + "is_custom_defined": "0", + "default_filament_profile": ["Ginger Generic PLA"], + "default_print_profile": "1.50mm Standard @Ginger G1", + "deretraction_speed": ["200"], + "extruder_clearance_height_to_lid": "200", + "extruder_clearance_height_to_rod": "100", + "extruder_clearance_radius": "200", + "machine_end_gcode": "END_PRINT", + "machine_max_acceleration_e": ["1000", "5000"], + "machine_max_acceleration_extruding": ["2500", "20000"], + "machine_max_acceleration_retracting": ["2500", "5000"], + "machine_max_acceleration_x": ["2500", "20000"], + "machine_max_acceleration_y": ["2500", "20000"], + "machine_max_jerk_e": ["30", "2.5"], + "machine_max_jerk_x": ["7", "9"], + "machine_max_jerk_y": ["7", "9"], + "machine_max_jerk_z": ["7", "0.4"], + "machine_max_speed_e": ["500", "25"], + "machine_max_speed_x": ["300", "200"], + "machine_max_speed_y": ["300", "200"], + "machine_max_speed_z": ["12", "12"], + "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] KAMP_LEVELING=1 EXTRUDER_ROTATION_VOLUME={extruder_rotation_volume[0]} MIXING_STEPPER_ROTATION_VOLUME={mixing_stepper_rotation_volume[0]} PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=500 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=10000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer] PRESSURE_ADVANCE=0.2 PRESSURE_ADVANCE_SMOOTH_TIME=0.5 ZONE_1_TEMPERATURE={multi_zone_1_initial_layer[0]} ZONE_2_TEMPERATURE={multi_zone_2_initial_layer[0]} ZONE_3_TEMPERATURE={multi_zone_3_initial_layer[0]}", + "print_host": "G1OS.local", + "printer_model": "Ginger G1", + "retract_before_wipe": ["0%"], + "retract_restart_extra": ["35"], + "retraction_length": ["20"], + "retraction_minimum_travel": ["10"], + "retraction_speed": ["200"], + "support_air_filtration": "0", + "support_chamber_temp_control": "0", + "version": "1.9.0.2", + "wipe_distance": ["10"], + "z_hop": ["1.5"], + "z_hop_types": ["Normal Lift"], + "pellet_modded_printer": "1", + "use_extruder_rotation_volume": "1", + "use_active_pellet_feeding": "1", + "multi_zone": "1", + "multi_zone_number": "3", + "active_feeder_motor_name": ["mixing_stepper"] +} diff --git a/resources/profiles/Ginger Additive/machine/fdm_machine_common.json b/resources/profiles/Ginger Additive/machine/fdm_machine_common.json index a26021c545..d91e06b1c0 100644 --- a/resources/profiles/Ginger Additive/machine/fdm_machine_common.json +++ b/resources/profiles/Ginger Additive/machine/fdm_machine_common.json @@ -67,7 +67,6 @@ "nozzle_type": "undefine", "nozzle_volume": "0", "parking_pos_retraction": "92", - "pellet_modded_printer": "1", "preferred_orientation": "0", "print_host": "http://10.0.1.200/", "print_host_webui": "", @@ -94,7 +93,7 @@ "retract_lift_enforce": ["All Surfaces"], "retract_restart_extra": ["0"], "retract_restart_extra_toolchange": ["0"], - "retract_when_changing_layer": ["1"], + "retract_when_changing_layer": ["0"], "retraction_length": ["0.8"], "retraction_minimum_travel": ["1"], "retraction_speed": ["30"], diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 1.2 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 1.2 nozzle.json deleted file mode 100644 index 76a80a20d4..0000000000 --- a/resources/profiles/Ginger Additive/machine/ginger G1 1.2 nozzle.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "machine", - "deretraction_speed": ["300"], - "extruder_clearance_height_to_lid": "200", - "extruder_clearance_height_to_rod": "200", - "extruder_clearance_radius": "180", - "from": "system", - "inherits": "ginger_one_common", - "is_custom_defined": "0", - "machine_max_speed_e": ["250", "25"], - "machine_max_speed_x": ["250", "200"], - "machine_max_speed_y": ["250", "200"], - "machine_max_speed_z": ["12", "12"], - "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]", - "max_layer_height": ["1"], - "name": "ginger G1 1.2 nozzle", - "nozzle_diameter": ["1.2"], - "printer_variant": "1.2", - "printer_model": "ginger G1", - "print_host": "192.168.1.97", - "printer_settings_id": "ginger G1 1.2 nozzle", - "retract_before_wipe": ["20%"], - "retract_restart_extra": ["12"], - "retraction_length": ["20"], - "retraction_speed": ["250"], - "support_air_filtration": "0", - "support_chamber_temp_control": "0", - "version": "0.1.0.0", - "wipe_distance": ["20"], - "z_hop": ["0.8"], - "z_hop_types": ["Slope Lift"], - "instantiation": "true" -} diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 3.0 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 3.0 nozzle.json deleted file mode 100644 index 8976a3ce37..0000000000 --- a/resources/profiles/Ginger Additive/machine/ginger G1 3.0 nozzle.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "machine", - "deretraction_speed": ["250"], - "extruder_clearance_height_to_lid": "200", - "extruder_clearance_height_to_rod": "200", - "extruder_clearance_radius": "180", - "from": "system", - "inherits": "ginger_one_common", - "is_custom_defined": "0", - "machine_max_speed_e": ["300", "25"], - "machine_max_speed_x": ["250", "200"], - "machine_max_speed_y": ["250", "200"], - "machine_max_speed_z": ["12", "12"], - "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]", - "max_layer_height": ["2.2"], - "nozzle_diameter": ["3.0"], - "printer_variant": "3.0", - "printer_model": "ginger G1", - "name": "ginger G1 3.0 nozzle", - "print_host": "192.168.1.39", - "printer_settings_id": "ginger G1 3.0 nozzle", - "retract_before_wipe": ["20%"], - "retract_restart_extra": ["5"], - "retraction_length": ["15"], - "retraction_speed": ["250"], - "support_air_filtration": "0", - "support_chamber_temp_control": "0", - "version": "0.1.0.0", - "wipe_distance": ["15"], - "z_hop": ["1.2"], - "z_hop_types": ["Normal Lift"], - "instantiation": "true" -} diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 5.0 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 5.0 nozzle.json deleted file mode 100644 index 02231c1ad7..0000000000 --- a/resources/profiles/Ginger Additive/machine/ginger G1 5.0 nozzle.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "machine", - "deretraction_speed": ["300"], - "extruder_clearance_height_to_lid": "200", - "extruder_clearance_height_to_rod": "200", - "extruder_clearance_radius": "180", - "from": "system", - "inherits": "ginger_one_common", - "is_custom_defined": "0", - "machine_max_speed_e": ["300", "25"], - "machine_max_speed_x": ["250", "200"], - "machine_max_speed_y": ["250", "200"], - "machine_max_speed_z": ["12", "12"], - "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]", - "max_layer_height": ["3.5"], - "name": "ginger G1 5.0 nozzle", - "nozzle_diameter": ["5.0"], - "printer_variant": "5.0", - "printer_model": "ginger G1", - "print_host": "192.168.1.97", - "printer_settings_id": "ginger G1 5.0 nozzle", - "retract_before_wipe": ["20%"], - "retract_restart_extra": ["15"], - "retraction_length": ["25"], - "retraction_speed": ["300"], - "support_air_filtration": "0", - "support_chamber_temp_control": "0", - "version": "0.1.0.0", - "wipe_distance": ["20"], - "z_hop": ["2"], - "z_hop_types": ["Normal Lift"], - "instantiation": "true" -} diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 8.0 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 8.0 nozzle.json deleted file mode 100644 index b9a1e9b5d4..0000000000 --- a/resources/profiles/Ginger Additive/machine/ginger G1 8.0 nozzle.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "machine", - "deretraction_speed": ["300"], - "extruder_clearance_height_to_lid": "200", - "extruder_clearance_height_to_rod": "200", - "extruder_clearance_radius": "180", - "from": "system", - "inherits": "ginger_one_common", - "is_custom_defined": "0", - "machine_max_speed_e": ["300", "25"], - "machine_max_speed_x": ["250", "200"], - "machine_max_speed_y": ["250", "200"], - "machine_max_speed_z": ["12", "12"], - "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]", - "max_layer_height": ["6"], - "name": "ginger G1 8.0 nozzle", - "nozzle_diameter": ["8.0"], - "printer_variant": "8.0", - "printer_model": "ginger G1", - "print_host": "192.168.1.39", - "printer_settings_id": "ginger G1 8.0 nozzle", - "retract_before_wipe": ["20%"], - "retract_length_toolchange": ["4"], - "retract_restart_extra": ["30"], - "retraction_length": ["40"], - "retraction_speed": ["300"], - "support_air_filtration": "0", - "support_chamber_temp_control": "0", - "version": "0.1.0.0", - "wipe_distance": ["30"], - "z_hop": ["2"], - "z_hop_types": ["Normal Lift"], - "instantiation": "true" -} diff --git a/resources/profiles/Ginger Additive/machine/ginger G1.json b/resources/profiles/Ginger Additive/machine/ginger G1.json deleted file mode 100644 index e74982b250..0000000000 --- a/resources/profiles/Ginger Additive/machine/ginger G1.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "machine_model", - "name": "ginger G1", - "model_id": "Ginger_One", - "nozzle_diameter": "1.2;3.0;5.0;8.0", - "machine_tech": "FFF", - "family": "Ginger", - "bed_model": "Ginger_One.stl", - "bed_texture": "Ginger_One_texture.png", - "default_materials": "Ginger Generic PETG;Ginger Generic PLA;Ginger Generic rPETG;Ginger Generic rPLA" -} diff --git a/resources/profiles/Ginger Additive/machine/ginger_one_common.json b/resources/profiles/Ginger Additive/machine/ginger_one_common.json deleted file mode 100644 index 1917e0c170..0000000000 --- a/resources/profiles/Ginger Additive/machine/ginger_one_common.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "machine", - "instantiation": "false", - "deretraction_speed": ["60"], - "from": "system", - "inherits": "fdm_machine_common", - "machine_end_gcode": "END_PRINT", - "machine_max_acceleration_e": ["1000", "5000"], - "machine_max_acceleration_extruding": ["2500", "20000"], - "machine_max_acceleration_retracting": ["2500", "5000"], - "machine_max_acceleration_x": ["2500", "20000"], - "machine_max_acceleration_y": ["2500", "20000"], - "machine_max_jerk_e": ["30", "2.5"], - "machine_max_jerk_x": ["7", "9"], - "machine_max_jerk_y": ["7", "9"], - "machine_max_jerk_z": ["7", "0.4"], - "machine_max_speed_e": ["100", "25"], - "machine_max_speed_x": ["350", "200"], - "machine_max_speed_y": ["300", "200"], - "machine_max_speed_z": ["5", "12"], - "machine_start_gcode": "START_PRINT MATERIAL=[filament_type] BED=[bed_temperature_initial_layer]\n", - "name": "ginger_one_common", - "print_host": "192.168.0.167", - "printer_settings_id": "ginger_one_common", - "retract_restart_extra": ["0.5"], - "retraction_length": ["3"], - "retraction_minimum_travel": ["10"], - "retraction_speed": ["60"], - "version": "1.9.0.2", - "wipe_distance": ["10"], - "z_hop": ["0.1"], - "z_hop_types": ["Auto Lift"] -} diff --git a/resources/profiles/Ginger Additive/process/0.60mm Standard.json b/resources/profiles/Ginger Additive/process/0.60mm Standard.json index 8c0030b50e..0b08cb66bb 100644 --- a/resources/profiles/Ginger Additive/process/0.60mm Standard.json +++ b/resources/profiles/Ginger Additive/process/0.60mm Standard.json @@ -2,16 +2,16 @@ "type": "process", "accel_to_decel_enable": "0", "bottom_shell_layers": "0", - "bottom_solid_infill_flow_ratio": "0.98", + "bottom_solid_infill_flow_ratio": "1", "bridge_flow": "0.95", "brim_object_gap": "0.05", "brim_type": "no_brim", "brim_width": "10", "default_acceleration": "2500", "default_jerk": "5", - "elefant_foot_compensation": "0.15", + "elefant_foot_compensation": "0", "exclude_object": "1", - "extra_perimeters_on_overhangs": "1", + "extra_perimeters_on_overhangs": "0", "from": "User", "gap_fill_target": "nowhere", "gap_infill_speed": "100", @@ -20,11 +20,10 @@ "infill_wall_overlap": "30%", "inherits": "fdm_process_common", "initial_layer_acceleration": "1000", - "initial_layer_infill_speed": "70", "initial_layer_jerk": "5", "initial_layer_line_width": "1.26", "initial_layer_print_height": "0.6", - "initial_layer_speed": "50", + "initial_layer_speed": "70", "inner_wall_acceleration": "2500", "inner_wall_jerk": "5", "inner_wall_line_width": "1.26", @@ -45,25 +44,23 @@ "overhang_2_4_speed": "50", "overhang_3_4_speed": "30", "overhang_4_4_speed": "10", - "overhang_reverse": "1", + "overhang_reverse": "0", "overhang_reverse_internal_only": "1", "overhang_reverse_threshold": "0%", "print_settings_id": "0.60mm Standard", "reduce_infill_retraction": "1", - "role_based_wipe_speed": "0", + "role_based_wipe_speed": "1", "skirt_distance": "10", "skirt_loops": "3", "sparse_infill_density": "0%", "sparse_infill_line_width": "1.26", "sparse_infill_pattern": "crosshatch", "sparse_infill_speed": "200", - "spiral_mode_max_xy_smoothing": "1e+07", - "spiral_mode_smooth": "1", "support_line_width": "1.26", "support_speed": "100", "thick_internal_bridges": "0", "top_shell_layers": "0", - "top_solid_infill_flow_ratio": "0.92", + "top_solid_infill_flow_ratio": "1", "top_surface_acceleration": "2500", "top_surface_jerk": "5", "top_surface_line_width": "1.26", @@ -73,8 +70,8 @@ "version": "0.0.0.0", "wipe_on_loops": "1", "wipe_speed": "30", - "xy_contour_compensation": "-0.05", - "xy_hole_compensation": "0.1", + "xy_contour_compensation": "0", + "xy_hole_compensation": "0", "instantiation": "true", - "compatible_printers": ["ginger G1 1.2 nozzle"] + "compatible_printers": ["Ginger G1 1.2 nozzle"] } diff --git a/resources/profiles/Ginger Additive/process/1.50mm Standard.json b/resources/profiles/Ginger Additive/process/1.50mm Standard.json index f3491f0285..9657edc661 100644 --- a/resources/profiles/Ginger Additive/process/1.50mm Standard.json +++ b/resources/profiles/Ginger Additive/process/1.50mm Standard.json @@ -1,16 +1,15 @@ { "type": "process", "accel_to_decel_enable": "0", - "bottom_solid_infill_flow_ratio": "0.8", + "bottom_solid_infill_flow_ratio": "1", "brim_type": "outer_only", "brim_width": "20", "default_acceleration": "2500", "default_jerk": "5", - "elefant_foot_compensation": "0.2", - "enable_overhang_speed": "0", + "elefant_foot_compensation": "0", "ensure_vertical_shell_thickness": "none", "exclude_object": "1", - "extra_perimeters_on_overhangs": "1", + "extra_perimeters_on_overhangs": "0", "from": "User", "gap_fill_target": "nowhere", "gap_infill_speed": "120", @@ -21,7 +20,7 @@ "initial_layer_acceleration": "2500", "initial_layer_jerk": "5", "initial_layer_print_height": "1", - "initial_layer_speed": "40", + "initial_layer_speed": "70", "inner_wall_acceleration": "2500", "inner_wall_jerk": "5", "inner_wall_speed": "120", @@ -32,27 +31,25 @@ "outer_wall_acceleration": "2500", "outer_wall_jerk": "5", "outer_wall_speed": "120", - "overhang_1_4_speed": "20", - "overhang_2_4_speed": "30", - "overhang_3_4_speed": "40", - "overhang_4_4_speed": "40", - "overhang_reverse": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "40", + "overhang_3_4_speed": "20", + "overhang_4_4_speed": "10", + "overhang_reverse": "0", "overhang_reverse_internal_only": "1", "overhang_reverse_threshold": "0%", "print_settings_id": "1.50mm Standard", - "role_based_wipe_speed": "0", + "role_based_wipe_speed": "1", "seam_position": "aligned", "skirt_distance": "10", "sparse_infill_density": "10%", "sparse_infill_line_width": "3.2", "sparse_infill_pattern": "crosshatch", "sparse_infill_speed": "120", - "spiral_mode_max_xy_smoothing": "1e+07", - "spiral_mode_smooth": "1", "support_speed": "120", "thick_internal_bridges": "0", "top_shell_layers": "0", - "top_solid_infill_flow_ratio": "0.9", + "top_solid_infill_flow_ratio": "1", "top_surface_acceleration": "2500", "top_surface_jerk": "5", "top_surface_speed": "120", @@ -60,12 +57,12 @@ "travel_jerk": "7", "travel_speed": "250", "version": "0.0.0.0", - "wall_generator": "classic", + "wall_generator": "arachne", "wall_loops": "1", "wipe_on_loops": "1", "wipe_speed": "40", - "xy_contour_compensation": "-0.15", - "xy_hole_compensation": "0.2", + "xy_contour_compensation": "0", + "xy_hole_compensation": "0", "instantiation": "true", - "compatible_printers": ["ginger G1 3.0 nozzle"] + "compatible_printers": ["Ginger G1 3.0 nozzle"] } diff --git a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json index e33db41d6a..d081db4351 100644 --- a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json +++ b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json @@ -1,16 +1,15 @@ { "type": "process", "accel_to_decel_enable": "0", - "bottom_solid_infill_flow_ratio": "0.8", + "bottom_solid_infill_flow_ratio": "1", "brim_type": "no_brim", "brim_width": "20", "default_acceleration": "2500", "default_jerk": "5", - "elefant_foot_compensation": "0.2", - "enable_overhang_speed": "0", + "elefant_foot_compensation": "0", "ensure_vertical_shell_thickness": "none", "exclude_object": "1", - "extra_perimeters_on_overhangs": "1", + "extra_perimeters_on_overhangs": "0", "from": "User", "gap_fill_target": "nowhere", "gap_infill_speed": "120", @@ -22,7 +21,7 @@ "initial_layer_jerk": "5", "initial_layer_line_width": "4.2", "initial_layer_print_height": "1", - "initial_layer_speed": "40", + "initial_layer_speed": "70", "inner_wall_acceleration": "2500", "inner_wall_jerk": "5", "inner_wall_line_width": "4.2", @@ -44,7 +43,7 @@ "overhang_reverse_internal_only": "1", "overhang_reverse_threshold": "0%", "print_settings_id": "1.80mm Vasemode", - "role_based_wipe_speed": "0", + "role_based_wipe_speed": "1", "seam_position": "aligned", "skirt_distance": "10", "sparse_infill_density": "0%", @@ -52,13 +51,11 @@ "sparse_infill_pattern": "crosshatch", "sparse_infill_speed": "120", "spiral_mode": "1", - "spiral_mode_max_xy_smoothing": "1e+07", - "spiral_mode_smooth": "1", "support_line_width": "4.2", "support_speed": "120", "thick_internal_bridges": "0", "top_shell_layers": "0", - "top_solid_infill_flow_ratio": "0.9", + "top_solid_infill_flow_ratio": "1", "top_surface_acceleration": "2500", "top_surface_jerk": "5", "top_surface_line_width": "4.2", @@ -70,8 +67,8 @@ "wall_loops": "1", "wipe_on_loops": "1", "wipe_speed": "40", - "xy_contour_compensation": "-0.15", - "xy_hole_compensation": "0.2", + "xy_contour_compensation": "0", + "xy_hole_compensation": "0", "instantiation": "true", - "compatible_printers": ["ginger G1 3.0 nozzle"] + "compatible_printers": ["Ginger G1 3.0 nozzle"] } diff --git a/resources/profiles/Ginger Additive/process/2.50mm Standard.json b/resources/profiles/Ginger Additive/process/2.50mm Standard.json index b72b6fb9b6..f43aca97b2 100644 --- a/resources/profiles/Ginger Additive/process/2.50mm Standard.json +++ b/resources/profiles/Ginger Additive/process/2.50mm Standard.json @@ -1,16 +1,15 @@ { "type": "process", "accel_to_decel_enable": "0", - "bottom_solid_infill_flow_ratio": "0.8", + "bottom_solid_infill_flow_ratio": "1", "brim_type": "outer_only", "brim_width": "20", "default_acceleration": "2500", "default_jerk": "5", - "elefant_foot_compensation": "0.2", - "enable_overhang_speed": "0", + "elefant_foot_compensation": "0", "ensure_vertical_shell_thickness": "none", "exclude_object": "1", - "extra_perimeters_on_overhangs": "1", + "extra_perimeters_on_overhangs": "0", "from": "User", "gap_fill_target": "nowhere", "gap_infill_speed": "120", @@ -22,7 +21,7 @@ "initial_layer_jerk": "5", "initial_layer_line_width": "5.5", "initial_layer_print_height": "1", - "initial_layer_speed": "40", + "initial_layer_speed": "70", "inner_wall_acceleration": "2500", "inner_wall_jerk": "5", "inner_wall_line_width": "5.5", @@ -41,24 +40,22 @@ "overhang_2_4_speed": "30", "overhang_3_4_speed": "40", "overhang_4_4_speed": "40", - "overhang_reverse": "1", + "overhang_reverse": "0", "overhang_reverse_internal_only": "1", "overhang_reverse_threshold": "0%", "print_settings_id": "2.50mm Standard", - "role_based_wipe_speed": "0", + "role_based_wipe_speed": "1", "seam_position": "aligned", "skirt_distance": "10", "sparse_infill_density": "10%", "sparse_infill_line_width": "5.5", "sparse_infill_pattern": "crosshatch", "sparse_infill_speed": "120", - "spiral_mode_max_xy_smoothing": "1e+07", - "spiral_mode_smooth": "1", "support_line_width": "5.5", "support_speed": "120", "thick_internal_bridges": "0", "top_shell_layers": "0", - "top_solid_infill_flow_ratio": "0.9", + "top_solid_infill_flow_ratio": "1", "top_surface_acceleration": "2500", "top_surface_jerk": "5", "top_surface_line_width": "5.5", @@ -67,12 +64,12 @@ "travel_jerk": "7", "travel_speed": "250", "version": "0.0.0.0", - "wall_generator": "classic", + "wall_generator": "arachne", "wall_loops": "1", "wipe_on_loops": "1", "wipe_speed": "40", - "xy_contour_compensation": "-0.15", - "xy_hole_compensation": "0.2", + "xy_contour_compensation": "0", + "xy_hole_compensation": "0", "instantiation": "true", - "compatible_printers": ["ginger G1 5.0 nozzle"] + "compatible_printers": ["Ginger G1 5.0 nozzle"] } diff --git a/resources/profiles/Ginger Additive/process/4.00mm Standard.json b/resources/profiles/Ginger Additive/process/4.00mm Standard.json index dd39cdb20f..fe057dc3f1 100644 --- a/resources/profiles/Ginger Additive/process/4.00mm Standard.json +++ b/resources/profiles/Ginger Additive/process/4.00mm Standard.json @@ -5,11 +5,10 @@ "brim_width": "40", "default_acceleration": "2500", "default_jerk": "5", - "elefant_foot_compensation": "0.2", - "enable_overhang_speed": "0", + "elefant_foot_compensation": "0", "ensure_vertical_shell_thickness": "none", "exclude_object": "1", - "extra_perimeters_on_overhangs": "1", + "extra_perimeters_on_overhangs": "0", "from": "User", "gap_fill_target": "nowhere", "gap_infill_speed": "120", @@ -21,7 +20,7 @@ "initial_layer_jerk": "5", "initial_layer_line_width": "9.5", "initial_layer_print_height": "1", - "initial_layer_speed": "40", + "initial_layer_speed": "70", "inner_wall_acceleration": "2500", "inner_wall_jerk": "5", "inner_wall_line_width": "9.5", @@ -40,19 +39,17 @@ "overhang_2_4_speed": "30", "overhang_3_4_speed": "40", "overhang_4_4_speed": "40", - "overhang_reverse": "1", + "overhang_reverse": "0", "overhang_reverse_internal_only": "1", "overhang_reverse_threshold": "0%", "print_settings_id": "4.00mm Standard", - "role_based_wipe_speed": "0", + "role_based_wipe_speed": "1", "seam_position": "aligned", "skirt_distance": "10", "sparse_infill_density": "10%", "sparse_infill_line_width": "9.5", "sparse_infill_pattern": "crosshatch", "sparse_infill_speed": "120", - "spiral_mode_max_xy_smoothing": "1e+07", - "spiral_mode_smooth": "1", "support_line_width": "9.5", "support_speed": "120", "thick_internal_bridges": "0", @@ -65,12 +62,12 @@ "travel_jerk": "7", "travel_speed": "250", "version": "0.0.0.0", - "wall_generator": "classic", + "wall_generator": "arachne", "wall_loops": "1", "wipe_on_loops": "1", "wipe_speed": "40", - "xy_contour_compensation": "-0.15", - "xy_hole_compensation": "0.2", + "xy_contour_compensation": "0", + "xy_hole_compensation": "0", "instantiation": "true", - "compatible_printers": ["ginger G1 8.0 nozzle"] + "compatible_printers": ["Ginger G1 8.0 nozzle"] } diff --git a/resources/profiles/Ginger Additive/process/fdm_process_common.json b/resources/profiles/Ginger Additive/process/fdm_process_common.json index 81075c236f..c8cabdeea2 100644 --- a/resources/profiles/Ginger Additive/process/fdm_process_common.json +++ b/resources/profiles/Ginger Additive/process/fdm_process_common.json @@ -64,12 +64,12 @@ "infill_jerk": "9", "infill_wall_overlap": "15%", "initial_layer_acceleration": "300", - "initial_layer_infill_speed": "60", + "initial_layer_infill_speed": "70", "initial_layer_jerk": "9", "initial_layer_line_width": "3.2", "initial_layer_min_bead_width": "85%", "initial_layer_print_height": "1.5", - "initial_layer_speed": "30", + "initial_layer_speed": "70", "initial_layer_travel_speed": "100%", "inner_wall_acceleration": "10000", "inner_wall_jerk": "9", @@ -153,7 +153,7 @@ "seam_slope_min_length": "20", "seam_slope_start_height": "0", "seam_slope_steps": "10", - "seam_slope_type": "external", + "seam_slope_type": "none", "single_extruder_multi_material_priming": "0", "skirt_distance": "2", "skirt_height": "1", @@ -187,7 +187,7 @@ "sparse_infill_speed": "100", "spiral_mode": "0", "spiral_mode_max_xy_smoothing": "200%", - "spiral_mode_smooth": "0", + "spiral_mode_smooth": "1", "staggered_inner_seams": "0", "standby_temperature_delta": "-5", "support_angle": "0", diff --git a/resources/profiles/Lulzbot/Lulzbot Taz 4 or 5_cover.png b/resources/profiles/Lulzbot/Lulzbot Taz 4 or 5_cover.png index b154b1b92d..e31e2b266c 100644 Binary files a/resources/profiles/Lulzbot/Lulzbot Taz 4 or 5_cover.png and b/resources/profiles/Lulzbot/Lulzbot Taz 4 or 5_cover.png differ diff --git a/resources/profiles/Lulzbot/Lulzbot Taz 6_cover.png b/resources/profiles/Lulzbot/Lulzbot Taz 6_cover.png index b9137ad7ba..9356b4b6e7 100644 Binary files a/resources/profiles/Lulzbot/Lulzbot Taz 6_cover.png and b/resources/profiles/Lulzbot/Lulzbot Taz 6_cover.png differ diff --git a/resources/profiles/Lulzbot/Lulzbot Taz Mini 2_cover.png b/resources/profiles/Lulzbot/Lulzbot Taz Mini 2_cover.png index 479153bcec..4b688dda83 100644 Binary files a/resources/profiles/Lulzbot/Lulzbot Taz Mini 2_cover.png and b/resources/profiles/Lulzbot/Lulzbot Taz Mini 2_cover.png differ diff --git a/resources/profiles/Lulzbot/Lulzbot Taz Pro Dual_cover.png b/resources/profiles/Lulzbot/Lulzbot Taz Pro Dual_cover.png index 92a3c5c775..e345152365 100644 Binary files a/resources/profiles/Lulzbot/Lulzbot Taz Pro Dual_cover.png and b/resources/profiles/Lulzbot/Lulzbot Taz Pro Dual_cover.png differ diff --git a/resources/profiles/Lulzbot/Lulzbot Taz Pro S_cover.png b/resources/profiles/Lulzbot/Lulzbot Taz Pro S_cover.png index 581cf7f515..524e8946c2 100644 Binary files a/resources/profiles/Lulzbot/Lulzbot Taz Pro S_cover.png and b/resources/profiles/Lulzbot/Lulzbot Taz Pro S_cover.png differ diff --git a/resources/profiles/Lulzbot/Lulzbot Taz Workhorse_cover.png b/resources/profiles/Lulzbot/Lulzbot Taz Workhorse_cover.png index 246c5ae183..36dcb32356 100644 Binary files a/resources/profiles/Lulzbot/Lulzbot Taz Workhorse_cover.png and b/resources/profiles/Lulzbot/Lulzbot Taz Workhorse_cover.png differ diff --git a/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl b/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl index 53fc9f2066..2364a9e934 100644 Binary files a/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl and b/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl differ diff --git a/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json index 7315b9924d..2f832482d0 100644 --- a/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json @@ -40,12 +40,6 @@ "extruder_clearance_height_to_lid": "100", "extruder_clearance_height_to_rod": "32", "extruder_clearance_radius": "50", - "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 E3 F300\nG1 E-10 F9000\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ; turn off fan\nPRINT_END", - "machine_max_speed_e": [ - "60", - "120" - ], - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\nG1 Z1 F9000 ;move the platform to 15mm\nG92 E0\nG1 F500 E10\nG0 X0 Y0\nG92 E0 ;zero the extruded length\nG1 F1000 Y100 E20\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", "min_layer_height": [ "0.05" ], @@ -72,27 +66,15 @@ "deretraction_speed": [ "30" ], - "machine_max_speed_x": [ - "500", - "500" - ], - "machine_max_speed_y": [ - "500", - "500" - ], "retraction_length": [ "1" ], "retraction_speed": [ "30" - ], - "z_hop_types": [ - "Spiral Lift" ], "default_filament_profile": [ - "Generic PLA @System" + "MM Generic PLA" ], - "is_custom_defined": "0", "machine_max_acceleration_e": [ "10000" ], @@ -117,14 +99,14 @@ "0.4" ], "machine_max_speed_z": [ - "10", + "12", "12" ], "printable_area": [ "0x0", "310x0", - "310x310", - "0x310" + "310x306", + "0x306" ], "thumbnails": [ "310x310" @@ -132,5 +114,23 @@ "z_hop": [ "0.2" ], - "version": "2.0.0.0" -} \ No newline at end of file + "is_custom_defined": "0", + "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nM83\nG1 E-1 F1200 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 F300 \nG90 ;absolute positioning\nG1 X100 Y0 F6000\nG1 E-4 F1200\nM84 ;steppers off\nM107 ; turn off fan\nPRINT_END", + "machine_max_speed_e": [ + "100", + "120" + ], + "machine_max_speed_x": [ + "1000", + "500" + ], + "machine_max_speed_y": [ + "1000", + "500" + ], + "machine_start_gcode": "G0 Z3 F300\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\nG0 Z5 F300\nG1 X0 Y100 F6000\nG92 E0\nG0 Z0.5 F300\nG1 F1000 Y0 E15\nG1 F1000 X100 E25\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", + "version": "2.1.0.1", + "z_hop_types": [ + "Slope Lift" + ] +} diff --git a/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json index 45d8bbdcc7..7837dcc7d9 100644 --- a/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json @@ -11,7 +11,6 @@ "0.4" ], "gcode_flavor": "klipper", - "is_custom_defined": "0", "machine_pause_gcode": "PAUSE", "printable_area": [ "0x0", @@ -51,7 +50,6 @@ "extruder_clearance_height_to_lid": "100", "extruder_clearance_height_to_rod": "32", "extruder_clearance_radius": "50", - "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 E3 F300\nG1 E-10 F9000\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ; turn off fan\nPRINT_END", "machine_max_acceleration_e": [ "6000" ], @@ -59,7 +57,6 @@ "60", "120" ], - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\nG1 Z1 F9000 ;move the platform to 15mm\nG92 E0\nG1 F500 E10\nG0 X0 Y0\nG92 E0 ;zero the extruded length\nG1 F1000 Y100 E20\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", "min_layer_height": [ "0.05" ], @@ -127,12 +124,15 @@ ], "z_hop": [ "0.4" - ], - "z_hop_types": [ - "Spiral Lift" ], "default_filament_profile": [ "Generic PLA @System" ], - "version": "2.0.0.0" -} \ No newline at end of file + "is_custom_defined": "0", + "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nM83\nG1 E-1 F1200 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 F300 \nG90 ;absolute positioning\nG1 X100 Y0 F6000\nG1 E-4 F1200\nM84 ;steppers off\nM107 ; turn off fan\nPRINT_END", + "machine_start_gcode": "G0 Z3 F300\nG90 ;absolute positioning\n;GZBC\n;G28 ;Home\nM190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\n;BED_MESH_CLEAR ;touch\n;BLTOUCH_DEBUG COMMAND=reset ;touch\n;BED_MESH_CALIBRATE ;touch\n;BED_MESH_CALIBRATE METHOD=scan SCAN_MODE=rapid ;eddy\n;G1 Z5 F300;TB\n;G1 X0 Y0 ;TB\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28;Home\nG0 Z5 F300\nG1 X0 Y100 F6000\nG92 E0\nG0 Z0.5 F300\nG1 F1000 Y0 E15\nG1 F1000 X100 E25\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", + "version": "2.1.0.1", + "z_hop_types": [ + "Slope Lift" + ] +} diff --git a/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json index 299b558df7..49adbb7c8b 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json @@ -48,7 +48,6 @@ "extruder_clearance_height_to_lid": "100", "extruder_clearance_height_to_rod": "32", "extruder_clearance_radius": "50", - "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 E3 F300\nG1 E-10 F9000\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ; turn off fan\nPRINT_END", "machine_max_acceleration_e": [ "6000" ], @@ -57,7 +56,6 @@ "120" ], "machine_pause_gcode": "M601", - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\nG1 Z1 F9000 ;move the platform to 15mm\nG92 E0\nG1 F500 E10\nG0 X0 Y0\nG92 E0 ;zero the extruded length\nG1 F1000 Y100 E20\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", "min_layer_height": [ "0.05" ], @@ -89,7 +87,6 @@ "deretraction_speed": [ "30" ], - "is_custom_defined": "0", "machine_max_acceleration_extruding": [ "5000", "1500" @@ -98,14 +95,6 @@ "5000", "1500" ], - "machine_max_acceleration_x": [ - "20000", - "3000" - ], - "machine_max_acceleration_y": [ - "20000", - "3000" - ], "machine_max_jerk_z": [ "2", "0.4" @@ -126,12 +115,24 @@ ], "z_hop": [ "0.4" - ], - "z_hop_types": [ - "Spiral Lift" ], "default_filament_profile": [ "Generic PLA @System" ], - "version": "2.0.0.0" -} \ No newline at end of file + "gcode_flavor": "marlin2", + "is_custom_defined": "0", + "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nM83\nG1 E-1 F1200 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 F300 \nG90 ;absolute positioning\nG1 X100 Y0 F6000\nG1 E-4 F1200\nM84 ;steppers off\nM107 ; turn off fan\nPRINT_END", + "machine_max_acceleration_x": [ + "10000", + "3000" + ], + "machine_max_acceleration_y": [ + "10000", + "3000" + ], + "machine_start_gcode": "G0 Z3 F300\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\n ;G29\nG0 Z5 F300\nG1 X0 Y100 F6000\nG92 E0\nG0 Z0.5 F300\nG1 F1000 Y0 E15\nG1 F1000 X100 E25\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", + "version": "2.1.0.1", + "z_hop_types": [ + "Slope Lift" + ] +} diff --git a/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json index c968ba6b44..35f3510ce0 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json @@ -59,8 +59,6 @@ "extruder_clearance_height_to_lid": "100", "extruder_clearance_height_to_rod": "32", "extruder_clearance_radius": "50", - "is_custom_defined": "0", - "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nG1 E3 F300\nG1 E-10 F9000\nM84 ;steppers off\nG90 ;absolute positioning\nM107 ; turn off fan\nPRINT_END", "machine_max_acceleration_e": [ "6000" ], @@ -77,7 +75,6 @@ "500" ], "machine_pause_gcode": "M601", - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\nG1 Z1 F9000 ;move the platform to 15mm\nG92 E0\nG1 F500 E10\nG0 X0 Y0\nG92 E0 ;zero the extruded length\nG1 F1000 Y100 E20\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", "min_layer_height": [ "0.05" ], @@ -119,11 +116,20 @@ "0.2", "0.4" ], + "z_hop": [ + "0.2" + ], "thumbnails": [ "220x220" ], "default_filament_profile": [ "Generic PLA @System" ], - "version": "2.0.0.0" -} \ No newline at end of file + "z_hop_types": [ + "Slope Lift" + ], + "is_custom_defined": "0", + "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nM83\nG1 E-1 F1200 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+1 F300 \nG90 ;absolute positioning\nG1 X100 Y0 F6000\nG1 E-4 F1200\nM84 ;steppers off\nM107 ; turn off fan\nPRINT_END", + "machine_start_gcode": "G0 Z3 F300\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\n ;G29\nG0 Z5 F300\nG1 X0 Y100 F6000\nG92 E0\nG0 Z0.5 F300\nG1 F1000 Y0 E15\nG1 F1000 X100 E25\nG92 E0 ;zero the extruded length again\nG1 F9000\nM117 Printing...", + "version": "2.1.0.1" +} diff --git a/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json index e6b4d0377f..0a44f1e2e3 100644 --- a/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json @@ -10,18 +10,25 @@ "nozzle_diameter": [ "0.4" ], + "printable_area": [ + "0x0", + "125x0", + "125x125", + "0x125" + ], + "printable_height": "160", "auxiliary_fan": "0", "machine_max_acceleration_travel": [ "3000", "3000" ], "machine_max_acceleration_z": [ - "500", - "500" + "100", + "100" ], "machine_max_speed_z": [ - "12", - "12" + "5", + "5" ], "max_layer_height": [ "0.3" @@ -30,26 +37,28 @@ "retract_before_wipe": [ "70%" ], + "wipe_distance": [ + "1" + ], "single_extruder_multi_material": "1", "change_filament_gcode": "", "scan_first_layer": "0", "cooling_tube_length": "20", "cooling_tube_retraction": "60", - "deretraction_speed": [ - "25" - ], "extruder_clearance_height_to_lid": "100", "extruder_clearance_height_to_rod": "32", "extruder_clearance_radius": "50", - "machine_max_jerk_e": [ - "5", - "2.5" + "machine_max_acceleration_e": [ + "4000" ], "machine_max_speed_e": [ "60", "120" ], "machine_pause_gcode": "M601", + "min_layer_height": [ + "0.1" + ], "nozzle_type": "brass", "parking_pos_retraction": "22", "retract_length_toolchange": [ @@ -58,32 +67,9 @@ "retraction_minimum_travel": [ "1" ], - "retraction_speed": [ - "25" - ], - "default_filament_profile": [ - "Generic PLA @System" - ], - "is_custom_defined": "0", - "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG28 X0\nG0 Y120\nG1 E-10 F9000\nM84 ;steppers off\nG90 ;absolute positioning\nPRINT_END", - "machine_max_acceleration_e": [ - "4000" - ], - "machine_max_acceleration_extruding": [ - "2000", - "1500" - ], - "machine_max_acceleration_retracting": [ - "2000", - "1500" - ], - "machine_max_acceleration_x": [ - "2000", - "3000" - ], - "machine_max_acceleration_y": [ - "2000", - "3000" + "machine_max_jerk_e": [ + "2.5", + "2.5" ], "machine_max_jerk_x": [ "9", @@ -93,8 +79,22 @@ "9", "20" ], + "thumbnails": [ + "125x125" + ], + "deretraction_speed": [ + "25" + ], + "machine_max_acceleration_extruding": [ + "2000", + "1500" + ], + "machine_max_acceleration_retracting": [ + "2000", + "1500" + ], "machine_max_jerk_z": [ - "0.2", + "2", "0.4" ], "machine_max_speed_x": [ @@ -105,25 +105,32 @@ "200", "500" ], - "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\nG0 Z1\nG0 X0 Y0\nG92 E0\nG0 Z0.5\nG1 F1000 Y100 E20\nG92 E0\nM117 Printing...", - "min_layer_height": [ - "0.1" - ], - "printable_area": [ - "0x0", - "125x0", - "125x125", - "0x125" - ], - "printable_height": "160", "retraction_length": [ "2" ], - "thumbnails": [ - "120x120" + "retraction_speed": [ + "25" ], - "wipe_distance": [ - "1" + "z_hop": [ + "0.4" ], - "version": "2.0.0.0" -} \ No newline at end of file + "default_filament_profile": [ + "Generic PLA @System" + + ], + "is_custom_defined": "0", + "machine_max_acceleration_x": [ + "2000", + "3000" + ], + "machine_max_acceleration_y": [ + "2000", + "3000" + ], + "machine_start_gcode": "G0 Z3 F300\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\nG21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Home\n;G29\nG0 Z5 F300\nG1 X0 Y50 F6000\nG92 E0\nG0 Z0.5 F300\nG1 F1000 Y0 E10\nG1 F1000 X50 E18\nG92 E0\nM117 Printing...", + "machine_end_gcode": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 \nM83\nG1 E-1 F600 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z1 F600\nG90 ;absolute positioning\nG1 X0 Y120 F6000\nG1 E-4 F1200\nM107 ; turn off fan\nM84 ;steppers off\nPRINT_END", + "version": "2.1.0.1", + "z_hop_types": [ + "Slope Lift" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json index e718a2aa59..9ed681e6a9 100644 --- a/resources/profiles/OrcaFilamentLibrary.json +++ b/resources/profiles/OrcaFilamentLibrary.json @@ -1,6 +1,6 @@ { "name": "OrcaFilamentLibrary", - "version": "02.03.00.03", + "version": "02.03.00.04", "force_update": "0", "description": "Orca Filament Library", "filament_list": [ @@ -367,6 +367,30 @@ { "name": "Overture PLA @base", "sub_path": "filament/Overture/Overture PLA @base.json" + }, + { + "name": "Overture TPU @base", + "sub_path": "filament/Overture/Overture TPU @base.json" + }, + { + "name": "Overture ABS Basic @base", + "sub_path": "filament/Overture/Overture ABS Basic @base.json" + }, + { + "name": "Valment PLA @base", + "sub_path": "filament/Valment/Valment PLA @base.json" + }, + { + "name": "Valment PLA Silk @base", + "sub_path": "filament/Valment/Valment PLA Silk @base.json" + }, + { + "name": "Valment PLA-CF @base", + "sub_path": "filament/Valment/Valment PLA-CF @base.json" + }, + { + "name": "Valment PLA Galaxy @base", + "sub_path": "filament/Valment/Valment PLA Galaxy @base.json" }, { "name": "PolyLite PLA @base", @@ -683,6 +707,30 @@ { "name": "Overture PLA @System", "sub_path": "filament/Overture/Overture PLA @System.json" + }, + { + "name": "Overture TPU @System", + "sub_path": "filament/Overture/Overture TPU @System.json" + }, + { + "name": "Overture ABS Basic @System", + "sub_path": "filament/Overture/Overture ABS Basic @System.json" + }, + { + "name": "Valment PLA @System", + "sub_path": "filament/Valment/Valment PLA @System.json" + }, + { + "name": "Valment PLA Silk @System", + "sub_path": "filament/Valment/Valment PLA Silk @System.json" + }, + { + "name": "Valment PLA-CF @System", + "sub_path": "filament/Valment/Valment PLA-CF @System.json" + }, + { + "name": "Valment PLA Galaxy @System", + "sub_path": "filament/Valment/Valment PLA Galaxy @System.json" }, { "name": "PolyLite Dual PLA @System", @@ -756,6 +804,14 @@ "name": "Bambu TPU 95A HF @System", "sub_path": "filament/Bambu/Bambu TPU 95A HF @System.json" }, + { + "name": "FusRock ABS-GF @base", + "sub_path": "filament/FusRock/FusRock ABS-GF @base.json" + }, + { + "name": "FusRock ABS-GF @System", + "sub_path": "filament/FusRock/FusRock ABS-GF @System.json" + }, { "name": "AliZ PETG-CF @System", "sub_path": "filament/AliZ/AliZ PETG-CF @System.json" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @base.json index 83da3ae163..9097bd1407 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @base.json @@ -2,7 +2,7 @@ "type": "filament", "name": "AliZ PETG-CF @base", "inherits": "AliZ PETG @base", - "filament_id": "AliZ001-1", + "filament_id": "AZ01-1", "from": "system", "instantiation": "false", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @base.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @base.json index 978b4495b3..564552fc5f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @base.json @@ -2,7 +2,7 @@ "type": "filament", "name": "AliZ PETG-Metal @base", "inherits": "AliZ PETG @base", - "filament_id": "AliZ001-2", + "filament_id": "AZ01-2", "from": "system", "instantiation": "false", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @base.json index f5d8680b06..c50fefb856 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @base.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @base", "inherits": "fdm_filament_abs", "from": "system", - "filament_id": "GFB00", + "filament_id": "OGFB00", "instantiation": "false", "description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @base.json index a67aa45465..b8d164ad0b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @base.json @@ -3,7 +3,7 @@ "name": "Bambu ABS-GF @base", "inherits": "fdm_filament_abs", "from": "system", - "filament_id": "GFB50", + "filament_id": "OGFB50", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @base.json index 322bb3514c..2fffc05539 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @base.json @@ -3,7 +3,7 @@ "name": "Bambu ASA @base", "inherits": "fdm_filament_asa", "from": "system", - "filament_id": "GFB01", + "filament_id": "OGFB01", "instantiation": "false", "description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "eng_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @base.json index 4cfe7de309..407c0960f2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @base.json @@ -3,7 +3,7 @@ "name": "Bambu ASA-Aero @base", "inherits": "fdm_filament_asa", "from": "system", - "filament_id": "GFB02", + "filament_id": "OGFB02", "instantiation": "false", "description": "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: ASA Aero Printing Guide.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @base.json index d8c3c0ffce..1f369bd71e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu ASA-CF @base", "inherits": "fdm_filament_asa", "from": "system", - "filament_id": "GFB51", + "filament_id": "OGFB51", "instantiation": "false", "eng_plate_temp": [ "100" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @base.json index f278ca567b..d24ba4bddb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PA-CF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFN03", + "filament_id": "OGFN03", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @base.json index 7df1f06e4a..e48197c190 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PA6-CF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFN05", + "filament_id": "OGFN05", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @base.json index e2246b0cab..998709bb31 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PA6-GF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFN08", + "filament_id": "OGFN08", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @base.json index 17ef39575f..7b9521d064 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PAHT-CF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFN04", + "filament_id": "OGFN04", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @base.json index 001f7c94d7..8523dfb27a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @base.json @@ -3,7 +3,7 @@ "name": "Bambu PC @base", "inherits": "fdm_filament_pc", "from": "system", - "filament_id": "GFC00", + "filament_id": "OGFC00", "instantiation": "false", "filament_vendor": [ "Bambu Lab" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @base.json index c01a0dfe0d..771f914e96 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @base.json @@ -3,7 +3,7 @@ "name": "Bambu PC FR @base", "inherits": "fdm_filament_pc", "from": "system", - "filament_id": "GFC01", + "filament_id": "OGFC01", "instantiation": "false", "filament_cost": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @base.json index 86f36ecab1..23334321d7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PET-CF @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFT01", + "filament_id": "OGFT01", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @base.json index 07f806457b..e9703ccd64 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @base.json @@ -3,7 +3,7 @@ "name": "Bambu PETG Basic @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFG00", + "filament_id": "OGFG00", "instantiation": "false", "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @base.json index dc50f6b886..40ddd215e2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PETG HF @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFG02", + "filament_id": "OGFG02", "instantiation": "false", "cool_plate_temp": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @base.json index 1582cd8d4a..170b4897f6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @base.json @@ -3,7 +3,7 @@ "name": "Bambu PETG Translucent @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFG01", + "filament_id": "OGFG01", "instantiation": "false", "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @base.json index 89eccb7c52..37e45c1161 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PETG-CF @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFG50", + "filament_id": "OGFG50", "instantiation": "false", "cool_plate_temp": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @base.json index a53ae18186..d5b7b0d2b6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Aero @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA11", + "filament_id": "OGFA11", "instantiation": "false", "description": "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: Instructions for printing RC model with foaming PLA (PLA Aero).", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @base.json index 5e584c7980..370575adec 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Basic @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA00", + "filament_id": "OGFA00", "instantiation": "false", "filament_cost": [ "24.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @base.json index 46b034593c..cee702812c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Dynamic @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA13", + "filament_id": "OGFA13", "instantiation": "false", "filament_cost": [ "31.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @base.json index a493400c1a..6695eab188 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Galaxy @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA15", + "filament_id": "OGFA15", "instantiation": "false", "filament_cost": [ "29.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @base.json index 206578285f..4641fdb0a7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Glow @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA12", + "filament_id": "OGFA12", "instantiation": "false", "filament_cost": [ "29.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @base.json index f56887abff..031ee90bcf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Impact @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA03", + "filament_id": "OGFA03", "instantiation": "false", "filament_cost": [ "25.4" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @base.json index a34253171b..081b57b5af 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Marble @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA07", + "filament_id": "OGFA07", "instantiation": "false", "filament_cost": [ "29.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @base.json index 700253f841..d5afe93c8e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Matte @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA01", + "filament_id": "OGFA01", "instantiation": "false", "filament_cost": [ "24.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @base.json index d2edaf4bd3..fd5c853a8f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Metal @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA02", + "filament_id": "OGFA02", "instantiation": "false", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @base.json index 40b486e812..1883fb3d7f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Silk @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA05", + "filament_id": "OGFA05", "instantiation": "false", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @base.json index 550061b0bc..89be4fef11 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Silk+ @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA06", + "filament_id": "OGFA06", "instantiation": "false", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @base.json index 02bddb8948..44807890e7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Sparkle @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA08", + "filament_id": "OGFA08", "instantiation": "false", "filament_cost": [ "29.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @base.json index 489843c50b..750b8d9a63 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Tough @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA09", + "filament_id": "OGFA09", "instantiation": "false", "filament_cost": [ "28.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @base.json index 45015187b3..5ba1c5b39e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Wood @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA16", + "filament_id": "OGFA16", "instantiation": "false", "filament_cost": [ "24.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @base.json index b16b20ca1d..b3caa3d535 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PLA-CF @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFA50", + "filament_id": "OGFA50", "instantiation": "false", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @base.json index d94bae666c..7a08929b2c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PPA-CF @base", "inherits": "fdm_filament_ppa", "from": "system", - "filament_id": "GFN06", + "filament_id": "OGFN06", "instantiation": "false", "filament_vendor": [ "Bambu Lab" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPS-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPS-CF @base.json index cef49fe98d..08ef894d07 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPS-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPS-CF @base.json @@ -3,7 +3,7 @@ "name": "Bambu PPS-CF @base", "inherits": "fdm_filament_pps", "from": "system", - "filament_id": "GFT02", + "filament_id": "OGFT02", "instantiation": "false", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", "fan_max_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @base.json index f9396292cf..8d10a456e9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @base.json @@ -3,7 +3,7 @@ "name": "Bambu PVA @base", "inherits": "fdm_filament_pva", "from": "system", - "filament_id": "GFS04", + "filament_id": "OGFS04", "instantiation": "false", "description": "This is a water-soluble support filament, and usually it is only for the support structure and not for the model body. Printing this filament is of many requirements, and to get better printing quality, please refer to this wiki: PVA Printing Guide.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @base.json index 3166617d72..999167bfef 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @base.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PA/PET @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFS03", + "filament_id": "OGFS03", "instantiation": "false", "description": "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @base.json index 4fda6e0010..38a7c2ee4f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @base.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PLA @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFS02", + "filament_id": "OGFS02", "instantiation": "false", "description": "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function.", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @base.json index 6eae3684bf..3047f0c839 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @base.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PLA/PETG @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFS05", + "filament_id": "OGFS05", "instantiation": "false", "description": "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @base.json index 7a60603cae..1b71a3143a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @base.json @@ -3,7 +3,7 @@ "name": "Bambu Support G @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFS01", + "filament_id": "OGFS01", "instantiation": "false", "description": "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function.", "fan_cooling_layer_time": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @base.json index d94a54812e..e977bb4478 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @base.json @@ -3,7 +3,7 @@ "name": "Bambu Support W @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFS00", + "filament_id": "OGFS00", "instantiation": "false", "description": "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function.", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @base.json index 3bd74d4d96..b37fd9fda9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @base.json @@ -3,7 +3,7 @@ "name": "Bambu Support for ABS @base", "inherits": "fdm_filament_abs", "from": "system", - "filament_id": "GFS06", + "filament_id": "OGFS06", "instantiation": "false", "description": "This is a non-water-soluble support filament, and usually it is only for the support structure and not for the model body. To get better printing quality, please refer to this wiki: Printing Tips for Support Filament and Support Function.", "fan_max_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @base.json index eb0555633a..58703ae3ac 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @base.json @@ -3,7 +3,7 @@ "name": "Bambu TPU 95A @base", "inherits": "fdm_filament_tpu", "from": "system", - "filament_id": "GFU01", + "filament_id": "OGFU01", "instantiation": "false", "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @base.json index 6deab30b35..5920b96f3e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @base.json @@ -3,7 +3,7 @@ "name": "Bambu TPU 95A HF @base", "inherits": "fdm_filament_tpu", "from": "system", - "filament_id": "GFU00", + "filament_id": "OGFU00", "instantiation": "false", "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json new file mode 100644 index 0000000000..151c311ab5 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @System", + "inherits": "FusRock ABS-GF @base", + "from": "system", + "setting_id": "OGFSB50_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @base.json new file mode 100644 index 0000000000..7c1d4e3e64 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @base.json @@ -0,0 +1,161 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @base", + "inherits": "fdm_filament_common", + "from": "system", + "filament_id": "OGFR00", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).", + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_type": [ + "ABS-GF" + ], + "filament_vendor": [ + "FusRock" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_density": [ + "1.08" + ], + "filament_cost": [ + "13" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "cool_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "supertack_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "eng_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "hot_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "textured_plate_temp": [ + "105" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature": [ + "270" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_min_speed": [ + "10" + ], + "fan_cooling_layer_time": [ + "12" + ], + "fan_max_speed": [ + "30" + ], + "slow_down_layer_time": [ + "4" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_min_speed": [ + "20" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "100%" + ], + "overhang_fan_speed": [ + "30" + ], + "pre_start_fan_time": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "activate_air_filtration": [ + "1" + ], + "during_print_exhaust_fan_speed": [ + "30" + ], + "complete_print_exhaust_fan_speed": [ + "10" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_z_hop": [ + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "filament_retraction_speed": [ + "30" + ], + "filament_deretraction_speed": [ + "0" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + "filament_retract_when_changing_layer": [ + "0" + ], + "filament_wipe": [ + "0" + ], + "filament_wipe_distance": [ + "2" + ], + "filament_retract_before_wipe": [ + "100%" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing us FusRock.\n*This setting may not be able to adapt to all models. In some cases, you need to modify and adjust the parameters by yourself to improve the printing effect.\n*FusRock 3D printing filaments are intended for general-purpose printing and have been tested under standard conditions. However, the performance and safety of printed objects are affected by multiple factors, including printing parameters, model design, usage environment, and the specific application.\n*By using FusRock materials, the user acknowledges and agrees to independently evaluate whether the printed parts are suitable for their intended use, and assumes all associated risks.\n*FusRock shall not be held liable for any damage, injury, or loss that may result from the use of printed products made with our materials, including but not limited to structural failure, functional defects, or safety hazards under actual usage conditions.Before applying printed parts in any critical, functional, or commercial context, thorough testing must be conducted. Except for the certifications explicitly stated for specific FusRock materials, our products are not certified for medical, aerospace, or life-support applications.\n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。\n*此设置不一定能够适配所有模型,存在部分情况下需要您自行修改调整参数来提升打印效果。\n*FusRock 3D打印耗材适用于通用打印用途,已在标准条件下进行测试。然而,打印成品的性能与安全性受多种因素影响,包括打印参数、模型设计、使用环境及实际用途。\n*使用FusRock材料即表示用户已知悉并同意,自行评估打印件是否适用于其具体应用,并承担由此产生的全部风险。\n*FusRock对使用本公司耗材打印的产品在实际应用中可能导致的任何损害、伤害或损失不承担任何责任,包括但不限于结构失效、功能异常或使用环境中的安全隐患。在将打印件应用于关键、功能性或商业性场景前,请务必进行充分测试。除FusRock已标明材料所获得的各项认证资质外,FusRock产品未取得医疗、航天或生命支持系统认证资质。", + "impact_strength_z":["5.3"] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json index 518f53a614..5cde090033 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFB99", + "filament_id": "OGFB99", "setting_id": "OGFSA04", "name": "Generic ABS @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json index 95f34f416a..3b6fab7f40 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFB98", + "filament_id": "OGFB98", "setting_id": "OGFSA04", "name": "Generic ASA @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json index 4e28b8d3f4..3152c574dc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFN99", + "filament_id": "OGFN99", "setting_id": "OGFSA04", "name": "Generic PA @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json index 2f91467a13..c977883759 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFN98", + "filament_id": "OGFN98", "setting_id": "OGFSA04", "name": "Generic PA-CF @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json index 1724ee008c..18ecf1b579 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFC99", + "filament_id": "OGFC99", "setting_id": "OGFSA04", "name": "Generic PC @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json index 14fcba533c..9fa002b49e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFG99", + "filament_id": "OGFG99", "setting_id": "OGFSA04", "name": "Generic PETG @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json index b5ff0b42a8..85a2cf1f18 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "Generic PLA High Speed @System", "inherits": "fdm_filament_pla", - "filament_id": "GFL95", + "filament_id": "OGFL95", "from": "system", "setting_id": "OGFSL95_00", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json index d6bb799618..e1d7a082a1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFL98", + "filament_id": "OGFL98", "setting_id": "OGFSA04", "name": "Generic PLA-CF @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json index 57ee34719d..5cadf8fb85 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "Generic PPA-GF @System", "inherits": "fdm_filament_ppa", - "filament_id": "GFN96", + "filament_id": "OGFN96", "from": "system", "setting_id": "OGFSN96_00", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json index 20b1c491ff..1b9fca7888 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFS99", + "filament_id": "OGFS99", "setting_id": "OGFSA04", "name": "Generic PVA @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json index 137d30dca6..4cc69180e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "filament_id": "GFU99", + "filament_id": "OGFU99", "setting_id": "OGFSA04", "name": "Generic TPU @System", "from": "system", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json new file mode 100644 index 0000000000..c8b5543e0e --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "Overture ABS Basic @System", + "inherits": "Overture ABS Basic @base", + "from": "system", + "setting_id": "OVABS08", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "16" + ], + "filament_long_retractions_when_cut": ["nil"], + "filament_retraction_distances_when_cut": ["nil"], + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @base.json new file mode 100644 index 0000000000..479894a51f --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @base.json @@ -0,0 +1,195 @@ +{ + "type": "filament", + "name": "Overture ABS Basic @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OVTABS08", + "instantiation": "false", + "description": "Overture ABS settings from https://overture3d.com/.", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "default_filament_colour": [ + "" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "38" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "1.15" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \nM106 P3 S0\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "", + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "OVERTURE ABS Basic" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "ABS" + ], + "filament_vendor": [ + "OVERTURE" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "265" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "95%" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "103" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "version": "1.9.0.14" +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @base.json index 7e9e9a1c0b..430dfee5d9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @base.json @@ -3,7 +3,7 @@ "name": "Overture Matte PLA @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFL05", + "filament_id": "OGFL05", "instantiation": "false", "filament_cost": [ "24.52" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @base.json index 18e711b03c..cf4539628b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @base.json @@ -3,7 +3,7 @@ "name": "Overture PLA @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFL04", + "filament_id": "OGFL04", "instantiation": "false", "filament_cost": [ "24.15" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json new file mode 100644 index 0000000000..4f004c6c12 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "Overture TPU @System", + "inherits": "Overture TPU @base", + "from": "system", + "setting_id": "OFOVT08", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "4" + ], + "filament_long_retractions_when_cut": ["0"], + "filament_retraction_distances_when_cut": ["0"], + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @base.json new file mode 100644 index 0000000000..9485dd5fe9 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @base.json @@ -0,0 +1,184 @@ +{ + "type": "filament", + "name": "Overture TPU @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OGFOVT08", + "instantiation": "false", + "description": "Overture TPU settings from https://overture3d.com/.", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "100" + ], + "chamber_temperatures": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "default_filament_colour": [ + "" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "120" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "1.18" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \nM106 P3 S0\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "", + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "OVERTURE" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "95%" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "120" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "0" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @base.json index e2a5bf6475..38e51a47e1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PA12-CF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFL52", + "filament_id": "OGFL52", "instantiation": "false", "eng_plate_temp": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @base.json index 9d59fba6a8..776ff079ae 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFL50", + "filament_id": "OGFL50", "instantiation": "false", "eng_plate_temp": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @base.json index 9ab9237e7b..9ee8ba6c39 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-GF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFL51", + "filament_id": "OGFL51", "instantiation": "false", "eng_plate_temp": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @base.json index f545b1e1fb..76353f3782 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PA612-CF @base", "inherits": "fdm_filament_pa", "from": "system", - "filament_id": "GFL53", + "filament_id": "OGFL53", "instantiation": "false", "fan_cooling_layer_time": [ "5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @base.json index 701883fca7..810c1597e8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PET-CF @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFL54", + "filament_id": "OGFL54", "instantiation": "false", "cool_plate_temp": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @base.json index 03c777e73a..8ee4a41050 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-ESD @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFL06", + "filament_id": "OGFL06", "instantiation": "false", "cool_plate_temp": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @base.json index e039bd5c93..60325d1527 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @base.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-rCF @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFL55", + "filament_id": "OGFL55", "instantiation": "false", "cool_plate_temp": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @base.json index 539a1d1fc2..0b4963d013 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @base.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @base", "inherits": "fdm_filament_abs", "from": "system", - "filament_id": "GFB60", + "filament_id": "OGFB60", "instantiation": "false", "filament_cost": [ "26.9" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @base.json index d29a9a2aa5..f0e68a1d1a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @base.json @@ -3,7 +3,7 @@ "name": "PolyLite ASA @base", "inherits": "fdm_filament_asa", "from": "system", - "filament_id": "GFB61", + "filament_id": "OGFB61", "instantiation": "false", "eng_plate_temp": [ "100" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @base.json index f0100311cb..54afeeac8b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @base.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFG60", + "filament_id": "OGFG60", "instantiation": "false", "cool_plate_temp": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json index b779aeb6ef..0f1cc00ad2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json @@ -3,6 +3,7 @@ "name": "PolyLite PLA @System", "inherits": "PolyLite PLA @base", "from": "system", + "filament_id": "OGFL00", "setting_id": "OGFSL19", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @base.json index 1e7f4d16b7..a0b8231290 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @base.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFL00", + "filament_id": "OGFL00", "instantiation": "false", "filament_cost": [ "25.4" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json index b2b4efd5e7..31755e588f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json @@ -4,6 +4,7 @@ "instantiation": "true", "name": "PolyTerra Dual PLA @System", "renamed_from": "PolyTerra Dual PLA", + "filament_id": "OGFL00-1", "setting_id": "O1258005940", "inherits": "PolyTerra PLA @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @base.json index 2deb2d9141..a9419b5137 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @base.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFL01", + "filament_id": "OGFL01", "instantiation": "false", "filament_cost": [ "25.4" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @base.json index 5448265560..f0bc00f17b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @base.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFSNL06", + "filament_id": "OGFSNL06", "instantiation": "false", "filament_cost": [ "31.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @base.json index 9d2724491a..338f042e79 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @base.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @base", "inherits": "fdm_filament_pet", "from": "system", - "filament_id": "GFSNL08", + "filament_id": "OGFSNL08", "instantiation": "false", "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @base.json index a79b7b65c0..3fea00cc3b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @base.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFSNL02", + "filament_id": "OGFSNL02", "instantiation": "false", "filament_cost": [ "25.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @base.json index eddb7e97f5..f5cf65085c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @base.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFSNL04", + "filament_id": "OGFSNL04", "instantiation": "false", "filament_cost": [ "18.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @base.json index e7efac83be..add42edf21 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @base.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFSNL03", + "filament_id": "OGFSNL03", "instantiation": "false", "filament_cost": [ "18.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @base.json index 5b8fd61e35..3f1b8b6348 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @base.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFSNL05", + "filament_id": "OGFSNL05", "instantiation": "false", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @base.json index 65af44e85b..611804eb13 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @base.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFSNL07", + "filament_id": "OGFSNL07", "instantiation": "false", "filament_cost": [ "26.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json new file mode 100644 index 0000000000..ff2ce6a1c2 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json @@ -0,0 +1,9 @@ +{ + "type": "filament", + "name": "Valment PLA @System", + "inherits": "Valment PLA @base", + "from": "system", + "setting_id": "VLMNT_01", + "instantiation": "true", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @base.json new file mode 100644 index 0000000000..fb7e29e3fb --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @base.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Valment PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "VLMNT01", + "instantiation": "false", + "filament_cost": ["670"], + "filament_type": ["PLA"], + "default_filament_colour": ["#124943"], + "filament_density": ["1.24"], + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["12"], + "filament_vendor": ["Valment"], + "slow_down_layer_time": ["6"], + "nozzle_temperature": ["220"], + "nozzle_temperature_initial_layer": ["225"], + "nozzle_temperature_range_low": ["200"], + "nozzle_temperature_range_high": ["250"], + "filament_notes": [ + "Bu filament ayarları GlauTech tarafından oluşturulmuştur. Filamentin daha verimli çalışması için, slicerdaki kalibrasyon ayarlarının tek tek yapılması önemlidir. Kalibrasyon ayarları için, GlauTech yotube kanalından destek alabilirsiniz.\n\nBoş Makara Ağırlığı: 150gr" + ], + "slow_down_min_speed": ["20"], + "complete_print_exhaust_fan_speed": ["80"], + "during_print_exhaust_fan_speed": ["60"], + "additional_cooling_fan_speed": ["100"] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json new file mode 100644 index 0000000000..b2e053d2b3 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json @@ -0,0 +1,9 @@ +{ + "type": "filament", + "name": "Valment PLA Galaxy @System", + "inherits": "Valment PLA Galaxy @base", + "from": "system", + "setting_id": "VLMNT_04", + "instantiation": "true", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @base.json new file mode 100644 index 0000000000..e6dc2548a3 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @base.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Valment PLA Galaxy @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "VLMNT04", + "instantiation": "false", + "filament_cost": ["850"], + "filament_type": ["PLA"], + "default_filament_colour": ["#124943"], + "filament_density": ["1.24"], + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["12"], + "filament_vendor": ["Valment"], + "slow_down_layer_time": ["6"], + "nozzle_temperature": ["240"], + "nozzle_temperature_initial_layer": ["245"], + "nozzle_temperature_range_low": ["220"], + "nozzle_temperature_range_high": ["250"], + "filament_notes": [ + "Bu filament ayarları GlauTech tarafından oluşturulmuştur. Filamentin daha verimli çalışması için, slicerdaki kalibrasyon ayarlarının tek tek yapılması önemlidir. Kalibrasyon ayarları için, GlauTech yotube kanalından destek alabilirsiniz.\n\nGalaxy filamentlerimizde; \n0.2mm nozul kullanılmaması,\n0.16mm katman yüksekliği altına inilmemesi önerilir.\n\nBoş Makara Ağırlığı: 150gr" + ], + "slow_down_min_speed": ["20"], + "complete_print_exhaust_fan_speed": ["80"], + "during_print_exhaust_fan_speed": ["60"], + "additional_cooling_fan_speed": ["100"] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json new file mode 100644 index 0000000000..8c842d388b --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json @@ -0,0 +1,9 @@ +{ + "type": "filament", + "name": "Valment PLA Silk @System", + "inherits": "Valment PLA Silk @base", + "from": "system", + "setting_id": "VLMNT_02", + "instantiation": "true", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @base.json new file mode 100644 index 0000000000..11fce51d0c --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @base.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Valment PLA Silk @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "VLMNT02", + "instantiation": "false", + "filament_cost": ["710"], + "filament_type": ["PLA"], + "filament_density": ["1.24"], + "default_filament_colour": ["#124943"], + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["7.5"], + "filament_vendor": ["Valment"], + "slow_down_layer_time": ["6"], + "nozzle_temperature": ["240"], + "nozzle_temperature_initial_layer": ["245"], + "nozzle_temperature_range_low": ["220"], + "nozzle_temperature_range_high": ["250"], + "filament_notes": [ + "Bu filament ayarları GlauTech tarafından oluşturulmuştur. Filamentin daha verimli çalışması için, slicerdaki kalibrasyon ayarlarının tek tek yapılması önemlidir. Kalibrasyon ayarları için, GlauTech yotube kanalından destek alabilirsiniz.\n\nBoş Makara Ağırlığı: 150gr" + ], + "slow_down_min_speed": ["20"], + "complete_print_exhaust_fan_speed": ["80"], + "during_print_exhaust_fan_speed": ["60"], + "additional_cooling_fan_speed": ["100"] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json new file mode 100644 index 0000000000..23980efd55 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json @@ -0,0 +1,9 @@ +{ + "type": "filament", + "name": "Valment PLA-CF @System", + "inherits": "Valment PLA-CF @base", + "from": "system", + "setting_id": "VLMNT_03", + "instantiation": "true", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @base.json new file mode 100644 index 0000000000..cc9f0448fb --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @base.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Valment PLA-CF @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "VLMNT03", + "instantiation": "false", + "filament_cost": ["1400"], + "filament_type": ["PLA-CF"], + "default_filament_colour": ["#124943"], + "filament_density": ["1.24"], + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["12"], + "filament_vendor": ["Valment"], + "slow_down_layer_time": ["6"], + "nozzle_temperature": ["225"], + "nozzle_temperature_initial_layer": ["230"], + "nozzle_temperature_range_low": ["200"], + "nozzle_temperature_range_high": ["250"], + "filament_notes": [ + "Bu filament ayarları GlauTech tarafından oluşturulmuştur. Filamentin daha verimli çalışması için, slicerdaki kalibrasyon ayarlarının tek tek yapılması önemlidir. Kalibrasyon ayarları için, GlauTech yotube kanalından destek alabilirsiniz.\n\nBoş Makara Ağırlığı: 150gr" + ], + "slow_down_min_speed": ["20"], + "complete_print_exhaust_fan_speed": ["80"], + "during_print_exhaust_fan_speed": ["60"], + "additional_cooling_fan_speed": ["100"] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_bvoh.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_bvoh.json index 1e2a27596f..0172786d9a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_bvoh.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_bvoh.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_common", "from": "system", "instantiation": "false", - "filament_id": "GFS97", + "filament_id": "OGFS97", "additional_cooling_fan_speed": [ "70" ], diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_eva.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_eva.json index 9e77bf4f93..4e904bea38 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_eva.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_eva.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_eva", "inherits": "fdm_filament_common", - "filament_id": "GFR99", + "filament_id": "OGFR99", "from": "system", "instantiation": "false", "filament_type": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_hips.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_hips.json index ce42a7aa9b..3acc15068f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_hips.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_hips.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_hips", "inherits": "fdm_filament_common", - "filament_id": "GFS98", + "filament_id": "OGFS98", "from": "system", "instantiation": "false", "cool_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pa.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pa.json index 3c7c03a4a9..1e6f16b892 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pa.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pa.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pa", "inherits": "fdm_filament_common", - "filament_id": "GFN99", + "filament_id": "OGFN99", "from": "system", "instantiation": "false", "activate_air_filtration": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pc.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pc.json index ba79aff70d..4640a0b685 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pc.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pc.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pc", "inherits": "fdm_filament_common", - "filament_id": "GFC99", + "filament_id": "OGFC99", "from": "system", "instantiation": "false", "supertack_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pctg.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pctg.json index 21eb7ed51c..507432ba03 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pctg.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pctg.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pctg", "inherits": "fdm_filament_common", - "filament_id": "GFG97", + "filament_id": "OGFG97", "from": "system", "instantiation": "false", "eng_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pe.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pe.json index d15ac9a773..10081f5415 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pe.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pe.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pe", "inherits": "fdm_filament_common", - "filament_id": "GFP99", + "filament_id": "OGFP99", "from": "system", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pet.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pet.json index f4a31b746b..1f68e23775 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pet.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pet.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pet", "inherits": "fdm_filament_common", - "filament_id": "GFG99", + "filament_id": "OGFG99", "from": "system", "instantiation": "false", "eng_plate_temp": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pha.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pha.json index 35d3c9abe0..7a73836b5a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pha.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pha.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pha", "inherits": "fdm_filament_common", - "filament_id": "GFR98", + "filament_id": "OGFR98", "from": "system", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla.json index 45e21a49f3..97dae7e454 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_common", "from": "system", "instantiation": "false", - "filament_id": "GFL99", + "filament_id": "OGFL99", "additional_cooling_fan_speed": [ "70" ], diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla_silk.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla_silk.json index 9e407dbf4a..8128724a95 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla_silk.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pla_silk.json @@ -3,7 +3,7 @@ "name": "fdm_filament_pla_silk", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFL96", + "filament_id": "OGFL96", "instantiation": "false", "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", "filament_flow_ratio": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pp.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pp.json index bd6701b87e..6e0fb67487 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pp.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_pp.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_pp", "inherits": "fdm_filament_common", - "filament_id": "GFP97", + "filament_id": "OGFP97", "from": "system", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_ppa.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_ppa.json index 19409eabf4..307147ec35 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_ppa.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_ppa.json @@ -2,7 +2,7 @@ "type": "filament", "name": "fdm_filament_ppa", "inherits": "fdm_filament_common", - "filament_id": "GFN97", + "filament_id": "OGFN97", "from": "system", "instantiation": "false", "activate_air_filtration": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_sbs.json b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_sbs.json index 69ce757d9d..d7e74a8a37 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_sbs.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/base/fdm_filament_sbs.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_common", "from": "system", "instantiation": "false", - "filament_id": "GFL99", + "filament_id": "OFLSBS99", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @base.json index ac6bcd04fc..7c70418cd5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @base.json @@ -3,7 +3,7 @@ "name": "eSUN PLA+ @base", "inherits": "fdm_filament_pla", "from": "system", - "filament_id": "GFL03", + "filament_id": "OGFL03", "instantiation": "false", "filament_cost": [ "22.99" diff --git a/resources/profiles/Peopoly/Peopoly Magneto X_cover.png b/resources/profiles/Peopoly/Peopoly Magneto X_cover.png index d00781604a..b1d1c39ea4 100644 Binary files a/resources/profiles/Peopoly/Peopoly Magneto X_cover.png and b/resources/profiles/Peopoly/Peopoly Magneto X_cover.png differ diff --git a/resources/profiles/Phrozen.json b/resources/profiles/Phrozen.json new file mode 100644 index 0000000000..e5eae56b69 --- /dev/null +++ b/resources/profiles/Phrozen.json @@ -0,0 +1,70 @@ +{ + "name": "Phrozen", + "version": "00.00.00.01", + "force_update": "0", + "description": "Phrozen configurations", + "machine_model_list": [ + { + "name": "Phrozen Arco", + "sub_path": "machine/Phrozen Arco.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + }, + { + "name": "0.20mm Standard @Phrozen Arco", + "sub_path": "process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json" + } + ], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "fdm_filament_tpu", + "sub_path": "filament/fdm_filament_tpu.json" + }, + { + "name": "fdm_filament_pet", + "sub_path": "filament/fdm_filament_pet.json" + }, + { + "name": "fdm_filament_abs", + "sub_path": "filament/fdm_filament_abs.json" + }, + { + "name": "fdm_filament_pc", + "sub_path": "filament/fdm_filament_pc.json" + }, + { + "name": "fdm_filament_asa", + "sub_path": "filament/fdm_filament_asa.json" + }, + { + "name": "fdm_filament_pva", + "sub_path": "filament/fdm_filament_pva.json" + }, + { + "name": "fdm_filament_pa", + "sub_path": "filament/fdm_filament_pa.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "Phrozen Arco 0.4 nozzle", + "sub_path": "machine/Phrozen Arco 0.4 nozzle.json" + } + ] +} diff --git a/resources/profiles/Phrozen/Phrozen Arco_buildplate_model.stl b/resources/profiles/Phrozen/Phrozen Arco_buildplate_model.stl new file mode 100644 index 0000000000..d3c6b8107a Binary files /dev/null and b/resources/profiles/Phrozen/Phrozen Arco_buildplate_model.stl differ diff --git a/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.png b/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.png new file mode 100644 index 0000000000..c0aa13c089 Binary files /dev/null and b/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.png differ diff --git a/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg b/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg new file mode 100644 index 0000000000..1ae1e92edf --- /dev/null +++ b/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Phrozen/Phrozen Arco_cover.png b/resources/profiles/Phrozen/Phrozen Arco_cover.png new file mode 100644 index 0000000000..f0ffbf6680 Binary files /dev/null and b/resources/profiles/Phrozen/Phrozen Arco_cover.png differ diff --git a/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json new file mode 100644 index 0000000000..b36382bbc3 --- /dev/null +++ b/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json @@ -0,0 +1,258 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "from": "system", + "instantiation": "true", + "name": "Phrozen PLA @Phrozen Arco 0.4 nozzle", + "inherits": "fdm_filament_pla", + "filament_settings_id": [ + "Phrozen PLA @Phrozen Arco 0.4 nozzle" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "nozzle_temperature": [ + "205" + ], + "compatible_printers": [ + "Phrozen Arco 0.4 nozzle" + ], + "activate_air_filtration": [ + "1" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000" + ], + "additional_cooling_fan_speed": [ + "60" + ], + "bed_type": [ + "Cool Plate" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "80" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "default_filament_colour": [ + "" + ], + "during_print_exhaust_fan_speed": [ + "60" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_is_support": [ + "0" + ], + "filament_load_time": [ + "31.925" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_ramming_parameters": [ + "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_unload_time": [ + "24.75" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pressure_advance": [ + "0.035" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "55" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_abs.json b/resources/profiles/Phrozen/filament/fdm_filament_abs.json new file mode 100644 index 0000000000..55f18c5ee9 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_abs.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_abs", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "ABS" + ], + "cool_plate_temp": [ + "105" + ], + "eng_plate_temp": [ + "105" + ], + "hot_plate_temp": [ + "105" + ], + "cool_plate_temp_initial_layer": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "80" + ], + "nozzle_temperature": [ + "260" + ], + "temperature_vitrification": [ + "110" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_asa.json b/resources/profiles/Phrozen/filament/fdm_filament_asa.json new file mode 100644 index 0000000000..9495d85477 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_asa.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_asa", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "ASA" + ], + "cool_plate_temp": [ + "105" + ], + "eng_plate_temp": [ + "105" + ], + "hot_plate_temp": [ + "105" + ], + "cool_plate_temp_initial_layer": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "35" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "80" + ], + "nozzle_temperature": [ + "260" + ], + "temperature_vitrification": [ + "110" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_common.json b/resources/profiles/Phrozen/filament/fdm_filament_common.json new file mode 100644 index 0000000000..457f288c63 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_common.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "overhang_fan_threshold": [ + "95%" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_flow_ratio": [ + "1" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "fan_cooling_layer_time": [ + "60" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "0" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_max_volumetric_speed": [ + "0" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "bed_type": [ + "Cool Plate" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "full_fan_speed_layer": [ + "0" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "35" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; Filament gcode\n" + ], + "nozzle_temperature": [ + "200" + ], + "temperature_vitrification": [ + "100" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_pa.json b/resources/profiles/Phrozen/filament/fdm_filament_pa.json new file mode 100644 index 0000000000..e8c8dea0e8 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_pa.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "name": "fdm_filament_pa", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "PA" + ], + "cool_plate_temp": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "hot_plate_temp": [ + "100" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "4" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "overhang_fan_speed": [ + "30" + ], + "nozzle_temperature": [ + "290" + ], + "temperature_vitrification": [ + "108" + ], + "nozzle_temperature_range_low": [ + "270" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_pc.json b/resources/profiles/Phrozen/filament/fdm_filament_pc.json new file mode 100644 index 0000000000..3192f802c5 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_pc.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_pc", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "PC" + ], + "cool_plate_temp": [ + "0" + ], + "eng_plate_temp": [ + "110" + ], + "hot_plate_temp": [ + "110" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_max_volumetric_speed": [ + "23.2" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "60" + ], + "nozzle_temperature": [ + "280" + ], + "temperature_vitrification": [ + "140" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_pet.json b/resources/profiles/Phrozen/filament/fdm_filament_pet.json new file mode 100644 index 0000000000..4d7ba4ada0 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_pet.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "fdm_filament_pet", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "PETG" + ], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "0" + ], + "hot_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "20" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_density": [ + "1.27" + ], + "filament_cost": [ + "30" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "20" + ], + "overhang_fan_speed": [ + "100" + ], + "nozzle_temperature": [ + "255" + ], + "temperature_vitrification": [ + "80" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_pla.json b/resources/profiles/Phrozen/filament/fdm_filament_pla.json new file mode 100644 index 0000000000..5426679f33 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_pla.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "PLA" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "cool_plate_temp": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "hot_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "220" + ], + "temperature_vitrification": [ + "60" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "4" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_pva.json b/resources/profiles/Phrozen/filament/fdm_filament_pva.json new file mode 100644 index 0000000000..eee5675ea8 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_pva.json @@ -0,0 +1,94 @@ +{ + "type": "filament", + "name": "fdm_filament_pva", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "PVA" + ], + "cool_plate_temp": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "hot_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_soluble": [ + "1" + ], + "filament_is_support": [ + "1" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "220" + ], + "temperature_vitrification": [ + "50" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "4" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/filament/fdm_filament_tpu.json b/resources/profiles/Phrozen/filament/fdm_filament_tpu.json new file mode 100644 index 0000000000..3d14ece169 --- /dev/null +++ b/resources/profiles/Phrozen/filament/fdm_filament_tpu.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_tpu", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_type": [ + "TPU" + ], + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "30" + ], + "hot_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "filament_retraction_length": [ + "0.4" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_speed": [ + "100" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "temperature_vitrification": [ + "60" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json new file mode 100644 index 0000000000..d0d4866090 --- /dev/null +++ b/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json @@ -0,0 +1,232 @@ +{ + "from": "User", + "inherits": "fdm_machine_common", + "instantiation": "true", + "printer_technology": "FFF", + "version": "0.0.0.1", + "printer_settings_id": "Phrozen Arco 0.4 nozzle", + "printer_model": "Phrozen Arco", + "printer_variant": "0.4", + "name": "Phrozen Arco 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "default_print_profile": "0.20mm Standard @Phrozen Arco 0.4 nozzle", + "default_filament_profile": [ + "Phrozen PLA @Phrozen Arco 0.4 nozzle" + ], + "disable_m73": "1", + "gcode_flavor": "klipper", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300", + "thumbnails": "240x224/PNG", + "thumbnails_format": "PNG", + "adaptive_bed_mesh_margin": "0", + "auxiliary_fan": "1", + "bbl_use_printhost": "0", + "bed_custom_model": "", + "bed_custom_texture": "", + "bed_exclude_area": [], + "bed_mesh_max": "0,0", + "bed_mesh_min": "0,0", + "bed_mesh_probe_distance": "0,0", + "before_layer_change_gcode": "; BEFORE_LAYER_CHANGE [layer_num] @ [layer_z]mm", + "best_object_pos": "0.5,0.5", + "change_extrusion_role_gcode": "", + "change_filament_gcode": "G1 E-1 F3600", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "deretraction_speed": [ + "0" + ], + "emit_machine_limits_to_gcode": "1", + "enable_filament_ramming": "0", + "enable_long_retraction_when_cut": "0", + "extra_loading_move": "0", + "extruder_clearance_height_to_lid": "240", + "extruder_clearance_height_to_rod": "48", + "extruder_clearance_radius": "60", + "extruder_colour": [ + "#FF4D4F" + ], + "extruder_offset": [ + "0x0" + ], + "fan_kickstart": "0", + "fan_speedup_overhangs": "1", + "fan_speedup_time": "0", + "head_wrap_detect_zone": [], + "high_current_on_filament_swap": "0", + "host_type": "octoprint", + "is_custom_defined": "0", + "layer_change_gcode": "; AFTER_LAYER_CHANGE [layer_num] @ [layer_z]mm", + "long_retractions_when_cut": [ + "0" + ], + "machine_end_gcode": "PRINT_END", + "machine_load_filament_time": "126.423", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "10000", + "10000" + ], + "machine_max_acceleration_y": [ + "10000", + "10000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_max_speed_e": [ + "80", + "80" + ], + "machine_max_speed_x": [ + "600", + "600" + ], + "machine_max_speed_y": [ + "600", + "600" + ], + "machine_max_speed_z": [ + "15", + "15" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "machine_pause_gcode": "M601", + "machine_start_gcode": "M107\nG90\nM140 S65 ; set bed temperature\nM104 S140 ; set temperature\nM190 S65 ; set bed temperature\nM109 S140 ; set temperature\nPG28\nM106 S255 \nG30\n;AUTO_LEVELING_2\nM106 S0\nG21\nM83\nM109 S220\nP0 M1\nP28\nP2 A1", + "machine_tool_change_time": "0", + "machine_unload_filament_time": "0", + "manual_filament_change": "0", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_height": "4", + "nozzle_hrc": "0", + "nozzle_type": "brass", + "nozzle_volume": "71.6", + "parking_pos_retraction": "0", + "pellet_modded_printer": "0", + "preferred_orientation": "0", + "printer_notes": "", + "printer_structure": "corexy", + "printhost_authorization_type": "key", + "printhost_ssl_ignore_revoke": "0", + "printing_by_object_gcode": "", + "purge_in_prime_tower": "0", + "retract_before_wipe": [ + "0%" + ], + "retract_length_toolchange": [ + "0" + ], + "retract_lift_above": [ + "0.3" + ], + "retract_lift_below": [ + "249" + ], + "retract_lift_enforce": [ + "All Surfaces" + ], + "retract_on_top_layer": [ + "1" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_distances_when_cut": [ + "18" + ], + "retraction_length": [ + "2" + ], + "retraction_minimum_travel": [ + "1" + ], + "retraction_speed": [ + "45" + ], + "scan_first_layer": "0", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "0", + "support_multi_bed_types": "0", + "template_custom_gcode": "", + "time_cost": "0", + "time_lapse_gcode": "", + "travel_slope": [ + "3" + ], + "upward_compatible_machine": [], + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "z_hop_types": [ + "Spiral Lift" + ], + "z_offset": "0" +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/machine/Phrozen Arco.json b/resources/profiles/Phrozen/machine/Phrozen Arco.json new file mode 100644 index 0000000000..b60155d2cd --- /dev/null +++ b/resources/profiles/Phrozen/machine/Phrozen Arco.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "machine_tech": "FFF", + "family": "Phrozen", + "name": "Phrozen Arco", + "model_id": "Phrozen Arco", + "nozzle_diameter": "0.4", + "bed_model": "Phrozen Arco_buildplate_model.stl", + "bed_texture": "Phrozen Arco_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Phrozen PLA @Phrozen Arco 0.4 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/machine/_fdm_machine_common.json b/resources/profiles/Phrozen/machine/_fdm_machine_common.json new file mode 100644 index 0000000000..e11bc7c234 --- /dev/null +++ b/resources/profiles/Phrozen/machine/_fdm_machine_common.json @@ -0,0 +1,139 @@ +{ + "type": "machine", + "name": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "gcode_flavor": "marlin", + "machine_start_gcode": "", + "machine_end_gcode": "", + "extruder_colour": [ + "#018001" + ], + "extruder_offset": [ + "0x0" + ], + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "2000", + "2000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "3000", + "3000" + ], + "machine_max_acceleration_x": [ + "2000", + "2000" + ], + "machine_max_acceleration_y": [ + "2000", + "2000" + ], + "machine_max_acceleration_z": [ + "300", + "200" + ], + "machine_max_speed_e": [ + "25", + "25" + ], + "machine_max_speed_x": [ + "300", + "200" + ], + "machine_max_speed_y": [ + "300", + "200" + ], + "machine_max_speed_z": [ + "12", + "12" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "0.2", + "0.4" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.3" + ], + "min_layer_height": [ + "0.08" + ], + "printable_height": "300", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "nozzle_diameter": [ + "0.4" + ], + "printer_settings_id": "", + "printer_technology": "FFF", + "printer_variant": "0.4", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "70%" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "0.8" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retraction_speed": [ + "30" + ], + "deretraction_speed": [ + "30" + ], + "silent_mode": "0", + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "machine_pause_gcode": "M400 U1\n", + "wipe": [ + "1" + ], + "z_hop_types": "Normal Lift" +} diff --git a/resources/profiles/Phrozen/machine/fdm_machine_common.json b/resources/profiles/Phrozen/machine/fdm_machine_common.json new file mode 100644 index 0000000000..5316314092 --- /dev/null +++ b/resources/profiles/Phrozen/machine/fdm_machine_common.json @@ -0,0 +1,7 @@ +{ + "type": "machine", + "name": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "gcode_flavor": "marlin" +} diff --git a/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json new file mode 100644 index 0000000000..58904f9912 --- /dev/null +++ b/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json @@ -0,0 +1,292 @@ +{ + "type": "process", + "from": "system", + "setting_id": "GP004", + "name": "0.20mm Standard @Phrozen Arco 0.4 nozzle", + "inherits": "fdm_process_common", + "instantiation": "true", + "is_custom_defined": "0", + "version": "1.3.2412.13", + "print_settings_id": "0.20mm Standard @Phrozen Arco 0.4 nozzle", + "layer_height": "0.2", + "filename_format": "{input_filename_base}_{filament_type[0]}_{layer_height}_{print_time}.gcode", + "compatible_printers": [ + "Phrozen Arco 0.4 nozzle" + ], + "accel_to_decel_enable": "1", + "accel_to_decel_factor": "50%", + "alternate_extra_wall": "0", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bottom_solid_infill_flow_ratio": "1", + "bottom_surface_pattern": "monotonic", + "bridge_acceleration": "50%", + "bridge_angle": "0", + "bridge_density": "100%", + "bridge_flow": "0.9", + "bridge_no_support": "0", + "bridge_speed": "30", + "brim_ears_detection_length": "1", + "brim_ears_max_angle": "125", + "brim_object_gap": "0.1", + "brim_type": "auto_brim", + "brim_width": "5", + "compatible_printers_condition": "", + "counterbore_hole_bridging": "none", + "default_acceleration": "10000", + "default_jerk": "9", + "detect_narrow_internal_solid_infill": "1", + "detect_overhang_wall": "1", + "detect_thin_wall": "1", + "dont_filter_internal_bridges": "disabled", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.075", + "elefant_foot_compensation_layers": "1", + "enable_arc_fitting": "0", + "enable_overhang_speed": "1", + "enable_prime_tower": "1", + "enable_support": "0", + "enforce_support_layers": "0", + "ensure_vertical_shell_thickness": "ensure_all", + "exclude_object": "1", + "extra_perimeters_on_overhangs": "1", + "filter_out_gap_fill": "0", + "flush_into_infill": "0", + "flush_into_objects": "0", + "flush_into_support": "1", + "fuzzy_skin": "none", + "fuzzy_skin_first_layer": "0", + "fuzzy_skin_point_distance": "0.8", + "fuzzy_skin_thickness": "0.3", + "gap_fill_target": "topbottom", + "gap_infill_speed": "250", + "gcode_add_line_number": "0", + "gcode_comments": "0", + "gcode_label_objects": "1", + "hole_to_polyhole": "0", + "hole_to_polyhole_threshold": "0.01", + "hole_to_polyhole_twisted": "1", + "independent_support_layer_height": "1", + "infill_anchor": "400%", + "infill_anchor_max": "20", + "infill_combination": "0", + "infill_direction": "45", + "infill_jerk": "9", + "infill_wall_overlap": "15%", + "initial_layer_acceleration": "500", + "initial_layer_infill_speed": "80", + "initial_layer_jerk": "9", + "initial_layer_line_width": "0.5", + "initial_layer_min_bead_width": "85%", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "50", + "initial_layer_travel_speed": "100%", + "inner_wall_acceleration": "5000", + "inner_wall_jerk": "9", + "inner_wall_line_width": "0.45", + "inner_wall_speed": "300", + "interface_shells": "0", + "internal_bridge_flow": "1", + "internal_bridge_speed": "150%", + "internal_solid_infill_acceleration": "5000", + "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_pattern": "monotonic", + "internal_solid_infill_speed": "250", + "ironing_angle": "-1", + "ironing_flow": "10%", + "ironing_pattern": "zig-zag", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "is_infill_first": "0", + "line_width": "0.42", + "make_overhang_printable": "0", + "make_overhang_printable_angle": "55", + "make_overhang_printable_hole_size": "0", + "max_bridge_length": "10", + "max_travel_detour_distance": "0", + "max_volumetric_extrusion_rate_slope": "0", + "max_volumetric_extrusion_rate_slope_segment_length": "3", + "min_bead_width": "85%", + "min_feature_size": "25%", + "min_length_factor": "0.5", + "min_width_top_surface": "300%", + "minimum_sparse_infill_area": "15", + "mmu_segmented_region_interlocking_depth": "0", + "mmu_segmented_region_max_width": "0", + "notes": "", + "only_one_wall_first_layer": "0", + "only_one_wall_top": "1", + "ooze_prevention": "0", + "outer_wall_acceleration": "5000", + "outer_wall_jerk": "9", + "outer_wall_line_width": "0.42", + "outer_wall_speed": "200", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "overhang_reverse": "0", + "overhang_reverse_internal_only": "0", + "overhang_reverse_threshold": "50%", + "overhang_speed_classic": "1", + "overhang_totally_speed": "10", + "post_process": [], + "precise_outer_wall": "1", + "precise_z_height": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "35", + "prime_volume": "20", + "print_flow_ratio": "1", + "print_order": "default", + "print_sequence": "by layer", + "raft_contact_distance": "0.1", + "raft_expansion": "1.5", + "raft_first_layer_density": "90%", + "raft_first_layer_expansion": "5", + "raft_layers": "0", + "reduce_crossing_wall": "0", + "reduce_infill_retraction": "1", + "resolution": "0.012", + "role_based_wipe_speed": "1", + "rotate_solid_infill_direction": "1", + "scarf_angle_threshold": "155", + "scarf_joint_flow_ratio": "1", + "scarf_joint_speed": "35", + "scarf_overhang_threshold": "40%", + "seam_gap": "10%", + "seam_position": "aligned", + "seam_slope_conditional": "1", + "seam_slope_entire_loop": "0", + "seam_slope_inner_walls": "0", + "seam_slope_min_length": "10", + "seam_slope_start_height": "0", + "seam_slope_steps": "10", + "seam_slope_type": "none", + "single_extruder_multi_material_priming": "0", + "skirt_distance": "2", + "skirt_height": "1", + "skirt_loops": "0", + "skirt_speed": "50", + "slice_closing_radius": "0.049", + "slicing_mode": "regular", + "slow_down_layers": "0", + "slowdown_for_curled_perimeters": "0", + "small_area_infill_flow_compensation": "0", + "small_area_infill_flow_compensation_model": [ + "0,0", + "\n0.2,0.4444", + "\n0.4,0.6145", + "\n0.6,0.7059", + "\n0.8,0.7619", + "\n1.5,0.8571", + "\n2,0.8889", + "\n3,0.9231", + "\n5,0.9520", + "\n10,1" + ], + "small_perimeter_speed": "50%", + "small_perimeter_threshold": "0", + "solid_infill_direction": "45", + "solid_infill_filament": "1", + "sparse_infill_acceleration": "100%", + "sparse_infill_density": "15%", + "sparse_infill_filament": "1", + "sparse_infill_line_width": "0.45", + "sparse_infill_pattern": "crosshatch", + "sparse_infill_speed": "270", + "spiral_mode": "0", + "spiral_mode_max_xy_smoothing": "200%", + "spiral_mode_smooth": "0", + "staggered_inner_seams": "0", + "standby_temperature_delta": "-5", + "support_angle": "0", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2.5", + "support_bottom_interface_spacing": "0.5", + "support_bottom_z_distance": "0.2", + "support_critical_regions_only": "0", + "support_expansion": "0", + "support_filament": "0", + "support_interface_bottom_layers": "2", + "support_interface_filament": "0", + "support_interface_loop_pattern": "0", + "support_interface_not_for_body": "1", + "support_interface_pattern": "auto", + "support_interface_spacing": "0.5", + "support_interface_speed": "80", + "support_interface_top_layers": "2", + "support_line_width": "0.42", + "support_object_xy_distance": "0.35", + "support_on_build_plate_only": "1", + "support_remove_small_overhang": "1", + "support_speed": "150", + "support_style": "default", + "support_threshold_angle": "30", + "support_top_z_distance": "0.18", + "support_type": "tree(auto)", + "thick_bridges": "0", + "thick_internal_bridges": "1", + "timelapse_type": "0", + "top_bottom_infill_wall_overlap": "25%", + "top_shell_layers": "5", + "top_shell_thickness": "1", + "top_solid_infill_flow_ratio": "0.97", + "top_surface_acceleration": "2000", + "top_surface_jerk": "9", + "top_surface_line_width": "0.42", + "top_surface_pattern": "monotonicline", + "top_surface_speed": "200", + "travel_acceleration": "10000", + "travel_jerk": "9", + "travel_speed": "300", + "travel_speed_z": "0", + "tree_support_adaptive_layer_height": "1", + "tree_support_angle_slow": "25", + "tree_support_auto_brim": "1", + "tree_support_branch_angle": "45", + "tree_support_branch_angle_organic": "40", + "tree_support_branch_diameter": "2", + "tree_support_branch_diameter_angle": "5", + "tree_support_branch_diameter_double_wall": "3", + "tree_support_branch_diameter_organic": "2", + "tree_support_branch_distance": "5", + "tree_support_branch_distance_organic": "1", + "tree_support_brim_width": "3", + "tree_support_tip_diameter": "0.8", + "tree_support_top_rate": "30%", + "tree_support_wall_count": "0", + "wall_direction": "auto", + "wall_distribution_count": "1", + "wall_filament": "1", + "wall_generator": "classic", + "wall_loops": "2", + "wall_sequence": "outer wall/inner wall", + "wall_transition_angle": "10", + "wall_transition_filter_deviation": "25%", + "wall_transition_length": "100%", + "wipe_before_external_loop": "0", + "wipe_on_loops": "0", + "wipe_speed": "80%", + "wipe_tower_bridging": "10", + "wipe_tower_cone_angle": "15", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_extruder": "0", + "wipe_tower_max_purge_speed": "90", + "wipe_tower_no_sparse_layers": "0", + "wipe_tower_rotation_angle": "0", + "wiping_volumes_extruders": [ + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70", + "70" + ], + "xy_contour_compensation": "0", + "xy_hole_compensation": "0" +} \ No newline at end of file diff --git a/resources/profiles/Phrozen/process/fdm_process_common.json b/resources/profiles/Phrozen/process/fdm_process_common.json new file mode 100644 index 0000000000..489a8ca472 --- /dev/null +++ b/resources/profiles/Phrozen/process/fdm_process_common.json @@ -0,0 +1,107 @@ +{ + "type": "process", + "name": "fdm_process_common", + "from": "system", + "instantiation": "false", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers": [], + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "800", + "travel_acceleration": "1000", + "inner_wall_acceleration": "900", + "outer_wall_acceleration": "700", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + + "outer_wall_line_width": "0.4", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.4", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "crosshatch", + "initial_layer_line_width": "0.5", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "inner_wall_line_width": "0.45", + "wall_loops": "3", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "1", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "internal_solid_infill_line_width": "0.4", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_filament": "0", + "support_line_width": "0.4", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "2", + "support_interface_spacing": "0.5", + "support_interface_speed": "80", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "2.5", + "support_speed": "150", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_angle": "30", + "tree_support_wall_count": "0", + "tree_support_with_infill": "0", + "detect_thin_wall": "0", + "top_surface_pattern": "monotonicline", + "top_surface_line_width": "0.4", + "top_shell_thickness": "0.8", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "layer_height": "0.2", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "bridge_flow": "1", + "initial_layer_speed": "45", + "initial_layer_infill_speed": "45", + "outer_wall_speed": "45", + "inner_wall_speed": "80", + "sparse_infill_speed": "150", + "internal_solid_infill_speed": "150", + "top_surface_speed": "50", + "gap_infill_speed": "30", + "travel_speed": "200", + "enable_arc_fitting": "0" + +} diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json index 017630afc7..a03caa1d1c 100644 --- a/resources/profiles/Prusa.json +++ b/resources/profiles/Prusa.json @@ -1,28 +1,28 @@ { "name": "Prusa", - "version": "02.03.00.03", + "version": "02.03.00.05", "force_update": "0", "description": "Prusa configurations", "machine_model_list": [ + { + "name": "Prusa CORE One", + "sub_path": "machine/Prusa CORE One.json" + }, + { + "name": "Prusa CORE One HF", + "sub_path": "machine/Prusa CORE One HF.json" + }, { "name": "MK4IS", "sub_path": "machine/Prusa MK4.json" }, { - "name": "MINIIS", - "sub_path": "machine/Prusa MINIIS.json" + "name": "MK4S", + "sub_path": "machine/Prusa MK4S.json" }, { - "name": "MK3S", - "sub_path": "machine/Prusa MK3S.json" - }, - { - "name": "MINI", - "sub_path": "machine/Prusa MINI.json" - }, - { - "name": "MK3.5", - "sub_path": "machine/Prusa MK3.5.json" + "name": "MK4S HF", + "sub_path": "machine/Prusa MK4S HF.json" }, { "name": "Prusa XL", @@ -33,12 +33,20 @@ "sub_path": "machine/Prusa XL 5T.json" }, { - "name": "MK4S", - "sub_path": "machine/Prusa MK4S.json" + "name": "MK3.5", + "sub_path": "machine/Prusa MK3.5.json" }, { - "name": "MK4S HF", - "sub_path": "machine/Prusa MK4S HF.json" + "name": "MK3S", + "sub_path": "machine/Prusa MK3S.json" + }, + { + "name": "MINI", + "sub_path": "machine/Prusa MINI.json" + }, + { + "name": "MINIIS", + "sub_path": "machine/Prusa MINIIS.json" } ], "process_list": [ @@ -58,6 +66,10 @@ "name": "process_speed_miniis", "sub_path": "process/process_speed_miniis.json" }, + { + "name": "process_highflow_miniis", + "sub_path": "process/process_highflow_miniis.json" + }, { "name": "process_detail_miniis", "sub_path": "process/process_detail_miniis.json" @@ -258,6 +270,10 @@ "name": "0.30mm Detail @MINIIS", "sub_path": "process/0.30mm Detail @MINIIS.json" }, + { + "name": "0.32mm Standard @MINIIS", + "sub_path": "process/0.32mm Standard @MINIIS.json" + }, { "name": "0.35mm Standard @MINIIS", "sub_path": "process/0.35mm Standard @MINIIS.json" @@ -266,10 +282,38 @@ "name": "0.40mm Standard @MINIIS", "sub_path": "process/0.40mm Standard @MINIIS.json" }, + { + "name": "0.15mm High Flow @MINIIS", + "sub_path": "process/0.15mm High Flow @MINIIS.json" + }, + { + "name": "0.20mm High Flow @MINIIS 0.6", + "sub_path": "process/0.20mm High Flow @MINIIS 0.6.json" + }, + { + "name": "0.20mm High Flow @MINIIS", + "sub_path": "process/0.20mm High Flow @MINIIS.json" + }, + { + "name": "0.25mm High Flow @MINIIS", + "sub_path": "process/0.25mm High Flow @MINIIS.json" + }, + { + "name": "0.32mm High Flow @MINIIS", + "sub_path": "process/0.32mm High Flow @MINIIS.json" + }, + { + "name": "0.40mm High Flow @MINIIS", + "sub_path": "process/0.40mm High Flow @MINIIS.json" + }, { "name": "process_common_MK3.5", "sub_path": "process/process_common_MK3.5.json" }, + { + "name": "process_highflow_MK3.5", + "sub_path": "process/process_highflow_MK3.5.json" + }, { "name": "process_speed_MK3.5", "sub_path": "process/process_speed_MK3.5.json" @@ -318,6 +362,22 @@ "name": "0.15mm Speed @MK3.5 0.25", "sub_path": "process/0.15mm Speed @MK3.5 0.25.json" }, + { + "name": "0.15mm High Flow @MK3.5", + "sub_path": "process/0.15mm High Flow @MK3.5.json" + }, + { + "name": "0.20mm High Flow @MK3.5 0.6", + "sub_path": "process/0.20mm High Flow @MK3.5 0.6.json" + }, + { + "name": "0.20mm High Flow @MK3.5", + "sub_path": "process/0.20mm High Flow @MK3.5.json" + }, + { + "name": "0.25mm High Flow @MK3.5", + "sub_path": "process/0.25mm High Flow @MK3.5.json" + }, { "name": "0.20mm Standard @MK3.5", "sub_path": "process/0.20mm Standard @MK3.5.json" @@ -334,6 +394,14 @@ "name": "0.20mm Speed @MK3.5 0.6", "sub_path": "process/0.20mm Speed @MK3.5 0.6.json" }, + { + "name": "0.32mm High Flow @MK3.5", + "sub_path": "process/0.32mm High Flow @MK3.5.json" + }, + { + "name": "0.40mm High Flow @MK3.5", + "sub_path": "process/0.40mm High Flow @MK3.5.json" + }, { "name": "0.25mm Standard @MK3.5", "sub_path": "process/0.25mm Standard @MK3.5.json" @@ -346,6 +414,10 @@ "name": "0.30mm Detail @MK3.5", "sub_path": "process/0.30mm Detail @MK3.5.json" }, + { + "name": "0.32mm Standard @MK3.5", + "sub_path": "process/0.32mm Standard @MK3.5.json" + }, { "name": "0.35mm Standard @MK3.5", "sub_path": "process/0.35mm Standard @MK3.5.json" @@ -774,6 +846,14 @@ "name": "0.28mm DRAFT @MK4S HF0.4", "sub_path": "process/0.28mm DRAFT @MK4S HF0.4.json" }, + { + "name": "0.20mm SOLUBLE FULL @MK4S 0.4", + "sub_path": "process/0.20mm SOLUBLE FULL @MK4S 0.4.json" + }, + { + "name": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", + "sub_path": "process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json" + }, { "name": "0.30mm DETAIL @MK4S 0.8", "sub_path": "process/0.30mm DETAIL @MK4S 0.8.json" @@ -841,8 +921,223 @@ { "name": "0.55mm STRUCTURAL @MK4S HF0.8", "sub_path": "process/0.55mm STRUCTURAL @MK4S HF0.8.json" + }, + { + "name": "0.28mm DRAFT @CORE One HF 0.4", + "sub_path": "process/0.28mm DRAFT @CORE One HF 0.4.json" + }, + { + "name": "0.20mm SOLUBLE FULL @CORE One 0.4", + "sub_path": "process/0.20mm SOLUBLE FULL @CORE One 0.4.json" + }, + { + "name": "0.20mm SOLUBLE INTERFACE @CORE One 0.4", + "sub_path": "process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json" + }, + { + "name": "0.25mm SPEED @CORE One HF 0.4", + "sub_path": "process/0.25mm SPEED @CORE One HF 0.4.json" + }, + { + "name": "0.25mm STRUCTURAL @CORE One HF 0.4", + "sub_path": "process/0.25mm STRUCTURAL @CORE One HF 0.4.json" + }, + { + "name": "0.20mm SPEED @CORE One 0.4", + "sub_path": "process/0.20mm SPEED @CORE One 0.4.json" + }, + { + "name": "0.20mm SPEED @CORE One HF 0.4", + "sub_path": "process/0.20mm SPEED @CORE One HF 0.4.json" + }, + { + "name": "0.20mm STRUCTURAL @CORE One 0.4", + "sub_path": "process/0.20mm STRUCTURAL @CORE One 0.4.json" + }, + { + "name": "0.15mm SPEED @CORE One 0.4", + "sub_path": "process/0.15mm SPEED @CORE One 0.4.json" + }, + { + "name": "0.15mm SPEED @CORE One HF 0.4", + "sub_path": "process/0.15mm SPEED @CORE One HF 0.4.json" + }, + { + "name": "0.15mm STRUCTURAL @CORE One 0.4", + "sub_path": "process/0.15mm STRUCTURAL @CORE One 0.4.json" + }, + { + "name": "0.10mm FAST DETAIL @CORE One 0.4", + "sub_path": "process/0.10mm FAST DETAIL @CORE One 0.4.json" + }, + { + "name": "0.05mm DETAIL @CORE One 0.25", + "sub_path": "process/0.05mm DETAIL @CORE One 0.25.json" + }, + { + "name": "0.07mm DETAIL @CORE One 0.25", + "sub_path": "process/0.07mm DETAIL @CORE One 0.25.json" + }, + { + "name": "0.12mm SPEED @CORE One 0.25", + "sub_path": "process/0.12mm SPEED @CORE One 0.25.json" + }, + { + "name": "0.12mm STRUCTURAL @CORE One 0.25", + "sub_path": "process/0.12mm STRUCTURAL @CORE One 0.25.json" + }, + { + "name": "0.15mm SPEED @CORE One 0.25", + "sub_path": "process/0.15mm SPEED @CORE One 0.25.json" + }, + { + "name": "0.15mm STRUCTURAL @CORE One 0.25", + "sub_path": "process/0.15mm STRUCTURAL @CORE One 0.25.json" + }, + { + "name": "0.12mm STRUCTURAL @CORE One 0.3", + "sub_path": "process/0.12mm STRUCTURAL @CORE One 0.3.json" + }, + { + "name": "0.16mm STRUCTURAL @CORE One 0.3", + "sub_path": "process/0.16mm STRUCTURAL @CORE One 0.3.json" + }, + { + "name": "0.16mm SPEED @CORE One 0.3", + "sub_path": "process/0.16mm SPEED @CORE One 0.3.json" + }, + { + "name": "0.20mm SPEED @CORE One 0.3", + "sub_path": "process/0.20mm SPEED @CORE One 0.3.json" + }, + { + "name": "0.20mm STRUCTURAL @CORE One 0.3", + "sub_path": "process/0.20mm STRUCTURAL @CORE One 0.3.json" + }, + { + "name": "0.10mm STRUCTURAL @CORE One 0.5", + "sub_path": "process/0.10mm STRUCTURAL @CORE One 0.5.json" + }, + { + "name": "0.15mm STRUCTURAL @CORE One 0.5", + "sub_path": "process/0.15mm STRUCTURAL @CORE One 0.5.json" + }, + { + "name": "0.20mm SPEED @CORE One 0.5", + "sub_path": "process/0.20mm SPEED @CORE One 0.5.json" + }, + { + "name": "0.20mm SPEED @CORE One HF 0.5", + "sub_path": "process/0.20mm SPEED @CORE One HF 0.5.json" + }, + { + "name": "0.20mm STRUCTURAL @CORE One 0.5", + "sub_path": "process/0.20mm STRUCTURAL @CORE One 0.5.json" + }, + { + "name": "0.25mm SPEED @CORE One 0.5", + "sub_path": "process/0.25mm SPEED @CORE One 0.5.json" + }, + { + "name": "0.25mm SPEED @CORE One HF 0.5", + "sub_path": "process/0.25mm SPEED @CORE One HF 0.5.json" + }, + { + "name": "0.25mm STRUCTURAL @CORE One 0.5", + "sub_path": "process/0.25mm STRUCTURAL @CORE One 0.5.json" + }, + { + "name": "0.32mm SPEED @CORE One HF 0.5", + "sub_path": "process/0.32mm SPEED @CORE One HF 0.5.json" + }, + { + "name": "0.32mm STRUCTURAL @CORE One HF 0.5", + "sub_path": "process/0.32mm STRUCTURAL @CORE One HF 0.5.json" + }, + { + "name": "0.15mm STRUCTURAL @CORE One 0.6", + "sub_path": "process/0.15mm STRUCTURAL @CORE One 0.6.json" + }, + { + "name": "0.20mm SPEED @CORE One 0.6", + "sub_path": "process/0.20mm SPEED @CORE One 0.6.json" + }, + { + "name": "0.20mm SPEED @CORE One HF 0.6", + "sub_path": "process/0.20mm SPEED @CORE One HF 0.6.json" + }, + { + "name": "0.20mm STRUCTURAL @CORE One 0.6", + "sub_path": "process/0.20mm STRUCTURAL @CORE One 0.6.json" + }, + { + "name": "0.25mm SPEED @CORE One 0.6", + "sub_path": "process/0.25mm SPEED @CORE One 0.6.json" + }, + { + "name": "0.25mm SPEED @CORE One HF 0.6", + "sub_path": "process/0.25mm SPEED @CORE One HF 0.6.json" + }, + { + "name": "0.25mm STRUCTURAL @CORE One 0.6", + "sub_path": "process/0.25mm STRUCTURAL @CORE One 0.6.json" + }, + { + "name": "0.32mm SPEED @CORE One 0.6", + "sub_path": "process/0.32mm SPEED @CORE One 0.6.json" + }, + { + "name": "0.32mm STRUCTURAL @CORE One 0.6", + "sub_path": "process/0.32mm STRUCTURAL @CORE One 0.6.json" + }, + { + "name": "0.32mm SPEED @CORE One HF 0.6", + "sub_path": "process/0.32mm SPEED @CORE One HF 0.6.json" + }, + { + "name": "0.32mm STRUCTURAL @CORE One HF 0.6", + "sub_path": "process/0.32mm STRUCTURAL @CORE One HF 0.6.json" + }, + { + "name": "0.40mm SPEED @CORE One HF 0.6", + "sub_path": "process/0.40mm SPEED @CORE One HF 0.6.json" + }, + { + "name": "0.40mm STRUCTURAL @CORE One HF 0.6", + "sub_path": "process/0.40mm STRUCTURAL @CORE One HF 0.6.json" + }, + { + "name": "0.30mm DETAIL @CORE One 0.8", + "sub_path": "process/0.30mm DETAIL @CORE One 0.8.json" + }, + { + "name": "0.30mm SPEED @CORE One HF 0.8", + "sub_path": "process/0.30mm SPEED @CORE One HF 0.8.json" + }, + { + "name": "0.30mm STRUCTURAL @CORE One HF 0.8", + "sub_path": "process/0.30mm STRUCTURAL @CORE One HF 0.8.json" + }, + { + "name": "0.40mm QUALITY @CORE One 0.8", + "sub_path": "process/0.40mm QUALITY @CORE One 0.8.json" + }, + { + "name": "0.40mm SPEED @CORE One HF 0.8", + "sub_path": "process/0.40mm SPEED @CORE One HF 0.8.json" + }, + { + "name": "0.40mm STRUCTURAL @CORE One HF 0.8", + "sub_path": "process/0.40mm STRUCTURAL @CORE One HF 0.8.json" + }, + { + "name": "0.55mm DRAFT @CORE One 0.8", + "sub_path": "process/0.55mm DRAFT @CORE One 0.8.json" + }, + { + "name": "0.55mm SPEED @CORE One HF 0.8", + "sub_path": "process/0.55mm SPEED @CORE One HF 0.8.json" } - ], "filament_list": [ { @@ -893,6 +1188,10 @@ "name": "fdm_filament_pa11cf", "sub_path": "filament/fdm_filament_pa11cf.json" }, + { + "name": "fdm_filament_flex", + "sub_path": "filament/fdm_filament_flex.json" + }, { "name": "Prusa Generic PLA", "sub_path": "filament/Prusa Generic PLA.json" @@ -997,6 +1296,14 @@ "name": "Prusa Generic TPU @MINIIS", "sub_path": "filament/Prusa Generic TPU @MINIIS.json" }, + { + "name": "Prusa Generic FLEX @XL", + "sub_path": "filament/Prusa Generic FLEX @XL.json" + }, + { + "name": "Prusa Generic FLEX @XL 5T", + "sub_path": "filament/Prusa Generic FLEX @XL 5T.json" + }, { "name": "Prusa Generic ASA", "sub_path": "filament/Prusa Generic ASA.json" @@ -1081,6 +1388,82 @@ "name": "Prusa Generic PA @MINIIS 0.8", "sub_path": "filament/Prusa Generic PA @MINIIS 0.8.json" }, + { + "name": "Prusa Generic PLA HF @MINIIS 0.6", + "sub_path": "filament/Prusa Generic PLA HF @MINIIS 0.6.json" + }, + { + "name": "Prusa Generic PLA HF @MINIIS 0.8", + "sub_path": "filament/Prusa Generic PLA HF @MINIIS 0.8.json" + }, + { + "name": "Prusa Generic PLA HF @MINIIS", + "sub_path": "filament/Prusa Generic PLA HF @MINIIS.json" + }, + { + "name": "Prusa Generic PETG HF @MINIIS", + "sub_path": "filament/Prusa Generic PETG HF @MINIIS.json" + }, + { + "name": "Prusa Generic PETG HF @MINIIS 0.6", + "sub_path": "filament/Prusa Generic PETG HF @MINIIS 0.6.json" + }, + { + "name": "Prusa Generic PETG HF @MINIIS 0.8", + "sub_path": "filament/Prusa Generic PETG HF @MINIIS 0.8.json" + }, + { + "name": "Prusa Generic ABS HF @MINIIS", + "sub_path": "filament/Prusa Generic ABS HF @MINIIS.json" + }, + { + "name": "Prusa Generic ABS HF @MINIIS 0.6", + "sub_path": "filament/Prusa Generic ABS HF @MINIIS 0.6.json" + }, + { + "name": "Prusa Generic ABS HF @MINIIS 0.8", + "sub_path": "filament/Prusa Generic ABS HF @MINIIS 0.8.json" + }, + { + "name": "Prusa Generic TPU HF @MINIIS", + "sub_path": "filament/Prusa Generic TPU HF @MINIIS.json" + }, + { + "name": "Prusa Generic ASA HF @MINIIS", + "sub_path": "filament/Prusa Generic ASA HF @MINIIS.json" + }, + { + "name": "Prusa Generic ASA HF @MINIIS 0.6", + "sub_path": "filament/Prusa Generic ASA HF @MINIIS 0.6.json" + }, + { + "name": "Prusa Generic ASA HF @MINIIS 0.8", + "sub_path": "filament/Prusa Generic ASA HF @MINIIS 0.8.json" + }, + { + "name": "Prusa Generic PC HF @MINIIS", + "sub_path": "filament/Prusa Generic PC HF @MINIIS.json" + }, + { + "name": "Prusa Generic PC HF @MINIIS 0.6", + "sub_path": "filament/Prusa Generic PC HF @MINIIS 0.6.json" + }, + { + "name": "Prusa Generic PC HF @MINIIS 0.8", + "sub_path": "filament/Prusa Generic PC HF @MINIIS 0.8.json" + }, + { + "name": "Prusa Generic PVA HF @MINIIS", + "sub_path": "filament/Prusa Generic PVA HF @MINIIS.json" + }, + { + "name": "Prusa Generic PVA HF @MINIIS 0.6", + "sub_path": "filament/Prusa Generic PVA HF @MINIIS 0.6.json" + }, + { + "name": "Prusa Generic PVA HF @MINIIS 0.8", + "sub_path": "filament/Prusa Generic PVA HF @MINIIS 0.8.json" + }, { "name": "Prusa Generic PA-CF", "sub_path": "filament/Prusa Generic PA-CF.json" @@ -1337,6 +1720,82 @@ "name": "Prusa Generic PA-CF @MK3.5 0.8", "sub_path": "filament/Prusa Generic PA-CF @MK3.5 0.8.json" }, + { + "name": "Prusa Generic PLA HF @MK3.5 0.6", + "sub_path": "filament/Prusa Generic PLA HF @MK3.5 0.6.json" + }, + { + "name": "Prusa Generic PLA HF @MK3.5 0.8", + "sub_path": "filament/Prusa Generic PLA HF @MK3.5 0.8.json" + }, + { + "name": "Prusa Generic PLA HF @MK3.5", + "sub_path": "filament/Prusa Generic PLA HF @MK3.5.json" + }, + { + "name": "Prusa Generic PETG HF @MK3.5", + "sub_path": "filament/Prusa Generic PETG HF @MK3.5.json" + }, + { + "name": "Prusa Generic PETG HF @MK3.5 0.6", + "sub_path": "filament/Prusa Generic PETG HF @MK3.5 0.6.json" + }, + { + "name": "Prusa Generic PETG HF @MK3.5 0.8", + "sub_path": "filament/Prusa Generic PETG HF @MK3.5 0.8.json" + }, + { + "name": "Prusa Generic ABS HF @MK3.5", + "sub_path": "filament/Prusa Generic ABS HF @MK3.5.json" + }, + { + "name": "Prusa Generic ABS HF @MK3.5 0.6", + "sub_path": "filament/Prusa Generic ABS HF @MK3.5 0.6.json" + }, + { + "name": "Prusa Generic ABS HF @MK3.5 0.8", + "sub_path": "filament/Prusa Generic ABS HF @MK3.5 0.8.json" + }, + { + "name": "Prusa Generic TPU HF @MK3.5", + "sub_path": "filament/Prusa Generic TPU HF @MK3.5.json" + }, + { + "name": "Prusa Generic ASA HF @MK3.5", + "sub_path": "filament/Prusa Generic ASA HF @MK3.5.json" + }, + { + "name": "Prusa Generic ASA HF @MK3.5 0.6", + "sub_path": "filament/Prusa Generic ASA HF @MK3.5 0.6.json" + }, + { + "name": "Prusa Generic ASA HF @MK3.5 0.8", + "sub_path": "filament/Prusa Generic ASA HF @MK3.5 0.8.json" + }, + { + "name": "Prusa Generic PC HF @MK3.5", + "sub_path": "filament/Prusa Generic PC HF @MK3.5.json" + }, + { + "name": "Prusa Generic PC HF @MK3.5 0.6", + "sub_path": "filament/Prusa Generic PC HF @MK3.5 0.6.json" + }, + { + "name": "Prusa Generic PC HF @MK3.5 0.8", + "sub_path": "filament/Prusa Generic PC HF @MK3.5 0.8.json" + }, + { + "name": "Prusa Generic PVA HF @MK3.5", + "sub_path": "filament/Prusa Generic PVA HF @MK3.5.json" + }, + { + "name": "Prusa Generic PVA HF @MK3.5 0.6", + "sub_path": "filament/Prusa Generic PVA HF @MK3.5 0.6.json" + }, + { + "name": "Prusa Generic PVA HF @MK3.5 0.8", + "sub_path": "filament/Prusa Generic PVA HF @MK3.5 0.8.json" + }, { "name": "Prusa Generic ABS @MK4S", "sub_path": "filament/Prusa Generic ABS @MK4S.json" @@ -1472,6 +1931,302 @@ { "name": "Prusa Generic PLA Silk @MK4S 0.8", "sub_path": "filament/Prusa Generic PLA Silk @MK4S 0.8.json" + }, + { + "name": "Prusa Generic ABS @CORE One", + "sub_path": "filament/Prusa Generic ABS @CORE One.json" + }, + { + "name": "Prusa Generic ABS @CORE One 0.6", + "sub_path": "filament/Prusa Generic ABS @CORE One 0.6.json" + }, + { + "name": "Prusa Generic ABS @CORE One 0.8", + "sub_path": "filament/Prusa Generic ABS @CORE One 0.8.json" + }, + { + "name": "Prusa Generic ABS @CORE One HF 0.4", + "sub_path": "filament/Prusa Generic ABS @CORE One HF 0.4.json" + }, + { + "name": "Prusa Generic ABS @CORE One HF 0.5", + "sub_path": "filament/Prusa Generic ABS @CORE One HF 0.5.json" + }, + { + "name": "Prusa Generic ABS @CORE One HF 0.6", + "sub_path": "filament/Prusa Generic ABS @CORE One HF 0.6.json" + }, + { + "name": "Prusa Generic ABS @CORE One HF 0.8", + "sub_path": "filament/Prusa Generic ABS @CORE One HF 0.8.json" + }, + { + "name": "Prusa Generic ASA @CORE One", + "sub_path": "filament/Prusa Generic ASA @CORE One.json" + }, + { + "name": "Prusa Generic ASA @CORE One 0.6", + "sub_path": "filament/Prusa Generic ASA @CORE One 0.6.json" + }, + { + "name": "Prusa Generic ASA @CORE One 0.8", + "sub_path": "filament/Prusa Generic ASA @CORE One 0.8.json" + }, + { + "name": "Prusa Generic ASA @CORE One HF 0.4", + "sub_path": "filament/Prusa Generic ASA @CORE One HF 0.4.json" + }, + { + "name": "Prusa Generic ASA @CORE One HF 0.5", + "sub_path": "filament/Prusa Generic ASA @CORE One HF 0.5.json" + }, + { + "name": "Prusa Generic ASA @CORE One HF 0.6", + "sub_path": "filament/Prusa Generic ASA @CORE One HF 0.6.json" + }, + { + "name": "Prusa Generic ASA @CORE One HF 0.8", + "sub_path": "filament/Prusa Generic ASA @CORE One HF 0.8.json" + }, + { + "name": "Prusa Generic PETG @CORE One", + "sub_path": "filament/Prusa Generic PETG @CORE One.json" + }, + { + "name": "Prusa Generic PETG @CORE One 0.6", + "sub_path": "filament/Prusa Generic PETG @CORE One 0.6.json" + }, + { + "name": "Prusa Generic PETG @CORE One 0.8", + "sub_path": "filament/Prusa Generic PETG @CORE One 0.8.json" + }, + { + "name": "Prusa Generic PETG @CORE One HF 0.4", + "sub_path": "filament/Prusa Generic PETG @CORE One HF 0.4.json" + }, + { + "name": "Prusa Generic PETG @CORE One HF 0.5", + "sub_path": "filament/Prusa Generic PETG @CORE One HF 0.5.json" + }, + { + "name": "Prusa Generic PETG @CORE One HF 0.6", + "sub_path": "filament/Prusa Generic PETG @CORE One HF 0.6.json" + }, + { + "name": "Prusa Generic PETG @CORE One HF 0.8", + "sub_path": "filament/Prusa Generic PETG @CORE One HF 0.8.json" + }, + { + "name": "Prusa Generic PLA @CORE One", + "sub_path": "filament/Prusa Generic PLA @CORE One.json" + }, + { + "name": "Prusa Generic PLA @CORE One 0.6", + "sub_path": "filament/Prusa Generic PLA @CORE One 0.6.json" + }, + { + "name": "Prusa Generic PLA @CORE One 0.8", + "sub_path": "filament/Prusa Generic PLA @CORE One 0.8.json" + }, + { + "name": "Prusa Generic PLA @CORE One HF 0.4", + "sub_path": "filament/Prusa Generic PLA @CORE One HF 0.4.json" + }, + { + "name": "Prusa Generic PLA @CORE One HF 0.5", + "sub_path": "filament/Prusa Generic PLA @CORE One HF 0.5.json" + }, + { + "name": "Prusa Generic PLA @CORE One HF 0.6", + "sub_path": "filament/Prusa Generic PLA @CORE One HF 0.6.json" + }, + { + "name": "Prusa Generic PLA @CORE One HF 0.8", + "sub_path": "filament/Prusa Generic PLA @CORE One HF 0.8.json" + }, + { + "name": "Prusa Generic PLA Silk @CORE One", + "sub_path": "filament/Prusa Generic PLA Silk @CORE One.json" + }, + { + "name": "Prusa Generic PLA Silk @CORE One 0.6", + "sub_path": "filament/Prusa Generic PLA Silk @CORE One 0.6.json" + }, + { + "name": "Prusa Generic PLA Silk @CORE One 0.8", + "sub_path": "filament/Prusa Generic PLA Silk @CORE One 0.8.json" + }, + { + "name": "Prusa Generic TPU @CORE One", + "sub_path": "filament/Prusa Generic TPU @CORE One.json" + }, + { + "name": "Prusa Generic TPU @CORE One 0.6", + "sub_path": "filament/Prusa Generic TPU @CORE One 0.6.json" + }, + { + "name": "Prusa Generic TPU @CORE One 0.8", + "sub_path": "filament/Prusa Generic TPU @CORE One 0.8.json" + }, + { + "name": "Prusament ASA @CORE One", + "sub_path": "filament/Prusament ASA @CORE One.json" + }, + { + "name": "Prusament ASA @CORE One 0.6", + "sub_path": "filament/Prusament ASA @CORE One 0.6.json" + }, + { + "name": "Prusament ASA @CORE One 0.8", + "sub_path": "filament/Prusament ASA @CORE One 0.8.json" + }, + { + "name": "Prusament ASA @CORE One HF 0.4", + "sub_path": "filament/Prusament ASA @CORE One HF 0.4.json" + }, + { + "name": "Prusament ASA @CORE One HF 0.5", + "sub_path": "filament/Prusament ASA @CORE One HF 0.5.json" + }, + { + "name": "Prusament ASA @CORE One HF 0.6", + "sub_path": "filament/Prusament ASA @CORE One HF 0.6.json" + }, + { + "name": "Prusament ASA @CORE One HF 0.8", + "sub_path": "filament/Prusament ASA @CORE One HF 0.8.json" + }, + { + "name": "Prusament PA-CF @CORE One", + "sub_path": "filament/Prusament PA-CF @CORE One.json" + }, + { + "name": "Prusament PA-CF @CORE One 0.6", + "sub_path": "filament/Prusament PA-CF @CORE One 0.6.json" + }, + { + "name": "Prusament PA-CF @CORE One 0.8", + "sub_path": "filament/Prusament PA-CF @CORE One 0.8.json" + }, + { + "name": "Prusament PC Blend @CORE One", + "sub_path": "filament/Prusament PC Blend @CORE One.json" + }, + { + "name": "Prusament PC Blend @CORE One 0.6", + "sub_path": "filament/Prusament PC Blend @CORE One 0.6.json" + }, + { + "name": "Prusament PC Blend @CORE One 0.8", + "sub_path": "filament/Prusament PC Blend @CORE One 0.8.json" + }, + { + "name": "Prusament PC Blend @CORE One HF 0.4", + "sub_path": "filament/Prusament PC Blend @CORE One HF 0.4.json" + }, + { + "name": "Prusament PC Blend @CORE One HF 0.5", + "sub_path": "filament/Prusament PC Blend @CORE One HF 0.5.json" + }, + { + "name": "Prusament PC Blend @CORE One HF 0.6", + "sub_path": "filament/Prusament PC Blend @CORE One HF 0.6.json" + }, + { + "name": "Prusament PC Blend @CORE One HF 0.8", + "sub_path": "filament/Prusament PC Blend @CORE One HF 0.8.json" + }, + { + "name": "Prusament PC-CF @CORE One", + "sub_path": "filament/Prusament PC-CF @CORE One.json" + }, + { + "name": "Prusament PC-CF @CORE One 0.6", + "sub_path": "filament/Prusament PC-CF @CORE One 0.6.json" + }, + { + "name": "Prusament PC-CF @CORE One 0.8", + "sub_path": "filament/Prusament PC-CF @CORE One 0.8.json" + }, + { + "name": "Prusament PETG @CORE One", + "sub_path": "filament/Prusament PETG @CORE One.json" + }, + { + "name": "Prusament PETG @CORE One 0.6", + "sub_path": "filament/Prusament PETG @CORE One 0.6.json" + }, + { + "name": "Prusament PETG @CORE One 0.8", + "sub_path": "filament/Prusament PETG @CORE One 0.8.json" + }, + { + "name": "Prusament PETG @CORE One HF 0.4", + "sub_path": "filament/Prusament PETG @CORE One HF 0.4.json" + }, + { + "name": "Prusament PETG @CORE One HF 0.5", + "sub_path": "filament/Prusament PETG @CORE One HF 0.5.json" + }, + { + "name": "Prusament PETG @CORE One HF 0.6", + "sub_path": "filament/Prusament PETG @CORE One HF 0.6.json" + }, + { + "name": "Prusament PETG @CORE One HF 0.8", + "sub_path": "filament/Prusament PETG @CORE One HF 0.8.json" + }, + { + "name": "Prusament PLA @CORE One", + "sub_path": "filament/Prusament PLA @CORE One.json" + }, + { + "name": "Prusament PLA @CORE One 0.6", + "sub_path": "filament/Prusament PLA @CORE One 0.6.json" + }, + { + "name": "Prusament PLA @CORE One 0.8", + "sub_path": "filament/Prusament PLA @CORE One 0.8.json" + }, + { + "name": "Prusament PLA @CORE One HF 0.4", + "sub_path": "filament/Prusament PLA @CORE One HF 0.4.json" + }, + { + "name": "Prusament PLA @CORE One HF 0.5", + "sub_path": "filament/Prusament PLA @CORE One HF 0.5.json" + }, + { + "name": "Prusament PLA @CORE One HF 0.6", + "sub_path": "filament/Prusament PLA @CORE One HF 0.6.json" + }, + { + "name": "Prusament PLA @CORE One HF 0.8", + "sub_path": "filament/Prusament PLA @CORE One HF 0.8.json" + }, + { + "name": "Prusament PVB @CORE One", + "sub_path": "filament/Prusament PVB @CORE One.json" + }, + { + "name": "Prusament PVB @CORE One 0.6", + "sub_path": "filament/Prusament PVB @CORE One 0.6.json" + }, + { + "name": "Prusament PVB @CORE One 0.8", + "sub_path": "filament/Prusament PVB @CORE One 0.8.json" + }, + { + "name": "Prusament rPLA @CORE One", + "sub_path": "filament/Prusament rPLA @CORE One.json" + }, + { + "name": "Prusament rPLA @CORE One 0.6", + "sub_path": "filament/Prusament rPLA @CORE One 0.6.json" + }, + { + "name": "Prusament rPLA @CORE One 0.8", + "sub_path": "filament/Prusament rPLA @CORE One 0.8.json" } ], "machine_list": [ @@ -1658,6 +2413,46 @@ { "name": "Prusa MK4S HF0.8 nozzle", "sub_path": "machine/Prusa MK4S HF0.8 nozzle.json" + }, + { + "name": "Prusa CORE One HF 0.4 nozzle", + "sub_path": "machine/Prusa CORE One HF 0.4 nozzle.json" + }, + { + "name": "Prusa CORE One HF 0.5 nozzle", + "sub_path": "machine/Prusa CORE One HF 0.5 nozzle.json" + }, + { + "name": "Prusa CORE One HF 0.6 nozzle", + "sub_path": "machine/Prusa CORE One HF 0.6 nozzle.json" + }, + { + "name": "Prusa CORE One HF 0.8 nozzle", + "sub_path": "machine/Prusa CORE One HF 0.8 nozzle.json" + }, + { + "name": "Prusa CORE One 0.25 nozzle", + "sub_path": "machine/Prusa CORE One 0.25 nozzle.json" + }, + { + "name": "Prusa CORE One 0.3 nozzle", + "sub_path": "machine/Prusa CORE One 0.3 nozzle.json" + }, + { + "name": "Prusa CORE One 0.4 nozzle", + "sub_path": "machine/Prusa CORE One 0.4 nozzle.json" + }, + { + "name": "Prusa CORE One 0.5 nozzle", + "sub_path": "machine/Prusa CORE One 0.5 nozzle.json" + }, + { + "name": "Prusa CORE One 0.6 nozzle", + "sub_path": "machine/Prusa CORE One 0.6 nozzle.json" + }, + { + "name": "Prusa CORE One 0.8 nozzle", + "sub_path": "machine/Prusa CORE One 0.8 nozzle.json" } ] } diff --git a/resources/profiles/Prusa/MINIIS_cover.png b/resources/profiles/Prusa/MINIIS_cover.png index c321e4c545..c7a2cd8dbf 100644 Binary files a/resources/profiles/Prusa/MINIIS_cover.png and b/resources/profiles/Prusa/MINIIS_cover.png differ diff --git a/resources/profiles/Prusa/MINI_cover.png b/resources/profiles/Prusa/MINI_cover.png index d85fddf6f8..c7a2cd8dbf 100644 Binary files a/resources/profiles/Prusa/MINI_cover.png and b/resources/profiles/Prusa/MINI_cover.png differ diff --git a/resources/profiles/Prusa/MK3.5_cover.png b/resources/profiles/Prusa/MK3.5_cover.png index cf9455c163..431d1ed011 100644 Binary files a/resources/profiles/Prusa/MK3.5_cover.png and b/resources/profiles/Prusa/MK3.5_cover.png differ diff --git a/resources/profiles/Prusa/MK3S_cover.png b/resources/profiles/Prusa/MK3S_cover.png index 4eb817fa8c..9701792d91 100644 Binary files a/resources/profiles/Prusa/MK3S_cover.png and b/resources/profiles/Prusa/MK3S_cover.png differ diff --git a/resources/profiles/Prusa/MK4IS_cover.png b/resources/profiles/Prusa/MK4IS_cover.png index cf9455c163..f1abf04085 100644 Binary files a/resources/profiles/Prusa/MK4IS_cover.png and b/resources/profiles/Prusa/MK4IS_cover.png differ diff --git a/resources/profiles/Prusa/MK4S HF_cover.png b/resources/profiles/Prusa/MK4S HF_cover.png index 334a0abe16..80799cdd14 100644 Binary files a/resources/profiles/Prusa/MK4S HF_cover.png and b/resources/profiles/Prusa/MK4S HF_cover.png differ diff --git a/resources/profiles/Prusa/MK4S_cover.png b/resources/profiles/Prusa/MK4S_cover.png index 334a0abe16..80799cdd14 100644 Binary files a/resources/profiles/Prusa/MK4S_cover.png and b/resources/profiles/Prusa/MK4S_cover.png differ diff --git a/resources/profiles/Prusa/Prusa CORE One HF_cover.png b/resources/profiles/Prusa/Prusa CORE One HF_cover.png new file mode 100644 index 0000000000..7f6dc7ebb0 Binary files /dev/null and b/resources/profiles/Prusa/Prusa CORE One HF_cover.png differ diff --git a/resources/profiles/Prusa/Prusa CORE One_cover.png b/resources/profiles/Prusa/Prusa CORE One_cover.png new file mode 100644 index 0000000000..7f6dc7ebb0 Binary files /dev/null and b/resources/profiles/Prusa/Prusa CORE One_cover.png differ diff --git a/resources/profiles/Prusa/Prusa XL 5T_cover.png b/resources/profiles/Prusa/Prusa XL 5T_cover.png index 6d3654c1b4..a9b837e265 100644 Binary files a/resources/profiles/Prusa/Prusa XL 5T_cover.png and b/resources/profiles/Prusa/Prusa XL 5T_cover.png differ diff --git a/resources/profiles/Prusa/Prusa XL.svg b/resources/profiles/Prusa/Prusa XL.svg index 4ebe0c97ed..eed839c6a9 100644 --- a/resources/profiles/Prusa/Prusa XL.svg +++ b/resources/profiles/Prusa/Prusa XL.svg @@ -1,17 +1 @@ - - - - - + \ No newline at end of file diff --git a/resources/profiles/Prusa/Prusa XL_cover.png b/resources/profiles/Prusa/Prusa XL_cover.png index 751e17261e..f72cc672d0 100644 Binary files a/resources/profiles/Prusa/Prusa XL_cover.png and b/resources/profiles/Prusa/Prusa XL_cover.png differ diff --git a/resources/profiles/Prusa/coreone.svg b/resources/profiles/Prusa/coreone.svg new file mode 100644 index 0000000000..02e633faa4 --- /dev/null +++ b/resources/profiles/Prusa/coreone.svg @@ -0,0 +1,457 @@ + + diff --git a/resources/profiles/Prusa/coreone_bed.stl b/resources/profiles/Prusa/coreone_bed.stl new file mode 100644 index 0000000000..a9dd873c60 Binary files /dev/null and b/resources/profiles/Prusa/coreone_bed.stl differ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json new file mode 100644 index 0000000000..cfaf3eda4e --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json @@ -0,0 +1,12 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "filament_id": "Prusa Generic ABS @CORE One 0.6", + "from": "system", + "inherits": "Prusa Generic ABS @CORE One", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One 0.6", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json new file mode 100644 index 0000000000..747e7e38ec --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json @@ -0,0 +1,15 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "filament_id": "Prusa Generic ABS @CORE One 0.8", + "from": "system", + "inherits": "Prusa Generic ABS @CORE One", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One 0.8", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json new file mode 100644 index 0000000000..11e30e8944 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusa Generic ABS @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "25" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ABS @CORE One", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One HF 0.4", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json new file mode 100644 index 0000000000..a13130fec4 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusa Generic ABS @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "27" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ABS @CORE One", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One HF 0.5", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json new file mode 100644 index 0000000000..45572696de --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusa Generic ABS @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "34" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ABS @CORE One", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One HF 0.6", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json new file mode 100644 index 0000000000..897b991cb0 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "filament_id": "Prusa Generic ABS @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "36" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ABS @CORE One", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One HF 0.8", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "25" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json new file mode 100644 index 0000000000..af2704737c --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json @@ -0,0 +1,93 @@ +{ + "chamber_temperature": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "20" + ], + "fan_min_speed": [ + "15" + ], + "filament_cost": [ + "27.82" + ], + "filament_density": [ + "1.04" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusa Generic ABS @CORE One", + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.04{elsif nozzle_diameter[filament_extruder_id]==0.25}0.1{elsif nozzle_diameter[filament_extruder_id]==0.3}0.06{elsif nozzle_diameter[filament_extruder_id]==0.35}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.03{elsif nozzle_diameter[filament_extruder_id]==0.6}0.02{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.012{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S40 ; set heatbreak target temp" + ], + "filament_type": [ + "ABS" + ], + "filament_vendor": [ + "Generic" + ], + "from": "system", + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_abs", + "instantiation": "true", + "name": "Prusa Generic ABS @CORE One", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "overhang_fan_speed": [ + "25" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json index b4d82f7794..bb3a5ad3fc 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json @@ -44,6 +44,12 @@ "pressure_advance": [ "0.55" ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json index 1a76559cbd..fd7a6253fd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json @@ -44,6 +44,12 @@ "pressure_advance": [ "0.1" ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json index 1668805ca4..f789dfa96f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json @@ -44,6 +44,12 @@ "pressure_advance": [ "0.07" ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], "compatible_printers": [ "Prusa MINIIS 0.8 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json index 97779cd277..12c8708426 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json @@ -44,6 +44,12 @@ "pressure_advance": [ "0.19" ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json new file mode 100644 index 0000000000..bd69273a70 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic ABS HF @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.1" + ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json new file mode 100644 index 0000000000..aa2a3c93fb --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic ABS HF @MINIIS 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "36" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.07" + ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json new file mode 100644 index 0000000000..50bdddd075 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic ABS HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.19" + ], + "filament_retraction_length": [ + "2.7" + ], + "filament_retraction_minimum_travel": [ + "3" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json new file mode 100644 index 0000000000..b7b688ca88 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFB99_6", + "setting_id": "GFSA04", + "name": "Prusa Generic ABS HF @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "34" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.012" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json new file mode 100644 index 0000000000..a2238c22d1 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFB99_7", + "setting_id": "GFSA04", + "name": "Prusa Generic ABS HF @MK3.5 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "36" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.01" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json new file mode 100644 index 0000000000..a6fff49bca --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFB99_5", + "setting_id": "GFSA04", + "name": "Prusa Generic ABS HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.02" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json new file mode 100644 index 0000000000..ef17e1cc30 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "filament_id": "Prusa Generic ASA @CORE One 0.6", + "from": "system", + "inherits": "Prusa Generic ASA @CORE One", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One 0.6", + "nozzle_temperature": [ + "255" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json new file mode 100644 index 0000000000..66d439c47f --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "fan_max_speed": [ + "30" + ], + "filament_id": "Prusa Generic ASA @CORE One 0.8", + "from": "system", + "inherits": "Prusa Generic ASA @CORE One", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One 0.8", + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json new file mode 100644 index 0000000000..262e5e9e63 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusa Generic ASA @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "26" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ASA @CORE One", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One HF 0.4", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json new file mode 100644 index 0000000000..d7276b5e46 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusa Generic ASA @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "27" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ASA @CORE One", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One HF 0.5", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json new file mode 100644 index 0000000000..9a76a5c239 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusa Generic ASA @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "34" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ASA @CORE One", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One HF 0.6", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json new file mode 100644 index 0000000000..112a308d94 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json @@ -0,0 +1,33 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_max_speed": [ + "30" + ], + "filament_id": "Prusa Generic ASA @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "36" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic ASA @CORE One", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One HF 0.8", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json new file mode 100644 index 0000000000..fc9cdeb3c5 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json @@ -0,0 +1,93 @@ +{ + "chamber_temperature": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "35.28" + ], + "filament_density": [ + "1.07" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusa Generic ASA @CORE One", + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.04{elsif nozzle_diameter[filament_extruder_id]==0.25}0.1{elsif nozzle_diameter[filament_extruder_id]==0.3}0.06{elsif nozzle_diameter[filament_extruder_id]==0.35}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.03{elsif nozzle_diameter[filament_extruder_id]==0.6}0.02{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.012{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S40 ; set heatbreak target temp" + ], + "filament_type": [ + "ASA" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "from": "system", + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_asa", + "instantiation": "true", + "name": "Prusa Generic ASA @CORE One", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "overhang_fan_speed": [ + "25" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json index 8dd21dc40a..0556cde091 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json @@ -44,6 +44,9 @@ "pressure_advance": [ "0.55" ], + "filament_retraction_minimum_travel": [ + "2" + ], "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json index f2016a0eeb..9d2eeca117 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json @@ -44,6 +44,9 @@ "pressure_advance": [ "0.1" ], + "filament_retraction_minimum_travel": [ + "2" + ], "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json index 739c7b2078..17eea8c03e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json @@ -44,6 +44,9 @@ "pressure_advance": [ "0.07" ], + "filament_retraction_minimum_travel": [ + "2" + ], "compatible_printers": [ "Prusa MINIIS 0.8 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json index f6dd7710f7..c2ef2cc717 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json @@ -44,6 +44,9 @@ "pressure_advance": [ "0.19" ], + "filament_retraction_minimum_travel": [ + "2" + ], "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json index c731f9ffa2..5b3b62b43d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json @@ -28,7 +28,7 @@ "100" ], "filament_max_volumetric_speed": [ - "1^" + "11" ], "fan_max_speed": [ "15" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json index 7007f13239..ee8b67532c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json @@ -28,7 +28,7 @@ "100" ], "filament_max_volumetric_speed": [ - "1^" + "11" ], "fan_max_speed": [ "15" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json index a4d7807711..bc524d2d74 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json @@ -28,7 +28,7 @@ "100" ], "filament_max_volumetric_speed": [ - "1^" + "11" ], "fan_max_speed": [ "15" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json new file mode 100644 index 0000000000..57c0db446c --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic ASA HF @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.1" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json new file mode 100644 index 0000000000..dd5165f814 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic ASA HF @MINIIS 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.07" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + + + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json new file mode 100644 index 0000000000..152b70060d --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic ASA HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.19" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json new file mode 100644 index 0000000000..45343bfce7 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFB98_6", + "setting_id": "GFSA04", + "name": "Prusa Generic ASA HF @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "34" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.012" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json new file mode 100644 index 0000000000..111a381488 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFB98_7", + "setting_id": "GFSA04", + "name": "Prusa Generic ASA HF @MK3.5 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "36" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.01" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json new file mode 100644 index 0000000000..3ed53bb320 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "filament_id": "GFB98_5", + "setting_id": "GFSA04", + "name": "Prusa Generic ASA HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "filament_flow_ratio": [ + "1" + ], + "cool_plate_temp" : [ + "100" + ], + "eng_plate_temp" : [ + "100" + ], + "hot_plate_temp" : [ + "100" + ], + "cool_plate_temp_initial_layer" : [ + "100" + ], + "eng_plate_temp_initial_layer" : [ + "100" + ], + "hot_plate_temp_initial_layer" : [ + "100" + ], + "filament_max_volumetric_speed": [ + "26" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "15" + ], + "slow_down_layer_time": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.02" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json new file mode 100644 index 0000000000..0365f748f3 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json @@ -0,0 +1,35 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic FLEX @XL 5T", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_flex", + "filament_loading_speed_start": "3", + "filament_loading_speed": "28", + "filament_unloading_speed_start": "100", + "filament_unloading_speed": "90", + "filament_load_time": "0", + "filament_unload_time": "0", + "filament_cooling_moves": "4", + "filament_cooling_initial_speed": "2.2", + "filament_cooling_final_speed": "3.4", + "filament_retract_lift_below": "0.6", + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "40" + ], + "filament_multitool_ramming_flow": [ + "2.5" + ], + "compatible_printers": [ + "Prusa XL 5T 0.25 nozzle", + "Prusa XL 5T 0.3 nozzle", + "Prusa XL 5T 0.4 nozzle", + "Prusa XL 5T 0.5 nozzle", + "Prusa XL 5T 0.6 nozzle", + "Prusa XL 5T 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json new file mode 100644 index 0000000000..c3883b61bb --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json @@ -0,0 +1,35 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic FLEX @XL", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_flex", + "filament_loading_speed_start": "3", + "filament_loading_speed": "28", + "filament_unloading_speed_start": "100", + "filament_unloading_speed": "90", + "filament_load_time": "0", + "filament_unload_time": "0", + "filament_cooling_moves": "4", + "filament_cooling_initial_speed": "2.2", + "filament_cooling_final_speed": "3.4", + "filament_retract_lift_below": "0.6", + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "40" + ], + "filament_multitool_ramming_flow": [ + "2.5" + ], + "compatible_printers": [ + "Prusa XL 0.25 nozzle", + "Prusa XL 0.3 nozzle", + "Prusa XL 0.4 nozzle", + "Prusa XL 0.5 nozzle", + "Prusa XL 0.6 nozzle", + "Prusa XL 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json new file mode 100644 index 0000000000..0cd3e6e2a5 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PC HF @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pc", + "filament_max_volumetric_speed": [ + "35" + ], + "filament_flow_ratio": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.1" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json new file mode 100644 index 0000000000..e444cad43e --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PC HF @MINIIS 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pc", + "filament_max_volumetric_speed": [ + "29" + ], + "filament_flow_ratio": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.07" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json new file mode 100644 index 0000000000..329c9716ec --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PC HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pc", + "filament_max_volumetric_speed": [ + "24" + ], + "filament_flow_ratio": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.19" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json new file mode 100644 index 0000000000..0eb69ff2d2 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json @@ -0,0 +1,25 @@ +{ + "type": "filament", + "filament_id": "GFC99_5", + "setting_id": "GFSA04", + "name": "Prusa Generic PC HF @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pc", + "filament_max_volumetric_speed": [ + "30" + ], + "filament_flow_ratio": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.022" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json new file mode 100644 index 0000000000..c637a2c04c --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json @@ -0,0 +1,25 @@ +{ + "type": "filament", + "filament_id": "GFC99_6", + "setting_id": "GFSA04", + "name": "Prusa Generic PC HF @MK3.5 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pc", + "filament_max_volumetric_speed": [ + "36" + ], + "filament_flow_ratio": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.016" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json new file mode 100644 index 0000000000..2f65c55619 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json @@ -0,0 +1,25 @@ +{ + "type": "filament", + "filament_id": "GFC99_4", + "setting_id": "GFSA04", + "name": "Prusa Generic PC HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pc", + "filament_max_volumetric_speed": [ + "24" + ], + "filament_flow_ratio": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.05" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json new file mode 100644 index 0000000000..b44261a22e --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_id": "Prusa Generic PETG @CORE One 0.6", + "filament_max_volumetric_speed": [ + "17" + ], + "from": "system", + "inherits": "Prusa Generic PETG @CORE One", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One 0.6", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json new file mode 100644 index 0000000000..04c6b1818d --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json @@ -0,0 +1,39 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "65" + ], + "filament_id": "Prusa Generic PETG @CORE One 0.8", + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retract_before_wipe": [ + "50" + ], + "filament_z_hop": [ + "0.6" + ], + "from": "system", + "inherits": "Prusa Generic PETG @CORE One", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One 0.8", + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "65" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json new file mode 100644 index 0000000000..2e4d4b3db1 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusa Generic PETG @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "22" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PETG @CORE One", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One HF 0.4", + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json new file mode 100644 index 0000000000..6bae10b6f5 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusa Generic PETG @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "27" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PETG @CORE One", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One HF 0.5", + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "10" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json new file mode 100644 index 0000000000..721ceb8bfa --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_id": "Prusa Generic PETG @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "31" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PETG @CORE One", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One HF 0.6", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json new file mode 100644 index 0000000000..cd17c28f0f --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json @@ -0,0 +1,42 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "65" + ], + "filament_id": "Prusa Generic PETG @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "37" + ], + "filament_retract_before_wipe": [ + "50" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_z_hop": [ + "0.6" + ], + "from": "system", + "inherits": "Prusa Generic PETG @CORE One", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One HF 0.8", + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "65" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json new file mode 100644 index 0000000000..122f30b68b --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json @@ -0,0 +1,111 @@ +{ + "chamber_temperature": [ + "35" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "25" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "27.82" + ], + "filament_density": [ + "1.27" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusa Generic PETG @CORE One", + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_retract_before_wipe": [ + "20" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.07{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{elsif nozzle_diameter[filament_extruder_id]==0.35}0.08{elsif nozzle_diameter[filament_extruder_id]==0.6}0.04{elsif nozzle_diameter[filament_extruder_id]==0.5}0.05{elsif nozzle_diameter[filament_extruder_id]==0.8}0.02{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.053{elsif nozzle_diameter[filament_extruder_id]==0.5}0.042{elsif nozzle_diameter[filament_extruder_id]==0.6}0.032{elsif nozzle_diameter[filament_extruder_id]==0.8}0.018{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "1" + ], + "filament_z_hop": [ + "1.5" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "5" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_pet", + "instantiation": "true", + "name": "Prusa Generic PETG @CORE One", + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "overhang_fan_speed": [ + "60" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json index 4c64f88db2..031b720860 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json @@ -56,6 +56,15 @@ "pressure_advance": [ "1.02" ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json index 8a32807d15..5a281a2b1b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json @@ -56,6 +56,15 @@ "pressure_advance": [ "0.22" ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json index e53595ee01..bba53df6b8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json @@ -56,6 +56,15 @@ "pressure_advance": [ "0.15" ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], "compatible_printers": [ "Prusa MINIIS 0.8 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json index 7ce30af419..a02e8c7d78 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json @@ -56,6 +56,15 @@ "pressure_advance": [ "0.4" ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json new file mode 100644 index 0000000000..d8bbf8f5b3 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PETG HF @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "17" + ], + "filament_flow_ratio": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.22" + ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json new file mode 100644 index 0000000000..86eaf650e2 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PETG HF @MINIIS 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "20" + ], + "filament_flow_ratio": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "filament_max_volumetric_speed": [ + "32" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.15" + ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json new file mode 100644 index 0000000000..d62bd7eeb5 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PETG HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "10" + ], + "filament_flow_ratio": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.4" + ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_retraction_minimum_travel": [ + "1" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json new file mode 100644 index 0000000000..5dda00269d --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "filament_id": "GFG99_6", + "setting_id": "GFSA04", + "name": "Prusa Generic PETG HF @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "17" + ], + "filament_flow_ratio": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.025" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json new file mode 100644 index 0000000000..8586b39f4f --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "filament_id": "GFG99_7", + "setting_id": "GFSA04", + "name": "Prusa Generic PETG HF @MK3.5 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "20" + ], + "filament_flow_ratio": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "filament_max_volumetric_speed": [ + "37" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.018" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json new file mode 100644 index 0000000000..b120a45d33 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "filament_id": "GFG99_5", + "setting_id": "GFSA04", + "name": "Prusa Generic PETG HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pet", + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_cooling_layer_time": [ + "30" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "10" + ], + "filament_flow_ratio": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.052" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json new file mode 100644 index 0000000000..8d2c1ce5c9 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "filament_id": "Prusa Generic PLA @CORE One 0.6", + "from": "system", + "inherits": "Prusa Generic PLA @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One 0.6", + "nozzle_temperature": [ + "210" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json new file mode 100644 index 0000000000..64ba544b27 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "filament_id": "Prusa Generic PLA @CORE One 0.8", + "filament_max_volumetric_speed": [ + "19" + ], + "from": "system", + "inherits": "Prusa Generic PLA @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One 0.8", + "nozzle_temperature": [ + "225" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "17" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json new file mode 100644 index 0000000000..30f77f3b05 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusa Generic PLA @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "22" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PLA @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One HF 0.4", + "nozzle_temperature": [ + "225" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json new file mode 100644 index 0000000000..5d2c429617 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusa Generic PLA @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "25" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PLA @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One HF 0.5", + "nozzle_temperature": [ + "225" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "11" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json new file mode 100644 index 0000000000..ff62c6ef51 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusa Generic PLA @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "30" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PLA @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One HF 0.6", + "nozzle_temperature": [ + "225" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json new file mode 100644 index 0000000000..0f9d241905 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "filament_id": "Prusa Generic PLA @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "35" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusa Generic PLA @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One HF 0.8", + "nozzle_temperature": [ + "225" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "19" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json new file mode 100644 index 0000000000..f20ec0d354 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json @@ -0,0 +1,102 @@ +{ + "chamber_temperature": [ + "20" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "85" + ], + "filament_cost": [ + "25.4" + ], + "filament_density": [ + "1.24" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusa Generic PLA @CORE One", + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.07{elsif nozzle_diameter[filament_extruder_id]==0.35}0.06{elsif nozzle_diameter[filament_extruder_id]==0.6}0.03{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.025{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.014{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "idle_temperature": [ + "150" + ], + "inherits": "fdm_filament_pla", + "instantiation": "true", + "name": "Prusa Generic PLA @CORE One", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json new file mode 100644 index 0000000000..49f104af14 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PLA HF @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "slow_down_layer_time": [ + "12" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.17" + ], + + + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json new file mode 100644 index 0000000000..897c611d6b --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PLA HF @MINIIS 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "36" + ], + "slow_down_layer_time": [ + "15" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.12" + ], + + + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json new file mode 100644 index 0000000000..b639858579 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PLA HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "slow_down_layer_time": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.27" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json new file mode 100644 index 0000000000..c9be9da971 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "filament_id": "GFL99_6", + "setting_id": "GFSA04", + "name": "Prusa Generic PLA HF @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "30" + ], + "slow_down_layer_time": [ + "12" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.02" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json new file mode 100644 index 0000000000..52bf04bd36 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "filament_id": "GFL99_7", + "setting_id": "GFSA04", + "name": "Prusa Generic PLA HF @MK3.5 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "37" + ], + "slow_down_layer_time": [ + "15" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.014" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json new file mode 100644 index 0000000000..2f854648e0 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "filament_id": "GFL99_5", + "setting_id": "GFSA04", + "name": "Prusa Generic PLA HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "slow_down_layer_time": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.035" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json new file mode 100644 index 0000000000..c1170ec950 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json @@ -0,0 +1,22 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle", + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusa Generic PLA Silk @CORE One 0.6", + "filament_max_volumetric_speed": [ + "9" + ], + "from": "system", + "inherits": "Prusa Generic PLA Silk @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA Silk @CORE One 0.6", + "nozzle_temperature": [ + "215" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json new file mode 100644 index 0000000000..cdde205b53 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle", + "Prusa CORE One HF 0.8 nozzle" + ], + "filament_id": "Prusa Generic PLA Silk @CORE One 0.8", + "filament_max_volumetric_speed": [ + "12" + ], + "from": "system", + "inherits": "Prusa Generic PLA Silk @CORE One", + "instantiation": "true", + "name": "Prusa Generic PLA Silk @CORE One 0.8", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "17" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json new file mode 100644 index 0000000000..c2fc4c955e --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json @@ -0,0 +1,104 @@ +{ + "chamber_temperature": [ + "20" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle", + "Prusa CORE One HF 0.4 nozzle", + "Prusa CORE One HF 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "85" + ], + "filament_cost": [ + "25.4" + ], + "filament_density": [ + "1.24" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusa Generic PLA Silk @CORE One", + "filament_max_volumetric_speed": [ + "7" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[0]==0.4}0.05{elsif nozzle_diameter[0]==0.25}0.14{elsif nozzle_diameter[0]==0.3}0.07{elsif nozzle_diameter[0]==0.35}0.06{elsif nozzle_diameter[0]==0.6}0.03{elsif nozzle_diameter[0]==0.5}0.035{elsif nozzle_diameter[0]==0.8}0.015{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[0]==0.4}0.03{elsif nozzle_diameter[0]==0.5}0.022{elsif nozzle_diameter[0]==0.6}0.018{elsif nozzle_diameter[0]==0.8}0.012{elsif nozzle_diameter[0]==0.25}0.12{elsif nozzle_diameter[0]==0.3}0.075{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "idle_temperature": [ + "150" + ], + "inherits": "fdm_filament_pla", + "instantiation": "true", + "name": "Prusa Generic PLA Silk @CORE One", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json new file mode 100644 index 0000000000..7873b7dd12 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PVA HF @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pva", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.1" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json new file mode 100644 index 0000000000..20b1bacfe4 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PVA HF @MINIIS 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pva", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.07" + ], + + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json new file mode 100644 index 0000000000..7d799c3c3b --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json @@ -0,0 +1,29 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic PVA HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pva", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.19" + ], + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json new file mode 100644 index 0000000000..c7758719a5 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "filament_id": "GFS99_5", + "setting_id": "GFSA04", + "name": "Prusa Generic PVA HF @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pva", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.012" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json new file mode 100644 index 0000000000..48fa920b19 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "filament_id": "GFS99_6", + "setting_id": "GFSA04", + "name": "Prusa Generic PVA HF @MK3.5 0.8", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pva", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.01" + ], + + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json new file mode 100644 index 0000000000..2bc8209614 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "filament_id": "GFS99_4", + "setting_id": "GFSA04", + "name": "Prusa Generic PVA HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pva", + "filament_flow_ratio": [ + "1" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.02" + ], + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json new file mode 100644 index 0000000000..42e78b726c --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle", + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusa Generic TPU @CORE One 0.6", + "filament_max_volumetric_speed": [ + "3.5" + ], + "filament_z_hop": [ + "0.6" + ], + "from": "system", + "inherits": "Prusa Generic TPU @CORE One", + "instantiation": "true", + "name": "Prusa Generic TPU @CORE One 0.6", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json new file mode 100644 index 0000000000..128ebdcad1 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle", + "Prusa CORE One HF 0.8 nozzle" + ], + "filament_id": "Prusa Generic TPU @CORE One 0.8", + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_z_hop": [ + "0.6" + ], + "from": "system", + "inherits": "Prusa Generic TPU @CORE One", + "instantiation": "true", + "name": "Prusa Generic TPU @CORE One 0.8", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json new file mode 100644 index 0000000000..545adb5648 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json @@ -0,0 +1,113 @@ +{ + "chamber_temperature": [ + "30" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle", + "Prusa CORE One HF 0.4 nozzle", + "Prusa CORE One HF 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "20" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1.08" + ], + "filament_id": "Prusa Generic TPU @CORE One", + "filament_max_volumetric_speed": [ + "2.5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": [ + "" + ], + "filament_retraction_length": [ + "2.5" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + "filament_retraction_speed": [ + "60" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K0 ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "FLEX" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "0" + ], + "filament_z_hop": [ + "0" + ], + "from": "system", + "hot_plate_temp": [ + "50" + ], + "hot_plate_temp_initial_layer": [ + "50" + ], + "idle_temperature": [ + "150" + ], + "inherits": "fdm_filament_flex", + "instantiation": "true", + "name": "Prusa Generic TPU @CORE One", + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "70" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json new file mode 100644 index 0000000000..20618c4c49 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "setting_id": "GFSA04", + "name": "Prusa Generic TPU HF @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_tpu", + "filament_max_volumetric_speed": [ + "10" + ], + "filament_flow_ratio": [ + "1.15" + ], + "hot_plate_temp" : [ + "50" + ], + "hot_plate_temp_initial_layer" : [ + "50" + ], + "filament_type": [ + "FLEX" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature": [ + "210" + ], + "filament_retraction_length": [ + "3" + ], + "filament_retraction_speed": [ + "40" + ], + "filament_deretraction_speed": [ + "16" + ], + "filament_retraction_minimum_travel": [ + "6" + ], + "filament_wipe": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "full_fan_speed_layer": [ + "3" + ], + "fan_min_speed": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "80" + ], + "slow_down_layer_time": [ + "4" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_fan_speed": [ + "50" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "pressure_advance": [ + "0" + ], + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle", + "Prusa MINIIS 0.6 nozzle", + "Prusa MINIIS 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json new file mode 100644 index 0000000000..5a558e1b2d --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json @@ -0,0 +1,87 @@ +{ + "type": "filament", + "filament_id": "GFU99_3", + "setting_id": "GFSA04", + "name": "Prusa Generic TPU HF @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_tpu", + "filament_max_volumetric_speed": [ + "8" + ], + "filament_flow_ratio": [ + "1.15" + ], + "hot_plate_temp" : [ + "50" + ], + "hot_plate_temp_initial_layer" : [ + "50" + ], + "filament_type": [ + "FLEX" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature": [ + "210" + ], + "filament_retraction_length": [ + "2" + ], + "filament_retraction_speed": [ + "45" + ], + "filament_deretraction_speed": [ + "20" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "full_fan_speed_layer": [ + "3" + ], + "fan_min_speed": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "80" + ], + "slow_down_layer_time": [ + "4" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_min_speed": [ + "10" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_fan_speed": [ + "50" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "pressure_advance": [ + "0" + ], + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle", + "Prusa MK3.5 0.25 nozzle", + "Prusa MK3.5 0.6 nozzle", + "Prusa MK3.5 0.8 nozzle" + ] +} diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json new file mode 100644 index 0000000000..2884e1f425 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "filament_id": "Prusament ASA @CORE One 0.6", + "from": "system", + "inherits": "Prusament ASA @CORE One", + "instantiation": "true", + "name": "Prusament ASA @CORE One 0.6", + "nozzle_temperature": [ + "255" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json new file mode 100644 index 0000000000..8493390390 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "fan_max_speed": [ + "30" + ], + "filament_id": "Prusament ASA @CORE One 0.8", + "from": "system", + "inherits": "Prusament ASA @CORE One", + "instantiation": "true", + "name": "Prusament ASA @CORE One 0.8", + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json new file mode 100644 index 0000000000..505004bc8b --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusament ASA @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "26" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament ASA @CORE One", + "instantiation": "true", + "name": "Prusament ASA @CORE One HF 0.4", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json new file mode 100644 index 0000000000..ea2e862a1b --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusament ASA @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "27" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament ASA @CORE One", + "instantiation": "true", + "name": "Prusament ASA @CORE One HF 0.5", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json new file mode 100644 index 0000000000..2e0f27d69f --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusament ASA @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "34" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament ASA @CORE One", + "instantiation": "true", + "name": "Prusament ASA @CORE One HF 0.6", + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json new file mode 100644 index 0000000000..29e2fc9c97 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json @@ -0,0 +1,33 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_max_speed": [ + "30" + ], + "filament_id": "Prusament ASA @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "36" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.015{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\nM142 S40 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament ASA @CORE One", + "instantiation": "true", + "name": "Prusament ASA @CORE One HF 0.8", + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json new file mode 100644 index 0000000000..fa864ed351 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json @@ -0,0 +1,93 @@ +{ + "chamber_temperature": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "35.28" + ], + "filament_density": [ + "1.07" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusament ASA @CORE One", + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.04{elsif nozzle_diameter[filament_extruder_id]==0.25}0.1{elsif nozzle_diameter[filament_extruder_id]==0.3}0.06{elsif nozzle_diameter[filament_extruder_id]==0.35}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.03{elsif nozzle_diameter[filament_extruder_id]==0.6}0.02{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.02{elsif nozzle_diameter[filament_extruder_id]==0.5}0.018{elsif nozzle_diameter[filament_extruder_id]==0.6}0.012{elsif nozzle_diameter[filament_extruder_id]==0.8}0.01{elsif nozzle_diameter[filament_extruder_id]==0.25}0.09{elsif nozzle_diameter[filament_extruder_id]==0.3}0.065{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S40 ; set heatbreak target temp" + ], + "filament_type": [ + "ASA" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "from": "system", + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_asa", + "instantiation": "true", + "name": "Prusament ASA @CORE One", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "overhang_fan_speed": [ + "25" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json new file mode 100644 index 0000000000..c2c6b22205 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle", + "Prusa CORE One HF 0.6 nozzle" + ], + "fan_cooling_layer_time": [ + "18" + ], + "filament_id": "Prusament PA-CF @CORE One 0.6", + "filament_max_volumetric_speed": [ + "8" + ], + "from": "system", + "inherits": "Prusament PA-CF @CORE One", + "instantiation": "true", + "name": "Prusament PA-CF @CORE One 0.6", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json new file mode 100644 index 0000000000..2bee96aaa3 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle", + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "20" + ], + "filament_id": "Prusament PA-CF @CORE One 0.8", + "filament_max_volumetric_speed": [ + "10" + ], + "from": "system", + "inherits": "Prusament PA-CF @CORE One", + "instantiation": "true", + "name": "Prusament PA-CF @CORE One 0.8", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json new file mode 100644 index 0000000000..e924c027c5 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json @@ -0,0 +1,98 @@ +{ + "chamber_temperature": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle", + "Prusa CORE One HF 0.4 nozzle", + "Prusa CORE One HF 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "20" + ], + "fan_min_speed": [ + "15" + ], + "filament_cost": [ + "124.99" + ], + "filament_density": [ + "1.11" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1.05" + ], + "filament_id": "Prusament PA-CF @CORE One", + "filament_max_volumetric_speed": [ + "6.5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.07{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{elsif nozzle_diameter[filament_extruder_id]==0.35}0.08{elsif nozzle_diameter[filament_extruder_id]==0.6}0.04{elsif nozzle_diameter[filament_extruder_id]==0.5}0.05{elsif nozzle_diameter[filament_extruder_id]==0.8}0.02{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.6}0.025{elsif nozzle_diameter[filament_extruder_id]==0.8}0.016{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S45 ; set heatbreak target temp" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_z_hop": [ + "0.2" + ], + "from": "system", + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_pa", + "instantiation": "true", + "name": "Prusament PA-CF @CORE One", + "nozzle_temperature": [ + "285" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "overhang_fan_speed": [ + "20" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json new file mode 100644 index 0000000000..c1d5aef752 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json @@ -0,0 +1,15 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "filament_id": "Prusament PC Blend @CORE One 0.6", + "filament_max_volumetric_speed": [ + "15" + ], + "from": "system", + "inherits": "Prusament PC Blend @CORE One", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One 0.6", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json new file mode 100644 index 0000000000..04818ebbd9 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "fan_max_speed": [ + "30" + ], + "filament_id": "Prusament PC Blend @CORE One 0.8", + "filament_max_volumetric_speed": [ + "18" + ], + "from": "system", + "inherits": "Prusament PC Blend @CORE One", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One 0.8", + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "25" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json new file mode 100644 index 0000000000..d69dff866c --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json @@ -0,0 +1,15 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusament PC Blend @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "24" + ], + "from": "system", + "inherits": "Prusament PC Blend @CORE One", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One HF 0.4", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json new file mode 100644 index 0000000000..6f89594b43 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json @@ -0,0 +1,15 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusament PC Blend @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "25" + ], + "from": "system", + "inherits": "Prusament PC Blend @CORE One", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One HF 0.5", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json new file mode 100644 index 0000000000..19c0d03646 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json @@ -0,0 +1,15 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusament PC Blend @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "30" + ], + "from": "system", + "inherits": "Prusament PC Blend @CORE One", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One HF 0.6", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json new file mode 100644 index 0000000000..fdfa594b91 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_max_speed": [ + "30" + ], + "filament_id": "Prusament PC Blend @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "36" + ], + "from": "system", + "inherits": "Prusament PC Blend @CORE One", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One HF 0.8", + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "25" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json new file mode 100644 index 0000000000..bd64c1e9eb --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json @@ -0,0 +1,96 @@ +{ + "chamber_temperature": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "15" + ], + "filament_cost": [ + "51.53" + ], + "filament_density": [ + "1.22" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusament PC Blend @CORE One", + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.07{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{elsif nozzle_diameter[filament_extruder_id]==0.35}0.08{elsif nozzle_diameter[filament_extruder_id]==0.6}0.04{elsif nozzle_diameter[filament_extruder_id]==0.5}0.05{elsif nozzle_diameter[filament_extruder_id]==0.8}0.02{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.6}0.025{elsif nozzle_diameter[filament_extruder_id]==0.8}0.016{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S45 ; set heatbreak target temp" + ], + "filament_type": [ + "PC" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_z_hop": [ + "0.2" + ], + "from": "system", + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_pc", + "instantiation": "true", + "name": "Prusament PC Blend @CORE One", + "nozzle_temperature": [ + "275" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "overhang_fan_speed": [ + "25" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json new file mode 100644 index 0000000000..d3aff5f91e --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json @@ -0,0 +1,22 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle", + "Prusa CORE One HF 0.6 nozzle" + ], + "fan_cooling_layer_time": [ + "18" + ], + "filament_id": "Prusament PC-CF @CORE One 0.6", + "filament_max_volumetric_speed": [ + "13" + ], + "from": "system", + "inherits": "Prusament PC-CF @CORE One", + "instantiation": "true", + "name": "Prusament PC-CF @CORE One 0.6", + "nozzle_temperature": [ + "280" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json new file mode 100644 index 0000000000..879de5bbd3 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json @@ -0,0 +1,22 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle", + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "25" + ], + "filament_id": "Prusament PC-CF @CORE One 0.8", + "filament_max_volumetric_speed": [ + "18" + ], + "from": "system", + "inherits": "Prusament PC-CF @CORE One", + "instantiation": "true", + "name": "Prusament PC-CF @CORE One 0.8", + "overhang_fan_speed": [ + "30" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json new file mode 100644 index 0000000000..acb43aeebd --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json @@ -0,0 +1,98 @@ +{ + "chamber_temperature": [ + "40" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle", + "Prusa CORE One HF 0.4 nozzle", + "Prusa CORE One HF 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "15" + ], + "filament_cost": [ + "74.99" + ], + "filament_density": [ + "1.22" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1.04" + ], + "filament_id": "Prusament PC-CF @CORE One", + "filament_max_volumetric_speed": [ + "9" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.07{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{elsif nozzle_diameter[filament_extruder_id]==0.35}0.08{elsif nozzle_diameter[filament_extruder_id]==0.6}0.04{elsif nozzle_diameter[filament_extruder_id]==0.5}0.05{elsif nozzle_diameter[filament_extruder_id]==0.8}0.02{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.6}0.025{elsif nozzle_diameter[filament_extruder_id]==0.8}0.016{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S45 ; set heatbreak target temp" + ], + "filament_type": [ + "PC" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_z_hop": [ + "0.2" + ], + "from": "system", + "hot_plate_temp": [ + "115" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_pc", + "instantiation": "true", + "name": "Prusament PC-CF @CORE One", + "nozzle_temperature": [ + "285" + ], + "nozzle_temperature_initial_layer": [ + "285" + ], + "overhang_fan_speed": [ + "25" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json new file mode 100644 index 0000000000..151b0c0089 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_id": "Prusament PETG @CORE One 0.6", + "filament_max_volumetric_speed": [ + "17" + ], + "from": "system", + "inherits": "Prusament PETG @CORE One", + "instantiation": "true", + "name": "Prusament PETG @CORE One 0.6", + "nozzle_temperature": [ + "245" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json new file mode 100644 index 0000000000..6ad739845d --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json @@ -0,0 +1,33 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "65" + ], + "filament_id": "Prusament PETG @CORE One 0.8", + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retract_before_wipe": [ + "50" + ], + "filament_z_hop": [ + "0.6" + ], + "from": "system", + "inherits": "Prusament PETG @CORE One", + "instantiation": "true", + "name": "Prusament PETG @CORE One 0.8", + "overhang_fan_speed": [ + "65" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json new file mode 100644 index 0000000000..a8bac193a8 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusament PETG @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "24" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PETG @CORE One", + "instantiation": "true", + "name": "Prusament PETG @CORE One HF 0.4", + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json new file mode 100644 index 0000000000..9ce318fb20 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusament PETG @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "27" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PETG @CORE One", + "instantiation": "true", + "name": "Prusament PETG @CORE One HF 0.5", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "10" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json new file mode 100644 index 0000000000..bc45907e00 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_id": "Prusament PETG @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "31" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PETG @CORE One", + "instantiation": "true", + "name": "Prusament PETG @CORE One HF 0.6", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json new file mode 100644 index 0000000000..b16eb0b453 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json @@ -0,0 +1,42 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "65" + ], + "filament_id": "Prusament PETG @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "37" + ], + "filament_retract_before_wipe": [ + "50" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.5}0.044{elsif nozzle_diameter[filament_extruder_id]==0.6}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.022{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_z_hop": [ + "0.6" + ], + "from": "system", + "inherits": "Prusament PETG @CORE One", + "instantiation": "true", + "name": "Prusament PETG @CORE One HF 0.8", + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "overhang_fan_speed": [ + "65" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json new file mode 100644 index 0000000000..97c717854f --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json @@ -0,0 +1,111 @@ +{ + "chamber_temperature": [ + "35" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "25" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.27" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusament PETG @CORE One", + "filament_max_volumetric_speed": [ + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_retract_before_wipe": [ + "20" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.07{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.09{elsif nozzle_diameter[filament_extruder_id]==0.35}0.08{elsif nozzle_diameter[filament_extruder_id]==0.6}0.04{elsif nozzle_diameter[filament_extruder_id]==0.5}0.05{elsif nozzle_diameter[filament_extruder_id]==0.8}0.02{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.053{elsif nozzle_diameter[filament_extruder_id]==0.5}0.042{elsif nozzle_diameter[filament_extruder_id]==0.6}0.032{elsif nozzle_diameter[filament_extruder_id]==0.8}0.018{elsif nozzle_diameter[filament_extruder_id]==0.25}0.18{elsif nozzle_diameter[filament_extruder_id]==0.3}0.1{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_wipe": [ + "1" + ], + "filament_z_hop": [ + "1.5" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "5" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "idle_temperature": [ + "130" + ], + "inherits": "fdm_filament_pet", + "instantiation": "true", + "name": "Prusament PETG @CORE One", + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "overhang_fan_speed": [ + "60" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "9" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json new file mode 100644 index 0000000000..ff3247179c --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle" + ], + "filament_id": "Prusament PLA @CORE One 0.6", + "filament_max_volumetric_speed": [ + "15.5" + ], + "from": "system", + "inherits": "Prusament PLA @CORE One", + "instantiation": "true", + "name": "Prusament PLA @CORE One 0.6", + "nozzle_temperature": [ + "220" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json new file mode 100644 index 0000000000..c082f445f1 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json @@ -0,0 +1,18 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle" + ], + "filament_id": "Prusament PLA @CORE One 0.8", + "filament_max_volumetric_speed": [ + "19" + ], + "from": "system", + "inherits": "Prusament PLA @CORE One", + "instantiation": "true", + "name": "Prusament PLA @CORE One 0.8", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "17" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json new file mode 100644 index 0000000000..25d74f9ce9 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json @@ -0,0 +1,21 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.4 nozzle" + ], + "filament_id": "Prusament PLA @CORE One HF 0.4", + "filament_max_volumetric_speed": [ + "24" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PLA @CORE One", + "instantiation": "true", + "name": "Prusament PLA @CORE One HF 0.4", + "nozzle_temperature": [ + "230" + ], + "setting_id": "GFSA04", + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json new file mode 100644 index 0000000000..b6a2545187 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json @@ -0,0 +1,24 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.5 nozzle" + ], + "filament_id": "Prusament PLA @CORE One HF 0.5", + "filament_max_volumetric_speed": [ + "27" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PLA @CORE One", + "instantiation": "true", + "name": "Prusament PLA @CORE One HF 0.5", + "nozzle_temperature": [ + "230" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "11" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json new file mode 100644 index 0000000000..053c363355 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusament PLA @CORE One HF 0.6", + "filament_max_volumetric_speed": [ + "30" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PLA @CORE One", + "instantiation": "true", + "name": "Prusament PLA @CORE One HF 0.6", + "nozzle_temperature": [ + "230" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json new file mode 100644 index 0000000000..d74cc3b895 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json @@ -0,0 +1,27 @@ +{ + "compatible_printers": [ + "Prusa CORE One HF 0.8 nozzle" + ], + "filament_id": "Prusament PLA @CORE One HF 0.8", + "filament_max_volumetric_speed": [ + "37" + ], + "filament_start_gcode": [ + "M572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.026{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "from": "system", + "inherits": "Prusament PLA @CORE One", + "instantiation": "true", + "name": "Prusament PLA @CORE One HF 0.8", + "nozzle_temperature": [ + "230" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "19" + ], + "slow_down_min_speed": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json new file mode 100644 index 0000000000..91f29889cc --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json @@ -0,0 +1,102 @@ +{ + "chamber_temperature": [ + "20" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "85" + ], + "filament_cost": [ + "27.99" + ], + "filament_density": [ + "1.24" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusament PLA @CORE One", + "filament_max_volumetric_speed": [ + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.07{elsif nozzle_diameter[filament_extruder_id]==0.35}0.06{elsif nozzle_diameter[filament_extruder_id]==0.6}0.03{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.025{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.014{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "idle_temperature": [ + "150" + ], + "inherits": "fdm_filament_pla", + "instantiation": "true", + "name": "Prusament PLA @CORE One", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json new file mode 100644 index 0000000000..2bec736e09 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json @@ -0,0 +1,22 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle", + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusament PVB @CORE One 0.6", + "filament_max_volumetric_speed": [ + "15.5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "from": "system", + "inherits": "Prusament PVB @CORE One", + "instantiation": "true", + "name": "Prusament PVB @CORE One 0.6", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json new file mode 100644 index 0000000000..965679c344 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json @@ -0,0 +1,28 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle", + "Prusa CORE One HF 0.8 nozzle" + ], + "filament_id": "Prusament PVB @CORE One 0.8", + "filament_max_volumetric_speed": [ + "19" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "from": "system", + "inherits": "Prusament PVB @CORE One", + "instantiation": "true", + "name": "Prusament PVB @CORE One 0.8", + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "17" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json new file mode 100644 index 0000000000..5865b7dc40 --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json @@ -0,0 +1,104 @@ +{ + "chamber_temperature": [ + "20" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle", + "Prusa CORE One HF 0.4 nozzle", + "Prusa CORE One HF 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "85" + ], + "filament_cost": [ + "49.98" + ], + "filament_density": [ + "1.09" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusament PVB @CORE One", + "filament_max_volumetric_speed": [ + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "35" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "1" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.07{elsif nozzle_diameter[filament_extruder_id]==0.35}0.06{elsif nozzle_diameter[filament_extruder_id]==0.6}0.03{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.025{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.014{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PVB" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "idle_temperature": [ + "150" + ], + "inherits": "fdm_filament_pvb", + "instantiation": "true", + "name": "Prusament PVB @CORE One", + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json new file mode 100644 index 0000000000..0491f723ad --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.6 nozzle", + "Prusa CORE One HF 0.6 nozzle" + ], + "filament_id": "Prusament rPLA @CORE One 0.6", + "filament_max_volumetric_speed": [ + "14" + ], + "from": "system", + "inherits": "Prusament rPLA @CORE One", + "instantiation": "true", + "name": "Prusament rPLA @CORE One 0.6", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "15" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json new file mode 100644 index 0000000000..d96cc4868f --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json @@ -0,0 +1,19 @@ +{ + "compatible_printers": [ + "Prusa CORE One 0.8 nozzle", + "Prusa CORE One HF 0.8 nozzle" + ], + "filament_id": "Prusament rPLA @CORE One 0.8", + "filament_max_volumetric_speed": [ + "14" + ], + "from": "system", + "inherits": "Prusament rPLA @CORE One", + "instantiation": "true", + "name": "Prusament rPLA @CORE One 0.8", + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "17" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json new file mode 100644 index 0000000000..ad6fb027bd --- /dev/null +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json @@ -0,0 +1,104 @@ +{ + "chamber_temperature": [ + "20" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Prusa CORE One 0.25 nozzle", + "Prusa CORE One 0.3 nozzle", + "Prusa CORE One 0.4 nozzle", + "Prusa CORE One 0.5 nozzle", + "Prusa CORE One HF 0.4 nozzle", + "Prusa CORE One HF 0.5 nozzle" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "85" + ], + "filament_cost": [ + "37.49" + ], + "filament_density": [ + "1.24" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_id": "Prusament rPLA @CORE One", + "filament_max_volumetric_speed": [ + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "M900 K{if nozzle_diameter[filament_extruder_id]==0.4}0.05{elsif nozzle_diameter[filament_extruder_id]==0.25}0.14{elsif nozzle_diameter[filament_extruder_id]==0.3}0.07{elsif nozzle_diameter[filament_extruder_id]==0.35}0.06{elsif nozzle_diameter[filament_extruder_id]==0.6}0.03{elsif nozzle_diameter[filament_extruder_id]==0.5}0.035{elsif nozzle_diameter[filament_extruder_id]==0.8}0.015{else}0{endif} ; Filament gcode\n\n{if printer_notes=~/.*(MK4IS|XLIS|MK4S|MK3.9S|CORE One).*/}\nM572 S{if nozzle_diameter[filament_extruder_id]==0.4}0.036{elsif nozzle_diameter[filament_extruder_id]==0.5}0.025{elsif nozzle_diameter[filament_extruder_id]==0.6}0.022{elsif nozzle_diameter[filament_extruder_id]==0.8}0.014{elsif nozzle_diameter[filament_extruder_id]==0.25}0.12{elsif nozzle_diameter[filament_extruder_id]==0.3}0.08{else}0{endif} ; Filament gcode\n{endif}\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Prusa Polymers" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Slope Lift" + ], + "from": "system", + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "idle_temperature": [ + "150" + ], + "inherits": "fdm_filament_pla", + "instantiation": "true", + "name": "Prusament rPLA @CORE One", + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "setting_id": "GFSA04", + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "type": "filament" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/filament/fdm_filament_flex.json b/resources/profiles/Prusa/filament/fdm_filament_flex.json new file mode 100644 index 0000000000..c69f9206ef --- /dev/null +++ b/resources/profiles/Prusa/filament/fdm_filament_flex.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "fdm_filament_flex", + "from": "system", + "instantiation": "false", + "inherits": "fdm_filament_common", + "filament_id": "GFU99", + "hot_plate_temp_initial_layer" : [ + "50" + ], + "hot_plate_temp" : [ + "50" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "2.5" + ], + "filament_type": [ + "FLEX" + ], + "filament_density": [ + "1.22" + ], + "filament_cost": [ + "20" + ], + "filament_retraction_length": [ + "2.5" + ], + "filament_retraction_speed": [ + "60" + ], + "filament_deretraction_speed": [ + "20" + ], + "filament_retraction_minimum_travel": [ + "2" + ], + "filament_wipe": "0", + "idle_temperature": "70", + "nozzle_temperature_initial_layer": [ + "230" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "30" + ], + "overhang_fan_speed": [ + "80" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "nozzle_temperature": [ + "230" + ], + "filament_start_gcode": [ + "M900 K0 ; Filament gcode\n\nM142 S36 ; set heatbreak target temp" + ], + "filament_end_gcode": [ + "; Filament-specific end gcode" + ] +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json new file mode 100644 index 0000000000..552d867d46 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json @@ -0,0 +1,26 @@ +{ + "default_print_profile": "0.12mm STRUCTURAL @CORE One 0.25", + "from": "system", + "inherits": "Prusa CORE One HF 0.4 nozzle", + "instantiation": "true", + "machine_max_jerk_x": [ + "8", + "8" + ], + "machine_max_jerk_y": [ + "8", + "8" + ], + "max_layer_height": "0.15", + "min_layer_height": "0.05", + "name": "Prusa CORE One 0.25 nozzle", + "nozzle_diameter": [ + "0.25" + ], + "printer_model": "Prusa CORE One", + "printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nPG\nNO_TEMPLATES", + "printer_variant": "0.25", + "retraction_length": "0.8", + "type": "machine", + "z_hop": "0.15" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json new file mode 100644 index 0000000000..9b06dcfeb7 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json @@ -0,0 +1,26 @@ +{ + "default_print_profile": "0.16mm STRUCTURAL @CORE One 0.3", + "from": "system", + "inherits": "Prusa CORE One HF 0.4 nozzle", + "instantiation": "true", + "machine_max_jerk_x": [ + "8", + "8" + ], + "machine_max_jerk_y": [ + "8", + "8" + ], + "max_layer_height": "0.22", + "min_layer_height": "0.05", + "name": "Prusa CORE One 0.3 nozzle", + "nozzle_diameter": [ + "0.3" + ], + "printer_model": "Prusa CORE One", + "printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nPG\nNO_TEMPLATES", + "printer_variant": "0.3", + "retraction_length": "0.7", + "type": "machine", + "z_hop": "0.15" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json new file mode 100644 index 0000000000..ab4b10902a --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json @@ -0,0 +1,15 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One", + "default_print_profile": "0.20mm SPEED @CORE One 0.4", + "from": "system", + "inherits": "Prusa CORE One HF 0.4 nozzle", + "instantiation": "true", + "name": "Prusa CORE One 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Prusa CORE One", + "printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nPG\nNO_TEMPLATES", + "printer_variant": "0.4", + "type": "machine" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json new file mode 100644 index 0000000000..677fcf0848 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json @@ -0,0 +1,15 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One", + "default_print_profile": "0.20mm SPEED @CORE One 0.5", + "from": "system", + "inherits": "Prusa CORE One HF 0.5 nozzle", + "instantiation": "true", + "name": "Prusa CORE One 0.5 nozzle", + "nozzle_diameter": [ + "0.5" + ], + "printer_model": "Prusa CORE One", + "printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nPG\nNO_TEMPLATES", + "printer_variant": "0.5", + "type": "machine" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json new file mode 100644 index 0000000000..263f4a2c04 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One 0.6", + "default_print_profile": "0.25mm SPEED @CORE One 0.6", + "from": "system", + "inherits": "Prusa CORE One HF 0.6 nozzle", + "instantiation": "true", + "name": "Prusa CORE One 0.6 nozzle", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Prusa CORE One", + "printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nPG\nNO_TEMPLATES", + "printer_variant": "0.6", + "type": "machine" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json new file mode 100644 index 0000000000..f5bc547da2 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json @@ -0,0 +1,15 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One 0.8", + "default_print_profile": "0.40mm QUALITY @CORE One 0.8", + "from": "system", + "inherits": "Prusa CORE One HF 0.8 nozzle", + "instantiation": "true", + "name": "Prusa CORE One 0.8 nozzle", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Prusa CORE One", + "printer_notes": "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nPG\nNO_TEMPLATES", + "printer_variant": "0.8", + "type": "machine" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json new file mode 100644 index 0000000000..2bfa205bf7 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json @@ -0,0 +1,132 @@ +{ + "before_layer_change_gcode": [ + ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n{if layer_z > 150}\nM201 X{interpolate_table(layer_z, (0,7000), (150,7000), (200,4000), (270,2000))} Y{interpolate_table(layer_z, (0,7000), (150,7000), (200,4000), (270,2000))}\n{endif}\n" + ], + "change_filament_gcode": [ + "M600\nG1 E0.3 F1500 ; prime after color change" + ], + "default_filament_profile": "Prusament PLA @CORE One HF 0.4", + "default_print_profile": "0.20mm SPEED @CORE One 0.4", + "deretraction_speed": "25", + "emit_machine_limits_to_gcode": "1", + "extruder_clearance_height_to_lid": "50", + "extruder_clearance_height_to_rod": "33", + "extruder_clearance_radius": "75", + "from": "system", + "printer_structure": "corexy", + "gcode_flavor": "marlin2", + "host_type": "prusalink", + "inherits": "fdm_machine_common", + "instantiation": "true", + "layer_change_gcode": [ + ";AFTER_LAYER_CHANGE\n;[layer_z]" + ], + "machine_end_gcode": [ + "{if layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+1, max_print_height)} F720 ; move print head up{endif}\nG1 E-1 F2400 ; additional retraction\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM141 S0 ; disable chamber control\nM107 ; turn off fan\nG1 X242 Y-9 F10200 ; park\nG4 ; wait\nM572 S0 ; reset PA\nM84 X Y E ; disable motors\n; max_layer_z = [max_layer_z]" + ], + "machine_max_acceleration_e": [ + "5000", + "2500" + ], + "machine_max_acceleration_extruding": [ + "7000", + "2500" + ], + "machine_max_acceleration_retracting": [ + "2500", + "1200" + ], + "machine_max_acceleration_travel": [ + "7000", + "2500" + ], + "machine_max_acceleration_x": [ + "10000", + "2500" + ], + "machine_max_acceleration_y": [ + "10000", + "2500" + ], + "machine_max_acceleration_z": [ + "400", + "200" + ], + "machine_max_jerk_e": [ + "10", + "10" + ], + "machine_max_jerk_x": [ + "10", + "8" + ], + "machine_max_jerk_y": [ + "10", + "8" + ], + "machine_max_jerk_z": [ + "2", + "2" + ], + "machine_max_speed_e": [ + "100", + "100" + ], + "machine_max_speed_x": [ + "350", + "160" + ], + "machine_max_speed_y": [ + "350", + "160" + ], + "machine_max_speed_z": [ + "12", + "12" + ], + "machine_pause_gcode": "M601", + "machine_start_gcode": [ + "; --- Printer Initialization and Checks ---\n\nM17 ; enable steppers\nM862.1 P[nozzle_diameter] A{(printer_notes=~/.*ABRASIVE_NOZZLE.*/ ? 1 : 0)} F{(printer_notes=~/.*HF_NOZZLE.*/ ? 1 : 0)} ; nozzle check\nM862.3 P \"COREONE\" ; printer model check\nM862.5 P2 ; g-code level check\nM862.6 P\"Input shaper\" ; FW feature check\nM115 U6.3.0+10073\n\n; --- Print Area and Coordinate System ---\n\nM555 X{(min(print_bed_max[0], first_layer_print_min[0] + 32) - 32)} Y{(max(0, first_layer_print_min[1]) - 4)} W{((min(print_bed_max[0], max(first_layer_print_min[0] + 32, first_layer_print_max[0])))) - ((min(print_bed_max[0], first_layer_print_min[0] + 32) - 32))} H{((first_layer_print_max[1])) - ((max(0, first_layer_print_min[1]) - 4))} ; define print area\n\nG90 ; use absolute coordinates\nM83 ; extruder in relative mode\n\n; --- Preparation ---\n\n{if chamber_temperature[initial_tool] > 35} \n; we need to preheat the chamber\nM140 S115 ; set bed temp for chamber heating\n{else} \n; just set the selected bed temp otherwise\nM140 S[first_layer_bed_temperature] ; set bed temp\n{endif}\n\nM109 R{((filament_notes[0]=~/.*HT_MBL10.*/) ? (first_layer_temperature[0] - 10) : (filament_type[0] == \"PC\" or filament_type[0] == \"PA\") ? (first_layer_temperature[0] - 25) : (filament_type[0] == \"FLEX\") ? 210 : 170)} ; wait for temp\n\nM84 E ; turn off E motor\n\nG28 ; home all axes without mesh bed leveling\n\n\n; -- Chamber Temperature Control --\n{if chamber_temperature[initial_tool] > 35} ; if we need to heat the chamber\n; min chamber temp section\nM104 T{initial_tool} S{if idle_temperature[initial_tool] == 0}100{else}{idle_temperature[initial_tool]}{endif} ; set idle temp\nG1 Z10 F720 ; set bed position\nG1 X242 Y-9 F4800 ; set print head position\nM191 S{chamber_temperature[initial_tool]} ; wait for minimal chamber temp\nM141 S0 ; set nominal chamber temp\nM107\nM140 S[first_layer_bed_temperature] ; set bed temp\n\n{else}\nM141 S{if chamber_temperature[initial_tool] == 0}20{else}{chamber_temperature[initial_tool]}{endif} ; set nominal chamber temp\n{endif}\n\n{if first_layer_bed_temperature[initial_tool]<=60}M106 S70{endif}\nG0 Z40 F10000\nM104 T{initial_tool} S{if idle_temperature[initial_tool] == 0}100{else}{idle_temperature[initial_tool]}{endif}\nM190 R[first_layer_bed_temperature] ; wait for bed temp\nM107\n\nG29 G ; absorb heat\n\nM109 R{((filament_notes[0]=~/.*HT_MBL10.*/) ? (first_layer_temperature[0] - 10) : (filament_type[0] == \"PC\" or filament_type[0] == \"PA\") ? (first_layer_temperature[0] - 25) : (filament_type[0] == \"FLEX\") ? 210 : 170)} ; wait for MBL temp\n\nM302 S160 ; lower cold extrusion limit to 160C\n\n{if filament_type[initial_tool]==\"FLEX\"}\nG1 E-4 F2400 ; retraction\n{else}\nG1 E-2 F2400 ; retraction\n{endif}\n\nM84 E ; turn off E motor\n\n; --- Mesh Bed Leveling (MBL) ---\n\nG29 P9 X208 Y-2.5 W32 H4 ; limited MBL\nM84 E ; turn off E motor\n\nG29 P1 ; invalidate MBL and probe print area\nG29 P1 X150 Y0 W100 H20 C ; probe near purge area\nG29 P3.2 ; MBL interpolation\nG29 P3.13 ; MBL extrapolation outside probe area\nG29 A ; activate MBL\n\n; --- Preparation for Purge Line ---\n\nM104 S{first_layer_temperature[initial_extruder]}\nG0 X249 Y-2.5 Z15 F4800 ; move away and ready for the purge\nM109 S{first_layer_temperature[initial_extruder]}\n\nG92 E0 ; reset extruder position\nM569 S0 E ; set spreadcycle mode for extruder\n\n; --- Extrude Purge Line ---\n\nG92 E0 ; reset extruder position\nG1 E{(filament_type[0] == \"FLEX\" ? 4 : 2)} F2400 ; deretraction after the initial one\nG0 E5 X235 Z0.2 F500 ; purge\nG0 X225 E4 F500 ; purge\nG0 X215 E4 F650 ; purge\nG0 X205 E4 F800 ; purge\nG0 X202 Z0.05 F8000 ; wipe, close to bed\nG0 X199 Z0.2 F8000 ; wipe, quickly away from bed\n\nG92 E0 ; reset extruder position\nM221 S100 ; set flow to 100%" + ], + "max_layer_height": "0.30", + "min_layer_height": "0.07", + "name": "Prusa CORE One HF 0.4 nozzle", + "nozzle_diameter": [ + "0.4" + ], + "printable_area": [ + "0x0", + "250x0", + "250x220", + "0x220" + ], + "printable_height": "270", + "printer_model": "Prusa CORE One HF", + "printer_notes": [ + "Don't remove the following keywords! These keywords are used in the \"compatible printer\" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_MODEL_COREONE\nHF_NOZZLE\nPG\nNO_TEMPLATES" + ], + "printer_variant": "0.4", + "retract_before_wipe": "80", + "retract_length_toolchange": "0", + "retract_lift_above": "0", + "retract_lift_below": "269", + "retract_when_changing_layer": "1", + "retraction_length": "0.7", + "retraction_minimum_travel": "1.5", + "retraction_speed": "45", + "single_extruder_multi_material": "0", + "thumbnails": [ + "16x16/QOI", + "313x173/QOI", + "440x240/QOI", + "480x240/QOI", + "640x480/PNG" + ], + "travel_slope": "1", + "type": "machine", + "use_firmware_retraction": "0", + "use_relative_e_distances": "1", + "wipe": "0", + "z_hop": "0.2", + "z_hop_types": "Slope Lift" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json new file mode 100644 index 0000000000..6a34054939 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json @@ -0,0 +1,19 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One HF 0.5", + "default_print_profile": "0.20mm SPEED @CORE One HF 0.5", + "deretraction_speed": "25", + "from": "system", + "inherits": "Prusa CORE One HF 0.4 nozzle", + "instantiation": "true", + "max_layer_height": "0.32", + "min_layer_height": "0.07", + "name": "Prusa CORE One HF 0.5 nozzle", + "nozzle_diameter": [ + "0.5" + ], + "printer_model": "Prusa CORE One HF", + "printer_variant": "0.5", + "retraction_length": "0.7", + "type": "machine", + "wipe": "1" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json new file mode 100644 index 0000000000..20cb6bb37e --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json @@ -0,0 +1,19 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One HF 0.6", + "default_print_profile": "0.32mm SPEED @CORE One HF 0.6", + "deretraction_speed": "25", + "from": "system", + "inherits": "Prusa CORE One HF 0.4 nozzle", + "instantiation": "true", + "max_layer_height": "0.40", + "min_layer_height": "0.15", + "name": "Prusa CORE One HF 0.6 nozzle", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Prusa CORE One HF", + "printer_variant": "0.6", + "retraction_length": "0.7", + "type": "machine", + "wipe": "1" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json new file mode 100644 index 0000000000..c28fa6fafb --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json @@ -0,0 +1,22 @@ +{ + "default_filament_profile": "Prusament PLA @CORE One HF 0.8", + "default_print_profile": "0.40mm STRUCTURAL @CORE One HF 0.8", + "deretraction_speed": "15", + "from": "system", + "inherits": "Prusa CORE One HF 0.4 nozzle", + "instantiation": "true", + "max_layer_height": "0.6", + "min_layer_height": "0.2", + "name": "Prusa CORE One HF 0.8 nozzle", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Prusa CORE One HF", + "printer_variant": "0.8", + "retract_before_wipe": "50", + "retraction_length": "0.6", + "retraction_speed": "15", + "type": "machine", + "wipe": "1", + "z_hop": "0.25" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF.json b/resources/profiles/Prusa/machine/Prusa CORE One HF.json new file mode 100644 index 0000000000..f2a54e3c1f --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF.json @@ -0,0 +1,12 @@ +{ + "bed_model": "coreone_bed.stl", + "bed_texture": "coreone.svg", + "default_materials": "Prusa Generic ABS @CORE One;Prusa Generic ASA @CORE One;Prusa Generic PETG @CORE One;Prusa Generic PLA @CORE One;Prusa Generic PLA Silk @CORE One;Prusa Generic TPU @CORE One", + "family": "Prusa", + "hotend_model": "", + "machine_tech": "FFF", + "model_id": "Prusa_CORE_One_HF", + "name": "Prusa CORE One HF", + "nozzle_diameter": "0.4;0.5;0.6;0.8", + "type": "machine_model" +} diff --git a/resources/profiles/Prusa/machine/Prusa CORE One.json b/resources/profiles/Prusa/machine/Prusa CORE One.json new file mode 100644 index 0000000000..037b830712 --- /dev/null +++ b/resources/profiles/Prusa/machine/Prusa CORE One.json @@ -0,0 +1,12 @@ +{ + "bed_model": "coreone_bed.stl", + "bed_texture": "coreone.svg", + "default_materials": "Prusa Generic ABS @CORE One;Prusa Generic ASA @CORE One;Prusa Generic PETG @CORE One;Prusa Generic PLA @CORE One;Prusa Generic PLA Silk @CORE One;Prusa Generic TPU @CORE One", + "family": "Prusa", + "hotend_model": "", + "machine_tech": "FFF", + "model_id": "Prusa_CORE_One", + "name": "Prusa CORE One", + "nozzle_diameter": "0.25;0.3;0.4;0.5;0.6;0.8", + "type": "machine_model" +} diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json index bdd750314b..0becded246 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json @@ -95,6 +95,9 @@ "z_hop": [ "0.2" ], + "fan_speedup_time": "0.2", + "fan_speedup_overhangs": "1", + "fan_kickstart": "0", "host_type": "prusalink", "printable_height": "180", "machine_end_gcode": "{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+2, max_print_height)} F720 ; Move print head up{endif}\nG1 X170 Y170 F4200 ; park print head\n{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+50, max_print_height)} F720 ; Move print head further up{endif}\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM221 S100 ; reset flow\nM572 S0 ; reset PA\nM569 S1 X Y ; reset to stealthchop for X Y\nM84 ; disable motors\n; max_layer_z = [max_layer_z]", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS.json b/resources/profiles/Prusa/machine/Prusa MINIIS.json index 5735ad018c..85aad5d9b5 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS.json @@ -1,6 +1,6 @@ { "type": "machine_model", - "name": "Prusa MINI", + "name": "Prusa MINI IS", "model_id": "MINI", "nozzle_diameter": "0.25;0.4;0.6;0.8", "machine_tech": "FFF", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json index 0d0af0fdf4..efdd7a82de 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json @@ -95,6 +95,9 @@ "z_hop": [ "0.2" ], + "fan_speedup_time": "0.2", + "fan_speedup_overhangs": "1", + "fan_kickstart": "0", "host_type": "prusalink", "printable_height": "210", "machine_end_gcode": "{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+1, max_print_height)} F720 ; Move print head up{endif}\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X241 Y201 F3600 ; park\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+23, max_print_height)} F300 ; Move print head up{endif}\nG4 ; wait\nM572 S0 ; reset PA\nM593 X T2 F0 ; disable IS\nM593 Y T2 F0 ; disable IS\nM84 X Y E ; disable motors\n; max_layer_z = [max_layer_z]", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json index b678114c03..d0c7bccead 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json @@ -4,7 +4,7 @@ "name": "Prusa XL 0.3 nozzle", "from": "system", "instantiation": "true", - "inherits": "fdm_machine_common", + "inherits": "fdm_machine_common_xl", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", "default_filament_profile": "Prusa Generic PLA @XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json index 2fc6b341b5..a61555bf9f 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json @@ -10,6 +10,8 @@ "default_filament_profile": "Prusa Generic PLA @XL 5T", "default_print_profile": "0.15mm Speed @Prusa XL 5T 0.25", "printer_variant": "0.25", + "max_layer_height": "0.15", + "min_layer_height": "0.05", "nozzle_diameter": [ "0.25", "0.25", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json index a495d26349..99e42ae4e3 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json @@ -10,6 +10,8 @@ "default_filament_profile": "Prusa Generic PLA @XL 5T", "default_print_profile": "0.20mm Speed @Prusa XL 5T 0.3", "printer_variant": "0.3", + "max_layer_height": "0.22", + "min_layer_height": "0.05", "nozzle_diameter": [ "0.3", "0.3", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json index 69e355ea2f..f7e51b0848 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json @@ -10,6 +10,7 @@ "default_filament_profile": "Prusa Generic PLA @XL 5T", "default_print_profile": "0.25mm Speed @Prusa XL 5T 0.5", "printer_variant": "0.5", + "max_layer_height": "0.32", "nozzle_diameter": [ "0.5", "0.5", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json index 03ef5d97ff..7961d12142 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json @@ -10,6 +10,8 @@ "default_filament_profile": "Prusa Generic PLA @XL 5T", "default_print_profile": "0.32mm Speed @Prusa XL 5T 0.6", "printer_variant": "0.6", + "max_layer_height": "0.4", + "min_layer_height": "0.15", "nozzle_diameter": [ "0.6", "0.6", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json index 27656c4072..6249fac5aa 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json @@ -10,6 +10,8 @@ "default_filament_profile": "Prusa Generic PLA @XL 5T", "default_print_profile": "0.40mm Quality @Prusa XL 5T 0.8", "printer_variant": "0.8", + "max_layer_height": "0.6", + "min_layer_height": "0.2", "nozzle_diameter": [ "0.8", "0.8", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T.json b/resources/profiles/Prusa/machine/Prusa XL 5T.json index 81486d711a..cc5ece5183 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T.json @@ -8,5 +8,5 @@ "bed_model": "Prusa XL_bed.stl", "bed_texture": "Prusa XL.svg", "hotend_model": "", - "default_materials": "Prusa Generic PLA @XL 5T;Prusament PLA @XL 5T;Prusament rPLA @XL 5T;Prusa Generic PETG @XL 5T;Prusament PETG @XL 5T;Prusa Generic ABS @XL 5T;Prusament ASA @XL 5T;Prusament PC Blend @XL 5T;Prusament PC-CF @XL 5T;Prusament PVB @XL 5T;Prusament PA-CF @XL 5T" + "default_materials": "Prusa Generic PLA @XL 5T;Prusament PLA @XL 5T;Prusament rPLA @XL 5T;Prusa Generic PETG @XL 5T;Prusament PETG @XL 5T;Prusa Generic ABS @XL 5T;Prusament ASA @XL 5T;Prusament PC Blend @XL 5T;Prusament PC-CF @XL 5T;Prusament PVB @XL 5T;Prusament PA-CF @XL 5T;Prusa Generic FLEX @XL 5T" } diff --git a/resources/profiles/Prusa/machine/Prusa XL.json b/resources/profiles/Prusa/machine/Prusa XL.json index eb8487609c..4525a02841 100644 --- a/resources/profiles/Prusa/machine/Prusa XL.json +++ b/resources/profiles/Prusa/machine/Prusa XL.json @@ -8,5 +8,5 @@ "bed_model": "Prusa XL_bed.stl", "bed_texture": "Prusa XL.svg", "hotend_model": "", - "default_materials": "Prusa Generic PLA @XL;Prusament PLA @XL;Prusament rPLA @XL;Prusa Generic PETG @XL;Prusament PETG @XL;Prusa Generic ABS @XL;Prusament ASA @XL;Prusament PC Blend @XL;Prusament PC-CF @XL;Prusament PVB @XL;Prusament PA-CF @XL" + "default_materials": "Prusa Generic PLA @XL;Prusament PLA @XL;Prusament rPLA @XL;Prusa Generic PETG @XL;Prusament PETG @XL;Prusa Generic ABS @XL;Prusament ASA @XL;Prusament PC Blend @XL;Prusament PC-CF @XL;Prusament PVB @XL;Prusament PA-CF @XL;Prusa Generic FLEX @XL" } diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json new file mode 100644 index 0000000000..f05bb7d048 --- /dev/null +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json @@ -0,0 +1,14 @@ +{ + "from": "system", + "inherits": "0.05mm DETAIL @MK4S 0.25", + "instantiation": "true", + "name": "0.05mm DETAIL @CORE One 0.25", + "type": "process", + "travel_speed": "350", + "travel_acceleration": "4000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "45", + "initial_layer_speed": "25", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json index a43f28e555..cc47890376 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json @@ -19,6 +19,7 @@ "top_shell_layers": "13", "bottom_shell_thickness": "0.5", "bottom_shell_layers": "10", + "support_top_z_distance": "0.09", "compatible_printers": [ "Prusa MK3.5 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json new file mode 100644 index 0000000000..8225707d8a --- /dev/null +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json @@ -0,0 +1,14 @@ +{ + "from": "system", + "inherits": "0.07mm DETAIL @MK4S 0.25", + "instantiation": "true", + "name": "0.07mm DETAIL @CORE One 0.25", + "type": "process", + "travel_speed": "350", + "travel_acceleration": "4000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "45", + "initial_layer_speed": "25", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json index 51e281895e..f64433aa59 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json @@ -21,6 +21,7 @@ "bottom_shell_layers": "8", "bridge_speed": "30", "internal_solid_infill_speed": "140", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json index b1217f9fd8..89f52f17ba 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json @@ -21,6 +21,7 @@ "bottom_shell_layers": "8", "bridge_speed": "30", "internal_solid_infill_speed": "140", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json new file mode 100644 index 0000000000..ac3f8ee878 --- /dev/null +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json @@ -0,0 +1,17 @@ +{ + "from": "system", + "inherits": "0.10mm FAST DETAIL @MK4S 0.4", + "instantiation": "true", + "name": "0.10mm FAST DETAIL @CORE One 0.4", + "type": "process", + "inner_wall_acceleration": "3000", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json new file mode 100644 index 0000000000..6e70f3275f --- /dev/null +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json @@ -0,0 +1,17 @@ +{ + "from": "system", + "inherits": "0.10mm STRUCTURAL @MK4S 0.5", + "instantiation": "true", + "name": "0.10mm STRUCTURAL @CORE One 0.5", + "type": "process", + "inner_wall_speed": "80", + "small_perimeter_speed": "45", + "outer_wall_speed": "45", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json index 220e8c33d6..13ebaaabd1 100644 --- a/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json @@ -24,6 +24,7 @@ "internal_solid_infill_acceleration": "3000", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json index 8a1594f17b..7d5cb0cadc 100644 --- a/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json @@ -24,6 +24,7 @@ "internal_solid_infill_acceleration": "3000", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json new file mode 100644 index 0000000000..3329c01ba7 --- /dev/null +++ b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json @@ -0,0 +1,14 @@ +{ + "from": "system", + "inherits": "0.12mm SPEED @MK4S 0.25", + "instantiation": "true", + "name": "0.12mm SPEED @CORE One 0.25", + "type": "process", + "travel_acceleration": "4000", + "travel_speed": "350", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "45", + "initial_layer_speed": "25", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json new file mode 100644 index 0000000000..512b0c8bde --- /dev/null +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json @@ -0,0 +1,14 @@ +{ + "from": "system", + "inherits": "0.12mm STRUCTURAL @MK4S 0.25", + "instantiation": "true", + "name": "0.12mm STRUCTURAL @CORE One 0.25", + "type": "process", + "travel_speed": "350", + "travel_acceleration": "4000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "45", + "initial_layer_speed": "25", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json new file mode 100644 index 0000000000..bcc5440ab9 --- /dev/null +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json @@ -0,0 +1,16 @@ +{ + "from": "system", + "inherits": "0.12mm STRUCTURAL @MK4S 0.3", + "instantiation": "true", + "name": "0.12mm STRUCTURAL @CORE One 0.3", + "type": "process", + "sparse_infill_acceleration": "5000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "60", + "initial_layer_speed": "45", + "top_surface_acceleration": "1500", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.3" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json index 983535f48d..3a2110281a 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json @@ -31,6 +31,7 @@ "overhang_1_4_speed": "60", "internal_solid_infill_acceleration": "2500", "sparse_infill_acceleration": "2500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json index 56b2b36d05..cd3580cf95 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json @@ -31,6 +31,7 @@ "overhang_1_4_speed": "60", "internal_solid_infill_acceleration": "2500", "sparse_infill_acceleration": "2500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json index 4192e7d5f7..15ecfb803c 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json @@ -36,6 +36,7 @@ "internal_solid_infill_acceleration": "2500", "sparse_infill_acceleration": "2500", "travel_acceleration": "3000", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json index a008f0ae0f..a9fcdd33e4 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json @@ -36,6 +36,7 @@ "internal_solid_infill_acceleration": "2500", "sparse_infill_acceleration": "2500", "travel_acceleration": "3000", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json new file mode 100644 index 0000000000..4e0594c83c --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json @@ -0,0 +1,36 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.15mm High Flow @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_miniis", + "line_width": "0.45", + "inner_wall_line_width": "0.45", + "outer_wall_line_width": "0.45", + "top_surface_line_width": "0.42", + "sparse_infill_line_width": "0.45", + "initial_layer_line_width": "0.5", + "internal_solid_infill_line_width": "0.45", + "support_line_width": "0.36", + "layer_height": "0.15", + "initial_layer_print_height": "0.20", + "top_shell_thickness": "0.7", + "top_shell_layers": "5", + "bottom_shell_thickness": "0.5", + "bottom_shell_layers": "4", + "bridge_speed": "45", + "default_acceleration": "3000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "3000", + "travel_acceleration": "4000", + "sparse_infill_acceleration": "4000", + "internal_solid_infill_acceleration": "3500", + "inner_wall_acceleration": "3500", + "outer_wall_acceleration": "2500", + "bridge_acceleration": "1500", + "support_top_z_distance": "0.1", + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json new file mode 100644 index 0000000000..6eb536ee28 --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json @@ -0,0 +1,36 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.15mm High Flow @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_MK3.5", + "line_width": "0.45", + "inner_wall_line_width": "0.45", + "outer_wall_line_width": "0.45", + "top_surface_line_width": "0.42", + "sparse_infill_line_width": "0.45", + "initial_layer_line_width": "0.5", + "internal_solid_infill_line_width": "0.45", + "support_line_width": "0.36", + "layer_height": "0.15", + "initial_layer_print_height": "0.20", + "top_shell_thickness": "0.7", + "top_shell_layers": "5", + "bottom_shell_thickness": "0.5", + "bottom_shell_layers": "4", + "bridge_speed": "45", + "default_acceleration": "3000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "3000", + "travel_acceleration": "4000", + "sparse_infill_acceleration": "4000", + "internal_solid_infill_acceleration": "3500", + "inner_wall_acceleration": "3500", + "outer_wall_acceleration": "2500", + "bridge_acceleration": "1500", + "support_top_z_distance": "0.1", + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ] +} diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json new file mode 100644 index 0000000000..424d46cb62 --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json @@ -0,0 +1,14 @@ +{ + "from": "system", + "inherits": "0.15mm SPEED @MK4S 0.25", + "instantiation": "true", + "name": "0.15mm SPEED @CORE One 0.25", + "type": "process", + "travel_acceleration": "4000", + "travel_speed": "350", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "45", + "initial_layer_speed": "25", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json new file mode 100644 index 0000000000..9ea602d2c5 --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.15mm SPEED @MK4S 0.4", + "instantiation": "true", + "name": "0.15mm SPEED @CORE One 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json new file mode 100644 index 0000000000..d776bd7d60 --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.15mm SPEED @MK4S HF0.4", + "instantiation": "true", + "name": "0.15mm SPEED @CORE One HF 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "60%", + "sparse_infill_speed": "300", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json new file mode 100644 index 0000000000..a6d6b27f1c --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json @@ -0,0 +1,14 @@ +{ + "from": "system", + "inherits": "0.15mm STRUCTURAL @MK4S 0.25", + "instantiation": "true", + "name": "0.15mm STRUCTURAL @CORE One 0.25", + "type": "process", + "travel_speed": "350", + "travel_acceleration": "4000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "45", + "initial_layer_speed": "25", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json new file mode 100644 index 0000000000..f038832344 --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.15mm STRUCTURAL @MK4S 0.4", + "instantiation": "true", + "name": "0.15mm STRUCTURAL @CORE One 0.4", + "type": "process", + "overhang_2_4_speed": "45", + "sparse_infill_speed": "120", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json new file mode 100644 index 0000000000..44f4113abf --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.15mm STRUCTURAL @MK4S 0.5", + "instantiation": "true", + "name": "0.15mm STRUCTURAL @CORE One 0.5", + "type": "process", + "overhang_2_4_speed": "45", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json new file mode 100644 index 0000000000..366df4bb73 --- /dev/null +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.15mm STRUCTURAL @MK4S 0.6", + "instantiation": "true", + "name": "0.15mm STRUCTURAL @CORE One 0.6", + "type": "process", + "inner_wall_speed": "80", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "70%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json index da4e58bc3b..894ea73da1 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json @@ -29,6 +29,7 @@ "internal_solid_infill_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json index 14bce20a50..1f47c68ef9 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json @@ -29,6 +29,7 @@ "internal_solid_infill_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json index 4516620647..09ec86c960 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json @@ -29,6 +29,7 @@ "internal_solid_infill_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json index 3f09b2a827..eae7030193 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json @@ -29,6 +29,7 @@ "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", "bridge_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json index 57c789f5bd..ac8014b1c9 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json @@ -29,6 +29,7 @@ "internal_solid_infill_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json index 52819af718..7c3efbb79d 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json @@ -37,6 +37,7 @@ "inner_wall_acceleration": "2500", "outer_wall_acceleration": "1500", "bridge_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json index 6d6abbfaf1..99f5f5c669 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json @@ -33,6 +33,7 @@ "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", "bridge_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json index bd75d3323b..dcd6cc9626 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json @@ -29,6 +29,7 @@ "internal_solid_infill_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.25 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json index 7223f04299..dc39f08bd7 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json @@ -37,6 +37,7 @@ "inner_wall_acceleration": "2500", "outer_wall_acceleration": "1500", "bridge_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json index 076ddb0e95..1910bba624 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json @@ -28,6 +28,7 @@ "internal_solid_infill_acceleration": "2500", "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", + "support_top_z_distance": "0.1", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json new file mode 100644 index 0000000000..b267ebede2 --- /dev/null +++ b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json @@ -0,0 +1,17 @@ +{ + "from": "system", + "inherits": "0.16mm SPEED @MK4S 0.3", + "instantiation": "true", + "name": "0.16mm SPEED @CORE One 0.3", + "type": "process", + "sparse_infill_acceleration": "6000", + "inner_wall_acceleration": "3000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "60", + "initial_layer_speed": "45", + "top_surface_acceleration": "1500", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.3" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json new file mode 100644 index 0000000000..22dd441fca --- /dev/null +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json @@ -0,0 +1,16 @@ +{ + "from": "system", + "inherits": "0.16mm STRUCTURAL @MK4S 0.3", + "instantiation": "true", + "name": "0.16mm STRUCTURAL @CORE One 0.3", + "type": "process", + "sparse_infill_acceleration": "6000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "60", + "initial_layer_speed": "45", + "top_surface_acceleration": "1500", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.3" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json new file mode 100644 index 0000000000..737420d1d2 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json @@ -0,0 +1,40 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm High Flow @MINIIS 0.6", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_miniis", + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ], + "layer_height": "0.20", + "initial_layer_print_height": "0.25", + "line_width": "0.68", + "inner_wall_line_width": "0.62", + "outer_wall_line_width": "0.62", + "top_surface_line_width": "0.5", + "sparse_infill_line_width": "0.62", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.5", + "wall_loops": "2", + "outer_wall_speed": "200", + "inner_wall_speed": "220", + "small_perimeter_speed": "170", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "top_surface_speed": "70", + "gap_infill_speed": "80", + "support_speed": "110", + "bridge_speed": "40", + "travel_speed": "300", + "default_acceleration": "2500", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "1500", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "overhang_1_4_speed": "45" +} diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json new file mode 100644 index 0000000000..0e4f6f4587 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json @@ -0,0 +1,19 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm High Flow @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_miniis", + "compatible_printers": [ + "Prusa MINIIS 0.4 nozzle" + ], + "line_width": "0.45", + "inner_wall_line_width": "0.45", + "outer_wall_line_width": "0.45", + "top_surface_line_width": "0.42", + "sparse_infill_line_width": "0.45", + "initial_layer_line_width": "0.5", + "internal_solid_infill_line_width": "0.45", + "support_line_width": "0.36" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json new file mode 100644 index 0000000000..3adc88d1cb --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json @@ -0,0 +1,40 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm High Flow @MK3.5 0.6", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_MK3.5", + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ], + "layer_height": "0.20", + "initial_layer_print_height": "0.25", + "line_width": "0.68", + "inner_wall_line_width": "0.62", + "outer_wall_line_width": "0.62", + "top_surface_line_width": "0.5", + "sparse_infill_line_width": "0.62", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.5", + "wall_loops": "2", + "outer_wall_speed": "200", + "inner_wall_speed": "220", + "small_perimeter_speed": "170", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "top_surface_speed": "70", + "gap_infill_speed": "80", + "support_speed": "110", + "bridge_speed": "40", + "travel_speed": "300", + "default_acceleration": "2500", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "1500", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "overhang_1_4_speed": "45" +} diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json new file mode 100644 index 0000000000..1e1c85214e --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json @@ -0,0 +1,39 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm High Flow @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_MK3.5", + "compatible_printers": [ + "Prusa MK3.5 0.4 nozzle" + ], + "layer_height": "0.20", + "initial_layer_print_height": "0.20", + "line_width": "0.45", + "inner_wall_line_width": "0.45", + "outer_wall_line_width": "0.45", + "top_surface_line_width": "0.42", + "sparse_infill_line_width": "0.45", + "initial_layer_line_width": "0.5", + "internal_solid_infill_line_width": "0.45", + "support_line_width": "0.36", + "wall_loops": "3", + "outer_wall_speed": "200", + "inner_wall_speed": "250", + "small_perimeter_speed": "170", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "top_surface_speed": "100", + "gap_infill_speed": "120", + "support_speed": "120", + "bridge_speed": "50", + "travel_speed": "300", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "4000", + "overhang_1_4_speed": "45" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json new file mode 100644 index 0000000000..2927f2bec1 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json @@ -0,0 +1,15 @@ +{ + "from": "system", + "inherits": "0.20mm SOLUBLE FULL @MK4S 0.4", + "instantiation": "true", + "name": "0.20mm SOLUBLE FULL @CORE One 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json new file mode 100644 index 0000000000..2d5c49f0ab --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json @@ -0,0 +1,15 @@ +{ + "from": "system", + "inherits": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", + "instantiation": "true", + "name": "0.20mm SOLUBLE INTERFACE @CORE One 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json new file mode 100644 index 0000000000..9334f02c5a --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json @@ -0,0 +1,17 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S 0.3", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One 0.3", + "type": "process", + "sparse_infill_acceleration": "6000", + "inner_wall_acceleration": "3000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "60", + "initial_layer_speed": "45", + "top_surface_acceleration": "1500", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.3" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json new file mode 100644 index 0000000000..1164c683e5 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S 0.4", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json new file mode 100644 index 0000000000..58c02160bd --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S 0.5", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One 0.5", + "type": "process", + "overhang_2_4_speed": "50", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5 and printer_notes!~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json new file mode 100644 index 0000000000..b0008c9731 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S 0.6", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "70%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes!~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json new file mode 100644 index 0000000000..7ded53e928 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S HF0.4", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One HF 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "60%", + "sparse_infill_speed": "300", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json new file mode 100644 index 0000000000..7b80b6d8eb --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S HF0.5", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One HF 0.5", + "type": "process", + "overhang_2_4_speed": "50", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json new file mode 100644 index 0000000000..d3c16c5a91 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.20mm SPEED @MK4S HF0.6", + "instantiation": "true", + "name": "0.20mm SPEED @CORE One HF 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "70%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json new file mode 100644 index 0000000000..b1c645dfc9 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json @@ -0,0 +1,16 @@ +{ + "from": "system", + "inherits": "0.20mm STRUCTURAL @MK4S 0.3", + "instantiation": "true", + "name": "0.20mm STRUCTURAL @CORE One 0.3", + "type": "process", + "sparse_infill_acceleration": "6000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "60", + "initial_layer_speed": "45", + "top_surface_acceleration": "1500", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.3" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json new file mode 100644 index 0000000000..66bc3b78cb --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.20mm STRUCTURAL @MK4S 0.4", + "instantiation": "true", + "name": "0.20mm STRUCTURAL @CORE One 0.4", + "type": "process", + "overhang_2_4_speed": "45", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json new file mode 100644 index 0000000000..ae49f33716 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.20mm STRUCTURAL @MK4S 0.5", + "instantiation": "true", + "name": "0.20mm STRUCTURAL @CORE One 0.5", + "type": "process", + "overhang_2_4_speed": "45", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json new file mode 100644 index 0000000000..a963c6c514 --- /dev/null +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.20mm STRUCTURAL @MK4S 0.6", + "instantiation": "true", + "name": "0.20mm STRUCTURAL @CORE One 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json new file mode 100644 index 0000000000..cb6c04cab6 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json @@ -0,0 +1,47 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.25mm High Flow @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_miniis", + "line_width": "0.68", + "inner_wall_line_width": "0.68", + "outer_wall_line_width": "0.68", + "top_surface_line_width": "0.55", + "sparse_infill_line_width": "0.68", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.68", + "support_line_width": "0.5", + "layer_height": "0.25", + "initial_layer_print_height": "0.25", + "wall_loops": "2", + "top_shell_thickness": "0.9", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.6", + "bottom_shell_layers": "3", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "outer_wall_speed": "180", + "inner_wall_speed": "180", + "small_perimeter_speed": "170", + "sparse_infill_speed": "190", + "internal_solid_infill_speed": "190", + "top_surface_speed": "60", + "gap_infill_speed": "70", + "support_speed": "110", + "bridge_speed": "40", + "travel_speed": "300", + "default_acceleration": "2500", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "overhang_1_4_speed": "45", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json new file mode 100644 index 0000000000..033258e2b6 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json @@ -0,0 +1,47 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.25mm High Flow @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_MK3.5", + "line_width": "0.68", + "inner_wall_line_width": "0.68", + "outer_wall_line_width": "0.68", + "top_surface_line_width": "0.55", + "sparse_infill_line_width": "0.68", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.68", + "support_line_width": "0.5", + "layer_height": "0.25", + "initial_layer_print_height": "0.25", + "wall_loops": "2", + "top_shell_thickness": "0.9", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.6", + "bottom_shell_layers": "3", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "outer_wall_speed": "180", + "inner_wall_speed": "180", + "small_perimeter_speed": "170", + "sparse_infill_speed": "190", + "internal_solid_infill_speed": "190", + "top_surface_speed": "60", + "gap_infill_speed": "70", + "support_speed": "110", + "bridge_speed": "40", + "travel_speed": "300", + "default_acceleration": "2500", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "overhang_1_4_speed": "45", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json new file mode 100644 index 0000000000..e28aab6d2d --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.25mm SPEED @MK4S 0.5", + "instantiation": "true", + "name": "0.25mm SPEED @CORE One 0.5", + "type": "process", + "overhang_2_4_speed": "50", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5 and printer_notes!~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json new file mode 100644 index 0000000000..b8fa2c705f --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.25mm SPEED @MK4S 0.6", + "instantiation": "true", + "name": "0.25mm SPEED @CORE One 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "70%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes!~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json new file mode 100644 index 0000000000..2d9d230cf0 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.25mm SPEED @MK4S HF0.4", + "instantiation": "true", + "name": "0.25mm SPEED @CORE One HF 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "60%", + "sparse_infill_speed": "300", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json new file mode 100644 index 0000000000..f8ebad583b --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.25mm SPEED @MK4S HF0.5", + "instantiation": "true", + "name": "0.25mm SPEED @CORE One HF 0.5", + "type": "process", + "overhang_2_4_speed": "50", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json new file mode 100644 index 0000000000..44f7c83a32 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.25mm SPEED @MK4S HF0.6", + "instantiation": "true", + "name": "0.25mm SPEED @CORE One HF 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "70%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json new file mode 100644 index 0000000000..9b99c7d804 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.25mm STRUCTURAL @MK4S 0.5", + "instantiation": "true", + "name": "0.25mm STRUCTURAL @CORE One 0.5", + "type": "process", + "overhang_2_4_speed": "45", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json new file mode 100644 index 0000000000..c941670b66 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.25mm STRUCTURAL @MK4S 0.6", + "instantiation": "true", + "name": "0.25mm STRUCTURAL @CORE One 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json new file mode 100644 index 0000000000..9c0013b961 --- /dev/null +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.25mm STRUCTURAL @MK4S HF0.4", + "instantiation": "true", + "name": "0.25mm STRUCTURAL @CORE One HF 0.4", + "type": "process", + "overhang_2_4_speed": "45", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json index a0dcf72759..425eb57db7 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json @@ -30,6 +30,7 @@ "overhang_1_4_speed": "45", "travel_speed": "300", "internal_solid_infill_acceleration": "3000", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json index 47e04f4907..4b445a511b 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json @@ -30,6 +30,7 @@ "overhang_1_4_speed": "45", "travel_speed": "300", "internal_solid_infill_acceleration": "3000", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json index 0f3dcf81b6..8a58be2a99 100644 --- a/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json @@ -29,6 +29,7 @@ "gap_infill_speed": "60", "support_speed": "80", "travel_speed": "300", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json index 67e90a29df..f5ec902dbe 100644 --- a/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json @@ -29,6 +29,7 @@ "gap_infill_speed": "60", "support_speed": "80", "travel_speed": "300", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json new file mode 100644 index 0000000000..52c71f206a --- /dev/null +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json @@ -0,0 +1,23 @@ +{ + "from": "system", + "inherits": "0.28mm DRAFT @MK4S HF0.4", + "instantiation": "true", + "name": "0.28mm DRAFT @CORE One HF 0.4", + "type": "process", + "overhang_2_4_speed": "50", + "support_threshold_angle": "35", + "outer_wall_acceleration": "3000", + "inner_wall_acceleration": "6000", + "support_base_pattern_spacing": "2.5", + "sparse_infill_speed": "300", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json new file mode 100644 index 0000000000..b4fc3d02d0 --- /dev/null +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json @@ -0,0 +1,19 @@ +{ + "from": "system", + "inherits": "0.30mm DETAIL @MK4S 0.8", + "instantiation": "true", + "name": "0.30mm DETAIL @CORE One 0.8", + "type": "process", + "overhang_2_4_speed": "35", + "top_surface_speed": "2000", + "inner_wall_acceleration": "2500", + "internal_solid_infill_acceleration": "5000", + "sparse_infill_acceleration": "7000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes!~/.*HF_NOZZLE.*/" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json index 447720117b..049fc1bedc 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json @@ -21,6 +21,7 @@ "bottom_shell_thickness": "0.5", "bottom_shell_layers": "2", "travel_speed": "300", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MINIIS 0.8 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json index 2371daedc9..9b126330e5 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json @@ -21,6 +21,7 @@ "bottom_shell_thickness": "0.5", "bottom_shell_layers": "2", "travel_speed": "300", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MK3.5 0.8 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json new file mode 100644 index 0000000000..c867faaa7f --- /dev/null +++ b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json @@ -0,0 +1,18 @@ +{ + "from": "system", + "inherits": "0.30mm SPEED @MK4S HF0.8", + "instantiation": "true", + "name": "0.30mm SPEED @CORE One HF 0.8", + "type": "process", + "overhang_2_4_speed": "45", + "top_surface_speed": "2000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "5000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json new file mode 100644 index 0000000000..8e8501388a --- /dev/null +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json @@ -0,0 +1,23 @@ +{ + "from": "system", + "inherits": "0.30mm STRUCTURAL @MK4S HF0.8", + "instantiation": "true", + "name": "0.30mm STRUCTURAL @CORE One HF 0.8", + "type": "process", + "overhang_2_4_speed": "40", + "top_surface_speed": "2000", + "support_speed": "100", + "support_interface_speed": "55%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json new file mode 100644 index 0000000000..d09417fb00 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json @@ -0,0 +1,44 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.32mm High Flow @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_miniis", + "line_width": "0.68", + "inner_wall_line_width": "0.68", + "outer_wall_line_width": "0.68", + "top_surface_line_width": "0.55", + "sparse_infill_line_width": "0.68", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.68", + "support_line_width": "0.5", + "initial_layer_print_height": "0.25", + "layer_height": "0.32", + "wall_loops": "2", + "top_shell_thickness": "0.9", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.6", + "bottom_shell_layers": "3", + "outer_wall_speed": "145", + "inner_wall_speed": "145", + "bridge_speed": "40", + "support_speed": "110", + "small_perimeter_speed": "145", + "sparse_infill_speed": "145", + "internal_solid_infill_speed": "140", + "top_surface_speed": "60", + "gap_infill_speed": "60", + "travel_speed": "300", + "default_acceleration": "2500", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json new file mode 100644 index 0000000000..2c559f2c10 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json @@ -0,0 +1,46 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.32mm High Flow @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_MK3.5", + "line_width": "0.68", + "inner_wall_line_width": "0.68", + "outer_wall_line_width": "0.68", + "top_surface_line_width": "0.55", + "sparse_infill_line_width": "0.68", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.68", + "support_line_width": "0.5", + "initial_layer_print_height": "0.25", + "layer_height": "0.32", + "wall_loops": "2", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "top_shell_thickness": "0.9", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.6", + "bottom_shell_layers": "3", + "outer_wall_speed": "145", + "inner_wall_speed": "145", + "bridge_speed": "40", + "support_speed": "110", + "small_perimeter_speed": "145", + "sparse_infill_speed": "145", + "internal_solid_infill_speed": "140", + "top_surface_speed": "60", + "gap_infill_speed": "60", + "travel_speed": "300", + "default_acceleration": "2500", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json new file mode 100644 index 0000000000..6dfdbee6a6 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.32mm SPEED @MK4S 0.6", + "instantiation": "true", + "name": "0.32mm SPEED @CORE One 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "70%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes!~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json new file mode 100644 index 0000000000..3bb9b17e5d --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.32mm SPEED @MK4S HF0.5", + "instantiation": "true", + "name": "0.32mm SPEED @CORE One HF 0.5", + "type": "process", + "overhang_2_4_speed": "50", + "support_interface_speed": "50%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "7000", + "internal_solid_infill_acceleration": "6000", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json new file mode 100644 index 0000000000..cd76a87a95 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.32mm SPEED @MK4S HF0.6", + "instantiation": "true", + "name": "0.32mm SPEED @CORE One HF 0.6", + "type": "process", + "overhang_2_4_speed": "35", + "overhang_3_4_speed": "70%", + "top_surface_speed": "2000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json new file mode 100644 index 0000000000..22c4f52d54 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.32mm STRUCTURAL @MK4S 0.6", + "instantiation": "true", + "name": "0.32mm STRUCTURAL @CORE One 0.6", + "type": "process", + "overhang_2_4_speed": "30", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes!~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json new file mode 100644 index 0000000000..37f3b4afc4 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.32mm STRUCTURAL @MK4S HF0.5", + "instantiation": "true", + "name": "0.32mm STRUCTURAL @CORE One HF 0.5", + "type": "process", + "overhang_2_4_speed": "45", + "support_speed": "120", + "support_interface_speed": "50%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "100", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", + "sparse_infill_acceleration": "6000", + "internal_solid_infill_acceleration": "4000", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json new file mode 100644 index 0000000000..d0956416eb --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.32mm STRUCTURAL @MK4S HF0.6", + "instantiation": "true", + "name": "0.32mm STRUCTURAL @CORE One HF 0.6", + "type": "process", + "overhang_2_4_speed": "35", + "support_speed": "110", + "support_interface_speed": "50%", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json new file mode 100644 index 0000000000..22e9550586 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json @@ -0,0 +1,37 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.32mm Standard @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "process_common_miniis", + "line_width": "0.68", + "inner_wall_line_width": "0.68", + "outer_wall_line_width": "0.68", + "top_surface_line_width": "0.55", + "sparse_infill_line_width": "0.68", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.68", + "support_line_width": "0.5", + "initial_layer_print_height": "0.25", + "layer_height": "0.32", + "wall_loops": "2", + "top_shell_thickness": "0.9", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.6", + "bottom_shell_layers": "3", + "outer_wall_speed": "45", + "inner_wall_speed": "60", + "bridge_speed": "30", + "support_speed": "60", + "small_perimeter_speed": "45", + "sparse_infill_speed": "70", + "internal_solid_infill_speed": "60", + "top_surface_speed": "55", + "gap_infill_speed": "45", + "travel_speed": "300", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MINIIS 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json new file mode 100644 index 0000000000..260fca5de1 --- /dev/null +++ b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json @@ -0,0 +1,37 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.32mm Standard @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "process_common_MK3.5", + "line_width": "0.68", + "inner_wall_line_width": "0.68", + "outer_wall_line_width": "0.68", + "top_surface_line_width": "0.55", + "sparse_infill_line_width": "0.68", + "initial_layer_line_width": "0.68", + "internal_solid_infill_line_width": "0.68", + "support_line_width": "0.5", + "initial_layer_print_height": "0.25", + "layer_height": "0.32", + "wall_loops": "2", + "top_shell_thickness": "0.9", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.6", + "bottom_shell_layers": "3", + "outer_wall_speed": "45", + "inner_wall_speed": "60", + "bridge_speed": "30", + "support_speed": "60", + "small_perimeter_speed": "45", + "sparse_infill_speed": "70", + "internal_solid_infill_speed": "60", + "top_surface_speed": "55", + "gap_infill_speed": "45", + "travel_speed": "300", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MK3.5 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json index 6aaff5322a..9ac07158e4 100644 --- a/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json @@ -30,6 +30,7 @@ "top_surface_speed": "55", "gap_infill_speed": "45", "travel_speed": "300", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json index f7690532a8..dc02257e54 100644 --- a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json @@ -30,7 +30,8 @@ "top_surface_speed": "55", "gap_infill_speed": "45", "travel_speed": "300", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json new file mode 100644 index 0000000000..348a50f4b2 --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json @@ -0,0 +1,48 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.40mm High Flow @MINIIS", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_miniis", + "line_width": "0.9", + "inner_wall_line_width": "0.9", + "outer_wall_line_width": "0.9", + "top_surface_line_width": "0.75", + "sparse_infill_line_width": "0.9", + "initial_layer_line_width": "1", + "internal_solid_infill_line_width": "0.9", + "support_line_width": "0.65", + "layer_height": "0.4", + "initial_layer_print_height": "0.3", + "wall_loops": "2", + "top_shell_thickness": "1.2", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.8", + "bottom_shell_layers": "3", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "55", + "outer_wall_speed": "90", + "inner_wall_speed": "100", + "bridge_speed": "22", + "support_speed": "90", + "small_perimeter_speed": "90", + "sparse_infill_speed": "105", + "internal_solid_infill_speed": "100", + "top_surface_speed": "75", + "gap_infill_speed": "65", + "travel_speed": "300", + "default_acceleration": "2000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "1500", + "travel_acceleration": "4000", + "sparse_infill_acceleration": "4000", + "internal_solid_infill_acceleration": "3000", + "inner_wall_acceleration": "3000", + "outer_wall_acceleration": "2500", + "bridge_acceleration": "1000", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MINIIS 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json new file mode 100644 index 0000000000..1504532318 --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json @@ -0,0 +1,48 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.40mm High Flow @MK3.5", + "from": "system", + "instantiation": "true", + "inherits": "process_highflow_MK3.5", + "line_width": "0.9", + "inner_wall_line_width": "0.9", + "outer_wall_line_width": "0.9", + "top_surface_line_width": "0.75", + "sparse_infill_line_width": "0.9", + "initial_layer_line_width": "1", + "internal_solid_infill_line_width": "0.9", + "support_line_width": "0.65", + "layer_height": "0.4", + "initial_layer_print_height": "0.3", + "wall_loops": "2", + "top_shell_thickness": "1.2", + "top_shell_layers": "4", + "bottom_shell_thickness": "0.8", + "bottom_shell_layers": "3", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "55", + "outer_wall_speed": "90", + "inner_wall_speed": "100", + "bridge_speed": "22", + "support_speed": "90", + "small_perimeter_speed": "90", + "sparse_infill_speed": "105", + "internal_solid_infill_speed": "100", + "top_surface_speed": "75", + "gap_infill_speed": "65", + "travel_speed": "300", + "default_acceleration": "2000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "1500", + "travel_acceleration": "4000", + "sparse_infill_acceleration": "4000", + "internal_solid_infill_acceleration": "3000", + "inner_wall_acceleration": "3000", + "outer_wall_acceleration": "2500", + "bridge_acceleration": "1000", + "support_top_z_distance": "0.25", + "compatible_printers": [ + "Prusa MK3.5 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json new file mode 100644 index 0000000000..6f1785233f --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json @@ -0,0 +1,19 @@ +{ + "from": "system", + "inherits": "0.40mm QUALITY @MK4S 0.8", + "instantiation": "true", + "name": "0.40mm QUALITY @CORE One 0.8", + "type": "process", + "overhang_2_4_speed": "35", + "top_surface_speed": "2000", + "inner_wall_acceleration": "2500", + "internal_solid_infill_acceleration": "5000", + "sparse_infill_acceleration": "7000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes!~/.*HF_NOZZLE.*/" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json new file mode 100644 index 0000000000..5b8723d781 --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json @@ -0,0 +1,22 @@ +{ + "from": "system", + "inherits": "0.40mm SPEED @MK4S HF0.6", + "instantiation": "true", + "name": "0.40mm SPEED @CORE One HF 0.6", + "type": "process", + "overhang_2_4_speed": "35", + "overhang_3_4_speed": "70%", + "top_surface_speed": "2000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "6000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "6000", + "outer_wall_acceleration": "3000", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json new file mode 100644 index 0000000000..76beb4e842 --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json @@ -0,0 +1,18 @@ +{ + "from": "system", + "inherits": "0.40mm SPEED @MK4S HF0.8", + "instantiation": "true", + "name": "0.40mm SPEED @CORE One HF 0.8", + "type": "process", + "overhang_2_4_speed": "45", + "top_surface_speed": "2000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "5000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json new file mode 100644 index 0000000000..b7c0106f74 --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json @@ -0,0 +1,20 @@ +{ + "from": "system", + "inherits": "0.40mm STRUCTURAL @MK4S HF0.6", + "instantiation": "true", + "name": "0.40mm STRUCTURAL @CORE One HF 0.6", + "type": "process", + "overhang_2_4_speed": "35", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "70", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json new file mode 100644 index 0000000000..80c0825146 --- /dev/null +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json @@ -0,0 +1,21 @@ +{ + "from": "system", + "inherits": "0.40mm STRUCTURAL @MK4S HF0.8", + "instantiation": "true", + "name": "0.40mm STRUCTURAL @CORE One HF 0.8", + "type": "process", + "overhang_2_4_speed": "40", + "top_surface_speed": "2000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "4000", + "sparse_infill_acceleration": "6000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", + "inner_wall_acceleration": "2500", + "outer_wall_acceleration": "1500", + "top_surface_acceleration": "2000" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json index ab085de8be..5e5887030c 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json @@ -40,6 +40,7 @@ "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", "bridge_acceleration": "1000", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MINIIS 0.8 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json index 3919357a9b..720d06009e 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json @@ -21,6 +21,7 @@ "bottom_shell_thickness": "0.8", "bottom_shell_layers": "3", "initial_layer_speed": "30", + "initial_layer_infill_speed": "55", "outer_wall_speed": "40", "inner_wall_speed": "40", "bridge_speed": "22", @@ -40,6 +41,7 @@ "inner_wall_acceleration": "2000", "outer_wall_acceleration": "1500", "bridge_acceleration": "1000", + "support_top_z_distance": "0.25", "compatible_printers": [ "Prusa MK3.5 0.8 nozzle" ] diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json new file mode 100644 index 0000000000..f85413ae63 --- /dev/null +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json @@ -0,0 +1,18 @@ +{ + "from": "system", + "inherits": "0.55mm DRAFT @MK4S 0.8", + "instantiation": "true", + "name": "0.55mm DRAFT @CORE One 0.8", + "type": "process", + "top_surface_speed": "2000", + "inner_wall_acceleration": "2500", + "internal_solid_infill_acceleration": "5000", + "sparse_infill_acceleration": "7000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes!~/.*HF_NOZZLE.*/" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json new file mode 100644 index 0000000000..70ac34b19d --- /dev/null +++ b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json @@ -0,0 +1,18 @@ +{ + "from": "system", + "inherits": "0.55mm SPEED @MK4S HF0.8", + "instantiation": "true", + "name": "0.55mm SPEED @CORE One HF 0.8", + "type": "process", + "overhang_2_4_speed": "45", + "top_surface_speed": "2000", + "travel_speed": "350", + "travel_acceleration": "7000", + "default_acceleration": "3000", + "support_interface_top_layers": "3", + "initial_layer_infill_speed": "55", + "initial_layer_speed": "45", + "internal_solid_infill_acceleration": "5000", + "sparse_infill_acceleration": "7000", + "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/process_common_MK3.5.json b/resources/profiles/Prusa/process/process_common_MK3.5.json index 0db5e24d60..1385303662 100644 --- a/resources/profiles/Prusa/process/process_common_MK3.5.json +++ b/resources/profiles/Prusa/process/process_common_MK3.5.json @@ -51,5 +51,14 @@ "support_speed": "100", "support_style": "snug", "precise_outer_wall": "1", - "overhang_reverse": "1" + "overhang_reverse": "1", + "raft_contact_distance": "0.15", + "raft_expansion": "1.5", + "raft_first_layer_density": "90%", + "raft_first_layer_expansion": "3.5", + "support_threshold_angle": "40", + "support_interface_bottom_layers": "0", + "support_base_pattern": "rectilinear", + "support_interface_top_layers": "3", + "support_top_z_distance": "0.17" } \ No newline at end of file diff --git a/resources/profiles/Prusa/process/process_common_miniis.json b/resources/profiles/Prusa/process/process_common_miniis.json index 0bc991159b..36f8bdc91b 100644 --- a/resources/profiles/Prusa/process/process_common_miniis.json +++ b/resources/profiles/Prusa/process/process_common_miniis.json @@ -51,5 +51,14 @@ "support_speed": "100", "support_style": "snug", "precise_outer_wall": "1", - "overhang_reverse": "1" + "overhang_reverse": "1", + "raft_contact_distance": "0.15", + "raft_expansion": "1.5", + "raft_first_layer_density": "90%", + "raft_first_layer_expansion": "3.5", + "support_threshold_angle": "40", + "support_interface_bottom_layers": "0", + "support_base_pattern": "rectilinear", + "support_interface_top_layers": "3", + "support_top_z_distance": "0.17" } \ No newline at end of file diff --git a/resources/profiles/Prusa/process/process_detail_MK3.5.json b/resources/profiles/Prusa/process/process_detail_MK3.5.json index 3e9e82439c..33a9267cdb 100644 --- a/resources/profiles/Prusa/process/process_detail_MK3.5.json +++ b/resources/profiles/Prusa/process/process_detail_MK3.5.json @@ -6,6 +6,7 @@ "inherits": "process_common_MK3.5", "travel_speed": "300", "initial_layer_speed": "20", + "initial_layer_infill_speed": "35", "outer_wall_speed": "40", "inner_wall_speed": "60", "bridge_speed": "30", diff --git a/resources/profiles/Prusa/process/process_highflow_MK3.5.json b/resources/profiles/Prusa/process/process_highflow_MK3.5.json new file mode 100644 index 0000000000..31eb657703 --- /dev/null +++ b/resources/profiles/Prusa/process/process_highflow_MK3.5.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "process_highflow_MK3.5", + "from": "system", + "instantiation": "false", + "inherits": "process_common_MK3.5", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "100", + "outer_wall_speed": "200", + "inner_wall_speed": "250", + "small_perimeter_speed": "170", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "top_surface_speed": "100", + "gap_infill_speed": "120", + "default_acceleration": "4000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "overhang_1_4_speed": "60" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/process_highflow_miniis.json b/resources/profiles/Prusa/process/process_highflow_miniis.json new file mode 100644 index 0000000000..033dc36819 --- /dev/null +++ b/resources/profiles/Prusa/process/process_highflow_miniis.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "process_highflow_miniis", + "from": "system", + "instantiation": "false", + "inherits": "process_common_miniis", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "100", + "outer_wall_speed": "200", + "inner_wall_speed": "250", + "small_perimeter_speed": "170", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "top_surface_speed": "100", + "gap_infill_speed": "120", + "default_acceleration": "4000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "inner_wall_acceleration": "4000", + "outer_wall_acceleration": "4000", + "bridge_acceleration": "1500", + "internal_solid_infill_acceleration": "3000", + "overhang_1_4_speed": "60" +} \ No newline at end of file diff --git a/resources/profiles/Prusa/process/process_speed_MK3.5.json b/resources/profiles/Prusa/process/process_speed_MK3.5.json index bad53ee00a..46f8e50341 100644 --- a/resources/profiles/Prusa/process/process_speed_MK3.5.json +++ b/resources/profiles/Prusa/process/process_speed_MK3.5.json @@ -4,6 +4,7 @@ "from": "system", "instantiation": "false", "inherits": "process_common_MK3.5", + "initial_layer_infill_speed": "100", "outer_wall_speed": "150", "inner_wall_speed": "150", "small_perimeter_speed": "150", diff --git a/resources/profiles/Raise3D/Raise3D Pro3 Plus_cover.png b/resources/profiles/Raise3D/Raise3D Pro3 Plus_cover.png index 59c148d80c..b16c0227a3 100644 Binary files a/resources/profiles/Raise3D/Raise3D Pro3 Plus_cover.png and b/resources/profiles/Raise3D/Raise3D Pro3 Plus_cover.png differ diff --git a/resources/profiles/Raise3D/Raise3D Pro3_cover.png b/resources/profiles/Raise3D/Raise3D Pro3_cover.png index c477ac614c..a266195c19 100644 Binary files a/resources/profiles/Raise3D/Raise3D Pro3_cover.png and b/resources/profiles/Raise3D/Raise3D Pro3_cover.png differ diff --git a/resources/profiles/Ratrig/RatRig V-Cast_cover.png b/resources/profiles/Ratrig/RatRig V-Cast_cover.png index 5628581bcf..8eb71d5c31 100644 Binary files a/resources/profiles/Ratrig/RatRig V-Cast_cover.png and b/resources/profiles/Ratrig/RatRig V-Cast_cover.png differ diff --git a/resources/profiles/Ratrig/RatRig V-Core 3 200_cover.png b/resources/profiles/Ratrig/RatRig V-Core 3 200_cover.png index b5e36a416b..33e1dfa7ef 100644 Binary files a/resources/profiles/Ratrig/RatRig V-Core 3 200_cover.png and b/resources/profiles/Ratrig/RatRig V-Core 3 200_cover.png differ diff --git a/resources/profiles/Ratrig/RatRig V-Core 3 300_cover.png b/resources/profiles/Ratrig/RatRig V-Core 3 300_cover.png index b5e36a416b..7546c7d72c 100644 Binary files a/resources/profiles/Ratrig/RatRig V-Core 3 300_cover.png and b/resources/profiles/Ratrig/RatRig V-Core 3 300_cover.png differ diff --git a/resources/profiles/Ratrig/RatRig V-Core 3 400_cover.png b/resources/profiles/Ratrig/RatRig V-Core 3 400_cover.png index b5e36a416b..aab4dfb74f 100644 Binary files a/resources/profiles/Ratrig/RatRig V-Core 3 400_cover.png and b/resources/profiles/Ratrig/RatRig V-Core 3 400_cover.png differ diff --git a/resources/profiles/Ratrig/RatRig V-Core 3 500_cover.png b/resources/profiles/Ratrig/RatRig V-Core 3 500_cover.png index b5e36a416b..dd1f1cdbd2 100644 Binary files a/resources/profiles/Ratrig/RatRig V-Core 3 500_cover.png and b/resources/profiles/Ratrig/RatRig V-Core 3 500_cover.png differ diff --git a/resources/profiles/Ratrig/RatRig V-Minion_cover.png b/resources/profiles/Ratrig/RatRig V-Minion_cover.png index 356b36a841..250878577e 100644 Binary files a/resources/profiles/Ratrig/RatRig V-Minion_cover.png and b/resources/profiles/Ratrig/RatRig V-Minion_cover.png differ diff --git a/resources/profiles/SecKit/Seckit Go3_cover.png b/resources/profiles/SecKit/Seckit Go3_cover.png index 60f56cad53..20fe2f2e81 100644 Binary files a/resources/profiles/SecKit/Seckit Go3_cover.png and b/resources/profiles/SecKit/Seckit Go3_cover.png differ diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json index e0b4b3b3a3..fe2f3f5446 100644 --- a/resources/profiles/Sovol.json +++ b/resources/profiles/Sovol.json @@ -44,6 +44,10 @@ { "name": "Sovol SV08", "sub_path": "machine/Sovol SV08.json" + }, + { + "name": "Sovol Zero", + "sub_path": "machine/Sovol Zero.json" } ], "process_list": [ @@ -158,7 +162,12 @@ { "name": "0.20mm High-Speed @Sovol SV06", "sub_path": "process/0.20mm High-Speed @Sovol SV06.json" + }, + { + "name": "0.20mm Standard @Sovol Zero 0.4 nozzle", + "sub_path": "process/0.20mm Standard @Sovol Zero 0.4 nozzle.json" } + ], "filament_list": [ { @@ -216,6 +225,42 @@ { "name": "Sovol SV08 TPU", "sub_path": "filament/Sovol SV08 TPU.json" + }, + { + "name": "Sovol Zero ABS", + "sub_path": "filament/Sovol Zero ABS.json" + }, + { + "name": "Sovol Zero PC", + "sub_path": "filament/Sovol Zero PC.json" + }, + { + "name": "Sovol Zero PETG", + "sub_path": "filament/Sovol Zero PETG.json" + }, + { + "name": "Sovol Zero PETG HS Nozzle", + "sub_path": "filament/Sovol Zero PETG HS Nozzle.json" + }, + { + "name": "Sovol Zero PLA Basic", + "sub_path": "filament/Sovol Zero PLA Basic.json" + }, + { + "name": "Sovol Zero PLA Basic HS Nozzle", + "sub_path": "filament/Sovol Zero PLA Basic HS Nozzle.json" + }, + { + "name": "Sovol Zero PLA Silk", + "sub_path": "filament/Sovol Zero PLA Silk.json" + }, + { + "name": "Sovol Zero PLA Silk HS Nozzle", + "sub_path": "filament/Sovol Zero PLA Silk HS Nozzle.json" + }, + { + "name": "Sovol Zero TPU", + "sub_path": "filament/Sovol Zero TPU.json" } ], "machine_list": [ @@ -290,6 +335,10 @@ { "name": "Sovol SV08 0.8 nozzle", "sub_path": "machine/Sovol SV08 0.8 nozzle.json" + }, + { + "name": "Sovol Zero 0.4 nozzle", + "sub_path": "machine/Sovol Zero 0.4 nozzle.json" } ] -} \ No newline at end of file +} diff --git a/resources/profiles/Sovol/Sovol Zero_cover.png b/resources/profiles/Sovol/Sovol Zero_cover.png new file mode 100755 index 0000000000..618dcc5cd0 Binary files /dev/null and b/resources/profiles/Sovol/Sovol Zero_cover.png differ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json index a4ff71e307..574aa612f3 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json @@ -12,6 +12,7 @@ "3" ], "compatible_printers": [ + "Sovol SV06 ACE 0.2 nozzle", "Sovol SV06 ACE 0.4 nozzle", "Sovol SV06 ACE 0.6 nozzle", "Sovol SV06 ACE 0.8 nozzle" diff --git a/resources/profiles/Sovol/filament/Sovol Zero ABS.json b/resources/profiles/Sovol/filament/Sovol Zero ABS.json new file mode 100644 index 0000000000..8578e0009b --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero ABS.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero ABS", + "from": "system", + "instantiation": "true", + "inherits": "Generic ABS @System", + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["21"], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "fan_min_speed": [ + "10" + ], + "fan_max_speed": [ + "30" + ], + "fan_cooling_layer_time": [ + "30" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "activate_air_filtration": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "50" + ], + "additional_cooling_fan_speed":["0"], + "is_custom_defined": "0", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ] +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PC.json b/resources/profiles/Sovol/filament/Sovol Zero PC.json new file mode 100644 index 0000000000..6c6eed3f2b --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PC.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PC", + "from": "system", + "instantiation": "true", + "inherits": "Generic PC @System", + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["21"], + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "350" + ], + "hot_plate_temp" : [ + "110" + ], + "hot_plate_temp_initial_layer" : [ + "110" + ], + "fan_min_speed": [ + "10" + ], + "fan_max_speed": [ + "20" + ], + "fan_cooling_layer_time": [ + "40" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "dont_slow_down_outer_wall": "0", + "overhang_fan_speed": [ + "20" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "additional_cooling_fan_speed": "0", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "50", + "complete_print_exhaust_fan_speed": "50" +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json new file mode 100644 index 0000000000..0eb1800b20 --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PETG HS Nozzle", + "from": "system", + "instantiation": "true", + "inherits": "Generic PETG @System", + "filament_flow_ratio": ["0.98"], + "enable_pressure_advance": "1", + "pressure_advance": "0.048", + "filament_max_volumetric_speed": [ + "15" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "fan_min_speed": [ + "10" + ], + "fan_max_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "50" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "10%" + ], + "temperature_vitrification": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "filament_retraction_length": [ + "0.5" + ], + "filament_z_hop": [ + "0.4" + ], + "is_custom_defined": "0", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "50", + "complete_print_exhaust_fan_speed": "50", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ] +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG.json b/resources/profiles/Sovol/filament/Sovol Zero PETG.json new file mode 100644 index 0000000000..3ff77ba7db --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PETG.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PETG", + "from": "system", + "instantiation": "true", + "inherits": "Generic PETG @System", + "filament_flow_ratio": ["1.0348"], + "enable_pressure_advance": "1", + "pressure_advance": "0.046", + "filament_max_volumetric_speed": [ + "15" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "hot_plate_temp": [ + "85" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "fan_min_speed": [ + "10" + ], + "fan_max_speed": [ + "40" + ], + "fan_cooling_layer_time": [ + "50" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "10%" + ], + "temperature_vitrification": [ + "60" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "filament_retraction_length": [ + "0.5" + ], + "filament_z_hop": [ + "0.4" + ], + "is_custom_defined": "0", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "50", + "complete_print_exhaust_fan_speed": "50", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ] +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json new file mode 100644 index 0000000000..4d5b2815ab --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PLA Basic HS Nozzle", + "from": "system", + "instantiation": "true", + "inherits": "Generic PLA @System", + "filament_flow_ratio": ["1.0348"], + "filament_max_volumetric_speed": ["21"], + "enable_pressure_advance": "1", + "pressure_advance": "0.03", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "hot_plate_temp" : [ + "65" + ], + "hot_plate_temp_initial_layer" : [ + "65" + ], + "fan_min_speed": [ + "70" + ], + "fan_max_speed": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "dont_slow_down_outer_wall": "0", + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "additional_cooling_fan_speed": "75%", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "80%", + "complete_print_exhaust_fan_speed": "80%" +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json new file mode 100644 index 0000000000..7701516b7a --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PLA Basic", + "from": "system", + "instantiation": "true", + "inherits": "Generic PLA @System", + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["21"], + "enable_pressure_advance": "1", + "pressure_advance": "0.032", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "hot_plate_temp" : [ + "65" + ], + "hot_plate_temp_initial_layer" : [ + "65" + ], + "fan_min_speed": [ + "70" + ], + "fan_max_speed": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "dont_slow_down_outer_wall": "0", + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "additional_cooling_fan_speed": "75%", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "80%", + "complete_print_exhaust_fan_speed": "80%" +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json new file mode 100644 index 0000000000..2069c0d8f0 --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PLA Silk HS Nozzle", + "from": "system", + "instantiation": "true", + "inherits": "Generic PLA @System", + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["15"], + "enable_pressure_advance": "1", + "pressure_advance": "0.027", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "hot_plate_temp" : [ + "65" + ], + "hot_plate_temp_initial_layer" : [ + "65" + ], + "fan_min_speed": [ + "70" + ], + "fan_max_speed": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "dont_slow_down_outer_wall": "0", + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "additional_cooling_fan_speed": "75%", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "80%", + "complete_print_exhaust_fan_speed": "80%" +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json new file mode 100644 index 0000000000..26cc7116df --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero PLA Silk", + "from": "system", + "instantiation": "true", + "inherits": "Generic PLA @System", + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": ["15"], + "enable_pressure_advance": "1", + "pressure_advance": "0.029", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "hot_plate_temp" : [ + "65" + ], + "hot_plate_temp_initial_layer" : [ + "65" + ], + "fan_min_speed": [ + "70" + ], + "fan_max_speed": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "10" + ], + "dont_slow_down_outer_wall": "0", + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "additional_cooling_fan_speed": "75%", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "80%", + "complete_print_exhaust_fan_speed": "80%" +} diff --git a/resources/profiles/Sovol/filament/Sovol Zero TPU.json b/resources/profiles/Sovol/filament/Sovol Zero TPU.json new file mode 100644 index 0000000000..fbc1f997d8 --- /dev/null +++ b/resources/profiles/Sovol/filament/Sovol Zero TPU.json @@ -0,0 +1,69 @@ +{ + "type": "filament", + "filament_id": "GFL99", + "setting_id": "GFSA04", + "name": "Sovol Zero TPU", + "from": "system", + "instantiation": "true", + "inherits": "Generic TPU @System", + "filament_flow_ratio": ["0.98"], + "filament_max_volumetric_speed": [ + "3.2" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "hot_plate_temp" : [ + "85" + ], + "hot_plate_temp_initial_layer" : [ + "85" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "80" + ], + "fan_cooling_layer_time": [ + "50" + ], + "full_fan_speed_layer": [ + "3" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "10" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "temperature_vitrification": [ + "60" + ], + "filament_z_hop": [ + "0.4" + ], + "is_custom_defined": "0", + "additional_cooling_fan_speed": "50", + "activate_air_filtration": "1", + "during_print_exhaust_fan_speed": "100", + "complete_print_exhaust_fan_speed": "50", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ] +} diff --git a/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json new file mode 100644 index 0000000000..94004be836 --- /dev/null +++ b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json @@ -0,0 +1,112 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "Sovol Zero 0.4 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_machine_common", + "printer_model": "Sovol Zero", + "default_print_profile": "0.20mm Standard @Sovol Zero 0.4 nozzle", + "printer_variant": "0.4", + "nozzle_diameter": [ + "0.4" + ], + "retract_before_wipe": [ + "100%" + ], + "printable_area": [ + "0x0", + "152.4x0", + "152.4x152.4", + "0x152.4" + ], + "printable_height": "152.4", + "gcode_flavor": "klipper", + "retraction_length": [ + "0.8" + ], + "machine_max_speed_e": [ + "50" + ], + "machine_max_speed_x": [ + "1200" + ], + "machine_max_speed_y": [ + "1200" + ], + "machine_max_speed_z": [ + "30" + ], + "machine_max_acceleration_e": [ + "20000" + ], + "machine_max_acceleration_extruding": [ + "40000" + ], + "machine_max_acceleration_retracting": [ + "20000" + ], + "machine_max_acceleration_travel": [ + "40000" + ], + "machine_max_acceleration_x": [ + "40000" + ], + "machine_max_acceleration_y": [ + "40000" + ], + "machine_max_acceleration_z": [ + "1000" + ], + "machine_max_jerk_e": [ + "2.5" + ], + "machine_max_jerk_x": [ + "5" + ], + "machine_max_jerk_y": [ + "5" + ], + "machine_max_jerk_z": [ + "0.5" + ], + "z_hop": [ + "0.4" + ], + "retraction_speed": [ + "40" + ], + "deretraction_speed": [ + "40" + ], + "retraction_minimum_travel": [ + "0" + ], + "retract_length_toolchange": [ + "2" + ], + "wipe": [ + "1" + ], + "wipe_distance": [ + "2" + ], + "z_hop_types": [ + "Auto Lift" + ], + "thumbnails": [ + "300x300", + "32x32" + ], + "retract_lift_below": [ + "150" + ], + "auxiliary_fan": "1", + "thumbnails_format": "PNG", + "before_layer_change_gcode": "TIMELAPSE_TAKE_FRAME\nG92 E0\nSET_PRINT_STATS_INFO CURRENT_LAYER=[layer_num]\n", + "machine_start_gcode": "M140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\nG28\nSTART_PRINT\nG28\nG90\nG1 X0 Y0 F12000\nG1 Z0.300 F600\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nM109 S[nozzle_temperature_initial_layer];wait for extruder temp\n{if first_layer_print_min[1] - 6 > print_bed_min[1]}\nG90\nM83\nG1 E-0.5 F600\nG1 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4} Y{first_layer_print_min[1] - 5} F12000\nG0 Z0.3 F600 ;Move to start position\nG1 E0.200 F600\n{if first_layer_print_max[0] - first_layer_print_min[0] > 50}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{else}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 2} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0])} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{endif}\nG1 E-0.300 F600\nG0 Z1 F600\nG1 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4} Y{first_layer_print_min[1] - 4} F12000\nG0 Z0.3 F600 ;Move to start position\nG1 E0.200 F600\n{if first_layer_print_max[0] - first_layer_print_min[0] > 50}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{else}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 2} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0])} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{endif}\nG1 E-0.300 F600\nG0 Z5 F600\nM400\n{else}\nG90\nM83\nG1 E-0.300 Z3 F600\nG1 X{print_bed_max[1] / 3} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 Z0.3 F600\nG1 E0.300 F600\nG1 X{print_bed_max[1] / 3 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3} Y1 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 E-0.300 Z3 F600\nM400\n{endif}\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n\n", + "machine_end_gcode": "END_PRINT\n", + "default_filament_profile": [ + "Sovol Zero PLA Basic" + ] +} \ No newline at end of file diff --git a/resources/profiles/Sovol/machine/Sovol Zero.json b/resources/profiles/Sovol/machine/Sovol Zero.json new file mode 100644 index 0000000000..a12599db21 --- /dev/null +++ b/resources/profiles/Sovol/machine/Sovol Zero.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Sovol Zero", + "model_id": "Sovol-Zero", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "Sovol", + "bed_model": "sovol_zero_buildplate_model.stl", + "bed_texture": "sovol_zero_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Sovol Zero PLA Basic;Sovol Zero PLA Basic HS Nozzle;Sovol Zero PLA Silk;Sovol Zero PLA Silk HS Nozzle;Sovol Zero ABS;Sovol Zero PETG;Sovol Zero PETG HS Nozzle;Sovol Zero TPU;Sovol Zero PC" +} diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json new file mode 100644 index 0000000000..bd8c83ba43 --- /dev/null +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json @@ -0,0 +1,142 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Sovol Zero 0.4 nozzle", + "from": "system", + "inherits": "fdm_process_common", + "instantiation": "true", + "adaptive_layer_height": "1", + "reduce_crossing_wall": "1", + "max_travel_detour_distance": "100%", + "layer_height": "0.20", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bridge_flow": "1.2", + "internal_bridge_flow": "1.2", + "bridge_speed": "50", + "internal_bridge_speed" : "200", + "brim_type": "auto_brim", + "brim_width": "5", + "brim_object_gap": "0", + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "40000", + "outer_wall_acceleration": "10000", + "top_surface_acceleration": "5000", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0.1", + "enable_arc_fitting": "0", + "exclude_object": "1", + "outer_wall_line_width": "0.4", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.4", + "infill_direction": "45", + "sparse_infill_density": "10%", + "sparse_infill_pattern": "grid", + "internal_solid_infill_acceleration": "50%", + "initial_layer_acceleration": "1000", + "initial_solid_infill_acceleration": "3000", + "travel_acceleration": "40000", + "inner_wall_acceleration": "12000", + "outer_wall_jerk": "5", + "inner_wall_jerk": "5", + "infill_jerk": "5", + "top_surface_jerk": "5", + "initial_layer_jerk": "5", + "travel_jerk": "5", + "initial_layer_line_width": "0.42", + "initial_layer_print_height": "0.25", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "15%", + "interface_shells": "0", + "ironing_flow": "15%", + "ironing_spacing": "0.25", + "ironing_speed": "15", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{printer_model}_{input_filename_base}_{filament_type[0]}_{layer_height}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "20", + "inner_wall_line_width": "0.4", + "wall_loops": "2", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "0.8", + "skirt_height": "1", + "skirt_loops": "1", + "minimum_sparse_infill_area": "15", + "internal_solid_infill_line_width": "0.45", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "tree(auto)", + "support_style": "default", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.235", + "support_bottom_z_distance": "0.235", + "support_filament": "0", + "support_line_width": "0.45", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "5", + "support_interface_bottom_layers": "-1", + "support_interface_spacing": "0.2", + "support_bottom_interface_spacing": "0.2", + "support_interface_speed": "100%", + "support_interface_pattern": "grid", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "3.5", + "support_speed": "100", + "support_threshold_angle": "20", + "support_object_xy_distance": "0.35", + "tree_support_branch_angle": "40", + "tree_support_wall_count": "0", + "detect_thin_wall": "1", + "top_surface_pattern": "monotonic", + "top_surface_line_width": "0.38", + "top_shell_layers": "4", + "top_shell_thickness": "1", + "initial_layer_speed": "55", + "initial_layer_infill_speed": "105", + "initial_layer_travel_speed": "60%", + "outer_wall_speed": "350", + "inner_wall_speed": "400", + "small_perimeter_speed": "50%", + "internal_solid_infill_speed": "200", + "top_surface_speed": "200", + "gap_infill_speed": "200", + "sparse_infill_speed": "500", + "accel_to_decel_enable": "1", + "accel_to_decel_factor": "25%", + "travel_speed": "1000", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "bridge_acceleration": "50%", + "seam_gap": "10%", + "precise_outer_wall": "1", + "wall_generator": "classic", + "gcode_label_objects": "1", + "slow_down_layers": "3", + "top_solid_infill_flow_ratio": "0.9", + "only_one_wall_top": "1", + "wall_loop_direction": "clockwise", + "top_bottom_infill_wall_overlap": "25%", + "filter_out_gap_fill": "0", + "detect_narrow_internal_solid_infill": "1", + "thick_bridges": "1", + "bridge_angle": "0", + "compatible_printers": [ + "Sovol Zero 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_zero_buildplate_model.stl b/resources/profiles/Sovol/sovol_zero_buildplate_model.stl new file mode 100755 index 0000000000..33c03ed18a Binary files /dev/null and b/resources/profiles/Sovol/sovol_zero_buildplate_model.stl differ diff --git a/resources/profiles/Sovol/sovol_zero_buildplate_texture.png b/resources/profiles/Sovol/sovol_zero_buildplate_texture.png new file mode 100755 index 0000000000..f4333808ed Binary files /dev/null and b/resources/profiles/Sovol/sovol_zero_buildplate_texture.png differ diff --git a/resources/profiles/Tiertime.json b/resources/profiles/Tiertime.json new file mode 100644 index 0000000000..1b8157261f --- /dev/null +++ b/resources/profiles/Tiertime.json @@ -0,0 +1,528 @@ +{ + "name": "Tiertime", + "version": "02.03.00.03", + "force_update": "0", + "description": "Tiertime configurations", + "machine_model_list": [ + { + "name": "Tiertime UP400 Pro", + "sub_path": "machine/Tiertime UP400 Pro.json" + }, + { + "name": "Tiertime UP310 Pro", + "sub_path": "machine/Tiertime UP310 Pro.json" + }, + { + "name": "Tiertime UP300 HS", + "sub_path": "machine/Tiertime UP300 HS.json" + }, + { + "name": "Tiertime UP600 HS", + "sub_path": "machine/Tiertime UP600 HS.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + }, + { + "name": "fdm_process_tiertime_common", + "sub_path": "process/fdm_process_tiertime_common.json" + }, + { + "name": "fdm_process_tiertime_HS_common", + "sub_path": "process/fdm_process_tiertime_HS_common.json" + }, + { + "name": "0.12mm Fine @Tiertime UP400 Pro", + "sub_path": "process/0.12mm Fine @Tiertime UP400 Pro.json" + }, + { + "name": "0.16mm Optimal @Tiertime UP400 Pro", + "sub_path": "process/0.16mm Optimal @Tiertime UP400 Pro.json" + }, + { + "name": "0.20mm Standard @Tiertime UP400 Pro", + "sub_path": "process/0.20mm Standard @Tiertime UP400 Pro.json" + }, + { + "name": "0.24mm Draft @Tiertime UP400 Pro", + "sub_path": "process/0.24mm Draft @Tiertime UP400 Pro.json" + }, + { + "name": "0.28mm Extra Draft @Tiertime UP400 Pro", + "sub_path": "process/0.28mm Extra Draft @Tiertime UP400 Pro.json" + }, + { + "name": "0.12mm Fine @Tiertime UP310 Pro", + "sub_path": "process/0.12mm Fine @Tiertime UP310 Pro.json" + }, + { + "name": "0.16mm Optimal @Tiertime UP310 Pro", + "sub_path": "process/0.16mm Optimal @Tiertime UP310 Pro.json" + }, + { + "name": "0.20mm Standard @Tiertime UP310 Pro", + "sub_path": "process/0.20mm Standard @Tiertime UP310 Pro.json" + }, + { + "name": "0.24mm Draft @Tiertime UP310 Pro", + "sub_path": "process/0.24mm Draft @Tiertime UP310 Pro.json" + }, + { + "name": "0.28mm Extra Draft @Tiertime UP310 Pro", + "sub_path": "process/0.28mm Extra Draft @Tiertime UP310 Pro.json" + }, + { + "name": "0.12mm Fine @Tiertime UP300 HS", + "sub_path": "process/0.12mm Fine @Tiertime UP300 HS.json" + }, + { + "name": "0.16mm Optimal @Tiertime UP300 HS", + "sub_path": "process/0.16mm Optimal @Tiertime UP300 HS.json" + }, + { + "name": "0.20mm Standard @Tiertime UP300 HS", + "sub_path": "process/0.20mm Standard @Tiertime UP300 HS.json" + }, + { + "name": "0.24mm Draft @Tiertime UP300 HS", + "sub_path": "process/0.24mm Draft @Tiertime UP300 HS.json" + }, + { + "name": "0.28mm Extra Draft @Tiertime UP300 HS", + "sub_path": "process/0.28mm Extra Draft @Tiertime UP300 HS.json" + }, + { + "name": "0.12mm Fine @Tiertime UP600 HS", + "sub_path": "process/0.12mm Fine @Tiertime UP600 HS.json" + }, + { + "name": "0.16mm Optimal @Tiertime UP600 HS", + "sub_path": "process/0.16mm Optimal @Tiertime UP600 HS.json" + }, + { + "name": "0.20mm Standard @Tiertime UP600 HS", + "sub_path": "process/0.20mm Standard @Tiertime UP600 HS.json" + }, + { + "name": "0.24mm Draft @Tiertime UP600 HS", + "sub_path": "process/0.24mm Draft @Tiertime UP600 HS.json" + }, + { + "name": "0.28mm Extra Draft @Tiertime UP600 HS", + "sub_path": "process/0.28mm Extra Draft @Tiertime UP600 HS.json" + } + ], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "fdm_filament_abs", + "sub_path": "filament/fdm_filament_abs.json" + }, + { + "name": "fdm_filament_tpu", + "sub_path": "filament/fdm_filament_tpu.json" + }, + { + "name": "fdm_filament_pet", + "sub_path": "filament/fdm_filament_pet.json" + }, + { + "name": "fdm_filament_pc", + "sub_path": "filament/fdm_filament_pc.json" + }, + { + "name": "fdm_filament_pctg", + "sub_path": "filament/fdm_filament_pctg.json" + }, + { + "name": "fdm_filament_asa", + "sub_path": "filament/fdm_filament_asa.json" + }, + { + "name": "fdm_filament_pva", + "sub_path": "filament/fdm_filament_pva.json" + }, + { + "name": "fdm_filament_pa", + "sub_path": "filament/fdm_filament_pa.json" + }, + { + "name": "fdm_filament_hips", + "sub_path": "filament/fdm_filament_hips.json" + }, + { + "name": "fdm_filament_pps", + "sub_path": "filament/fdm_filament_pps.json" + }, + { + "name": "fdm_filament_ppa", + "sub_path": "filament/fdm_filament_ppa.json" + }, + { + "name": "fdm_filament_pe", + "sub_path": "filament/fdm_filament_pe.json" + }, + { + "name": "fdm_filament_pp", + "sub_path": "filament/fdm_filament_pp.json" + }, + { + "name": "fdm_filament_eva", + "sub_path": "filament/fdm_filament_eva.json" + }, + { + "name": "fdm_filament_pha", + "sub_path": "filament/fdm_filament_pha.json" + }, + { + "name": "fdm_filament_bvoh", + "sub_path": "filament/fdm_filament_bvoh.json" + }, + { + "name": "fdm_filament_sbs", + "sub_path": "filament/fdm_filament_sbs.json" + }, + { + "name": "Tiertime PLA", + "sub_path": "filament/Tiertime PLA.json" + }, + { + "name": "Tiertime ABS", + "sub_path": "filament/Tiertime ABS.json" + }, + { + "name": "Tiertime ASA", + "sub_path": "filament/Tiertime ASA.json" + }, + { + "name": "Tiertime PA6-CF", + "sub_path": "filament/Tiertime PA6-CF.json" + }, + { + "name": "Tiertime PC", + "sub_path": "filament/Tiertime PC.json" + }, + { + "name": "Tiertime PET-CF", + "sub_path": "filament/Tiertime PET-CF.json" + }, + { + "name": "Tiertime PETG", + "sub_path": "filament/Tiertime PETG.json" + }, + { + "name": "Tiertime PLA-CF", + "sub_path": "filament/Tiertime PLA-CF.json" + }, + { + "name": "Tiertime PVA", + "sub_path": "filament/Tiertime PVA.json" + }, + { + "name": "Tiertime TPU 95A", + "sub_path": "filament/Tiertime TPU 95A.json" + }, + { + "name": "Tiertime PLA@300HS", + "sub_path": "filament/Tiertime PLA@300HS.json" + }, + { + "name": "Tiertime ABS@300HS", + "sub_path": "filament/Tiertime ABS@300HS.json" + }, + { + "name": "Tiertime ASA@300HS", + "sub_path": "filament/Tiertime ASA@300HS.json" + }, + { + "name": "Tiertime PA6-CF@300HS", + "sub_path": "filament/Tiertime PA6-CF@300HS.json" + }, + { + "name": "Tiertime PC@300HS", + "sub_path": "filament/Tiertime PC@300HS.json" + }, + { + "name": "Tiertime PET-CF@300HS", + "sub_path": "filament/Tiertime PET-CF@300HS.json" + }, + { + "name": "Tiertime PETG@300HS", + "sub_path": "filament/Tiertime PETG@300HS.json" + }, + { + "name": "Tiertime PLA-CF@300HS", + "sub_path": "filament/Tiertime PLA-CF@300HS.json" + }, + { + "name": "Tiertime PVA@300HS", + "sub_path": "filament/Tiertime PVA@300HS.json" + }, + { + "name": "Tiertime TPU 95A@300HS", + "sub_path": "filament/Tiertime TPU 95A@300HS.json" + }, + { + "name": "Tiertime Generic ABS", + "sub_path": "filament/Tiertime Generic ABS.json" + }, + { + "name": "Tiertime Generic ASA", + "sub_path": "filament/Tiertime Generic ASA.json" + }, + { + "name": "Tiertime Generic BVOH", + "sub_path": "filament/Tiertime Generic BVOH.json" + }, + { + "name": "Tiertime Generic EVA", + "sub_path": "filament/Tiertime Generic EVA.json" + }, + { + "name": "Tiertime Generic HIPS", + "sub_path": "filament/Tiertime Generic HIPS.json" + }, + { + "name": "Tiertime Generic PA-CF", + "sub_path": "filament/Tiertime Generic PA-CF.json" + }, + { + "name": "Tiertime Generic PA", + "sub_path": "filament/Tiertime Generic PA.json" + }, + { + "name": "Tiertime Generic PC", + "sub_path": "filament/Tiertime Generic PC.json" + }, + { + "name": "Tiertime Generic PCTG", + "sub_path": "filament/Tiertime Generic PCTG.json" + }, + { + "name": "Tiertime Generic PE-CF", + "sub_path": "filament/Tiertime Generic PE-CF.json" + }, + { + "name": "Tiertime Generic PE", + "sub_path": "filament/Tiertime Generic PE.json" + }, + { + "name": "Tiertime Generic PETG", + "sub_path": "filament/Tiertime Generic PETG.json" + }, + { + "name": "Tiertime Generic PETG-CF", + "sub_path": "filament/Tiertime Generic PETG-CF.json" + }, + { + "name": "Tiertime Generic PHA", + "sub_path": "filament/Tiertime Generic PHA.json" + }, + { + "name": "Tiertime Generic PLA High Speed", + "sub_path": "filament/Tiertime Generic PLA High Speed.json" + }, + { + "name": "Tiertime Generic PLA Silk", + "sub_path": "filament/Tiertime Generic PLA Silk.json" + }, + { + "name": "Tiertime Generic PLA-CF", + "sub_path": "filament/Tiertime Generic PLA-CF.json" + }, + { + "name": "Tiertime Generic PLA", + "sub_path": "filament/Tiertime Generic PLA.json" + }, + { + "name": "Tiertime Generic PP-CF", + "sub_path": "filament/Tiertime Generic PP-CF.json" + }, + { + "name": "Tiertime Generic PP-GF", + "sub_path": "filament/Tiertime Generic PP-GF.json" + }, + { + "name": "Tiertime Generic PP", + "sub_path": "filament/Tiertime Generic PP.json" + }, + { + "name": "Tiertime Generic PPA-CF", + "sub_path": "filament/Tiertime Generic PPA-CF.json" + }, + { + "name": "Tiertime Generic PPA-GF", + "sub_path": "filament/Tiertime Generic PPA-GF.json" + }, + { + "name": "Tiertime Generic PPS-CF", + "sub_path": "filament/Tiertime Generic PPS-CF.json" + }, + { + "name": "Tiertime Generic PPS", + "sub_path": "filament/Tiertime Generic PPS.json" + }, + { + "name": "Tiertime Generic PVA", + "sub_path": "filament/Tiertime Generic PVA.json" + }, + { + "name": "Tiertime Generic SBS", + "sub_path": "filament/Tiertime Generic SBS.json" + } + , + { + "name": "Tiertime Generic TPU", + "sub_path": "filament/Tiertime Generic TPU.json" + }, + { + "name": "Tiertime Generic ABS@300HS", + "sub_path": "filament/Tiertime Generic ABS@300HS.json" + }, + { + "name": "Tiertime Generic ASA@300HS", + "sub_path": "filament/Tiertime Generic ASA@300HS.json" + }, + { + "name": "Tiertime Generic BVOH@300HS", + "sub_path": "filament/Tiertime Generic BVOH@300HS.json" + }, + { + "name": "Tiertime Generic EVA@300HS", + "sub_path": "filament/Tiertime Generic EVA@300HS.json" + }, + { + "name": "Tiertime Generic HIPS@300HS", + "sub_path": "filament/Tiertime Generic HIPS@300HS.json" + }, + { + "name": "Tiertime Generic PA-CF@300HS", + "sub_path": "filament/Tiertime Generic PA-CF@300HS.json" + }, + { + "name": "Tiertime Generic PA@300HS", + "sub_path": "filament/Tiertime Generic PA@300HS.json" + }, + { + "name": "Tiertime Generic PC@300HS", + "sub_path": "filament/Tiertime Generic PC@300HS.json" + }, + { + "name": "Tiertime Generic PCTG@300HS", + "sub_path": "filament/Tiertime Generic PCTG@300HS.json" + }, + { + "name": "Tiertime Generic PE-CF@300HS", + "sub_path": "filament/Tiertime Generic PE-CF@300HS.json" + }, + { + "name": "Tiertime Generic PE@300HS", + "sub_path": "filament/Tiertime Generic PE@300HS.json" + }, + { + "name": "Tiertime Generic PETG@300HS", + "sub_path": "filament/Tiertime Generic PETG@300HS.json" + }, + { + "name": "Tiertime Generic PETG-CF@300HS", + "sub_path": "filament/Tiertime Generic PETG-CF@300HS.json" + }, + { + "name": "Tiertime Generic PHA@300HS", + "sub_path": "filament/Tiertime Generic PHA@300HS.json" + }, + { + "name": "Tiertime Generic PLA High Speed@300HS", + "sub_path": "filament/Tiertime Generic PLA High Speed@300HS.json" + }, + { + "name": "Tiertime Generic PLA Silk@300HS", + "sub_path": "filament/Tiertime Generic PLA Silk@300HS.json" + }, + { + "name": "Tiertime Generic PLA-CF@300HS", + "sub_path": "filament/Tiertime Generic PLA-CF@300HS.json" + }, + { + "name": "Tiertime Generic PLA@300HS", + "sub_path": "filament/Tiertime Generic PLA@300HS.json" + }, + { + "name": "Tiertime Generic PP-CF@300HS", + "sub_path": "filament/Tiertime Generic PP-CF@300HS.json" + }, + { + "name": "Tiertime Generic PP-GF@300HS", + "sub_path": "filament/Tiertime Generic PP-GF@300HS.json" + }, + { + "name": "Tiertime Generic PP@300HS", + "sub_path": "filament/Tiertime Generic PP@300HS.json" + }, + { + "name": "Tiertime Generic PPA-CF@300HS", + "sub_path": "filament/Tiertime Generic PPA-CF@300HS.json" + }, + { + "name": "Tiertime Generic PPA-GF@300HS", + "sub_path": "filament/Tiertime Generic PPA-GF@300HS.json" + }, + { + "name": "Tiertime Generic PPS-CF@300HS", + "sub_path": "filament/Tiertime Generic PPS-CF@300HS.json" + }, + { + "name": "Tiertime Generic PPS@300HS", + "sub_path": "filament/Tiertime Generic PPS@300HS.json" + }, + { + "name": "Tiertime Generic PVA@300HS", + "sub_path": "filament/Tiertime Generic PVA@300HS.json" + }, + { + "name": "Tiertime Generic SBS@300HS", + "sub_path": "filament/Tiertime Generic SBS@300HS.json" + } + , + { + "name": "Tiertime Generic TPU@300HS", + "sub_path": "filament/Tiertime Generic TPU@300HS.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "fdm_tiertime_common", + "sub_path": "machine/fdm_tiertime_common.json" + }, + { + "name": "Tiertime UP400 Pro 0.4 nozzle", + "sub_path": "machine/Tiertime UP400 Pro 0.4 nozzle.json" + }, + { + "name": "Tiertime UP310 Pro 0.4 nozzle", + "sub_path": "machine/Tiertime UP310 Pro 0.4 nozzle.json" + }, + { + "name": "Tiertime UP300 HS 0.4 nozzle", + "sub_path": "machine/Tiertime UP300 HS 0.4 nozzle.json" + }, + { + "name": "Tiertime UP600 HS 0.4 nozzle", + "sub_path": "machine/Tiertime UP600 HS 0.4 nozzle.json" + } + ] +} diff --git a/resources/profiles/Tiertime/Tiertime UP300 HS_cover.png b/resources/profiles/Tiertime/Tiertime UP300 HS_cover.png new file mode 100644 index 0000000000..86a3a44408 Binary files /dev/null and b/resources/profiles/Tiertime/Tiertime UP300 HS_cover.png differ diff --git a/resources/profiles/Tiertime/Tiertime UP310 Pro_cover.png b/resources/profiles/Tiertime/Tiertime UP310 Pro_cover.png new file mode 100644 index 0000000000..33861cdb5a Binary files /dev/null and b/resources/profiles/Tiertime/Tiertime UP310 Pro_cover.png differ diff --git a/resources/profiles/Tiertime/Tiertime UP400 Pro_cover.png b/resources/profiles/Tiertime/Tiertime UP400 Pro_cover.png new file mode 100644 index 0000000000..abbb74a82b Binary files /dev/null and b/resources/profiles/Tiertime/Tiertime UP400 Pro_cover.png differ diff --git a/resources/profiles/Tiertime/Tiertime UP600 HS_cover.png b/resources/profiles/Tiertime/Tiertime UP600 HS_cover.png new file mode 100644 index 0000000000..566ca82e7e Binary files /dev/null and b/resources/profiles/Tiertime/Tiertime UP600 HS_cover.png differ diff --git a/resources/profiles/Tiertime/filament/Tiertime ABS.json b/resources/profiles/Tiertime/filament/Tiertime ABS.json new file mode 100644 index 0000000000..719a3643fd --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime ABS.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "filament_id": "GFB00", + "setting_id": "GFSB00", + "name": "Tiertime ABS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "0.95" + ], + "filament_cost": [ + "24.99" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "fan_max_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json new file mode 100644 index 0000000000..3415f95b5b --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "filament_id": "GFB00_01", + "setting_id": "GFSB00", + "name": "Tiertime ABS@300HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_abs", + "filament_flow_ratio": [ + "0.95" + ], + "filament_cost": [ + "24.99" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "fan_max_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime ASA.json b/resources/profiles/Tiertime/filament/Tiertime ASA.json new file mode 100644 index 0000000000..02e620e62a --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime ASA.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Tiertime ASA", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "GFB01", + "instantiation": "true", + "fan_max_speed": [ + "35" + ], + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.05" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "fan_min_speed": [ + "25" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json new file mode 100644 index 0000000000..7e3bfd1b28 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Tiertime ASA@300HS", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "GFB01_01", + "instantiation": "true", + "fan_max_speed": [ + "35" + ], + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.05" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "fan_min_speed": [ + "25" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json new file mode 100644 index 0000000000..dc303c7084 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json @@ -0,0 +1,36 @@ +{ + "type": "filament", + "name": "Tiertime Generic ABS", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "GFB99", + "instantiation": "true", + "filament_flow_ratio": [ + "0.95" + ], + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json new file mode 100644 index 0000000000..c10a346687 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json @@ -0,0 +1,36 @@ +{ + "type": "filament", + "name": "Tiertime Generic ABS@300HS", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "GFB99_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.95" + ], + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json b/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json new file mode 100644 index 0000000000..f66333275c --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "name": "Tiertime Generic ASA", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "GFB98", + "instantiation": "true", + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json new file mode 100644 index 0000000000..2f717c2d3b --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "name": "Tiertime Generic ASA@300HS", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "GFB98_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json new file mode 100644 index 0000000000..e221a425c0 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic BVOH", + "inherits": "fdm_filament_bvoh", + "from": "system", + "filament_id": "GFS97", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json new file mode 100644 index 0000000000..e5904d9a54 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic BVOH@300HS", + "inherits": "fdm_filament_bvoh", + "from": "system", + "filament_id": "GFS97_01", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json b/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json new file mode 100644 index 0000000000..68e4670ff6 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json @@ -0,0 +1,90 @@ +{ + "type": "filament", + "name": "Tiertime Generic EVA", + "inherits": "fdm_filament_eva", + "from": "system", + "filament_id": "GFR99", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "EVA" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json new file mode 100644 index 0000000000..82d66de277 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json @@ -0,0 +1,90 @@ +{ + "type": "filament", + "name": "Tiertime Generic EVA@300HS", + "inherits": "fdm_filament_eva", + "from": "system", + "filament_id": "GFR99_01", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "EVA" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json new file mode 100644 index 0000000000..8a0cbe6130 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "Tiertime Generic HIPS", + "inherits": "fdm_filament_hips", + "from": "system", + "filament_id": "GFS98", + "instantiation": "true", + "filament_is_support": [ + "1" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json new file mode 100644 index 0000000000..eec8044a21 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "Tiertime Generic HIPS@300HS", + "inherits": "fdm_filament_hips", + "from": "system", + "filament_id": "GFS98_01", + "instantiation": "true", + "filament_is_support": [ + "1" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json new file mode 100644 index 0000000000..934041b377 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "Tiertime Generic PA-CF", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "GFN98", + "setting_id": "GFSN99", + "instantiation": "true", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_type": [ + "PA-CF" + ], + "full_fan_speed_layer": [ + "2" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json new file mode 100644 index 0000000000..7023981fd3 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "Tiertime Generic PA-CF@300HS", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "GFN98_02", + "setting_id": "GFSN99", + "instantiation": "true", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_type": [ + "PA-CF" + ], + "full_fan_speed_layer": [ + "2" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA.json new file mode 100644 index 0000000000..4ad758f133 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "Tiertime Generic PA", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "GFN99", + "setting_id": "GFSN98", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "65" + ], + "fan_max_speed": [ + "85" + ], + "fan_min_speed": [ + "40" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "95" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "10" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json new file mode 100644 index 0000000000..722bbdbceb --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "Tiertime Generic PA@300HS", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "GFN99_01", + "setting_id": "GFSN98", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "65" + ], + "fan_max_speed": [ + "85" + ], + "fan_min_speed": [ + "40" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "95" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "10" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PC.json b/resources/profiles/Tiertime/filament/Tiertime Generic PC.json new file mode 100644 index 0000000000..683beec88c --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PC.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "Tiertime Generic PC", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "GFC99", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "16" + ], + "filament_flow_ratio": [ + "0.94" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json new file mode 100644 index 0000000000..54250af7fe --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "Tiertime Generic PC@300HS", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "GFC99_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "16" + ], + "filament_flow_ratio": [ + "0.94" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json new file mode 100644 index 0000000000..b73721aca8 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Tiertime Generic PCTG", + "inherits": "fdm_filament_pctg", + "from": "system", + "filament_id": "GFG97", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "28.99" + ], + "filament_density": [ + "1.29" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "90" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json new file mode 100644 index 0000000000..ccd8a9f847 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Tiertime Generic PCTG@300HS", + "inherits": "fdm_filament_pctg", + "from": "system", + "filament_id": "GFG97-01", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "28.99" + ], + "filament_density": [ + "1.29" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "90" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json new file mode 100644 index 0000000000..8b43fc2c3a --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Tiertime Generic PE-CF", + "inherits": "fdm_filament_pe", + "from": "system", + "filament_id": "GFP98", + "instantiation": "true", + "filament_cost": [ + "65.99" + ], + "filament_density": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PE-CF" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "temperature_vitrification": [ + "70" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json new file mode 100644 index 0000000000..caad0f326e --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Tiertime Generic PE-CF@300HS", + "inherits": "fdm_filament_pe", + "from": "system", + "filament_id": "GFP98_01", + "instantiation": "true", + "filament_cost": [ + "65.99" + ], + "filament_density": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PE-CF" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "temperature_vitrification": [ + "70" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE.json new file mode 100644 index 0000000000..0619b1855c --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE.json @@ -0,0 +1,39 @@ +{ + "type": "filament", + "name": "Tiertime Generic PE", + "inherits": "fdm_filament_pe", + "from": "system", + "filament_id": "GFP99", + "instantiation": "true", + "filament_cost": [ + "40.99" + ], + "filament_density": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "temperature_vitrification": [ + "70" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json new file mode 100644 index 0000000000..98937d8c8f --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json @@ -0,0 +1,39 @@ +{ + "type": "filament", + "name": "Tiertime Generic PE@300HS", + "inherits": "fdm_filament_pe", + "from": "system", + "filament_id": "GFP99_01", + "instantiation": "true", + "filament_cost": [ + "40.99" + ], + "filament_density": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "temperature_vitrification": [ + "70" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json new file mode 100644 index 0000000000..29d19f6196 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json @@ -0,0 +1,87 @@ +{ + "type": "filament", + "name": "Tiertime Generic PETG-CF", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFG98", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "Generic" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "11.5" + ], + "overhang_fan_speed": [ + "100" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json new file mode 100644 index 0000000000..5bb514fde6 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json @@ -0,0 +1,87 @@ +{ + "type": "filament", + "name": "Tiertime Generic PETG-CF@300HS", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFG98_01", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "Generic" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "11.5" + ], + "overhang_fan_speed": [ + "100" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json new file mode 100644 index 0000000000..0957098cbb --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json @@ -0,0 +1,69 @@ +{ + "type": "filament", + "name": "Tiertime Generic PETG", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFG99", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json new file mode 100644 index 0000000000..8b206aa565 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json @@ -0,0 +1,69 @@ +{ + "type": "filament", + "name": "Tiertime Generic PETG@300HS", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFG99_01", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json new file mode 100644 index 0000000000..6d93f4810c --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic PHA", + "inherits": "fdm_filament_pha", + "from": "system", + "filament_id": "GFR98", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json new file mode 100644 index 0000000000..8a9dc6210b --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic PHA@300HS", + "inherits": "fdm_filament_pha", + "from": "system", + "filament_id": "GFR98_01", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json new file mode 100644 index 0000000000..286027edbe --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA High Speed", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL95", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "slow_down_layer_time": [ + "4" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json new file mode 100644 index 0000000000..5d50ab8d5a --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA High Speed@300HS", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL95_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "slow_down_layer_time": [ + "4" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json new file mode 100644 index 0000000000..caf39723ca --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA Silk", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL96", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_retraction_length": [ + "0.5" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json new file mode 100644 index 0000000000..fda4340833 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA Silk@300HS", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL96_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_retraction_length": [ + "0.5" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json new file mode 100644 index 0000000000..93f067af91 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA-CF", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL98", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_type": [ + "PLA-CF" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "7" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json new file mode 100644 index 0000000000..d5cbfd2210 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA-CF@300HS", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL98_01", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_type": [ + "PLA-CF" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "7" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "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}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json new file mode 100644 index 0000000000..a3e28a5668 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL99", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json new file mode 100644 index 0000000000..d1516c6591 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic PLA@300HS", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFL99_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json new file mode 100644 index 0000000000..3e598680cc --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Tiertime Generic PP-CF", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "GFP96", + "instantiation": "true", + "filament_cost": [ + "77.99" + ], + "filament_density": [ + "1.01" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PP-CF" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json new file mode 100644 index 0000000000..c004535ac2 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Tiertime Generic PP-CF@300HS", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "GFP96_01", + "instantiation": "true", + "filament_cost": [ + "77.99" + ], + "filament_density": [ + "1.01" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PP-CF" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json new file mode 100644 index 0000000000..f09aac6015 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Tiertime Generic PP-GF", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "GFP95", + "instantiation": "true", + "filament_cost": [ + "59.99" + ], + "filament_density": [ + "1.05" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PP-GF" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json new file mode 100644 index 0000000000..80e489e474 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Tiertime Generic PP-GF@300HS", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "GFP95_01", + "instantiation": "true", + "filament_cost": [ + "59.99" + ], + "filament_density": [ + "1.05" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PP-GF" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP.json new file mode 100644 index 0000000000..5597854336 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic PP", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "GFP97", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json new file mode 100644 index 0000000000..8da5f28d61 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic PP@300HS", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "GFP97_01", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json new file mode 100644 index 0000000000..f7638fd66d --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPA-CF", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "GFN97", + "instantiation": "true", + "filament_type": [ + "PPA-CF" + ], + "filament_vendor": [ + "Generic" + ], + "fan_max_speed": [ + "35" + ], + "filament_max_volumetric_speed": [ + "6.5" + ], + "overhang_fan_threshold": [ + "25%" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json new file mode 100644 index 0000000000..3340db467e --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPA-CF@300HS", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "GFN97_01", + "instantiation": "true", + "filament_type": [ + "PPA-CF" + ], + "filament_vendor": [ + "Generic" + ], + "fan_max_speed": [ + "35" + ], + "filament_max_volumetric_speed": [ + "6.5" + ], + "overhang_fan_threshold": [ + "25%" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json new file mode 100644 index 0000000000..0d57eb8bea --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPA-GF", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "GFN96", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PPA-GF" + ], + "filament_vendor": [ + "Generic" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json new file mode 100644 index 0000000000..bb014dc95d --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPA-GF@300HS", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "GFN96_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PPA-GF" + ], + "filament_vendor": [ + "Generic" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json new file mode 100644 index 0000000000..86578a3d2a --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPS-CF", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "GFT98", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "filament_density": [ + "1.3" + ], + "filament_max_volumetric_speed": [ + "3" + ], + "filament_type": [ + "PPS-CF" + ], + "nozzle_temperature_range_high": [ + "350" + ], + "required_nozzle_HRC": [ + "40" + ], + "temperature_vitrification": [ + "220" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json new file mode 100644 index 0000000000..8ed0241634 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPS-CF@300HS", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "GFT98_01", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "filament_density": [ + "1.3" + ], + "filament_max_volumetric_speed": [ + "3" + ], + "filament_type": [ + "PPS-CF" + ], + "nozzle_temperature_range_high": [ + "350" + ], + "required_nozzle_HRC": [ + "40" + ], + "temperature_vitrification": [ + "220" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json new file mode 100644 index 0000000000..8be5faba24 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPS", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "GFT97", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json new file mode 100644 index 0000000000..3c27726fad --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json @@ -0,0 +1,12 @@ +{ + "type": "filament", + "name": "Tiertime Generic PPS@300HS", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "GFT97_01", + "instantiation": "true", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json new file mode 100644 index 0000000000..139e6bad4f --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Tiertime Generic PVA", + "inherits": "fdm_filament_pva", + "from": "system", + "filament_id": "GFS99", + "instantiation": "true", + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json new file mode 100644 index 0000000000..c148d32f09 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Tiertime Generic PVA@300HS", + "inherits": "fdm_filament_pva", + "from": "system", + "filament_id": "GFS99_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json b/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json new file mode 100644 index 0000000000..4c671c8029 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic SBS", + "inherits": "fdm_filament_sbs", + "from": "system", + "filament_id": "GFL99", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json new file mode 100644 index 0000000000..dd7709b3d0 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "Tiertime Generic SBS@300HS", + "inherits": "fdm_filament_sbs", + "from": "system", + "filament_id": "GFL99_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json b/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json new file mode 100644 index 0000000000..db29d11d2b --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json @@ -0,0 +1,19 @@ +{ + "type": "filament", + "name": "Tiertime Generic TPU", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "GFU99", + "setting_id": "GFSR99", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.2" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json new file mode 100644 index 0000000000..4312f7c0ed --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json @@ -0,0 +1,19 @@ +{ + "type": "filament", + "name": "Tiertime Generic TPU@300HS", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "GFU99_01", + "setting_id": "GFSR99", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.2" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json b/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json new file mode 100644 index 0000000000..46c3a2c8e9 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Tiertime PA6-CF", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "GFN05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "79.99" + ], + "filament_density": [ + "1.10" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA6-CF" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature": [ + "275" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json new file mode 100644 index 0000000000..6bd06c2c35 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Tiertime PA6-CF@300HS", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "GFN05_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "79.99" + ], + "filament_density": [ + "1.10" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA6-CF" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature": [ + "275" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PC.json b/resources/profiles/Tiertime/filament/Tiertime PC.json new file mode 100644 index 0000000000..9b13fde1c1 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PC.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime PC", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "GFC00", + "instantiation": "true", + "filament_vendor": [ + "Tiertime Lab" + ], + "filament_cost": [ + "39.99" + ], + "filament_flow_ratio": [ + "0.94" + ], + "fan_max_speed": [ + "40" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json new file mode 100644 index 0000000000..fa4a209c11 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime PC@300HS", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "GFC00_01", + "instantiation": "true", + "filament_vendor": [ + "Tiertime Lab" + ], + "filament_cost": [ + "39.99" + ], + "filament_flow_ratio": [ + "0.94" + ], + "fan_max_speed": [ + "40" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PET-CF.json b/resources/profiles/Tiertime/filament/Tiertime PET-CF.json new file mode 100644 index 0000000000..996ccf7666 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PET-CF.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "Tiertime PET-CF", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFT01", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "84.99" + ], + "filament_density": [ + "1.29" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "PET-CF" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "temperature_vitrification": [ + "185" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json new file mode 100644 index 0000000000..6f264a99f3 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "Tiertime PET-CF@300HS", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFT01_01", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "84.99" + ], + "filament_density": [ + "1.29" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "PET-CF" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "temperature_vitrification": [ + "185" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PETG.json b/resources/profiles/Tiertime/filament/Tiertime PETG.json new file mode 100644 index 0000000000..521c631d60 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PETG.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Tiertime PETG", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFG00", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json new file mode 100644 index 0000000000..eb018ac60f --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Tiertime PETG@300HS", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFG00_01", + "instantiation": "true", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json b/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json new file mode 100644 index 0000000000..b737235b82 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json @@ -0,0 +1,60 @@ +{ + "type": "filament", + "name": "Tiertime PLA-CF", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFA50", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_type": [ + "PLA-CF" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json new file mode 100644 index 0000000000..2cdbdeb543 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json @@ -0,0 +1,60 @@ +{ + "type": "filament", + "name": "Tiertime PLA-CF@300HS", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "GFA50_01", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_type": [ + "PLA-CF" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA.json b/resources/profiles/Tiertime/filament/Tiertime PLA.json new file mode 100644 index 0000000000..04832b97e8 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PLA.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "filament_id": "GFA00", + "setting_id": "GFSA00", + "name": "Tiertime PLA", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json new file mode 100644 index 0000000000..9a7c593f0a --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "filament_id": "GFA00_01", + "setting_id": "GFSA00", + "name": "Tiertime PLA@300HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PVA.json b/resources/profiles/Tiertime/filament/Tiertime PVA.json new file mode 100644 index 0000000000..e4d35758e1 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PVA.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Tiertime PVA", + "inherits": "fdm_filament_pva", + "from": "system", + "filament_id": "GFS04", + "instantiation": "true", + "filament_cost": [ + "79.98" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json new file mode 100644 index 0000000000..5608eab230 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Tiertime PVA@300HS", + "inherits": "fdm_filament_pva", + "from": "system", + "filament_id": "GFS04_01", + "instantiation": "true", + "filament_cost": [ + "79.98" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Tiertime Lab" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json b/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json new file mode 100644 index 0000000000..de12c063bb --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime TPU 95A", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "GFU01", + "instantiation": "true", + "filament_vendor": [ + "Tiertime Lab" + ], + "filament_density": [ + "1.22" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "filament_cost": [ + "41.99" + ], + "nozzle_temperature": [ + "230" + ], + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle", + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json b/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json new file mode 100644 index 0000000000..c09e7bbab5 --- /dev/null +++ b/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "Tiertime TPU 95A@300HS", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "GFU01_01", + "instantiation": "true", + "filament_vendor": [ + "Tiertime Lab" + ], + "filament_density": [ + "1.22" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "filament_cost": [ + "41.99" + ], + "nozzle_temperature": [ + "230" + ], + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle", + "Tiertime UP600 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_abs.json b/resources/profiles/Tiertime/filament/fdm_filament_abs.json new file mode 100644 index 0000000000..50dc3facf1 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_abs.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_abs", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "0" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ABS" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "3" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_asa.json b/resources/profiles/Tiertime/filament/fdm_filament_asa.json new file mode 100644 index 0000000000..62d3faef09 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_asa.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_asa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "0" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ASA" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "3" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_bvoh.json b/resources/profiles/Tiertime/filament/fdm_filament_bvoh.json new file mode 100644 index 0000000000..6431a87bd2 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_bvoh.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "fdm_filament_bvoh", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "69.99" + ], + "filament_density": [ + "1.13" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "BVOH" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "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}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_common.json b/resources/profiles/Tiertime/filament/fdm_filament_common.json new file mode 100644 index 0000000000..3fb3a8da5e --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_common.json @@ -0,0 +1,166 @@ +{ + "type": "filament", + "name": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "60" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "35" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "0" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "0" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "95%" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "10" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [], + "filament_start_gcode": [ + "; Filament gcode\n;{if activate_air_filtration[current_extruder] && support_air_filtration}\n;M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n;{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n;M106 P3 S0\n" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_eva.json b/resources/profiles/Tiertime/filament/fdm_filament_eva.json new file mode 100644 index 0000000000..3ce2b1844e --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_eva.json @@ -0,0 +1,10 @@ +{ + "type": "filament", + "name": "fdm_filament_eva", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "filament_type": [ + "EVA" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_hips.json b/resources/profiles/Tiertime/filament/fdm_filament_hips.json new file mode 100644 index 0000000000..50ee869f2c --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_hips.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "name": "fdm_filament_hips", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "hot_plate_temp": [ + "90" + ], + "textured_plate_temp": [ + "90" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "10" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "HIPS" + ], + "filament_density": [ + "1.06" + ], + "filament_cost": [ + "22.99" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "80" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_min_speed": [ + "20" + ], + "slow_down_layer_time": [ + "6" + ], + "additional_cooling_fan_speed": [ + "0" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pa.json b/resources/profiles/Tiertime/filament/fdm_filament_pa.json new file mode 100644 index 0000000000..06ddafc639 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pa.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_pa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "4" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "PA" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "30" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "108" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pc.json b/resources/profiles/Tiertime/filament/fdm_filament_pc.json new file mode 100644 index 0000000000..6ffb3ad9ff --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pc.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_pc", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_type": [ + "PC" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "120" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pctg.json b/resources/profiles/Tiertime/filament/fdm_filament_pctg.json new file mode 100644 index 0000000000..70b72a506b --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pctg.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "name": "fdm_filament_pctg", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_type": [ + "PCTG" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pe.json b/resources/profiles/Tiertime/filament/fdm_filament_pe.json new file mode 100644 index 0000000000..5c18673ae8 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pe.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "fdm_filament_pe", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PE" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pet.json b/resources/profiles/Tiertime/filament/fdm_filament_pet.json new file mode 100644 index 0000000000..d563dd7cc4 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pet.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "name": "fdm_filament_pet", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_type": [ + "PETG" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pha.json b/resources/profiles/Tiertime/filament/fdm_filament_pha.json new file mode 100644 index 0000000000..a51be2dcf7 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pha.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "fdm_filament_pha", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "27.99" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PHA" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "120" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pla.json b/resources/profiles/Tiertime/filament/fdm_filament_pla.json new file mode 100644 index 0000000000..349acbdcc5 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pla.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_pla", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "cool_plate_temp": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "220" + ], + "temperature_vitrification": [ + "45" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_min_speed": [ + "20" + ], + "slow_down_layer_time": [ + "4" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n;{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n;{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n;{endif}\n\n;{if activate_air_filtration[current_extruder] && support_air_filtration}\n;M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n;{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pp.json b/resources/profiles/Tiertime/filament/fdm_filament_pp.json new file mode 100644 index 0000000000..cc4e584569 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pp.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "fdm_filament_pp", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "0.93" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PP" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_ppa.json b/resources/profiles/Tiertime/filament/fdm_filament_ppa.json new file mode 100644 index 0000000000..66598bbf97 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_ppa.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "fdm_filament_ppa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "PPA-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "280" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "210" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pps.json b/resources/profiles/Tiertime/filament/fdm_filament_pps.json new file mode 100644 index 0000000000..881609b890 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pps.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "name": "fdm_filament_pps", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "chamber_temperatures": [ + "60" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "filament_type": [ + "PPS" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "320" + ], + "nozzle_temperature_initial_layer": [ + "320" + ], + "nozzle_temperature_range_high": [ + "340" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "0%" + ], + "slow_down_layer_time": [ + "2" + ], + "temperature_vitrification": [ + "125" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_pva.json b/resources/profiles/Tiertime/filament/fdm_filament_pva.json new file mode 100644 index 0000000000..4ef2acf185 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_pva.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "fdm_filament_pva", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_soluble": [ + "1" + ], + "filament_type": [ + "PVA" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "50" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_sbs.json b/resources/profiles/Tiertime/filament/fdm_filament_sbs.json new file mode 100644 index 0000000000..5f9bdb4d2f --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_sbs.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "fdm_filament_sbs", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "23" + ], + "filament_type": [ + "SBS" + ], + "filament_density": [ + "1.02" + ], + "filament_cost": [ + "15" + ], + "cool_plate_temp": [ + "70" + ], + "eng_plate_temp": [ + "70" + ], + "hot_plate_temp": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "cool_plate_temp_initial_layer": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "fan_min_speed": [ + "0" + ], + "overhang_fan_threshold": [ + "50%" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "nozzle_temperature": [ + "235" + ], + "temperature_vitrification": [ + "70" + ], + "nozzle_temperature_range_low": [ + "215" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "slow_down_min_speed": [ + "20" + ], + "slow_down_layer_time": [ + "4" + ], + "additional_cooling_fan_speed": [ + "40" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/filament/fdm_filament_tpu.json b/resources/profiles/Tiertime/filament/fdm_filament_tpu.json new file mode 100644 index 0000000000..1914ac3029 --- /dev/null +++ b/resources/profiles/Tiertime/filament/fdm_filament_tpu.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "name": "fdm_filament_tpu", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_retraction_length": [ + "2.0" + ], + "filament_type": [ + "TPU" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json new file mode 100644 index 0000000000..f719989ecf --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json @@ -0,0 +1,21 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "Tiertime UP300 HS 0.4 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_tiertime_common", + "printer_model": "Tiertime UP300 HS", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_area": [ + "0x0", + "207x0", + "207x255", + "0x255" + ], + + "printable_height": "230" +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/machine/Tiertime UP300 HS.json b/resources/profiles/Tiertime/machine/Tiertime UP300 HS.json new file mode 100644 index 0000000000..0434ec601d --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP300 HS.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Tiertime UP300 HS", + "model_id": "my_tiertime_up300_01", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "Tiertime", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "Tiertime ABS;Tiertime PLA" +} diff --git a/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json new file mode 100644 index 0000000000..9824250597 --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json @@ -0,0 +1,20 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "Tiertime UP310 Pro 0.4 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_tiertime_common", + "printer_model": "Tiertime UP310 Pro", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "300" +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/machine/Tiertime UP310 Pro.json b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro.json new file mode 100644 index 0000000000..1f528a5619 --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Tiertime UP310 Pro", + "model_id": "my_tiertime310_01", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "Tiertime", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "Tiertime ABS;Tiertime PLA" +} diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json new file mode 100644 index 0000000000..d64c6d7215 --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json @@ -0,0 +1,21 @@ +{ + "type": "machine", + "setting_id": "GM001", + "name": "Tiertime UP400 Pro 0.4 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_tiertime_common", + "printer_model": "Tiertime UP400 Pro", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_area": [ + "0x0", + "400x0", + "400x350", + "0x350" + ], + + "printable_height": "380" +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro.json new file mode 100644 index 0000000000..af1895146f --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Tiertime UP400 Pro", + "model_id": "my_tiertime_up400_01", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "Tiertime", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "Tiertime ABS;Tiertime PLA" +} diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json new file mode 100644 index 0000000000..a1444ca656 --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json @@ -0,0 +1,21 @@ +{ + "type": "machine", + "setting_id": "GM006", + "name": "Tiertime UP600 HS 0.4 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_tiertime_common", + "printer_model": "Tiertime UP600 HS", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_area": [ + "0x0", + "500x0", + "500x400", + "0x400" + ], + + "printable_height": "600" +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS.json new file mode 100644 index 0000000000..47e613ce8e --- /dev/null +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Tiertime UP600 HS", + "model_id": "my_tiertime_up600_01", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "Tiertime", + "bed_model": "", + "bed_texture": "", + "hotend_model": "", + "default_materials": "Tiertime ABS;Tiertime PLA" +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/machine/fdm_machine_common.json b/resources/profiles/Tiertime/machine/fdm_machine_common.json new file mode 100644 index 0000000000..5785f57b19 --- /dev/null +++ b/resources/profiles/Tiertime/machine/fdm_machine_common.json @@ -0,0 +1,119 @@ +{ + "type": "machine", + "name": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "printer_technology": "FFF", + "deretraction_speed": [ + "40" + ], + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "gcode_flavor": "marlin", + "silent_mode": "0", + "machine_max_acceleration_e": [ + "5000" + ], + "machine_max_acceleration_extruding": [ + "10000" + ], + "machine_max_acceleration_retracting": [ + "1000" + ], + "machine_max_acceleration_x": [ + "10000" + ], + "machine_max_acceleration_y": [ + "10000" + ], + "machine_max_acceleration_z": [ + "500" + ], + "machine_max_speed_e": [ + "60" + ], + "machine_max_speed_x": [ + "500" + ], + "machine_max_speed_y": [ + "500" + ], + "machine_max_speed_z": [ + "10" + ], + "machine_max_jerk_e": [ + "5" + ], + "machine_max_jerk_x": [ + "8" + ], + "machine_max_jerk_y": [ + "8" + ], + "machine_max_jerk_z": [ + "0.4" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "printable_height": "250", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "nozzle_diameter": [ + "0.4" + ], + "printer_settings_id": "", + "printer_variant": "0.4", + "retraction_minimum_travel": [ + "2" + ], + "retract_before_wipe": [ + "70%" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "5" + ], + "retract_length_toolchange": [ + "1" + ], + "z_hop": [ + "0" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retraction_speed": [ + "60" + ], + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "wipe": [ + "1" + ], + "default_print_profile": "", + "machine_start_gcode": "G0 Z20 F9000\nG92 E0; G1 E-10 F1200\nG28\nM970 Q1 A10 B10 C130 K0\nM970 Q1 A10 B131 C250 K1\nM974 Q1 S1 P0\nM970 Q0 A10 B10 C130 H20 K0\nM970 Q0 A10 B131 C250 K1\nM974 Q0 S1 P0\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nG29 ;Home\nG90;\nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S205;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder \nG1 X110 Y110 Z2.0 F3000 ;Move Z Axis up", + "machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_pause_gcode": "M601" +} diff --git a/resources/profiles/Tiertime/machine/fdm_tiertime_common.json b/resources/profiles/Tiertime/machine/fdm_tiertime_common.json new file mode 100644 index 0000000000..55f8ddc4d0 --- /dev/null +++ b/resources/profiles/Tiertime/machine/fdm_tiertime_common.json @@ -0,0 +1,60 @@ +{ + "type": "machine", + "name": "fdm_tiertime_common", + "from": "system", + "instantiation": "false", + "inherits": "fdm_machine_common", + "gcode_flavor": "klipper", + "machine_max_acceleration_e": ["5000", "5000"], + "machine_max_acceleration_extruding": ["20000", "20000"], + "machine_max_acceleration_retracting": ["5000", "5000"], + "machine_max_acceleration_travel": ["20000", "20000"], + "machine_max_acceleration_x": ["20000", "20000"], + "machine_max_acceleration_y": ["20000", "20000"], + "machine_max_acceleration_z": ["500", "200"], + "machine_max_speed_e": ["25", "25"], + "machine_max_speed_x": ["500", "200"], + "machine_max_speed_y": ["500", "200"], + "machine_max_speed_z": ["12", "12"], + "machine_max_jerk_e": ["2.5", "2.5"], + "machine_max_jerk_x": ["9", "9"], + "machine_max_jerk_y": ["9", "9"], + "machine_max_jerk_z": ["0.2", "0.4"], + "machine_min_extruding_rate": ["0", "0"], + "machine_min_travel_rate": ["0", "0"], + "max_layer_height": ["0.32"], + "min_layer_height": ["0.08"], + "printable_height": "250", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "printer_settings_id": "", + "printer_technology": "FFF", + "printer_variant": "0.4", + "retraction_minimum_travel": ["1"], + "retract_before_wipe": ["70%"], + "retract_when_changing_layer": ["1"], + "retraction_length": ["0.8"], + "retract_length_toolchange": ["2"], + "z_hop": ["0.4"], + "retract_restart_extra": ["0"], + "retract_restart_extra_toolchange": ["0"], + "retraction_speed": ["30"], + "deretraction_speed": ["30"], + "z_hop_types": "Normal Lift", + "silent_mode": "0", + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "wipe": ["1"], + "default_filament_profile": [""], + "default_print_profile": "0.20mm Standard @Tiertime UP400 Pro", + "bed_exclude_area": ["0x0"], + "machine_start_gcode": ";M190 S[bed_temperature_initial_layer_single]\n;M109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\n", + "machine_end_gcode": "PRINT_END", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_pause_gcode": "PAUSE", + "scan_first_layer": "0", + "nozzle_type": "undefine", + "auxiliary_fan": "0" +} diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json new file mode 100644 index 0000000000..0b28527515 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Tiertime UP300 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.12", + "bottom_shell_layers": "5", + "elefant_foot_compensation": "0.15", + "top_shell_layers": "5", + "top_shell_thickness": "0.6", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "20", + "support_top_z_distance": "0.12", + "support_bottom_z_distance": "0.12", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json new file mode 100644 index 0000000000..3010fb6621 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Tiertime UP310 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.12", + "bottom_shell_layers": "5", + "elefant_foot_compensation": "0.15", + "top_shell_layers": "5", + "top_shell_thickness": "0.6", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "20", + "support_top_z_distance": "0.12", + "support_bottom_z_distance": "0.12", + "compatible_printers": [ + "Tiertime UP310 Pro 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json new file mode 100644 index 0000000000..7f816d75e1 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Fine @Tiertime UP400 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.12", + "bottom_shell_layers": "5", + "elefant_foot_compensation": "0.15", + "top_shell_layers": "5", + "top_shell_thickness": "0.6", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "20", + "support_top_z_distance": "0.12", + "support_bottom_z_distance": "0.12", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json new file mode 100644 index 0000000000..648f276690 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP026", + "name": "0.12mm Fine @Tiertime UP600 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.12", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "5", + "top_shell_layers": "8", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.12", + "support_bottom_z_distance": "0.12", + "compatible_printers": [ + "Tiertime UP600 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json new file mode 100644 index 0000000000..d1cb291fe3 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Tiertime UP300 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.16", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "4", + "top_shell_layers": "6", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json new file mode 100644 index 0000000000..1ba9ce59de --- /dev/null +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Tiertime UP310 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.16", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "4", + "top_shell_layers": "6", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16", + "compatible_printers": [ + "Tiertime UP310 Pro 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json new file mode 100644 index 0000000000..2ed7fee647 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.16mm Optimal @Tiertime UP400 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.16", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "4", + "top_shell_layers": "6", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json new file mode 100644 index 0000000000..871a8026d0 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP025", + "name": "0.16mm Optimal @Tiertime UP600 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.16", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "4", + "top_shell_layers": "6", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16", + "compatible_printers": [ + "Tiertime UP600 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json new file mode 100644 index 0000000000..c0eda5e055 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json @@ -0,0 +1,22 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Tiertime UP300 HS", + "from": "system", + "inherits": "fdm_process_tiertime_HS_common", + "instantiation": "true", + "elefant_foot_compensation": "0.15", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "top_shell_layers": "5", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json new file mode 100644 index 0000000000..75b76f4af9 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json @@ -0,0 +1,22 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.20mm Standard @Tiertime UP310 Pro", + "from": "system", + "inherits": "fdm_process_tiertime_common", + "instantiation": "true", + "elefant_foot_compensation": "0.15", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "gap_infill_speed": "150", + "top_shell_layers": "5", + "compatible_printers": [ + "Tiertime UP310 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json new file mode 100644 index 0000000000..03983e92b6 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json @@ -0,0 +1,20 @@ +{ + "type": "process", + "setting_id": "GP001", + "name": "0.20mm Standard @Tiertime UP400 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.2", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "250", + "internal_solid_infill_speed": "250", + "gap_infill_speed": "150", + "support_threshold_angle": "20", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json new file mode 100644 index 0000000000..6c91083e77 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json @@ -0,0 +1,22 @@ +{ + "type": "process", + "setting_id": "GP024", + "name": "0.20mm Standard @Tiertime UP600 HS", + "from": "system", + "inherits": "fdm_process_tiertime_HS_common", + "instantiation": "true", + "elefant_foot_compensation": "0.15", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "top_shell_layers": "5", + "compatible_printers": [ + "Tiertime UP600 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json new file mode 100644 index 0000000000..aff711e457 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Tiertime UP300 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.24", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "support_threshold_angle": "35", + "top_shell_layers": "4", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json new file mode 100644 index 0000000000..e18ab49b6f --- /dev/null +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Tiertime UP310 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.24", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "200", + "inner_wall_speed": "230", + "sparse_infill_speed": "230", + "internal_solid_infill_speed": "230", + "gap_infill_speed": "230", + "support_threshold_angle": "35", + "top_shell_layers": "4", + "compatible_printers": [ + "Tiertime UP310 Pro 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json new file mode 100644 index 0000000000..b871e7fca2 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Draft @Tiertime UP400 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.24", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "200", + "inner_wall_speed": "230", + "sparse_infill_speed": "230", + "internal_solid_infill_speed": "230", + "gap_infill_speed": "230", + "support_threshold_angle": "35", + "top_shell_layers": "4", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json new file mode 100644 index 0000000000..42a539e1da --- /dev/null +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP027", + "name": "0.24mm Draft @Tiertime UP600 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.24", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.24", + "support_bottom_z_distance": "0.24", + "compatible_printers": [ + "Tiertime UP600 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json new file mode 100644 index 0000000000..55bf4aecd5 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.28mm Extra Draft @Tiertime UP300 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.28", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "200", + "support_threshold_angle": "40", + "top_shell_layers": "4", + "compatible_printers": [ + "Tiertime UP300 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json new file mode 100644 index 0000000000..e583827013 --- /dev/null +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.28mm Extra Draft @Tiertime UP310 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.28", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "200", + "support_threshold_angle": "40", + "top_shell_layers": "4", + "compatible_printers": [ + "Tiertime UP310 Pro 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json new file mode 100644 index 0000000000..0d1f98665b --- /dev/null +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.28mm Extra Draft @Tiertime UP400 Pro", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_common", + "layer_height": "0.28", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "200", + "support_threshold_angle": "40", + "top_shell_layers": "4", + "compatible_printers": [ + "Tiertime UP400 Pro 0.4 nozzle" + ] +} diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json new file mode 100644 index 0000000000..a0bd17c20b --- /dev/null +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json @@ -0,0 +1,30 @@ +{ + "type": "process", + "setting_id": "GP028", + "name": "0.28mm Extra Draft @Tiertime UP600 HS", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_tiertime_HS_common", + "layer_height": "0.28", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "105", + "outer_wall_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "150", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.28", + "support_bottom_z_distance": "0.28", + "compatible_printers": [ + "Tiertime UP600 HS 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/fdm_process_common.json b/resources/profiles/Tiertime/process/fdm_process_common.json new file mode 100644 index 0000000000..2d65f5f50e --- /dev/null +++ b/resources/profiles/Tiertime/process/fdm_process_common.json @@ -0,0 +1,72 @@ +{ + "type": "process", + "name": "fdm_process_common", + "from": "system", + "instantiation": "false", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "bridge_flow": "0.95", + "bridge_speed": "50", + "brim_width": "5", + "print_sequence": "by layer", + "default_acceleration": "10000", + "bridge_no_support": "0", + "elefant_foot_compensation": "0.1", + "outer_wall_line_width": "0.42", + "outer_wall_speed": "120", + "inner_wall_speed": "160", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "crosshatch", + "initial_layer_line_width": "0.42", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "90", + "gap_infill_speed": "50", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "15%", + "sparse_infill_speed": "200", + "interface_shells": "0", + "detect_overhang_wall": "0", + "reduce_infill_retraction": "0", + "filename_format": "{input_filename_base}.gcode", + "wall_loops": "2", + "inner_wall_line_width": "0.45", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "nearest", + "skirt_distance": "2", + "skirt_height": "2", + "minimum_sparse_infill_area": "0", + "internal_solid_infill_line_width": "0.45", + "internal_solid_infill_speed": "180", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_filament": "0", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.15", + "support_interface_loop_pattern": "0", + "support_interface_top_layers": "2", + "support_interface_spacing": "0", + "support_interface_speed": "80", + "support_interface_pattern": "auto", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2", + "support_speed": "200", + "support_threshold_angle": "40", + "support_object_xy_distance": "0.5", + "detect_thin_wall": "0", + "top_surface_line_width": "0.42", + "top_surface_speed": "120", + "travel_speed": "400", + "enable_prime_tower": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/fdm_process_tiertime_HS_common.json b/resources/profiles/Tiertime/process/fdm_process_tiertime_HS_common.json new file mode 100644 index 0000000000..d4d897efe0 --- /dev/null +++ b/resources/profiles/Tiertime/process/fdm_process_tiertime_HS_common.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "fdm_process_tiertime_HS_common", + "inherits": "fdm_process_tiertime_common", + "from": "system", + "instantiation": "false", + "default_acceleration": "4000", + "travel_acceleration": "4000", + "outer_wall_acceleration": "2500", + "inner_wall_acceleration": "3000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "2000", + "travel_speed": "200", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/Tiertime/process/fdm_process_tiertime_common.json b/resources/profiles/Tiertime/process/fdm_process_tiertime_common.json new file mode 100644 index 0000000000..7c6a127287 --- /dev/null +++ b/resources/profiles/Tiertime/process/fdm_process_tiertime_common.json @@ -0,0 +1,80 @@ +{ + "type": "process", + "name": "fdm_process_tiertime_common", + "inherits": "fdm_process_common", + "from": "system", + "instantiation": "false", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + "enable_arc_fitting": "1", + "default_acceleration": "6000", + "travel_acceleration": "6000", + "outer_wall_acceleration": "3000", + "inner_wall_acceleration": "5000", + "top_surface_acceleration": "2000", + "initial_layer_acceleration": "500", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "internal_bridge_support_thickness": "0.8", + "initial_layer_line_width": "0.5", + "initial_layer_speed": "50", + "initial_layer_infill_speed": "90", + "outer_wall_speed": "120", + "inner_wall_speed": "160", + "gap_infill_speed": "50", + "sparse_infill_speed": "250", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "layer_height": "0.2", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "only_one_wall_top": "1", + "seam_position": "aligned", + "skirt_height": "1", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_speed": "180", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "default", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "support_interface_bottom_layers": "2", + "support_interface_spacing": "0.5", + "support_expansion": "0", + "support_base_pattern_spacing": "2.5", + "support_speed": "200", + "support_interface_speed": "80", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_diameter": "2", + "tree_support_branch_angle": "45", + "tree_support_wall_count": "0", + "top_surface_pattern": "monotonicline", + "top_surface_speed": "200", + "top_shell_layers": "3", + "top_shell_thickness": "0.8", + "travel_speed": "500", + "enable_prime_tower": "1", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "35", + "wall_generator": "classic", + "exclude_object": "1", + "wall_infill_order": "outer wall/inner wall/infill", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png b/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png index a3d849d0ad..00ab333604 100644 Binary files a/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png and b/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png differ diff --git a/resources/profiles/TwoTrees/TwoTrees SK1_cover.png b/resources/profiles/TwoTrees/TwoTrees SK1_cover.png index 96be3438ce..bff6320c9a 100644 Binary files a/resources/profiles/TwoTrees/TwoTrees SK1_cover.png and b/resources/profiles/TwoTrees/TwoTrees SK1_cover.png differ diff --git a/resources/profiles/TwoTrees/TwoTrees SP-5 Klipper_cover.png b/resources/profiles/TwoTrees/TwoTrees SP-5 Klipper_cover.png index cd860b6427..bdd4814288 100644 Binary files a/resources/profiles/TwoTrees/TwoTrees SP-5 Klipper_cover.png and b/resources/profiles/TwoTrees/TwoTrees SP-5 Klipper_cover.png differ diff --git a/resources/profiles/Voron/Voron 2.4 350_cover.png b/resources/profiles/Voron/Voron 2.4 350_cover.png index a3fd2d3f38..995b717329 100644 Binary files a/resources/profiles/Voron/Voron 2.4 350_cover.png and b/resources/profiles/Voron/Voron 2.4 350_cover.png differ diff --git a/resources/profiles/Voron/Voron Switchwire 250_cover.png b/resources/profiles/Voron/Voron Switchwire 250_cover.png index 0ea13585ae..8c528251f7 100644 Binary files a/resources/profiles/Voron/Voron Switchwire 250_cover.png and b/resources/profiles/Voron/Voron Switchwire 250_cover.png differ diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json index efa782dd5d..a824c9a36a 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json @@ -22,6 +22,6 @@ "300x300", "0x300" ], - "printable_height": "2755", + "printable_height": "275", "printer_variant": "0.15" -} \ No newline at end of file +} diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json index ffd2ca597b..80d3ce8f75 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json @@ -22,6 +22,6 @@ "300x300", "0x300" ], - "printable_height": "2755", + "printable_height": "275", "printer_variant": "0.2" -} \ No newline at end of file +} diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json index facfd9406f..187598c736 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json @@ -22,6 +22,6 @@ "300x300", "0x300" ], - "printable_height": "2755", + "printable_height": "275", "printer_variant": "0.25" -} \ No newline at end of file +} diff --git a/resources/profiles/Wanhao/Wanhao D12-300_cover.png b/resources/profiles/Wanhao/Wanhao D12-300_cover.png index a93dea778c..0020715ff8 100644 Binary files a/resources/profiles/Wanhao/Wanhao D12-300_cover.png and b/resources/profiles/Wanhao/Wanhao D12-300_cover.png differ diff --git a/resources/profiles/Z-Bolt.json b/resources/profiles/Z-Bolt.json new file mode 100644 index 0000000000..8aa3f7232d --- /dev/null +++ b/resources/profiles/Z-Bolt.json @@ -0,0 +1,639 @@ +{ + "name": "Z-Bolt", + "url": "", + "version": "02.03.00.00", + "force_update": "0", + "description": "Z-Bolt configurations", + "machine_model_list": [ + { + "name": "Z-Bolt S300", + "sub_path": "machine/Z-Bolt S300.json" + }, + { + "name": "Z-Bolt S300 Dual", + "sub_path": "machine/Z-Bolt S300 Dual.json" + }, + { + "name": "Z-Bolt S400", + "sub_path": "machine/Z-Bolt S400.json" + }, + { + "name": "Z-Bolt S400 Dual", + "sub_path": "machine/Z-Bolt S400 Dual.json" + }, + { + "name": "Z-Bolt S600", + "sub_path": "machine/Z-Bolt S600.json" + }, + { + "name": "Z-Bolt S600 Dual", + "sub_path": "machine/Z-Bolt S600 Dual.json" + }, + { + "name": "Z-Bolt S800 Dual", + "sub_path": "machine/Z-Bolt S800 Dual.json" + }, + { + "name": "Z-Bolt S1000", + "sub_path": "machine/Z-Bolt S1000.json" + }, + { + "name": "Z-Bolt S1000 Dual", + "sub_path": "machine/Z-Bolt S1000 Dual.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + }, + { + "name": "fdm_process_zbolt_common", + "sub_path": "process/fdm_process_zbolt_common.json" + }, + { + "name": "fdm_process_zbolt_0.08", + "sub_path": "process/fdm_process_zbolt_0.08.json" + }, + { + "name": "fdm_process_zbolt_0.12", + "sub_path": "process/fdm_process_zbolt_0.12.json" + }, + { + "name": "fdm_process_zbolt_0.16", + "sub_path": "process/fdm_process_zbolt_0.16.json" + }, + { + "name": "fdm_process_zbolt_0.16_nozzle_0.6", + "sub_path": "process/fdm_process_zbolt_0.16_nozzle_0.6.json" + }, + { + "name": "fdm_process_zbolt_0.20", + "sub_path": "process/fdm_process_zbolt_0.20.json" + }, + { + "name": "fdm_process_zbolt_0.20_nozzle_0.6", + "sub_path": "process/fdm_process_zbolt_0.20_nozzle_0.6.json" + }, + { + "name": "fdm_process_zbolt_0.24", + "sub_path": "process/fdm_process_zbolt_0.24.json" + }, + { + "name": "fdm_process_zbolt_0.24_nozzle_0.6", + "sub_path": "process/fdm_process_zbolt_0.24_nozzle_0.6.json" + }, + { + "name": "fdm_process_zbolt_0.28", + "sub_path": "process/fdm_process_zbolt_0.28.json" + }, + { + "name": "fdm_process_zbolt_0.24_nozzle_0.8", + "sub_path": "process/fdm_process_zbolt_0.24_nozzle_0.8.json" + }, + { + "name": "fdm_process_zbolt_0.30_nozzle_0.6", + "sub_path": "process/fdm_process_zbolt_0.30_nozzle_0.6.json" + }, + { + "name": "fdm_process_zbolt_0.32_nozzle_0.8", + "sub_path": "process/fdm_process_zbolt_0.32_nozzle_0.8.json" + }, + { + "name": "fdm_process_zbolt_0.36_nozzle_0.6", + "sub_path": "process/fdm_process_zbolt_0.36_nozzle_0.6.json" + }, + { + "name": "fdm_process_zbolt_0.40_nozzle_0.8", + "sub_path": "process/fdm_process_zbolt_0.40_nozzle_0.8.json" + }, + { + "name": "fdm_process_zbolt_0.42_nozzle_0.6", + "sub_path": "process/fdm_process_zbolt_0.42_nozzle_0.6.json" + }, + { + "name": "fdm_process_zbolt_0.48_nozzle_0.8", + "sub_path": "process/fdm_process_zbolt_0.48_nozzle_0.8.json" + }, + { + "name": "0.08mm Extra Fine @Z-Bolt S300", + "sub_path": "process/0.08mm Extra Fine @Z-Bolt S300.json" + }, + { + "name": "0.08mm High Quality @Z-Bolt S300", + "sub_path": "process/0.08mm High Quality @Z-Bolt S300.json" + }, + { + "name": "0.12mm Fine @Z-Bolt S300", + "sub_path": "process/0.12mm Fine @Z-Bolt S300.json" + }, + { + "name": "0.12mm High Quality @Z-Bolt S300", + "sub_path": "process/0.12mm High Quality @Z-Bolt S300.json" + }, + { + "name": "0.16mm Optimal @Z-Bolt S300", + "sub_path": "process/0.16mm Optimal @Z-Bolt S300.json" + }, + { + "name": "0.16mm High Quality @Z-Bolt S300", + "sub_path": "process/0.16mm High Quality @Z-Bolt S300.json" + }, + { + "name": "0.16mm Standard @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S300", + "sub_path": "process/0.20mm Standard @Z-Bolt S300.json" + }, + { + "name": "0.20mm Strength @Z-Bolt S300", + "sub_path": "process/0.20mm Strength @Z-Bolt S300.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.24mm Draft @Z-Bolt S300", + "sub_path": "process/0.24mm Draft @Z-Bolt S300.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S300 0.8 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json" + }, + { + "name": "0.28mm Extra Draft @Z-Bolt S300", + "sub_path": "process/0.28mm Extra Draft @Z-Bolt S300.json" + }, + { + "name": "0.30mm Standard @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.30mm Strength @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.32mm Standard @Z-Bolt S300 0.8 nozzle", + "sub_path": "process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json" + }, + { + "name": "0.36mm Standard @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Z-Bolt S300 0.8 nozzle", + "sub_path": "process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json" + }, + { + "name": "0.42mm Standard @Z-Bolt S300 0.6 nozzle", + "sub_path": "process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "0.48mm Standard @Z-Bolt S300 0.8 nozzle", + "sub_path": "process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json" + }, + { + "name": "0.08mm Extra Fine @Z-Bolt S400", + "sub_path": "process/0.08mm Extra Fine @Z-Bolt S400.json" + }, + { + "name": "0.08mm High Quality @Z-Bolt S400", + "sub_path": "process/0.08mm High Quality @Z-Bolt S400.json" + }, + { + "name": "0.12mm Fine @Z-Bolt S400", + "sub_path": "process/0.12mm Fine @Z-Bolt S400.json" + }, + { + "name": "0.12mm High Quality @Z-Bolt S400", + "sub_path": "process/0.12mm High Quality @Z-Bolt S400.json" + }, + { + "name": "0.16mm Optimal @Z-Bolt S400", + "sub_path": "process/0.16mm Optimal @Z-Bolt S400.json" + }, + { + "name": "0.16mm High Quality @Z-Bolt S400", + "sub_path": "process/0.16mm High Quality @Z-Bolt S400.json" + }, + { + "name": "0.16mm Standard @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S400", + "sub_path": "process/0.20mm Standard @Z-Bolt S400.json" + }, + { + "name": "0.20mm Strength @Z-Bolt S400", + "sub_path": "process/0.20mm Strength @Z-Bolt S400.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.24mm Draft @Z-Bolt S400", + "sub_path": "process/0.24mm Draft @Z-Bolt S400.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S400 0.8 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json" + }, + { + "name": "0.28mm Extra Draft @Z-Bolt S400", + "sub_path": "process/0.28mm Extra Draft @Z-Bolt S400.json" + }, + { + "name": "0.30mm Standard @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.30mm Strength @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.32mm Standard @Z-Bolt S400 0.8 nozzle", + "sub_path": "process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json" + }, + { + "name": "0.36mm Standard @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Z-Bolt S400 0.8 nozzle", + "sub_path": "process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json" + }, + { + "name": "0.42mm Standard @Z-Bolt S400 0.6 nozzle", + "sub_path": "process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "0.48mm Standard @Z-Bolt S400 0.8 nozzle", + "sub_path": "process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json" + }, + { + "name": "0.12mm Fine @Z-Bolt S600", + "sub_path": "process/0.12mm Fine @Z-Bolt S600.json" + }, + { + "name": "0.12mm High Quality @Z-Bolt S600", + "sub_path": "process/0.12mm High Quality @Z-Bolt S600.json" + }, + { + "name": "0.16mm Optimal @Z-Bolt S600", + "sub_path": "process/0.16mm Optimal @Z-Bolt S600.json" + }, + { + "name": "0.16mm High Quality @Z-Bolt S600", + "sub_path": "process/0.16mm High Quality @Z-Bolt S600.json" + }, + { + "name": "0.16mm Standard @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S600", + "sub_path": "process/0.20mm Standard @Z-Bolt S600.json" + }, + { + "name": "0.20mm Strength @Z-Bolt S600", + "sub_path": "process/0.20mm Strength @Z-Bolt S600.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.24mm Draft @Z-Bolt S600", + "sub_path": "process/0.24mm Draft @Z-Bolt S600.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S600 0.8 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json" + }, + { + "name": "0.28mm Extra Draft @Z-Bolt S600", + "sub_path": "process/0.28mm Extra Draft @Z-Bolt S600.json" + }, + { + "name": "0.30mm Standard @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.30mm Strength @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.32mm Standard @Z-Bolt S600 0.8 nozzle", + "sub_path": "process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json" + }, + { + "name": "0.36mm Standard @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Z-Bolt S600 0.8 nozzle", + "sub_path": "process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json" + }, + { + "name": "0.42mm Standard @Z-Bolt S600 0.6 nozzle", + "sub_path": "process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "0.48mm Standard @Z-Bolt S600 0.8 nozzle", + "sub_path": "process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json" + }, + { + "name": "0.12mm Fine @Z-Bolt S800", + "sub_path": "process/0.12mm Fine @Z-Bolt S800.json" + }, + { + "name": "0.12mm High Quality @Z-Bolt S800", + "sub_path": "process/0.12mm High Quality @Z-Bolt S800.json" + }, + { + "name": "0.16mm Optimal @Z-Bolt S800", + "sub_path": "process/0.16mm Optimal @Z-Bolt S800.json" + }, + { + "name": "0.16mm High Quality @Z-Bolt S800", + "sub_path": "process/0.16mm High Quality @Z-Bolt S800.json" + }, + { + "name": "0.16mm Standard @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S800", + "sub_path": "process/0.20mm Standard @Z-Bolt S800.json" + }, + { + "name": "0.20mm Strength @Z-Bolt S800", + "sub_path": "process/0.20mm Strength @Z-Bolt S800.json" + }, + { + "name": "0.20mm Standard @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.24mm Draft @Z-Bolt S800", + "sub_path": "process/0.24mm Draft @Z-Bolt S800.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.24mm Standard @Z-Bolt S800 0.8 nozzle", + "sub_path": "process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json" + }, + { + "name": "0.28mm Extra Draft @Z-Bolt S800", + "sub_path": "process/0.28mm Extra Draft @Z-Bolt S800.json" + }, + { + "name": "0.30mm Standard @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.30mm Strength @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.32mm Standard @Z-Bolt S800 0.8 nozzle", + "sub_path": "process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json" + }, + { + "name": "0.36mm Standard @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Z-Bolt S800 0.8 nozzle", + "sub_path": "process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json" + }, + { + "name": "0.42mm Standard @Z-Bolt S800 0.6 nozzle", + "sub_path": "process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json" + }, + { + "name": "0.48mm Standard @Z-Bolt S800 0.8 nozzle", + "sub_path": "process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json" + } + ], + "filament_list": [ + { + "name": "Z-Bolt ABS @base", + "sub_path": "filament/Z-Bolt ABS @base.json" + }, + { + "name": "Z-Bolt ABS @0.4 nozzle", + "sub_path": "filament/Z-Bolt ABS @0.4 nozzle.json" + }, + { + "name": "Z-Bolt ABS @0.6 nozzle", + "sub_path": "filament/Z-Bolt ABS @0.6 nozzle.json" + }, + { + "name": "Z-Bolt ABS @0.8 nozzle", + "sub_path": "filament/Z-Bolt ABS @0.8 nozzle.json" + }, + { + "name": "Z-Bolt ABS HT @base", + "sub_path": "filament/Z-Bolt ABS HT @base.json" + }, + { + "name": "Z-Bolt ABS HT @0.4 nozzle", + "sub_path": "filament/Z-Bolt ABS HT @0.4 nozzle.json" + }, + { + "name": "Z-Bolt ABS HT @0.6 nozzle", + "sub_path": "filament/Z-Bolt ABS HT @0.6 nozzle.json" + }, + { + "name": "Z-Bolt ABS HT @0.8 nozzle", + "sub_path": "filament/Z-Bolt ABS HT @0.8 nozzle.json" + }, + { + "name": "Z-Bolt PA @base", + "sub_path": "filament/Z-Bolt PA @base.json" + }, + { + "name": "Z-Bolt PA @0.4 nozzle", + "sub_path": "filament/Z-Bolt PA @0.4 nozzle.json" + }, + { + "name": "Z-Bolt PA @0.6 nozzle", + "sub_path": "filament/Z-Bolt PA @0.6 nozzle.json" + }, + { + "name": "Z-Bolt PA @0.8 nozzle", + "sub_path": "filament/Z-Bolt PA @0.8 nozzle.json" + }, + { + "name": "Z-Bolt PETG @base", + "sub_path": "filament/Z-Bolt PETG @base.json" + }, + { + "name": "Z-Bolt PETG @0.4 nozzle", + "sub_path": "filament/Z-Bolt PETG @0.4 nozzle.json" + }, + { + "name": "Z-Bolt PETG @0.6 nozzle", + "sub_path": "filament/Z-Bolt PETG @0.6 nozzle.json" + }, + { + "name": "Z-Bolt PETG @0.8 nozzle", + "sub_path": "filament/Z-Bolt PETG @0.8 nozzle.json" + }, + { + "name": "Z-Bolt PLA @base", + "sub_path": "filament/Z-Bolt PLA @base.json" + }, + { + "name": "Z-Bolt PLA @0.4 nozzle", + "sub_path": "filament/Z-Bolt PLA @0.4 nozzle.json" + }, + { + "name": "Z-Bolt PLA @0.6 nozzle", + "sub_path": "filament/Z-Bolt PLA @0.6 nozzle.json" + }, + { + "name": "Z-Bolt PLA @0.8 nozzle", + "sub_path": "filament/Z-Bolt PLA @0.8 nozzle.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "fdm_zbolt_common", + "sub_path": "machine/fdm_zbolt_common.json" + }, + { + "name": "Z-Bolt S300 0.4 nozzle", + "sub_path": "machine/Z-Bolt S300 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S300 0.6 nozzle", + "sub_path": "machine/Z-Bolt S300 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S300 0.8 nozzle", + "sub_path": "machine/Z-Bolt S300 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S300 Dual 0.4 nozzle", + "sub_path": "machine/Z-Bolt S300 Dual 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S300 Dual 0.6 nozzle", + "sub_path": "machine/Z-Bolt S300 Dual 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S300 Dual 0.8 nozzle", + "sub_path": "machine/Z-Bolt S300 Dual 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S400 0.4 nozzle", + "sub_path": "machine/Z-Bolt S400 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S400 0.6 nozzle", + "sub_path": "machine/Z-Bolt S400 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S400 0.8 nozzle", + "sub_path": "machine/Z-Bolt S400 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S400 Dual 0.4 nozzle", + "sub_path": "machine/Z-Bolt S400 Dual 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S400 Dual 0.6 nozzle", + "sub_path": "machine/Z-Bolt S400 Dual 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S400 Dual 0.8 nozzle", + "sub_path": "machine/Z-Bolt S400 Dual 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S600 0.4 nozzle", + "sub_path": "machine/Z-Bolt S600 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S600 0.6 nozzle", + "sub_path": "machine/Z-Bolt S600 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S600 0.8 nozzle", + "sub_path": "machine/Z-Bolt S600 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S600 Dual 0.4 nozzle", + "sub_path": "machine/Z-Bolt S600 Dual 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S600 Dual 0.6 nozzle", + "sub_path": "machine/Z-Bolt S600 Dual 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S600 Dual 0.8 nozzle", + "sub_path": "machine/Z-Bolt S600 Dual 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S800 Dual 0.4 nozzle", + "sub_path": "machine/Z-Bolt S800 Dual 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S800 Dual 0.6 nozzle", + "sub_path": "machine/Z-Bolt S800 Dual 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S800 Dual 0.8 nozzle", + "sub_path": "machine/Z-Bolt S800 Dual 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S1000 0.4 nozzle", + "sub_path": "machine/Z-Bolt S1000 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S1000 0.6 nozzle", + "sub_path": "machine/Z-Bolt S1000 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S1000 0.8 nozzle", + "sub_path": "machine/Z-Bolt S1000 0.8 nozzle.json" + }, + { + "name": "Z-Bolt S1000 Dual 0.4 nozzle", + "sub_path": "machine/Z-Bolt S1000 Dual 0.4 nozzle.json" + }, + { + "name": "Z-Bolt S1000 Dual 0.6 nozzle", + "sub_path": "machine/Z-Bolt S1000 Dual 0.6 nozzle.json" + }, + { + "name": "Z-Bolt S1000 Dual 0.8 nozzle", + "sub_path": "machine/Z-Bolt S1000 Dual 0.8 nozzle.json" + } + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/Z-Bolt S1000 Dual_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S1000 Dual_cover.png new file mode 100644 index 0000000000..d51359c188 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S1000 Dual_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S1000_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S1000_cover.png new file mode 100644 index 0000000000..d51359c188 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S1000_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S300 Dual_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S300 Dual_cover.png new file mode 100644 index 0000000000..9bfa53178f Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S300 Dual_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S300_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S300_cover.png new file mode 100644 index 0000000000..8eefebe7bd Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S300_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S400 Dual_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S400 Dual_cover.png new file mode 100644 index 0000000000..b6c8ee17c6 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S400 Dual_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S400_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S400_cover.png new file mode 100644 index 0000000000..6b0d85305e Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S400_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S600 Dual_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S600 Dual_cover.png new file mode 100644 index 0000000000..8aaa135931 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S600 Dual_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S600_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S600_cover.png new file mode 100644 index 0000000000..8e7bd4bced Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S600_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt S800 Dual_cover.png b/resources/profiles/Z-Bolt/Z-Bolt S800 Dual_cover.png new file mode 100644 index 0000000000..d971729f27 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt S800 Dual_cover.png differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_S1000_buildplate_model.STL b/resources/profiles/Z-Bolt/Z-Bolt_S1000_buildplate_model.STL new file mode 100644 index 0000000000..78a5093f3e Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt_S1000_buildplate_model.STL differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_S300_buildplate_model.stl b/resources/profiles/Z-Bolt/Z-Bolt_S300_buildplate_model.stl new file mode 100644 index 0000000000..ab05771463 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt_S300_buildplate_model.stl differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_S400_buildplate_model.stl b/resources/profiles/Z-Bolt/Z-Bolt_S400_buildplate_model.stl new file mode 100644 index 0000000000..72182bf9d7 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt_S400_buildplate_model.stl differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_S600_buildplate_model.stl b/resources/profiles/Z-Bolt/Z-Bolt_S600_buildplate_model.stl new file mode 100644 index 0000000000..1232813321 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt_S600_buildplate_model.stl differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_S800_buildplate_model.stl b/resources/profiles/Z-Bolt/Z-Bolt_S800_buildplate_model.stl new file mode 100644 index 0000000000..e2f62794b1 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt_S800_buildplate_model.stl differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.png b/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.png new file mode 100644 index 0000000000..d2db60c6c3 Binary files /dev/null and b/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.png differ diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.4 nozzle.json new file mode 100644 index 0000000000..2ea92fe6c1 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.4 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS @0.4 nozzle", + "inherits": "Z-Bolt ABS @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL204", + "setting_id": "GFSL204", + "filament_max_volumetric_speed": [ + "15" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.6 nozzle.json new file mode 100644 index 0000000000..5fcc877765 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.6 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS @0.6 nozzle", + "inherits": "Z-Bolt ABS @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL206", + "setting_id": "GFSL206", + "filament_max_volumetric_speed": [ + "18" + ], + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.8 nozzle.json new file mode 100644 index 0000000000..3598177576 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @0.8 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS @0.8 nozzle", + "inherits": "Z-Bolt ABS @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL208", + "setting_id": "GFSL208", + "filament_max_volumetric_speed": [ + "21" + ], + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @base.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @base.json new file mode 100644 index 0000000000..ff54f9bc30 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS @base.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "instantiation": "false", + "filament_id": "GFL200", + "setting_id": "GFSL200", + "filament_max_volumetric_speed": [ + "20" + ], + "fan_min_speed": [ + "25" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json new file mode 100644 index 0000000000..cc5d76ef20 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json @@ -0,0 +1,24 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS HT @0.4 nozzle", + "renamed_from": "Z-Bolt ABS HT@0.4 nozzle", + "inherits": "Z-Bolt ABS HT @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL504", + "setting_id": "GFSL504", + "filament_max_volumetric_speed": [ + "15" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.6 nozzle.json new file mode 100644 index 0000000000..d0627e2a47 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.6 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS HT @0.6 nozzle", + "inherits": "Z-Bolt ABS HT @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL506", + "setting_id": "GFSL506", + "filament_max_volumetric_speed": [ + "18" + ], + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.8 nozzle.json new file mode 100644 index 0000000000..d3d59ad68f --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.8 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS HT @0.8 nozzle", + "inherits": "Z-Bolt ABS HT @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL508", + "setting_id": "GFSL508", + "filament_max_volumetric_speed": [ + "21" + ], + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @base.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @base.json new file mode 100644 index 0000000000..3a154600fd --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @base.json @@ -0,0 +1,13 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS HT @base", + "inherits": "Z-Bolt ABS @base", + "from": "system", + "instantiation": "false", + "description": "Use this filament profile to print big ABS models with chamber heating", + "filament_id": "GFL500", + "setting_id": "GFSL500", + "chamber_temperatures": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT.json new file mode 100644 index 0000000000..fb823938ff --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS HT", + "inherits": "fdm_filament_abs", + "from": "system", + "instantiation": "true", + "description": "Use this filament profile to print big ABS models with chamber heating", + "filament_id": "GFL105", + "setting_id": "GFSL105", + "filament_max_volumetric_speed": [ + "15" + ], + "fan_min_speed": [ + "25" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "chamber_temperatures": [ + "60" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS.json new file mode 100644 index 0000000000..5816e9543f --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Z-Bolt ABS", + "inherits": "fdm_filament_abs", + "from": "system", + "instantiation": "true", + "filament_id": "GFL101", + "setting_id": "GFSL101", + "filament_max_volumetric_speed": [ + "15" + ], + "fan_min_speed": [ + "25" + ], + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.4 nozzle.json new file mode 100644 index 0000000000..4d10a8827c --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.4 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PA @0.4 nozzle", + "inherits": "Z-Bolt PA @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL404", + "setting_id": "GFSL404", + "filament_max_volumetric_speed": [ + "8" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.6 nozzle.json new file mode 100644 index 0000000000..f3228d21fd --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.6 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PA @0.6 nozzle", + "inherits": "Z-Bolt PA @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL406", + "setting_id": "GFSL406", + "filament_max_volumetric_speed": [ + "10" + ], + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.8 nozzle.json new file mode 100644 index 0000000000..bce234a48c --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @0.8 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PA @0.8 nozzle", + "inherits": "Z-Bolt PA @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL408", + "setting_id": "GFSL408", + "filament_max_volumetric_speed": [ + "12" + ], + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PA @base.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @base.json new file mode 100644 index 0000000000..7761154e69 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PA @base.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Z-Bolt PA @base", + "inherits": "fdm_filament_pa", + "from": "system", + "instantiation": "false", + "filament_id": "GFL400", + "setting_id": "GFSL400", + "filament_max_volumetric_speed": [ + "8" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.96" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "0%" + ], + "hot_plate_temp": [ + "140" + ], + "hot_plate_temp_initial_layer": [ + "140" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "textured_plate_temp": [ + "130" + ], + "textured_plate_temp_initial_layer": [ + "140" + ], + "chamber_temperatures": [ + "80" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PA.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PA.json new file mode 100644 index 0000000000..fc7bb7ac70 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PA.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Z-Bolt PA", + "inherits": "fdm_filament_pa", + "from": "system", + "instantiation": "true", + "filament_id": "GFL103", + "setting_id": "GFSL103", + "filament_max_volumetric_speed": [ + "10" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.96" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "0%" + ], + "hot_plate_temp": [ + "140" + ], + "hot_plate_temp_initial_layer": [ + "140" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "textured_plate_temp": [ + "130" + ], + "textured_plate_temp_initial_layer": [ + "140" + ], + "chamber_temperatures": [ + "80" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.4 nozzle.json new file mode 100644 index 0000000000..2444428b6c --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.4 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PETG @0.4 nozzle", + "inherits": "Z-Bolt PETG @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL304", + "setting_id": "GFSL304", + "filament_max_volumetric_speed": [ + "8" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.6 nozzle.json new file mode 100644 index 0000000000..d037edf797 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.6 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PETG @0.6 nozzle", + "inherits": "Z-Bolt PETG @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL306", + "setting_id": "GFSL306", + "filament_max_volumetric_speed": [ + "10" + ], + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.8 nozzle.json new file mode 100644 index 0000000000..eacd1253ae --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @0.8 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PETG @0.8 nozzle", + "inherits": "Z-Bolt PETG @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL308", + "setting_id": "GFSL308", + "filament_max_volumetric_speed": [ + "12" + ], + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @base.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @base.json new file mode 100644 index 0000000000..1d438c29cc --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG @base.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "Z-Bolt PETG @base", + "inherits": "fdm_filament_pet", + "from": "system", + "instantiation": "false", + "filament_id": "GFL300", + "setting_id": "GFSL300", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "45" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "full_fan_speed_layer": [ + "3" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PETG.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG.json new file mode 100644 index 0000000000..2ff950122f --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PETG.json @@ -0,0 +1,86 @@ +{ + "type": "filament", + "name": "Z-Bolt PETG", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "GFL102", + "instantiation": "true", + "setting_id": "GFSL102", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "45" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "full_fan_speed_layer": [ + "3" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "hot_plate_temp": [ + "75" + ], + "hot_plate_temp_initial_layer": [ + "75" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.4 nozzle.json new file mode 100644 index 0000000000..1d85fa8d42 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.4 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PLA @0.4 nozzle", + "inherits": "Z-Bolt PLA @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL104", + "setting_id": "GFSL104", + "filament_max_volumetric_speed": [ + "15" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.6 nozzle.json new file mode 100644 index 0000000000..6304a6d780 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.6 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PLA @0.6 nozzle", + "inherits": "Z-Bolt PLA @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL106", + "setting_id": "GFSL106", + "filament_max_volumetric_speed": [ + "18" + ], + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.8 nozzle.json new file mode 100644 index 0000000000..a8f2b923a1 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @0.8 nozzle.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Z-Bolt PLA @0.8 nozzle", + "inherits": "Z-Bolt PLA @base", + "from": "system", + "instantiation": "true", + "filament_id": "GFL108", + "setting_id": "GFSL108", + "filament_max_volumetric_speed": [ + "21" + ], + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @base.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @base.json new file mode 100644 index 0000000000..1859335d38 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA @base.json @@ -0,0 +1,36 @@ +{ + "type": "filament", + "name": "Z-Bolt PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "filament_id": "GFL100", + "setting_id": "GFSL100", + "filament_max_volumetric_speed": [ + "20" + ], + "fan_min_speed": [ + "100" + ], + "full_fan_speed_layer": [ + "4" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt PLA.json b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA.json new file mode 100644 index 0000000000..6d4b0a6497 --- /dev/null +++ b/resources/profiles/Z-Bolt/filament/Z-Bolt PLA.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Z-Bolt PLA", + "inherits": "fdm_filament_pla", + "from": "system", + "instantiation": "true", + "filament_id": "GFL100", + "setting_id": "GFSL100", + "filament_max_volumetric_speed": [ + "21" + ], + "fan_min_speed": [ + "100" + ], + "full_fan_speed_layer": [ + "4" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle", + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle", + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S800 Dual 0.4 nozzle", + "Z-Bolt S800 Dual 0.6 nozzle", + "Z-Bolt S800 Dual 0.8 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json new file mode 100644 index 0000000000..3ca11bb262 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json @@ -0,0 +1,133 @@ +{ + "type": "machine", + "name": "Z-Bolt S1000 0.4 nozzle", + "inherits": "fdm_zbolt_common", + "from": "system", + "setting_id": "GM030", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "printer_structure": "corexy", + "printer_model": "Z-Bolt S1000", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_height": "1000", + "printable_area": [ + "0x0", + "1000x0", + "1000x1000", + "0x1000" + ], + "default_filament_profile": [ + "Z-Bolt Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Z-Bolt S1000", + "extruder_colour": [ + "#018001" + ], + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "70", + "extruder_clearance_height_to_lid": "200", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "0%" + ], + "retraction_length": [ + "0.8" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "deretraction_speed": [ + "30" + ], + "nozzle_type": "hardened_steel", + "single_extruder_multi_material": "1", + "support_chamber_temp_control": "1", + "machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]", + "machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120", + "machine_pause_gcode": "PAUSE" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json new file mode 100644 index 0000000000..ed2ccdf968 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S1000 0.6 nozzle", + "inherits": "Z-Bolt S1000 0.4 nozzle", + "from": "system", + "setting_id": "GM031", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Z-Bolt S1000", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S1000 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json new file mode 100644 index 0000000000..0af74732c2 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S1000 0.8 nozzle", + "inherits": "Z-Bolt S1000 0.4 nozzle", + "from": "system", + "setting_id": "GM032", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Z-Bolt S1000", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S1000 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json new file mode 100644 index 0000000000..d9f21b697a --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json @@ -0,0 +1,31 @@ +{ + "type": "machine", + "name": "Z-Bolt S1000 Dual 0.4 nozzle", + "inherits": "Z-Bolt S1000 0.4 nozzle", + "from": "system", + "setting_id": "GM033", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "manual_filament_change": "0", + "single_extruder_multi_material": "0", + "nozzle_diameter": [ + "0.4", "0.4" + ], + "printer_model": "Z-Bolt S1000 Dual", + "printer_variant": "0.4", + "default_print_profile": "0.20mm Standard @Z-Bolt S1000", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "retraction_length": [ + "0.8" + ], + "retraction_minimum_travel": [ + "1" + ], + "change_filament_gcode": "G91\nG1 Z{layer_z+z_hop[0]} F1000\nG90", + "machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json new file mode 100644 index 0000000000..524499d1a7 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S1000 Dual 0.6 nozzle", + "inherits": "Z-Bolt S1000 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM034", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", "0.6" + ], + "printer_model": "Z-Bolt S1000 Dual", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S1000 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json new file mode 100644 index 0000000000..19494bd35d --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S1000 Dual 0.8 nozzle", + "inherits": "Z-Bolt S1000 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM035", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", "0.8" + ], + "printer_model": "Z-Bolt S1000 Dual", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S1000 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json new file mode 100644 index 0000000000..65fc6099cf --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S1000 Dual", + "model_id": "Z-Bolt-S1000 Dual", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S1000_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json new file mode 100644 index 0000000000..9287d89f87 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S1000", + "model_id": "Z-Bolt-S1000", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S1000_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json new file mode 100644 index 0000000000..47319a634b --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json @@ -0,0 +1,133 @@ +{ + "type": "machine", + "name": "Z-Bolt S300 0.4 nozzle", + "inherits": "fdm_zbolt_common", + "from": "system", + "setting_id": "GM001", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "printer_structure": "corexy", + "printer_model": "Z-Bolt S300", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_height": "350", + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "default_filament_profile": [ + "Z-Bolt Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Z-Bolt S300", + "extruder_colour": [ + "#018001" + ], + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "70", + "extruder_clearance_height_to_lid": "200", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "0%" + ], + "retraction_length": [ + "0.8" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "deretraction_speed": [ + "30" + ], + "nozzle_type": "hardened_steel", + "single_extruder_multi_material": "1", + "support_chamber_temp_control": "1", + "machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]", + "machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120", + "machine_pause_gcode": "PAUSE" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..9563cb7d90 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S300 0.6 nozzle", + "inherits": "Z-Bolt S300 0.4 nozzle", + "from": "system", + "setting_id": "GM002", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Z-Bolt S300", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S300 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json new file mode 100644 index 0000000000..e3bf02bb8a --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S300 0.8 nozzle", + "inherits": "Z-Bolt S300 0.4 nozzle", + "from": "system", + "setting_id": "GM003", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Z-Bolt S300", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S300 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json new file mode 100644 index 0000000000..a461caf5e7 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json @@ -0,0 +1,31 @@ +{ + "type": "machine", + "name": "Z-Bolt S300 Dual 0.4 nozzle", + "inherits": "Z-Bolt S300 0.4 nozzle", + "from": "system", + "setting_id": "GM004", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "manual_filament_change": "0", + "single_extruder_multi_material": "0", + "nozzle_diameter": [ + "0.4", "0.4" + ], + "printer_model": "Z-Bolt S300 Dual", + "printer_variant": "0.4", + "default_print_profile": "0.20mm Standard @Z-Bolt S300", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "retraction_length": [ + "0.8" + ], + "retraction_minimum_travel": [ + "1" + ], + "change_filament_gcode": "G91\nG1 Z{layer_z+z_hop[0]} F1000\nG90", + "machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json new file mode 100644 index 0000000000..201caf7162 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S300 Dual 0.6 nozzle", + "inherits": "Z-Bolt S300 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM005", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", "0.6" + ], + "printer_model": "Z-Bolt S300 Dual", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S300 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json new file mode 100644 index 0000000000..730b6222e3 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S300 Dual 0.8 nozzle", + "inherits": "Z-Bolt S300 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM006", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", "0.8" + ], + "printer_model": "Z-Bolt S300 Dual", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S300 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json new file mode 100644 index 0000000000..a9e26603c9 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S300 Dual", + "model_id": "Z-Bolt-S300 Dual", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S300_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json new file mode 100644 index 0000000000..2082acf0b2 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S300", + "model_id": "Z-Bolt-S300", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S300_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json new file mode 100644 index 0000000000..e97cd7d2c3 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json @@ -0,0 +1,133 @@ +{ + "type": "machine", + "name": "Z-Bolt S400 0.4 nozzle", + "inherits": "fdm_zbolt_common", + "from": "system", + "setting_id": "GM011", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "printer_structure": "corexy", + "printer_model": "Z-Bolt S400", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_height": "700", + "printable_area": [ + "0x0", + "400x0", + "400x400", + "0x400" + ], + "default_filament_profile": [ + "Z-Bolt Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Z-Bolt S400", + "extruder_colour": [ + "#018001" + ], + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "70", + "extruder_clearance_height_to_lid": "200", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "0%" + ], + "retraction_length": [ + "0.8" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "deretraction_speed": [ + "30" + ], + "nozzle_type": "hardened_steel", + "single_extruder_multi_material": "1", + "support_chamber_temp_control": "1", + "machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]", + "machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120", + "machine_pause_gcode": "PAUSE" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..786b9f0a63 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S400 0.6 nozzle", + "inherits": "Z-Bolt S400 0.4 nozzle", + "from": "system", + "setting_id": "GM012", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Z-Bolt S400", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S400 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json new file mode 100644 index 0000000000..926ebad0eb --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S400 0.8 nozzle", + "inherits": "Z-Bolt S400 0.4 nozzle", + "from": "system", + "setting_id": "GM013", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Z-Bolt S400", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S400 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json new file mode 100644 index 0000000000..29835e6a14 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json @@ -0,0 +1,31 @@ +{ + "type": "machine", + "name": "Z-Bolt S400 Dual 0.4 nozzle", + "inherits": "Z-Bolt S400 0.4 nozzle", + "from": "system", + "setting_id": "GM014", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "manual_filament_change": "0", + "single_extruder_multi_material": "0", + "nozzle_diameter": [ + "0.4", "0.4" + ], + "printer_model": "Z-Bolt S400 Dual", + "printer_variant": "0.4", + "default_print_profile": "0.20mm Standard @Z-Bolt S400", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "retraction_length": [ + "0.8" + ], + "retraction_minimum_travel": [ + "1" + ], + "change_filament_gcode": "G91\nG1 Z{layer_z+z_hop[0]} F1000\nG90", + "machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json new file mode 100644 index 0000000000..4a80df798a --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S400 Dual 0.6 nozzle", + "inherits": "Z-Bolt S400 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM015", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", "0.6" + ], + "printer_model": "Z-Bolt S400 Dual", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S400 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json new file mode 100644 index 0000000000..5c13abe417 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S400 Dual 0.8 nozzle", + "inherits": "Z-Bolt S400 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM016", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", "0.8" + ], + "printer_model": "Z-Bolt S400 Dual", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S400 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json new file mode 100644 index 0000000000..70aa64d29a --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S400 Dual", + "model_id": "Z-Bolt-S400 Dual", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S400_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json new file mode 100644 index 0000000000..93f2a31421 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S400", + "model_id": "Z-Bolt-S400", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S400_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json new file mode 100644 index 0000000000..be8ef2c23c --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json @@ -0,0 +1,133 @@ +{ + "type": "machine", + "name": "Z-Bolt S600 0.4 nozzle", + "inherits": "fdm_zbolt_common", + "from": "system", + "setting_id": "GM021", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "printer_structure": "corexy", + "printer_model": "Z-Bolt S600", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "printable_height": "900", + "printable_area": [ + "0x0", + "600x0", + "600x600", + "0x600" + ], + "default_filament_profile": [ + "Z-Bolt Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Z-Bolt S600", + "extruder_colour": [ + "#018001" + ], + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "70", + "extruder_clearance_height_to_lid": "200", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "0%" + ], + "retraction_length": [ + "0.8" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "deretraction_speed": [ + "30" + ], + "nozzle_type": "hardened_steel", + "single_extruder_multi_material": "1", + "support_chamber_temp_control": "1", + "machine_start_gcode": "START_PRINT T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[nozzle_temperature_initial_layer] T_CHAMBER=[chamber_temperature]", + "machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120", + "machine_pause_gcode": "PAUSE" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..c685f1e8c3 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S600 0.6 nozzle", + "inherits": "Z-Bolt S600 0.4 nozzle", + "from": "system", + "setting_id": "GM022", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Z-Bolt S600", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S600 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json new file mode 100644 index 0000000000..049f1f6d07 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S600 0.8 nozzle", + "inherits": "Z-Bolt S600 0.4 nozzle", + "from": "system", + "setting_id": "GM023", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Z-Bolt S600", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S600 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json new file mode 100644 index 0000000000..ea8a9d3217 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json @@ -0,0 +1,31 @@ +{ + "type": "machine", + "name": "Z-Bolt S600 Dual 0.4 nozzle", + "inherits": "Z-Bolt S600 0.4 nozzle", + "from": "system", + "setting_id": "GM024", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "manual_filament_change": "0", + "single_extruder_multi_material": "0", + "nozzle_diameter": [ + "0.4", "0.4" + ], + "printer_model": "Z-Bolt S600 Dual", + "printer_variant": "0.4", + "default_print_profile": "0.20mm Standard @Z-Bolt S600", + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "retraction_length": [ + "0.8" + ], + "retraction_minimum_travel": [ + "1" + ], + "change_filament_gcode": "G91\nG1 Z{layer_z+z_hop[0]} F1000\nG90", + "machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json new file mode 100644 index 0000000000..47ba10ac25 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S600 Dual 0.6 nozzle", + "inherits": "Z-Bolt S600 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM025", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", "0.6" + ], + "printer_model": "Z-Bolt S600 Dual", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S600 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json new file mode 100644 index 0000000000..c72927f9a4 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S600 Dual 0.8 nozzle", + "inherits": "Z-Bolt S600 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM026", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", "0.8" + ], + "printer_model": "Z-Bolt S600 Dual", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S600 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json new file mode 100644 index 0000000000..8c1fe34af4 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S600 Dual", + "model_id": "Z-Bolt-S600 Dual", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S600_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json new file mode 100644 index 0000000000..0ac785bdf5 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S600", + "model_id": "Z-Bolt-S600", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S600_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json new file mode 100644 index 0000000000..3d489539ec --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json @@ -0,0 +1,135 @@ +{ + "type": "machine", + "name": "Z-Bolt S800 Dual 0.4 nozzle", + "inherits": "fdm_zbolt_common", + "from": "system", + "setting_id": "GM027", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "printer_structure": "corexy", + "manual_filament_change": "0", + "single_extruder_multi_material": "0", + "printer_model": "Z-Bolt S800 Dual", + "nozzle_diameter": [ + "0.4", "0.4" + ], + "printer_variant": "0.4", + "printable_height": "802", + "printable_area": [ + "0x0", + "802x0", + "802x802", + "0x802" + ], + "default_filament_profile": [ + "Z-Bolt Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Z-Bolt S800", + "extruder_colour": [ + "#018001" + ], + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.28" + ], + "min_layer_height": [ + "0.08" + ], + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "70", + "extruder_clearance_height_to_lid": "200", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "0%" + ], + "retraction_length": [ + "1.4" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "1" + ], + "retraction_speed": [ + "35" + ], + "deretraction_speed": [ + "35" + ], + "nozzle_type": "hardened_steel", + "support_chamber_temp_control": "1", + "change_filament_gcode": "G91\nG1 Z{layer_z+z_hop[0]} F1000\nG90", + "machine_start_gcode": "START_PRINT TOOL_NR=[initial_tool] T_BED=[bed_temperature_initial_layer] T_EXTRUDER=[first_layer_temperature[initial_tool]] T_CHAMBER=[chamber_temperature] {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif}", + "machine_end_gcode": "END_PRINT T_BED=[bed_temperature] T_CHAMBER=[chamber_temperature] COOLDOWN_TIME=120", + "machine_pause_gcode": "PAUSE" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json new file mode 100644 index 0000000000..0555f57c66 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json @@ -0,0 +1,27 @@ +{ + "type": "machine", + "name": "Z-Bolt S800 Dual 0.6 nozzle", + "inherits": "Z-Bolt S800 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM028", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", "0.6" + ], + "printer_model": "Z-Bolt S800 Dual", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @Z-Bolt S800 0.6 nozzle", + "max_layer_height": [ + "0.36" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "2" + ], + "retraction_minimum_travel": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json new file mode 100644 index 0000000000..698344e655 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "name": "Z-Bolt S800 Dual 0.8 nozzle", + "inherits": "Z-Bolt S800 Dual 0.4 nozzle", + "from": "system", + "setting_id": "GM029", + "printer_settings_id": "Z-Bolt", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", "0.8" + ], + "printer_model": "Z-Bolt S800 Dual", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @Z-Bolt S800 0.8 nozzle", + "max_layer_height": [ + "0.48" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_minimum_travel": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json new file mode 100644 index 0000000000..8fc949b2c4 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Z-Bolt S800 Dual", + "model_id": "Z-Bolt-S800 Dual", + "nozzle_diameter": "0.4;0.6;0.8", + "machine_tech": "FFF", + "family": "Z-Bolt", + "bed_model": "Z-Bolt_S800_buildplate_model.stl", + "bed_texture": "Z-Bolt_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Z-Bolt PLA @base;Z-Bolt ABS @base;Z-Bolt PETG @base;Z-Bolt PA @base;Z-Bolt ABS HT @base" +} diff --git a/resources/profiles/Z-Bolt/machine/fdm_machine_common.json b/resources/profiles/Z-Bolt/machine/fdm_machine_common.json new file mode 100644 index 0000000000..770982ee0f --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/fdm_machine_common.json @@ -0,0 +1,119 @@ +{ + "type": "machine", + "name": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "support_chamber_temp_control": "0", + "printer_technology": "FFF", + "deretraction_speed": [ + "40" + ], + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "gcode_flavor": "marlin", + "silent_mode": "0", + "machine_max_acceleration_e": [ + "5000" + ], + "machine_max_acceleration_extruding": [ + "10000" + ], + "machine_max_acceleration_retracting": [ + "1000" + ], + "machine_max_acceleration_x": [ + "10000" + ], + "machine_max_acceleration_y": [ + "10000" + ], + "machine_max_acceleration_z": [ + "100" + ], + "machine_max_speed_e": [ + "60" + ], + "machine_max_speed_x": [ + "500" + ], + "machine_max_speed_y": [ + "500" + ], + "machine_max_speed_z": [ + "10" + ], + "machine_max_jerk_e": [ + "5" + ], + "machine_max_jerk_x": [ + "8" + ], + "machine_max_jerk_y": [ + "8" + ], + "machine_max_jerk_z": [ + "3" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "max_layer_height": [ + "0.4" + ], + "min_layer_height": [ + "0.08" + ], + "printable_height": "900", + "extruder_clearance_radius": "100", + "extruder_clearance_height_to_rod": "50", + "extruder_clearance_height_to_lid": "150", + "printer_settings_id": "", + "retraction_minimum_travel": [ + "2" + ], + "retract_before_wipe": [ + "70%" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "1" + ], + "retract_length_toolchange": [ + "1" + ], + "z_hop": [ + "0" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retraction_speed": [ + "60" + ], + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "wipe": [ + "1" + ], + "z_lift_type": "NormalLift", + "default_print_profile": "", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_start_gcode": "", + "machine_end_gcode": "" +} diff --git a/resources/profiles/Z-Bolt/machine/fdm_zbolt_common.json b/resources/profiles/Z-Bolt/machine/fdm_zbolt_common.json new file mode 100644 index 0000000000..c884e29441 --- /dev/null +++ b/resources/profiles/Z-Bolt/machine/fdm_zbolt_common.json @@ -0,0 +1,118 @@ +{ + "type": "machine", + "name": "fdm_zbolt_common", + "inherits": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "gcode_flavor": "klipper", + "nozzle_diameter": [ + "0.4" + ], + "printer_variant": "0.4", + "auxiliary_fan": "0", + "default_filament_profile": [ + "Z-Bolt Generic PLA" + ], + "default_print_profile": "0.20mm Standard @Z-Bolt S300", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "200" + ], + "machine_max_speed_e": [ + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "machine_max_speed_z": [ + "20", + "20" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.4" + ], + "min_layer_height": [ + "0.08" + ], + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "0%" + ], + "retraction_length": [ + "0.8" + ], + "retract_length_toolchange": [ + "2" + ], + "z_hop": [ + "0.4" + ], + "retraction_speed": [ + "30" + ], + "deretraction_speed": [ + "30" + ], + "z_hop_types": "Normal Lift", + "nozzle_type": "hardened_steel", + "single_extruder_multi_material": "1", + "machine_start_gcode": "START_PRINT", + "machine_end_gcode": "END_PRINT", + "machine_pause_gcode": "PAUSE" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt S300.json new file mode 100644 index 0000000000..c0eaa0f222 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt S300.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.08mm Extra Fine @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.08", + "from": "system", + "setting_id": "GP001", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt S400.json new file mode 100644 index 0000000000..5654806084 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt S400.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.08mm Extra Fine @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.08", + "from": "system", + "setting_id": "GP101", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt S300.json new file mode 100644 index 0000000000..7145656134 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt S300.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "0.08mm High Quality @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.08", + "from": "system", + "setting_id": "GP003", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "210", + "inner_wall_speed": "120", + "internal_solid_infill_speed": "150", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "150", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt S400.json new file mode 100644 index 0000000000..01f4cb58a5 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt S400.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "0.08mm High Quality @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.08", + "from": "system", + "setting_id": "GP103", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "210", + "inner_wall_speed": "120", + "internal_solid_infill_speed": "150", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "150", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S300.json new file mode 100644 index 0000000000..7ed2a25d4b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S300.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.12mm Fine @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP005", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S400.json new file mode 100644 index 0000000000..6c05d56ca9 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S400.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.12mm Fine @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP105", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S600.json new file mode 100644 index 0000000000..9a16a8b2d9 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S600.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.12mm Fine @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP205", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S800.json new file mode 100644 index 0000000000..297dcb4c4b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt S800.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "name": "0.12mm Fine @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP305", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S300.json new file mode 100644 index 0000000000..0457f824f0 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S300.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "0.12mm High Quality @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP006", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "230", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "180", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "180", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S400.json new file mode 100644 index 0000000000..92a4b4563b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S400.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "0.12mm High Quality @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP106", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "230", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "180", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "180", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S600.json new file mode 100644 index 0000000000..084b900bb4 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S600.json @@ -0,0 +1,26 @@ +{ + "type": "process", + "name": "0.12mm High Quality @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP206", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "230", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "180", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "180", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S800.json new file mode 100644 index 0000000000..22e7afccae --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt S800.json @@ -0,0 +1,23 @@ +{ + "type": "process", + "name": "0.12mm High Quality @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.12", + "from": "system", + "setting_id": "GP306", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "230", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "180", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "180", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S300.json new file mode 100644 index 0000000000..385493be3c --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S300.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "0.16mm High Quality @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP008", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "250", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "200", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "200", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S400.json new file mode 100644 index 0000000000..7e1fa07a33 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S400.json @@ -0,0 +1,24 @@ +{ + "type": "process", + "name": "0.16mm High Quality @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP108", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "250", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "200", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "200", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S600.json new file mode 100644 index 0000000000..5e1f7a0601 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S600.json @@ -0,0 +1,26 @@ +{ + "type": "process", + "name": "0.16mm High Quality @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP208", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "250", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "200", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "200", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S800.json new file mode 100644 index 0000000000..d48a4ac1a4 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt S800.json @@ -0,0 +1,23 @@ +{ + "type": "process", + "name": "0.16mm High Quality @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP308", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "gap_infill_speed": "250", + "inner_wall_speed": "150", + "internal_solid_infill_speed": "200", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": "200", + "top_surface_speed": "150", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S300.json new file mode 100644 index 0000000000..f8df184327 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S300.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.16mm Optimal @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP009", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S400.json new file mode 100644 index 0000000000..6814713543 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S400.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.16mm Optimal @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP109", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S600.json new file mode 100644 index 0000000000..a14ba86338 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S600.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "name": "0.16mm Optimal @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP209", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S800.json new file mode 100644 index 0000000000..a9d58e80c6 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt S800.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "name": "0.16mm Optimal @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.16", + "from": "system", + "setting_id": "GP309", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..91a4250bf8 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.16mm Standard @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", + "from": "system", + "setting_id": "GP010", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..523e32bad0 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.16mm Standard @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", + "from": "system", + "setting_id": "GP110", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..accd389a2f --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.16mm Standard @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", + "from": "system", + "setting_id": "GP210", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..611f1cc3f3 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.16mm Standard @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", + "from": "system", + "setting_id": "GP310", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..fe6ee43cb3 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", + "from": "system", + "setting_id": "GP024", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300.json new file mode 100644 index 0000000000..34c0f7585e --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP011", + "instantiation": "true", + "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..983b1ca72b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", + "from": "system", + "setting_id": "GP124", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400.json new file mode 100644 index 0000000000..34bf1ddb69 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP111", + "instantiation": "true", + "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..92a1b72b0a --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", + "from": "system", + "setting_id": "GP224", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600.json new file mode 100644 index 0000000000..6a70357c15 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP211", + "instantiation": "true", + "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..f6072eba78 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", + "from": "system", + "setting_id": "GP324", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800.json new file mode 100644 index 0000000000..29c3bde0e7 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "name": "0.20mm Standard @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP311", + "instantiation": "true", + "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S300.json new file mode 100644 index 0000000000..1dcd28b3fc --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S300.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.20mm Strength @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP012", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "outer_wall_speed": "60", + "sparse_infill_density": "25%", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "wall_loops": "6", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S400.json new file mode 100644 index 0000000000..bdd4dc3911 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S400.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.20mm Strength @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP112", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "outer_wall_speed": "60", + "sparse_infill_density": "25%", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "wall_loops": "6", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S600.json new file mode 100644 index 0000000000..b10f355b20 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S600.json @@ -0,0 +1,20 @@ +{ + "type": "process", + "name": "0.20mm Strength @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP212", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "outer_wall_speed": "60", + "sparse_infill_density": "25%", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "wall_loops": "6", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S800.json new file mode 100644 index 0000000000..2f359c6573 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt S800.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "name": "0.20mm Strength @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.20", + "from": "system", + "setting_id": "GP312", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "outer_wall_speed": "60", + "sparse_infill_density": "25%", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "wall_loops": "6", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S300.json new file mode 100644 index 0000000000..43541223aa --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S300.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.24mm Draft @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.24", + "from": "system", + "setting_id": "GP013", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S400.json new file mode 100644 index 0000000000..8630b91763 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S400.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.24mm Draft @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.24", + "from": "system", + "setting_id": "GP113", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S600.json new file mode 100644 index 0000000000..332f92b8c8 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S600.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "name": "0.24mm Draft @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.24", + "from": "system", + "setting_id": "GP213", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S800.json new file mode 100644 index 0000000000..fa474dbbb2 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt S800.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "name": "0.24mm Draft @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.24", + "from": "system", + "setting_id": "GP313", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..c25f8490b2 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP014", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json new file mode 100644 index 0000000000..c74c9d5b4c --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S300 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP015", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..30b146e295 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP114", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json new file mode 100644 index 0000000000..7839e89776 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S400 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP115", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..991348252d --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP214", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json new file mode 100644 index 0000000000..af465d1790 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S600 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP215", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..290fdff375 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP314", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json new file mode 100644 index 0000000000..04824827f2 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.24mm Standard @Z-Bolt S800 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP315", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S300.json b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S300.json new file mode 100644 index 0000000000..15b9fa529e --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S300.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.28mm Extra Draft @Z-Bolt S300", + "inherits": "fdm_process_zbolt_0.28", + "from": "system", + "setting_id": "GP016", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.4 nozzle", + "Z-Bolt S300 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S400.json b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S400.json new file mode 100644 index 0000000000..2f19aea6df --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S400.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.28mm Extra Draft @Z-Bolt S400", + "inherits": "fdm_process_zbolt_0.28", + "from": "system", + "setting_id": "GP116", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.4 nozzle", + "Z-Bolt S400 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S600.json b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S600.json new file mode 100644 index 0000000000..4b747e7373 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S600.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "name": "0.28mm Extra Draft @Z-Bolt S600", + "inherits": "fdm_process_zbolt_0.28", + "from": "system", + "setting_id": "GP216", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.4 nozzle", + "Z-Bolt S600 Dual 0.4 nozzle", + "Z-Bolt S1000 0.4 nozzle", + "Z-Bolt S1000 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S800.json b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S800.json new file mode 100644 index 0000000000..f7c61ea471 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt S800.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "name": "0.28mm Extra Draft @Z-Bolt S800", + "inherits": "fdm_process_zbolt_0.28", + "from": "system", + "setting_id": "GP316", + "instantiation": "true", + "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..a97aefd753 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.30mm Standard @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP017", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..28c1ab3990 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.30mm Standard @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP117", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..3159413920 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.30mm Standard @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP217", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..a23e55fa37 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.30mm Standard @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP317", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..c0330f6300 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.30mm Strength @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP018", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "elefant_foot_compensation": "0.15", + "sparse_infill_density": "25%", + "wall_loops": "4", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..8b7ac0fa1f --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.30mm Strength @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP118", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "elefant_foot_compensation": "0.15", + "sparse_infill_density": "25%", + "wall_loops": "4", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..a2c7371445 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,20 @@ +{ + "type": "process", + "name": "0.30mm Strength @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP218", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "elefant_foot_compensation": "0.15", + "sparse_infill_density": "25%", + "wall_loops": "4", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..5605e91e2b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "name": "0.30mm Strength @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP318", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "elefant_foot_compensation": "0.15", + "sparse_infill_density": "25%", + "wall_loops": "4", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json new file mode 100644 index 0000000000..42e40a2363 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.32mm Standard @Z-Bolt S300 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP019", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json new file mode 100644 index 0000000000..7f289e86c6 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.32mm Standard @Z-Bolt S400 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP119", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json new file mode 100644 index 0000000000..da7ddaba4d --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.32mm Standard @Z-Bolt S600 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP219", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json new file mode 100644 index 0000000000..3cc5f2c9a3 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.32mm Standard @Z-Bolt S800 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP319", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..d2cef00a2f --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.36mm Standard @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", + "from": "system", + "setting_id": "GP020", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..ece126f79e --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.36mm Standard @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", + "from": "system", + "setting_id": "GP120", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..8720141e02 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.36mm Standard @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", + "from": "system", + "setting_id": "GP220", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..e56c4df58e --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.36mm Standard @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", + "from": "system", + "setting_id": "GP320", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json new file mode 100644 index 0000000000..a03477db27 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.40mm Standard @Z-Bolt S300 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP021", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json new file mode 100644 index 0000000000..0e494d5197 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.40mm Standard @Z-Bolt S400 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP121", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json new file mode 100644 index 0000000000..d6b667142c --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.40mm Standard @Z-Bolt S600 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP221", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json new file mode 100644 index 0000000000..72a9736a60 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.40mm Standard @Z-Bolt S800 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP321", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json new file mode 100644 index 0000000000..ee33f772ba --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.42mm Standard @Z-Bolt S300 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", + "from": "system", + "setting_id": "GP022", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.6 nozzle", + "Z-Bolt S300 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json new file mode 100644 index 0000000000..126742a44c --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.42mm Standard @Z-Bolt S400 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", + "from": "system", + "setting_id": "GP122", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.6 nozzle", + "Z-Bolt S400 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json new file mode 100644 index 0000000000..c984fa971b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.42mm Standard @Z-Bolt S600 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", + "from": "system", + "setting_id": "GP222", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.6 nozzle", + "Z-Bolt S600 Dual 0.6 nozzle", + "Z-Bolt S1000 0.6 nozzle", + "Z-Bolt S1000 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json new file mode 100644 index 0000000000..c799d0ad60 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.42mm Standard @Z-Bolt S800 0.6 nozzle", + "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", + "from": "system", + "setting_id": "GP322", + "instantiation": "true", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json new file mode 100644 index 0000000000..bacae33c70 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.48mm Standard @Z-Bolt S300 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", + "from": "system", + "setting_id": "GP023", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S300 0.8 nozzle", + "Z-Bolt S300 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json new file mode 100644 index 0000000000..2f2389d2ef --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "0.48mm Standard @Z-Bolt S400 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", + "from": "system", + "setting_id": "GP123", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S400 0.8 nozzle", + "Z-Bolt S400 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json new file mode 100644 index 0000000000..60072b510f --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "0.48mm Standard @Z-Bolt S600 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", + "from": "system", + "setting_id": "GP223", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S600 0.8 nozzle", + "Z-Bolt S600 Dual 0.8 nozzle", + "Z-Bolt S1000 0.8 nozzle", + "Z-Bolt S1000 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json new file mode 100644 index 0000000000..ca6f5998a5 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "name": "0.48mm Standard @Z-Bolt S800 0.8 nozzle", + "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", + "from": "system", + "setting_id": "GP323", + "instantiation": "true", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Z-Bolt S800 Dual 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_common.json b/resources/profiles/Z-Bolt/process/fdm_process_common.json new file mode 100644 index 0000000000..08e6d5c8a3 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_common.json @@ -0,0 +1,75 @@ +{ + "type": "process", + "name": "fdm_process_common", + "from": "system", + "instantiation": "false", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "bridge_flow": "0.95", + "bridge_speed": "25", + "brim_width": "5", + "print_sequence": "by layer", + "default_acceleration": "10000", + "bridge_no_support": "0", + "elefant_foot_compensation": "0.1", + "outer_wall_line_width": "0.42", + "ironing_inset": "0.21", + "outer_wall_speed": "120", + "line_width": "0.45", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "grid", + "initial_layer_line_width": "0.42", + "initial_layer_print_height": "0.2", + "initial_layer_speed": "20", + "gap_infill_speed": "30", + "infill_combination": "0", + "sparse_infill_line_width": "0.45", + "infill_wall_overlap": "15%", + "sparse_infill_speed": "50", + "interface_shells": "0", + "detect_overhang_wall": "0", + "reduce_infill_retraction": "0", + "filename_format": "{input_filename_base}.gcode", + "wall_loops": "2", + "inner_wall_line_width": "0.45", + "inner_wall_speed": "40", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "nearest", + "skirt_distance": "2", + "skirt_height": "2", + "minimum_sparse_infill_area": "0", + "internal_solid_infill_line_width": "0.45", + "internal_solid_infill_speed": "40", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "support_filament": "0", + "support_line_width": "0.42", + "support_interface_filament": "0", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.15", + "support_interface_loop_pattern": "0", + "support_interface_top_layers": "2", + "support_interface_spacing": "0", + "support_interface_speed": "80", + "support_interface_pattern": "auto", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2", + "support_speed": "40", + "support_threshold_angle": "40", + "support_object_xy_distance": "0.5", + "detect_thin_wall": "0", + "top_surface_line_width": "0.42", + "top_surface_speed": "30", + "travel_speed": "300", + "enable_prime_tower": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "compatible_printers": [], + "smooth_coefficient": "80", + "overhang_totally_speed": "19", + "scarf_angle_threshold": "155" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.08.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.08.json new file mode 100644 index 0000000000..d0ad1071fd --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.08.json @@ -0,0 +1,26 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.08", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.08", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "7", + "top_shell_layers": "9", + "bridge_flow": "1", + "ironing_flow": "8%", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "outer_wall_speed": "200", + "inner_wall_speed": "350", + "sparse_infill_speed": "450", + "internal_solid_infill_speed": "350", + "gap_infill_speed": "350", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "15", + "support_top_z_distance": "0.08", + "support_bottom_z_distance": "0.08" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.12.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.12.json new file mode 100644 index 0000000000..57edb4989a --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.12.json @@ -0,0 +1,26 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.12", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.12", + "bottom_shell_layers": "5", + "elefant_foot_compensation": "0.15", + "top_shell_layers": "5", + "top_shell_thickness": "0.6", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "outer_wall_speed": "200", + "inner_wall_speed": "350", + "sparse_infill_speed": "430", + "internal_solid_infill_speed": "350", + "gap_infill_speed": "350", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "20", + "support_top_z_distance": "0.12", + "support_bottom_z_distance": "0.12" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.16.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.16.json new file mode 100644 index 0000000000..e84065138b --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.16.json @@ -0,0 +1,26 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.16", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.16", + "elefant_foot_compensation": "0.15", + "bottom_shell_layers": "4", + "top_shell_layers": "6", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "outer_wall_speed": "200", + "inner_wall_speed": "300", + "sparse_infill_speed": "330", + "internal_solid_infill_speed": "300", + "gap_infill_speed": "300", + "overhang_1_4_speed": "60", + "overhang_2_4_speed": "30", + "overhang_3_4_speed": "10", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.16_nozzle_0.6.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.16_nozzle_0.6.json new file mode 100644 index 0000000000..584d078e66 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.16_nozzle_0.6.json @@ -0,0 +1,27 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.16_nozzle_0.6", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.16", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "support_top_z_distance": "0.16", + "support_bottom_z_distance": "0.16" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.20.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.20.json new file mode 100644 index 0000000000..b3d83bf929 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.20.json @@ -0,0 +1,18 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.20", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "elefant_foot_compensation": "0.15", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "outer_wall_speed": "200", + "inner_wall_speed": "300", + "sparse_infill_speed": "270", + "internal_solid_infill_speed": "250", + "gap_infill_speed": "250", + "top_shell_layers": "5" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.20_nozzle_0.6.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.20_nozzle_0.6.json new file mode 100644 index 0000000000..7a2aef8216 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.20_nozzle_0.6.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.20_nozzle_0.6", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.20", + "initial_layer_print_height": "0.2", + "bridge_flow": "1", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24.json new file mode 100644 index 0000000000..27a78e0fe9 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.24", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.24", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "outer_wall_speed": "200", + "inner_wall_speed": "230", + "sparse_infill_speed": "230", + "internal_solid_infill_speed": "230", + "gap_infill_speed": "230", + "support_threshold_angle": "35", + "top_shell_layers": "4" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24_nozzle_0.6.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24_nozzle_0.6.json new file mode 100644 index 0000000000..df702b1210 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24_nozzle_0.6.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.24_nozzle_0.6", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.24", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24_nozzle_0.8.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24_nozzle_0.8.json new file mode 100644 index 0000000000..9c780d20db --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.24_nozzle_0.8.json @@ -0,0 +1,27 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.24_nozzle_0.8", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.24", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_line_width": "0.82", + "sparse_infill_line_width": "0.82", + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "30", + "initial_layer_infill_speed": "50", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.28.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.28.json new file mode 100644 index 0000000000..aac6e83336 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.28.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.28", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.28", + "elefant_foot_compensation": "0.15", + "top_surface_line_width": "0.45", + "top_shell_thickness": "1.0", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "outer_wall_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "gap_infill_speed": "200", + "support_threshold_angle": "40", + "top_shell_layers": "4" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.30_nozzle_0.6.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.30_nozzle_0.6.json new file mode 100644 index 0000000000..9565418387 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.30_nozzle_0.6.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.30_nozzle_0.6", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.3", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.32_nozzle_0.8.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.32_nozzle_0.8.json new file mode 100644 index 0000000000..12c2ce53b0 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.32_nozzle_0.8.json @@ -0,0 +1,27 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.32_nozzle_0.8", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.32", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_line_width": "0.82", + "sparse_infill_line_width": "0.82", + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "30", + "initial_layer_infill_speed": "50", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.36_nozzle_0.6.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.36_nozzle_0.6.json new file mode 100644 index 0000000000..7aa1c5ca4e --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.36_nozzle_0.6.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.36_nozzle_0.6", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.36", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.40_nozzle_0.8.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.40_nozzle_0.8.json new file mode 100644 index 0000000000..713be9fac8 --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.40_nozzle_0.8.json @@ -0,0 +1,27 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.40_nozzle_0.8", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.4", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_line_width": "0.82", + "sparse_infill_line_width": "0.82", + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "30", + "initial_layer_infill_speed": "50", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.42_nozzle_0.6.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.42_nozzle_0.6.json new file mode 100644 index 0000000000..4e3f061c1e --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.42_nozzle_0.6.json @@ -0,0 +1,25 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.42_nozzle_0.6", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.42", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "60", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.48_nozzle_0.8.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.48_nozzle_0.8.json new file mode 100644 index 0000000000..5558c196ce --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_0.48_nozzle_0.8.json @@ -0,0 +1,27 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_0.48_nozzle_0.8", + "inherits": "fdm_process_zbolt_common", + "from": "system", + "instantiation": "false", + "layer_height": "0.48", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_line_width": "0.82", + "sparse_infill_line_width": "0.82", + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "30", + "initial_layer_infill_speed": "50", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5" +} \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/process/fdm_process_zbolt_common.json b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_common.json new file mode 100644 index 0000000000..f05e9afc8c --- /dev/null +++ b/resources/profiles/Z-Bolt/process/fdm_process_zbolt_common.json @@ -0,0 +1,80 @@ +{ + "type": "process", + "name": "fdm_process_zbolt_common", + "inherits": "fdm_process_common", + "from": "system", + "instantiation": "false", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_object_gap": "0.1", + "compatible_printers_condition": "", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + "enable_arc_fitting": "0", + "outer_wall_acceleration": "5000", + "wall_infill_order": "inner wall/outer wall/infill", + "line_width": "0.42", + "internal_bridge_support_thickness": "0.8", + "initial_layer_acceleration": "500", + "initial_layer_line_width": "0.5", + "initial_layer_speed": "30", + "gap_infill_speed": "50", + "sparse_infill_speed": "250", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "layer_height": "0.2", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", + "detect_overhang_wall": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "only_one_wall_top": "1", + "inner_wall_speed": "150", + "seam_position": "aligned", + "skirt_height": "1", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "internal_solid_infill_line_width": "0.42", + "internal_solid_infill_speed": "150", + "initial_layer_infill_speed": "60", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_style": "default", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "support_interface_bottom_layers": "2", + "support_interface_spacing": "0.5", + "support_expansion": "0", + "support_base_pattern_spacing": "2.5", + "support_speed": "150", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_diameter": "2", + "tree_support_branch_angle": "45", + "tree_support_tip_diameter": "1", + "tree_support_wall_count": "0", + "max_bridge_length": "0", + "top_surface_pattern": "monotonicline", + "top_surface_acceleration": "2000", + "top_surface_speed": "200", + "top_shell_layers": "3", + "top_shell_thickness": "0.8", + "travel_speed": "300", + "enable_prime_tower": "1", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "20", + "wall_generator": "classic", + "exclude_object": "1", + "ooze_prevention": "0", + "standby_temperature_delta": "-40", + "preheat_time": "30", + "preheat_steps": "1", + "compatible_printers": [] +} \ No newline at end of file diff --git a/resources/web/data/text.js b/resources/web/data/text.js index fd9c28df1a..930ce4d2d9 100644 --- a/resources/web/data/text.js +++ b/resources/web/data/text.js @@ -105,6 +105,7 @@ var LangText = { t111: "Create New", t112: "Join the Program", t113: "You may change your choice in preference anytime.", + t126: "Loading……", orca1: "Edit Project Info", orca2: "no model information", orca3: "Stealth Mode", @@ -326,12 +327,125 @@ var LangText = { t111: "Crear nuevo", t112: "Unirse al programa", t113: "Puede cambiar su elección en preferencias en cualquier momento.", + t126: "Carga en progreso……", orca1: "Editar información del proyecto", orca2: "No hay información sobre el modelo", orca3: "Modo Invisible", orca4: "Esta función detiene la transmisión de datos a los servicios en la nube de Bambu. Los usuarios que no utilicen máquinas BBL o que solo utilicen el modo LAN pueden activar esta función de forma segura.", orca5: "Activar Modo Invisible.", }, + it_IT: { + t1: "Benvenuti in OrcaSlicer", + t2: "OrcaSlicer verrà configurato seguendo diversi passaggi. Cominciamo!", + t3: "Condizioni d'uso", + t4: "Non accetto", + t5: "Accetto", + t6: "Chiediamo gentilmente il tuo aiuto per migliorare la qualità delle stampe.
Iscriviti al nostro programma di miglioramento dell'esperienza utente", + t7: "Iscriviti al nostro programma di miglioramento dell'esperienza utente", + t8: "Indietro", + t9: "Avanti", + t10: "Selezione della stampante", + t11: "Tutto", + t12: "Cancella tutto", + t13: "mm ugello", + t14: "Selezione del filamento", + t15: "Stampante", + t16: "Tipo di filamento", + t17: "Produttore", + t18: "errore", + t19: "È necessario selezionare almeno un filamento.", + t20: "Vuoi utilizzare il filamento predefinito?", + t21: "sì", + t22: "no", + t23: "Note di rilascio", + t24: "Inizia", + t25: "Fine", + t26: "Accedi", + t27: "Registrati", + t28: "Recente", + t29: "Negozio", + t30: "Manuale", + t31: "Nuovo progetto", + t32: "Crea un nuovo progetto", + t33: "Apri progetto", + t34: "hotspot", + t35: "Aperti di recente", + t36: "ok", + t37: "È necessario selezionare almeno una stampante.", + t38: "Annulla", + t39: "Conferma", + t40: "Disconnesso, controlla la connessione di rete e riprova.", + t47: "Seleziona la tua regione di accesso", + t48: "Asia-Pacifico", + t49: "Cina", + t50: "Disconnettiti", + t52: "Salta", + t53: "Iscriviti", + t54: "Nella comunità di stampa 3D, impariamo dai successi e dagli insuccessi di ognuno per adattare i nostri parametri e le nostre impostazioni di slicing. OrcaSlicer segue lo stesso principio, utilizzando l'apprendimento automatico per migliorare le sue prestazioni sfruttando i successi e gli insuccessi delle numerose stampe dei nostri utenti. Stiamo addestrando OrcaSlicer ad essere più intelligente, fornendogli dati del mondo reale. Se lo desideri, questo servizio accederà alle informazioni dei tuoi registri di errore e di utilizzo, i quali possono includere informazioni descritte in ", + t55: "Politica sulla riservatezza", + t56: ". Non raccoglieremo alcun Dato Personale tramite il quale un individuo possa essere identificato direttamente o indirettamente, inclusi (senza limitazioni) nomi, indirizzi, informazioni di pagamento o numeri di telefono. Abilitando questo servizio, accetti questi termini e la dichiarazione sulla Politica sulla riservatezza.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Nord America", + t62: "Altri", + t63: "Dopo aver cambiato la regione, il tuo profilo verrà disconnesso. Sarà necessario accedere di nuovo.", + t64: "Moduli proprietari", + t65: "Si prega di notare che questi moduli non sono sviluppati o mantenuti da OrcaSlicer. Dovrebbero essere utilizzati a proprio rischio e discrezione.", + t66: "Controllo remoto completo", + t67: "Video in diretta", + t68: "Sincronizzazione dei dati utente", + t69: "Installa il modulo di rete Bambu", + t70: "", + t71: "Scaricamento", + t72: "Scaricamento non riuscito", + t73: "Installazione riuscita.", + t74: "Riavvia", + t75: "Le stampanti di alcuni produttori richiedono dei moduli proprietari per far in modo che la comunicazione abbia successo. Seleziona il modulo corrispondente se utilizzi tali stampanti.", + t76: "Modulo di rete Bambu non rilevato. Fai clic ", + t77: "qui", + t78: " per installarlo.", + t79: "Impossibile installare il modulo. ", + t80: "Prova i seguenti passaggi:", + t81: "1, Fare clic ", + t82: " per aprire la directory del modulo", + t83: "2, Chiudere tutte le istanze di OrcaSlicer", + t84: "3, Eliminare tutti i file all'interno della directory del modulo", + t85: "4, Riaprire OrcaSlicer e installare nuovamente il modulo", + t86: "Chiudi", + t87: "Manuale d'uso", + t88: "Rimuovi", + t89: "Apri cartella con contenuto", + t90: "Modello 3D", + t91: "Scarica modelli 3D", + t92: "Creato da", + t93: "Modificato da", + t94: "Condiviso da", + t95: "Informazioni sul modello", + t96: "Accessori", + t97: "Informazioni sul profilo", + t98: "Nome del modello", + t100: "Descrizione del modello", + t101: "Elenco dei materiali", + t102: "Istruzioni di montaggio ", + t103: "Altro", + t104: "Nome del profilo", + t105: "Autore del profilo", + t106: "Descrizione del profilo", + t107: "Modelli online", + t108: "ALTRO", + t109: "Filamenti di sistema", + t110: "Filamenti personalizzati", + t111: "Crea Nuovo", + t112: "Unisciti al programma", + t113: "Puoi modificare la tua scelta in 'Preferenze' in qualsiasi momento.", + orca1: "Modifica informazioni progetto", + orca2: "nessuna informazione sul modello", + orca3: "Modalità invisibile", + orca4: "Con questa modalità, la trasmissione dei dati ai servizi cloud di Bambu sarà interrotta. Gli utenti che non utilizzano macchine BBL o che usano solo la modalità LAN possono attivare questa funzione in modo sicuro.", + orca5: "Abilita la modalità invisibile.", + }, de_DE: { t1: "Willkommen im Orca Slicer", t2: "Das Orca Slicer wird in mehreren Schritten eingerichtet. Lass uns anfangen!", @@ -431,6 +545,7 @@ var LangText = { t104: "Profilname", t105: "Profilautor", t106: "Profilbeschreibung", + t126: "Laden……", orca1: "Edit Project Info", orca2: "no model information", }, @@ -533,6 +648,7 @@ var LangText = { t104: "Název profilu", t105: "Autor profilu", t106: "Popis profilu", + t126: "Načtení probíhá……", orca1: "Edit Project Info", orca2: "no model information", }, @@ -638,6 +754,7 @@ var LangText = { t109: "Filaments du système", t110: "Filaments personnalisés", t111: "Créer un nouveau filament", + t126: "Chargement en cours……", orca1: "Modifier les informations du projet", orca2: "pas d'information sur le modèle", wk1: "Démarrage rapide", @@ -763,6 +880,7 @@ var LangText = { t111: "新建", t112: "加入该计划", t113: "您可以随时更改您的偏好。", + t126: "正在加载……", wk1: "快速入门指南", wk2: "本文介绍了Orca Slicer的最基本用法。它指导用户配置软件,创建项目,并逐步完成第一个打印任务。", wk3: "基于项目的工作流", @@ -993,6 +1111,7 @@ var LangText = { t111: "Создать новый", t112: "Присоединяйтесь к программе", t113: "Вы можете изменить свой выбор в любое время.", + t126: "Загрузка идёт……", orca1: "Редактировать информацию о проекте", orca2: "Информации о модели отсутствует", orca3: "Режим конфиденциальности", @@ -1087,6 +1206,7 @@ var LangText = { t92: "Bambu Christmas Cabin", t93: "프린터 연결", t94: "장치를 보려면 프린터 연결을 설정하세요.", + t126: "로딩 중……", orca1: "Edit Project Info", orca2: "no model information", }, @@ -1196,6 +1316,7 @@ var LangText = { t111: "Yeni Oluştur", t112: "Programa Katılın", t113: "Tercihinizi istediğiniz zaman değiştirebilirsiniz.", + t126: "Yükleme devam ediyor……", orca1: "Proje Bilgilerini Düzenle", orca2: "model bilgisi yok", }, @@ -1305,6 +1426,7 @@ var LangText = { t111: "Utwórz nowy", t112: "Dołącz do programu", t113: "Możesz zmienić swój wybór w preferencjach w dowolnym momencie.", + t126: "Ładowanie trwa……", orca1: "Edytuj informacje o projekcie", orca2: "brak informacji o modelu", orca3: "Tryb «Niewidzialny»", @@ -1313,7 +1435,7 @@ var LangText = { }, pt_BR: { t1: "Bem-vindo ao Orca Slicer", - t2: "Orca Slicer será configurado em algumas etapas. Vamos começar!", + t2: "Orca Slicer será configurado em várias etapas. Vamos começar!", t3: "Termos de Uso", t4: "Discordo", t5: "Concordo", @@ -1376,8 +1498,8 @@ var LangText = { t69: "Instalar Bambu Network plug-in", t70: "", t71: "Baixando", - t72: "Baixando falhou", - t73: "Instalação concluida.", + t72: "Falha baixando", + t73: "Instalação concluída.", t74: "Reiniciar", t75: "Algumass fabricantes de impressoras exigem plugins proprietários para comunicação com suas impressoras. Se você utiliza tais impressoras, selecione o plug-in correspondente.", t76: "Bambu Network plug-in não detectado. Clique ", @@ -1417,8 +1539,124 @@ var LangText = { t111: "Criar Novo", t112: "Junte-se ao Programa", t113: "Você pode alterar sua escolha nas Preferências a qualquer momento", + t126: "Carregamento em andamento……", orca1: "Editar Info do Projeto", orca2: "Sem informação do modelo", + orca3: "Modo Furtivo", + orca4: "Isso interrompe a transmissão de dados para os serviços de nuvem da Bambu. Usuários que não usam máquinas BBL ou usam somente o modo LAN podem ativar essa função com segurança.", + orca5: "Habilita Modo Furtivo.", + }, + lt: { + t1: "Pasisveikinkite su Orca Slicer", + t2: "Orca Slicer bus nustatyta per kelis žingsnius. Pradėkime!", + t3: "Naudotojo sutartis", + t4: "Nesutinku", + t5: "Sutinku", + t6: "Maloniai prašome jūsų pagalbos, kad pagerintume visų spausdinimą.
Prisijunkite prie mūsų klientų patirties gerinimo programos", + t7: "Prisijunkite prie mūsų klientų patirties gerinimo programos", + t8: "Atgal", + t9: "Pirmyn", + t10: "Spausdintuvo pasirinkimas", + t11: "Visi", + t12: "Išvalyti visus", + t13: "mm purkštukas", + t14: "Gijos pasirinkimas", + t15: "Spausdintuvas", + t16: "Gijos tipas", + t17: "Gamintojas", + t18: "klaida", + t19: "Turi būti pasirinkta bent viena gija.", + t20: "Ar norite naudoti numatytąją giją?", + t21: "taip", + t22: "ne", + t23: "Išleidimo pastabos", + t24: "Pradėti", + t25: "Pabaigti", + t26: "Prisijungti", + t27: "Prisiregistruoti", + t28: "Naujausi", + t29: "Pirkti", + t30: "Rankinis", + t31: "Naujas projektas", + t32: "Sukurti naują projektą", + t33: "Atverti projektą", + t34: "Prieigos taškas", + t35: "Neseniai atidaryti", + t36: "gerai", + t37: "Turi būti pasirinktas bent vienas spausdintuvas.", + t38: "Atšaukti", + t39: "Patvirtinti", + t40: "Tinklas atjungtas, patikrinkite ir bandykite vėliau.", + t47: "Pasirinkite prisijungimo regioną", + t48: "Azija-Ramusis vandenynas", + t49: "Kinija", + t50: "Atsijungti", + t52: "Praleisti", + t53: "Prisijungti", + t54: "3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad galėtume pritaikyti savo pjaustymo parametrus ir nustatymus. Orca Slicer vadovaujasi tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą, remdamasi daugybės mūsų naudotojų atspaudų sėkmėmis ir nesėkmėmis. Maitindami Orca Slicer realaus pasaulio duomenimis, mokome ją būti protingesne. Jei pageidaujate, ši paslauga pasieks informaciją iš jūsų klaidų žurnalų ir naudojimo žurnalų, į kuriuos gali būti įtraukta informacija, aprašyta ", + t55: "privatumo politikoje", + t56: ". Nerinksime jokių asmens duomenų, pagal kuriuos galima tiesiogiai ar netiesiogiai nustatyti asmens tapatybę, įskaitant, bet neapsiribojant vardus, adresus, mokėjimo informaciją ar telefono numerius. Įjungdami šią paslaugą sutinkate su šiomis sąlygomis ir privatumo politikos nuostatomis.", + t57: "", + t58: "", + t59: ".", + t60: "Europa", + t61: "Šiaurės Amerika", + t62: "Kiti", + t63: "Pakeitus regioną, jūsų paskyra bus išregistruota. Vėliau vėl prisijunkite.", + t64: "Patentuoti papildiniai", + t65: "Atkreipkite dėmesį, kad OrcaSlicer šių papildinių nesukuria ir neprižiūri. Juos turėtumėte naudoti savo nuožiūra ir rizika.", + t66: "Pilnas nuotolinis valdymas", + t67: "Tiesioginė transliacija", + t68: "Naudotojo duomenų sinchronizavimas", + t69: "Įdiegti Bambu tinklo papildinį", + t70: "", + t71: "Atsisiunčiama", + t72: "Nepavyko atsisiųsti", + t73: "Diegimas sėkmingas.", + t74: "Paleisti iš naujo", + t75: "Kai kurie spausdintuvų gamintojai reikalauja patentuotų priedų, kad būtų galima bendrauti su jų spausdintuvais. Jei naudojate tokius spausdintuvus, pasirinkite atitinkamą įskiepį.", + t76: "Neaptiktas Bambu tinklo papildinys. Spustelėkite ", + t77: "čia", + t78: " jo diegimui.", + t79: "Nepavyko įdiegti papildinio. ", + t80: "Išbandykite šiuos žingsnius:", + t81: "1, Spustelkite ", + t82: " atidaryti papildinių katalogą", + t83: "2, Uždarykite visas veikiančias Orca Slicer programas", + t84: "3, Ištrinkite visus failus iš papildinių katalogo", + t85: "4, Iš naujo atverkite OrcaSlicer ir iš naujo įdiekite papildinį", + t86: "Užverti", + t87: "Naudotojo vadovas", + t88: "Pašalinti", + t89: "Atidaryti katalogą, kuriame yra", + t90: "3D modelis", + t91: "Atsisiųsti 3D modelius", + t92: "Sukurta", + t93: "Perkurta", + t94: "Pasidalinta", + t95: "Modelio informacija", + t96: "Priedai", + t97: "Profilio informacija", + t98: "Modelio pavadinimas", + t100: "Modelio aprašymas", + t101: "BOM", + t102: "Surinkimo vadovas", + t103: "Kita", + t104: "Profilio pavadinimas", + t105: "Profilio autorius", + t106: "Profilio aprašymas", + t107: "Modeliai internete", + t108: "DAUGIAU", + t109: "Sistemos gijos", + t110: "Pasirinktinės gijos", + t111: "Sukurti naują", + t112: "Prisijungti prie programos", + t113: "Savo pasirinkimą galite bet kada pakeisti.", + orca1: "Redaguoti projekto informaciją", + orca2: "nėra informacijos apie modelį", + orca3: "Slaptas režimas", + orca4: "Tai sustabdo duomenų perdavimą į Bambu debesijos paslaugas. Vartotojai, kurie nenaudoja BBL mašinų arba naudoja tik LAN režimą, gali drąsiai įjungti šią funkciją.", + orca5: "Įjungti slaptą režimą.", }, }; diff --git a/resources/web/guide/0/index.html b/resources/web/guide/0/index.html new file mode 100644 index 0000000000..efa703fd36 --- /dev/null +++ b/resources/web/guide/0/index.html @@ -0,0 +1,23 @@ + + + + + +loading + + + + + + + + + + + +
+ +
Loading……
+
+ + \ No newline at end of file diff --git a/resources/web/guide/0/load.css b/resources/web/guide/0/load.css new file mode 100644 index 0000000000..04f62957f1 --- /dev/null +++ b/resources/web/guide/0/load.css @@ -0,0 +1,36 @@ +@keyframes rotate { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +body +{ + display:flex; + align-content: center; + justify-content: center; +} + +#LoadBlock +{ + display:flex; + align-items: center; + justify-content: center; +} + +#LoadingSvg +{ + animation: rotate 1.2s infinite linear; + margin-right: 8px; + height: 120%; +} + +#LoadTip +{ + font-size: 15px; + font-weight: 700; + color: #009688; +} \ No newline at end of file diff --git a/resources/web/guide/0/load.js b/resources/web/guide/0/load.js new file mode 100644 index 0000000000..424c9ebdb3 --- /dev/null +++ b/resources/web/guide/0/load.js @@ -0,0 +1,26 @@ + +var TargetPage=null; + +function OnInit() +{ + TranslatePage(); + + TargetPage=GetQueryString("target"); + + //setTimeout("JumpToTarget()",20*1000); +} + +function HandleStudio( pVal ) +{ + let strCmd=pVal['command']; + + if(strCmd=='userguide_profile_load_finish') + { + JumpToTarget(); + } +} + +function JumpToTarget() +{ + window.open('../'+TargetPage+'/index.html','_self'); +} \ No newline at end of file diff --git a/resources/web/guide/0/loading.svg b/resources/web/guide/0/loading.svg new file mode 100644 index 0000000000..0526e76bc8 --- /dev/null +++ b/resources/web/guide/0/loading.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/resources/web/guide/11/earth.png b/resources/web/guide/11/earth.png index 1b15fb712e..be8ffa44fb 100644 Binary files a/resources/web/guide/11/earth.png and b/resources/web/guide/11/earth.png differ diff --git a/resources/web/guide/11/tip.png b/resources/web/guide/11/tip.png index 1e64a958df..3bda75771a 100644 Binary files a/resources/web/guide/11/tip.png and b/resources/web/guide/11/tip.png differ diff --git a/resources/web/guide/21/21.css b/resources/web/guide/21/21.css index 933f823080..c0c7bfbd93 100644 --- a/resources/web/guide/21/21.css +++ b/resources/web/guide/21/21.css @@ -1,7 +1,7 @@ - #Content { overflow-y:auto; + padding: 32px; /* ORCA Specify & Reduce horizontal paddings to fit 4 items per row */ } .BlockBanner @@ -21,7 +21,11 @@ align-items: center; height: 40px; text-align: center; - margin-right: 10px; + margin-right: 0px; /* ORCA align buttons with end of horizontal separator/line */ +} + +.BannerBtns>.SmallBtn_Green.trans{ + margin-right: 7px; /* ORCA adds a small gap between buttons */ } .BlockBanner a @@ -36,7 +40,7 @@ .PrinterArea { - padding: 10px; + padding: 10px 0px; /* ORCA Reduce horizontal paddings to fit 4 items per row */ display: flex; flex-wrap: wrap; } @@ -57,7 +61,7 @@ .PName { font-weight: 700; - text-align: left; + text-align:left; } .pNozzel @@ -66,7 +70,7 @@ align-items: center; justify-content:flex-start; color: #5A5A5A; - padding-left: 10px; + padding-left: 0px; /* ORCA Align checkboxes with with model text */ } .pNozzel input @@ -129,26 +133,47 @@ width: 100%; position: relative; display: flex; - } +} - .searchTerm { +.searchTerm { width: 100%; - border: 3px solid #009688; + border: 1px solid #DBDBDB; /* ORCA Searchbox > match border style */ /*border-right: none;*/ padding: 5px; - height: 20px; + padding-left:32px; + height: 20px; /* ORCA match height */ + line-height: 20px; /* ORCA center text vertically */ border-radius: 5px 5px 5px 5px; outline: none; color: #9DBFAF; - } - - .searchTerm:focus{ - color: #009688; - } - - /*Resize the wrap to see the search bar change!*/ - .wrap{ +} +@media (prefers-color-scheme: dark) { /* ORCA Searchbox > add dark mode support */ + .searchTerm {border: 1px solid #4A4A51;} +} + +.searchTerm:focus{ + color: #363636; /* ORCA Searchbox > use normal text color */ + border-color:#009688; /* ORCA Searchbox > highlight border color when focused. like on normal UI */ +} +@media (prefers-color-scheme: dark) { /* ORCA Searchbox > add dark mode support */ + .searchTerm:focus{color: #FFFFFF} +} + +#search-icon{ /* ORCA */ + position:absolute; + top: 50%; + transform: translateY(-50%); + left:8px; + margin:0px auto; + fill:#7C8282 +} +@media (prefers-color-scheme: dark) { /* ORCA Searchbox > add dark mode support */ + #search-icon{fill:#949494} +} + +/*Resize the wrap to see the search bar change!*/ +.wrap{ width: 30%; padding-bottom: 5px; - padding-left: 42px; - } \ No newline at end of file + padding-left: 32px; /* ORCA Align with content */ +} diff --git a/resources/web/guide/21/21.js b/resources/web/guide/21/21.js index d7a4d640dc..cd359610b6 100644 --- a/resources/web/guide/21/21.js +++ b/resources/web/guide/21/21.js @@ -98,13 +98,14 @@ function HandleModelList( pVal ) for(let m=0;m'+nNozzel+'mm nozzle'; + /* ORCA use label tag to allow checkbox to toggle when user ckicked to text */ + HtmlNozzel += ''; } let CoverImage=OneModel['cover']; ModelHtml[strVendor]+='
'+ '
'+ -'
'+OneModel['model']+'
'+ HtmlNozzel +'
'; +'
'+OneModel['name']+'
'+ HtmlNozzel +''; } //Update Nozzel Html Append @@ -216,14 +217,16 @@ function FilterModelList(keyword) { let nTotal = pModel.length; let ModelHtml = {}; + let kwSplit = keyword.toLowerCase().match(/\S+/g) || []; $('#Content').empty(); for (let n = 0; n < nTotal; n++) { let OneModel = pModel[n]; let strVendor = OneModel['vendor']; - let ModelName = OneModel['model']; - if (ModelName.toLowerCase().indexOf(keyword.toLowerCase()) == -1) + let search = (OneModel['name'] + '\0' + strVendor).toLowerCase(); + + if (!kwSplit.every(s => search.includes(s))) continue; //Add Vendor Html Node @@ -259,13 +262,14 @@ function FilterModelList(keyword) { let HtmlNozzel = ''; for (let m = 0; m < NozzleArray.length; m++) { let nNozzel = NozzleArray[m]; - HtmlNozzel += '
' + nNozzel + 'mm nozzle
'; + /* ORCA use label tag to allow checkbox to toggle when user ckicked to text */ + HtmlNozzel += ''; } let CoverImage = OneModel['cover']; ModelHtml[strVendor] += '
' + '
' + - '
' + OneModel['model'] + '
' + HtmlNozzel + '
'; + '
' + OneModel['name'] + '
' + HtmlNozzel + ''; } //Update Nozzel Html Append diff --git a/resources/web/guide/21/index.html b/resources/web/guide/21/index.html index 3e19309d19..5122ccec49 100644 --- a/resources/web/guide/21/index.html +++ b/resources/web/guide/21/index.html @@ -22,6 +22,10 @@
diff --git a/resources/web/guide/22/22.css b/resources/web/guide/22/22.css index 0a542a4645..8f8abac0a9 100644 --- a/resources/web/guide/22/22.css +++ b/resources/web/guide/22/22.css @@ -60,7 +60,7 @@ input .MItem { - min-width: 220px; + min-width: 180px; /* ORCA Filtered items > slightly reduce min width to fit more items*/ height: 32px; } diff --git a/resources/web/guide/22/22.js b/resources/web/guide/22/22.js index ce75dd59eb..73a4110b2a 100644 --- a/resources/web/guide/22/22.js +++ b/resources/web/guide/22/22.js @@ -95,8 +95,8 @@ function SortUI() for(let n=0;n'+sModel['model']+'
'; + /* ORCA use label tag to allow checkbox to toggle when user ckicked to text */ + HtmlMode+=''; } $('#MachineList .CValues').append(HtmlMode); @@ -172,7 +172,8 @@ function SortUI() let LowType=fType.toLowerCase(); if(!TypeHtmlArray.hasOwnProperty(LowType)) { - let HtmlType='
'+fType+'
'; + /* ORCA use label tag to allow checkbox to toggle when user ckicked to text */ + let HtmlType=''; TypeHtmlArray[LowType]=HtmlType; } @@ -181,7 +182,8 @@ function SortUI() let lowVendor=fVendor.toLowerCase(); if(!VendorHtmlArray.hasOwnProperty(lowVendor)) { - let HtmlVendor='
'+fVendor+'
'; + /* ORCA use label tag to allow checkbox to toggle when user ckicked to text */ + let HtmlVendor=''; VendorHtmlArray[lowVendor]=HtmlVendor; } @@ -190,7 +192,8 @@ function SortUI() let pFila=$("#ItemBlockArea input[vendor='"+fVendor+"'][filatype='"+fType+"'][name='"+fShortName+"']"); if(pFila.length==0) { - let HtmlFila='
'+fShortName+'
'; + /* ORCA use label tag to allow checkbox to toggle when user ckicked to text */ + let HtmlFila=''; $("#ItemBlockArea").append(HtmlFila); } diff --git a/resources/web/guide/22/index.html b/resources/web/guide/22/index.html index 6e379d2a0b..cf8e26e7d6 100644 --- a/resources/web/guide/22/index.html +++ b/resources/web/guide/22/index.html @@ -24,7 +24,7 @@
printer
-
all
+ + + +
diff --git a/resources/web/guide/3/index.html b/resources/web/guide/3/index.html index c9ae0994bd..836811bf84 100644 --- a/resources/web/guide/3/index.html +++ b/resources/web/guide/3/index.html @@ -26,10 +26,10 @@

-
+
+
Back
diff --git a/resources/web/guide/31/index.html b/resources/web/guide/31/index.html index 965d1538ae..65b81fd420 100644 --- a/resources/web/guide/31/index.html +++ b/resources/web/guide/31/index.html @@ -25,10 +25,10 @@

-
+
+
Back
diff --git a/resources/web/guide/4orca/4orca.css b/resources/web/guide/4orca/4orca.css index f12a7860fe..d2ffcd8469 100644 --- a/resources/web/guide/4orca/4orca.css +++ b/resources/web/guide/4orca/4orca.css @@ -16,12 +16,12 @@ margin-top:10mm; line-height: 30px; } - +/* ORCA brokes shape of custom css checkbox #StealthMode { width: 30px; } - +*/ #RestartText { padding-left:30px; diff --git a/resources/web/guide/4orca/index.html b/resources/web/guide/4orca/index.html index 975123eabc..c108144a81 100644 --- a/resources/web/guide/4orca/index.html +++ b/resources/web/guide/4orca/index.html @@ -25,8 +25,8 @@
- - + +
diff --git a/resources/web/guide/5/5.css b/resources/web/guide/5/5.css index 52d3248faa..8dd1cdc1f3 100644 --- a/resources/web/guide/5/5.css +++ b/resources/web/guide/5/5.css @@ -16,11 +16,12 @@ margin-top:10mm; line-height: 30px; } - +/* ORCA brokes shape of custom css checkbox #InstallCheck { width: 30px; } +*/ #RestartText { diff --git a/resources/web/guide/5/index.html b/resources/web/guide/5/index.html index aa838c1515..96357328d6 100644 --- a/resources/web/guide/5/index.html +++ b/resources/web/guide/5/index.html @@ -31,8 +31,8 @@ - - + +
diff --git a/resources/web/guide/css/common.css b/resources/web/guide/css/common.css index 411b219ee4..11eac6d01a 100644 --- a/resources/web/guide/css/common.css +++ b/resources/web/guide/css/common.css @@ -133,16 +133,17 @@ body padding: 3mm 9mm; font-size: 14px; text-align: center; - border: 1px solid #575757; + /* border: 1px solid #575757; */ /* ORCA match button style */ border-radius: 18px; - color: #575757; + background-color: #D9D9D9; + color: #000; /* ORCA match button style */ cursor: pointer; margin-left: 10px; } .GrayBtn:hover { - background-color:#E8E8E8; + background-color:#CCCCCC; /* ORCA match button style */ } .SmallBtn @@ -189,6 +190,50 @@ body cursor: pointer; } +/*---Checkboxes ORCA ---*/ +label:has(input[type="checkbox"]){ + margin:0; + padding: 0; + margin-right: 20px; +} + +label:has(input[type="checkbox"])>span{ + vertical-align: middle; + margin:0; +} + +input[type="checkbox"] { + -webkit-appearance: none; + appearance: none; + background-color:#FFFFFF; + margin:0; + margin-right: 6px; + width: 1em; + height: 1em; + border: 0.1em solid #DBDBDB; + border-radius: 0.15em; + display: inline-flex; + place-content: center; + background-color:#FFFFFF; +} + +input[type="checkbox"]::before { + content: ""; + width: 0.8em; + height: 0.8em; + transform: scale(0); + box-shadow: inset 1em 1em #FFFFFF; + clip-path: polygon(7% 37%, 0 45%, 33% 78%, 100% 30%, 95% 21%, 33% 64%); +} + +input[type="checkbox"]:checked { + border-color:#009688; + background-color:#009688; +} + +input[type="checkbox"]:checked::before { + transform: scale(1); +} /*----------------Light Mode-------------------*/ diff --git a/resources/web/guide/css/dark.css b/resources/web/guide/css/dark.css index ff3a22c342..4ba7e79baf 100644 --- a/resources/web/guide/css/dark.css +++ b/resources/web/guide/css/dark.css @@ -6,7 +6,7 @@ body { - background-color:#3E3E45; + background-color:#2D2D31; /* ORCA match background color */ color: #efeff0; } @@ -23,17 +23,32 @@ body color: #009688; } -/*-----Button-----*/ -.GrayBtn -{ - border: 1px solid #B9B9BC; - color: #B9B9BC; +.search>input[type=text]{ + background-color:#2D2D31; } -.GrayBtn:hover +/*---Checkboxes ORCA---*/ +input[type=checkbox]{ + background-color:#2D2D31; + border-color:#4A4A51; +} + +input[type=checkbox]:checked{ + background-color:#009688; +} + +/*-----Button-----*/ +.GrayBtn, .SmallBtn /* ORCA match button style GrayBtn & SmallBtn */ { - background-color:#E8E8E8; - color: #565656; + background-color:#3E3E45; + /* border: 1px solid #B9B9BC; */ + color: #FFFFFF; +} + +.GrayBtn:hover, .SmallBtn:hover /* ORCA match button style GrayBtn & SmallBtn */ +{ + background-color:#49494E; + color: #FFFFFF; } /*-------Text------*/ diff --git a/resources/web/homepage/css/home.css b/resources/web/homepage/css/home.css index ce70b28692..f85275d207 100644 --- a/resources/web/homepage/css/home.css +++ b/resources/web/homepage/css/home.css @@ -95,10 +95,11 @@ body height:36px; line-height: 36px; display: flex; - justify-content: center; + flex-direction: column; /*ORCA*/ + align-items: center; /*Allow icon centered vertically*/ + justify-content: center; /*and use login button in new line*/ user-select: none; } - #LoginBtn { cursor:pointer; @@ -138,7 +139,7 @@ body #BBLIcon { - height:36px; + height:96px; /*ORCA use bigger icon to fit logo size*/ } #Login2 diff --git a/resources/web/homepage/img/d.png b/resources/web/homepage/img/d.png index bddeb8cc4d..0a51db57d3 100644 Binary files a/resources/web/homepage/img/d.png and b/resources/web/homepage/img/d.png differ diff --git a/resources/web/homepage/img/i4.png b/resources/web/homepage/img/i4.png index 8a376b4faf..83aa2592ac 100644 Binary files a/resources/web/homepage/img/i4.png and b/resources/web/homepage/img/i4.png differ diff --git a/resources/web/homepage/img/i5.png b/resources/web/homepage/img/i5.png index 1663e06a51..3bee33faaf 100644 Binary files a/resources/web/homepage/img/i5.png and b/resources/web/homepage/img/i5.png differ diff --git a/resources/web/homepage/index.html b/resources/web/homepage/index.html index f748e44a4f..72e65e4b6f 100644 --- a/resources/web/homepage/index.html +++ b/resources/web/homepage/index.html @@ -22,7 +22,7 @@